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

  /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...]
  /frameworks/av/include/media/
SoundPool.h 99 void set(const sp<Sample>& sample, int channelID, float leftVolume,
102 int channelID() { return mChannelID; }
128 void play(const sp<Sample>& sample, int channelID, float leftVolume, float rightVolume,
145 int nextChannelID() { return mNextEvent.channelID(); }
177 void pause(int channelID);
179 void resume(int channelID);
181 void stop(int channelID);
182 void setVolume(int channelID, float leftVolume, float rightVolume);
183 void setPriority(int channelID, int priority);
184 void setLoop(int channelID, int loop)
    [all...]
  /external/chromium_org/net/third_party/nss/ssl/
sslimpl.h 719 * TLS 1.2). This is recorded and used only when ChannelID is
720 * negotiated as it's used to bind the ChannelID signature on the
    [all...]

Completed in 134 milliseconds