Home | History | Annotate | Download | only in audioflinger

Lines Matching refs:caller

1868     pid_t caller = IPCThreadState::self()->getCallingPid();
1869 ALOGV("acquiring %d from %d", audioSession, caller);
1875 if (mNotificationClients.indexOfKey(caller) < 0) {
1876 ALOGV("acquireAudioSessionId() unknown client %d for session %d", caller, audioSession);
1883 if (ref->mSessionid == audioSession && ref->mPid == caller) {
1889 mAudioSessionRefs.push(new AudioSessionRef(audioSession, caller));
1896 pid_t caller = IPCThreadState::self()->getCallingPid();
1897 ALOGV("releasing %d from %d", audioSession, caller);
1901 if (ref->mSessionid == audioSession && ref->mPid == caller) {
1912 // If the caller is mediaserver it is likely that the session being released was acquired
1914 ALOGW_IF(caller != getpid_cached, "session id %d not found for pid %d", audioSession, caller);