HomeSort by relevance Sort by last modified time
    Searched full:channelid (Results 1 - 25 of 39) sorted by null

1 2

  /frameworks/base/media/jni/soundpool/
SoundPool.h 91 void set(const sp<Sample>& sample, int channelID, float leftVolume,
94 int channelID() { return mChannelID; }
120 void play(const sp<Sample>& sample, int channelID, float leftVolume, float rightVolume,
137 int nextChannelID() { return mNextEvent.channelID(); }
170 void pause(int channelID);
172 void resume(int channelID);
174 void stop(int channelID);
175 void setVolume(int channelID, float leftVolume, float rightVolume);
176 void setPriority(int channelID, int priority);
177 void setLoop(int channelID, int loop)
    [all...]
SoundPool.cpp 190 SoundChannel* SoundPool::findChannel(int channelID)
193 if (mChannelPool[i].channelID() == channelID) {
200 SoundChannel* SoundPool::findNextChannel(int channelID)
203 if (mChannelPool[i].nextChannelID() == channelID) {
242 int channelID;
267 channelID = ++mNextChannelID;
270 channel->play(sample, channelID, leftVolume, rightVolume, priority, loop, rate);
271 return channelID;
326 void SoundPool::pause(int channelID)
    [all...]
android_media_SoundPool.cpp 80 android_media_SoundPool_pause(JNIEnv *env, jobject thiz, jint channelID)
85 ap->pause(channelID);
89 android_media_SoundPool_resume(JNIEnv *env, jobject thiz, jint channelID)
94 ap->resume(channelID);
116 android_media_SoundPool_stop(JNIEnv *env, jobject thiz, jint channelID)
121 ap->stop(channelID);
125 android_media_SoundPool_setVolume(JNIEnv *env, jobject thiz, jint channelID,
131 ap->setVolume(channelID, (float) leftVolume, (float) rightVolume);
135 android_media_SoundPool_setPriority(JNIEnv *env, jobject thiz, jint channelID,
141 ap->setPriority(channelID, (int) priority)
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothHealthCallback.java 60 * @param channelId The id associated with the channel. This id will be used
66 int channelId) {
69 "ChannelId:" + channelId);
BluetoothHealth.java 285 * @param channelId The channel id associated with the channel
289 BluetoothHealthAppConfiguration config, int channelId) {
293 return mService.disconnectChannel(device, config, channelId);
438 ParcelFileDescriptor fd, int channelId) {
440 channelId);
  /device/moto/shamu/camera/QCamera/HAL2/core/inc/
QCameraStream.h 138 uint32_t ChannelId,
177 uint32_t ChannelId,
200 uint32_t ChannelId,
241 uint32_t ChannelId,
250 uint32_t ChannelId,
278 uint32_t ChannelId,
287 uint32_t ChannelId,
  /cts/tests/tests/tv/src/android/media/tv/cts/
TvContractTest.java 120 long channelId = cursor.getLong(0);
122 TvContract.buildProgramsUriForChannel(channelId), null, null);
141 private static ContentValues createDummyProgramValues(long channelId) {
143 values.put(TvContract.Programs.COLUMN_CHANNEL_ID, channelId);
190 private void verifyChannel(Uri channelUri, ContentValues expectedValues, long channelId) {
196 assertEquals(channelId, cursor.getLong(cursor.getColumnIndex(TvContract.Channels._ID)));
226 long channelId = ContentUris.parseId(rowUri);
227 Uri channelUri = TvContract.buildChannelUri(channelId);
228 verifyChannel(channelUri, values, channelId);
236 verifyChannel(channelUri, values, channelId);
    [all...]
TvViewTest.java 214 long channelId = cursor.getLong(0);
215 Uri channelUri = TvContract.buildChannelUri(channelId);
381 long channelId = cursor.getLong(0);
382 Uri channelUri = TvContract.buildChannelUri(channelId);
  /device/moto/shamu/camera/QCamera/HAL/core/inc/
QCameraStream.h 106 uint32_t ChannelId,
126 uint32_t ChannelId,
165 uint32_t ChannelId,
232 uint32_t ChannelId,
258 uint32_t ChannelId,
285 uint32_t ChannelId,
  /device/moto/shamu/camera/QCamera/HAL/core/src/
QCameraHWI_Still.cpp 42 uint32_t ChannelId,
52 ChannelId,
145 uint32_t ChannelId,
155 ChannelId,
QCameraHWI_Rdi.cpp 188 uint32_t ChannelId,
198 ChannelId,
QCameraHWI_Record.cpp 49 uint32_t ChannelId,
60 ChannelId,
QCameraStream.cpp 281 uint32_t ChannelId,
291 mChannelId(ChannelId),
  /packages/providers/TvProvider/src/com/android/providers/tv/
TvProvider.java     [all...]
  /packages/providers/TvProvider/tests/src/com/android/providers/tv/
EpgDataCleanupServiceTests.java 132 long channelId = insertChannel();
135 values.put(Programs.COLUMN_CHANNEL_ID, channelId);
170 long channelId = insertChannel();
174 values.put(WatchedPrograms.COLUMN_CHANNEL_ID, channelId);
  /external/boringssl/src/ssl/test/runner/
handshake_client.go 71 channelIDSupported: c.config.ChannelID != nil,
834 if c.config.ChannelID.Curve != elliptic.P256() {
841 r, s, err := ecdsa.Sign(c.config.rand(), c.config.ChannelID, hs.finishedHash.hashForChannelID(resumeHash))
845 channelID := make([]byte, 128)
846 writeIntPadded(channelID[0:32], c.config.ChannelID.X)
847 writeIntPadded(channelID[32:64], c.config.ChannelID.Y)
848 writeIntPadded(channelID[64:96], r)
849 writeIntPadded(channelID[96:128], s
    [all...]
handshake_server.go 789 x := new(big.Int).SetBytes(encryptedExtensions.channelID[0:32])
790 y := new(big.Int).SetBytes(encryptedExtensions.channelID[32:64])
791 r := new(big.Int).SetBytes(encryptedExtensions.channelID[64:96])
792 s := new(big.Int).SetBytes(encryptedExtensions.channelID[96:128])
796 channelID := &ecdsa.PublicKey{elliptic.P256(), x, y}
801 if !ecdsa.Verify(channelID, hs.finishedHash.hashForChannelID(resumeHash), r, s) {
804 c.channelID = channelID
handshake_messages.go     [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
HealthService.java 371 BluetoothHealthAppConfiguration config, int channelId) {
374 return service.disconnectChannel(device, config, channelId);
441 BluetoothHealthAppConfiguration config, int channelId) {
443 HealthChannel chan = findChannelById(channelId);
495 int channelId, int state, FileDescriptor pfd) {
498 channelId, state, pfd);
    [all...]
  /frameworks/base/media/java/android/media/tv/
TvContract.java 115 * @param channelId The ID of the channel to point to.
117 public static final Uri buildChannelUri(long channelId) {
118 return ContentUris.withAppendedId(Channels.CONTENT_URI, channelId);
135 * @param channelId The ID of the channel whose logo is pointed to.
137 public static final Uri buildChannelLogoUri(long channelId) {
138 return buildChannelLogoUri(buildChannelUri(channelId));
221 * @param channelId The ID of the channel to return programs for.
223 public static final Uri buildProgramsUriForChannel(long channelId) {
225 .appendQueryParameter(PARAM_CHANNEL, String.valueOf(channelId)).build();
244 * @param channelId The ID of the channel to return programs for
    [all...]
  /cts/suite/cts/deviceTests/tvproviderperf/src/com/android/cts/tvproviderperf/
TvProviderPerfTest.java 231 long channelId = ContentUris.parseId(channelUri);
234 values.put(Programs.COLUMN_CHANNEL_ID, channelId);
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/
TvContractUtils.java 170 long channelId = cursor.getLong(0);
172 channelMap.put(channelId, getChannelByNumber(channelNumber, channels));
  /development/samples/BluetoothHDP/src/com/example/bluetooth/health/
BluetoothHDPService.java 239 int channelId) {
246 mChannelId = channelId;
  /device/moto/shamu/camera/QCamera/HAL2/core/src/
QCameraStream.cpp 358 uint32_t ChannelId,
369 mChannelId=ChannelId;
QCameraStream_Preview.cpp 323 uint32_t ChannelId,
330 ChannelId,
550 uint32_t ChannelId,
558 ChannelId,

Completed in 7105 milliseconds

1 2