• Home
  • Raw
  • Download

Lines Matching refs:mHandle

50     mHandle(handle)  in ALSAStreamOps()
58 if((!strcmp(mHandle->useCase, SND_USE_CASE_VERB_IP_VOICECALL)) || in ~ALSAStreamOps()
59 (!strcmp(mHandle->useCase, SND_USE_CASE_MOD_PLAY_VOIP))) { in ~ALSAStreamOps()
74 if (mHandle == &(*it)) { in ~ALSAStreamOps()
101 if (mHandle->channels != popCount(*channels)) in set()
105 if (mHandle->devices & AudioSystem::DEVICE_OUT_ALL) { in set()
106 switch(mHandle->channels) { in set()
109 *channels |= audio_channel_out_mask_from_count(mHandle->channels); in set()
125 switch(mHandle->channels) { in set()
145 if (mHandle->sampleRate != *rate) in set()
148 *rate = mHandle->sampleRate; in set()
151 snd_pcm_format_t iformat = mHandle->format; in set()
180 if (mHandle->format != iformat) in set()
262 …if((!strncmp(mHandle->useCase, SND_USE_CASE_VERB_IP_VOICECALL, strlen(SND_USE_CASE_VERB_IP_VOICECA… in getParameters()
263 … (!strncmp(mHandle->useCase, SND_USE_CASE_MOD_PLAY_VOIP, strlen(SND_USE_CASE_MOD_PLAY_VOIP)))) in getParameters()
307 return mHandle->sampleRate; in sampleRate()
315 ALOGV("bufferSize() returns %d", mHandle->bufferSize); in bufferSize()
316 return mHandle->bufferSize; in bufferSize()
323 snd_pcm_format_t ALSAFormat = mHandle->format; in format()
337 audioSystemFormat = mHandle->format; in format()
355 unsigned int count = mHandle->channels; in channels()
401 …if((!strncmp(mHandle->useCase, SND_USE_CASE_VERB_IP_VOICECALL, strlen(SND_USE_CASE_VERB_IP_VOICECA… in close()
402 … (!strncmp(mHandle->useCase, SND_USE_CASE_MOD_PLAY_VOIP, strlen(SND_USE_CASE_MOD_PLAY_VOIP)))) { in close()
406 mParent->mALSADevice->close(mHandle); in close()
422 return mParent->mALSADevice->open(mHandle); in open()