HomeSort by relevance Sort by last modified time
    Searched refs:CHANNEL (Results 1 - 12 of 12) sorted by null

  /cts/tests/app/NotificationDelegator/src/com/android/test/notificationdelegator/
NotificationDelegator.java 30 private static final String CHANNEL = "channel";
39 nm.createNotificationChannel(new NotificationChannel(CHANNEL, CHANNEL, IMPORTANCE_LOW));
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
LoggerRuntime.java 28 * The implementation uses a dedicated log channel. Instrumented classes call
31 * for this channel that puts the probe data structure into the first slot of
36 private static final String CHANNEL = "jacoco-runtime";
55 final Logger l = Logger.getLogger(CHANNEL);
70 // Logger.getLogger(CHANNEL).log(Level.INFO, key, args);
90 mv.visitLdcInsn(CHANNEL);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
AudioRecordHelper.java 23 private static final int CHANNEL = AudioFormat.CHANNEL_CONFIGURATION_MONO;
41 tmpBufferSize = AudioRecord.getMinBufferSize(rate, CHANNEL, ENCODING);
42 AudioRecord testAudioRecord = new AudioRecord(source, rate, CHANNEL, ENCODING,
76 audioRecord = new AudioRecord(source, sampleRate, CHANNEL, ENCODING, bufferSize);
  /cts/tests/app/src/android/app/cts/
NotificationTest.java 69 private static final NotificationChannel CHANNEL = new NotificationChannel("id", "name",
98 mNotification = new Notification.Builder(mContext, CHANNEL.getId()).build();
99 assertEquals(CHANNEL.getId(), mNotification.getChannelId());
133 mNotification = new Notification.Builder(mContext, CHANNEL.getId())
251 mNotification = new Notification.Builder(mContext, CHANNEL.getId())
268 assertEquals(CHANNEL.getId(), mNotification.getChannelId());
281 Notification.Builder builder = new Notification.Builder(mContext, CHANNEL.getId());
308 mNotification = new Notification.Builder(mContext, CHANNEL.getId())
339 mNotification = new Notification.Builder(mContext, CHANNEL.getId())
363 mNotification = new Notification.Builder(mContext, CHANNEL.getId()
    [all...]
  /external/conscrypt/benchmark-base/src/main/java/org/conscrypt/
ClientSocketBenchmark.java 62 ChannelType.CHANNEL, config.messageSize(), config.protocol().getProtocols(),
ServerSocketBenchmark.java 89 ChannelType.CHANNEL, server.port(), getProtocols(), ciphers(config));
  /external/conscrypt/repackaged/benchmark-base/src/main/java/com/android/org/conscrypt/
ClientSocketBenchmark.java 64 ChannelType.CHANNEL, config.messageSize(), config.protocol().getProtocols(),
ServerSocketBenchmark.java 91 ChannelType.CHANNEL, server.port(), getProtocols(), ciphers(config));
  /external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/
ChannelType.java 84 CHANNEL {
105 SocketChannel channel; local
107 channel = serverChannel.accept();
108 } while (channel == null);
110 Socket wrapped = channel.socket();
  /external/conscrypt/testing/src/main/java/org/conscrypt/
ChannelType.java 82 CHANNEL {
103 SocketChannel channel; local
105 channel = serverChannel.accept();
106 } while (channel == null);
108 Socket wrapped = channel.socket();
  /external/mesa3d/src/mesa/swrast/
s_tritemp.h 103 #define CLAMP_INTERPOLANT(CHANNEL, CHANNELSTEP, LEN) \
105 GLfixed endVal = span.CHANNEL + (LEN) * span.CHANNELSTEP; \
107 span.CHANNEL -= endVal; \
109 if (span.CHANNEL < 0) { \
110 span.CHANNEL = 0; \
    [all...]
  /external/curl/tests/python_dependencies/impacket/
smb3.py 96 CHANNEL = {
684 # If this authentication is for establishing an alternative channel for an existing Session, as specified
687 # channel being established.
    [all...]

Completed in 832 milliseconds