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

  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketOpenDirectTCPIPChannel.java 17 int channelID;
26 public PacketOpenDirectTCPIPChannel(int channelID, int initialWindowSize, int maxPacketSize,
30 this.channelID = channelID;
47 tw.writeUINT32(channelID);
PacketOpenSessionChannel.java 19 int channelID;
23 public PacketOpenSessionChannel(int channelID, int initialWindowSize,
26 this.channelID = channelID;
44 channelID = tr.readUINT32();
59 tw.writeUINT32(channelID);
  /frameworks/av/include/media/
SoundPool.h 96 void set(const sp<Sample>& sample, int channelID, float leftVolume,
99 int channelID() { return mChannelID; }
125 void play(const sp<Sample>& sample, int channelID, float leftVolume, float rightVolume,
142 int nextChannelID() { return mNextEvent.channelID(); }
174 void pause(int channelID);
176 void resume(int channelID);
178 void stop(int channelID);
179 void setVolume(int channelID, float leftVolume, float rightVolume);
180 void setPriority(int channelID, int priority);
181 void setLoop(int channelID, int loop)
    [all...]
  /frameworks/base/media/jni/soundpool/
android_media_SoundPool.cpp 87 android_media_SoundPool_pause(JNIEnv *env, jobject thiz, jint channelID)
92 ap->pause(channelID);
96 android_media_SoundPool_resume(JNIEnv *env, jobject thiz, jint channelID)
101 ap->resume(channelID);
123 android_media_SoundPool_stop(JNIEnv *env, jobject thiz, jint channelID)
128 ap->stop(channelID);
132 android_media_SoundPool_setVolume(JNIEnv *env, jobject thiz, jint channelID,
138 ap->setVolume(channelID, leftVolume, rightVolume);
142 android_media_SoundPool_setPriority(JNIEnv *env, jobject thiz, jint channelID,
148 ap->setPriority(channelID, priority)
    [all...]
  /frameworks/av/media/libmedia/
SoundPool.cpp 186 SoundChannel* SoundPool::findChannel(int channelID)
189 if (mChannelPool[i].channelID() == channelID) {
196 SoundChannel* SoundPool::findNextChannel(int channelID)
199 if (mChannelPool[i].nextChannelID() == channelID) {
248 int channelID;
273 channelID = ++mNextChannelID;
276 channel->play(sample, channelID, leftVolume, rightVolume, priority, loop, rate);
277 return channelID;
320 void SoundPool::pause(int channelID)
    [all...]

Completed in 123 milliseconds