Searched refs:caller (Results 51 - 52 of 52) sorted by relevance

123

/frameworks/base/services/audioflinger/
H A DAudioFlinger.cpp4692 // Note that status is ignored by the caller for output device
5183 int caller = IPCThreadState::self()->getCallingPid(); local
5184 LOGV("acquiring %d from %d", audioSession, caller);
5188 if (ref->sessionid == audioSession && ref->pid == caller) {
5196 ref->pid = caller;
5205 int caller = IPCThreadState::self()->getCallingPid(); local
5206 LOGV("releasing %d from %d", audioSession, caller);
5210 if (ref->sessionid == audioSession && ref->pid == caller) {
5221 LOGW("session id %d not found for pid %d", audioSession, caller);
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java2281 public List<ResolveInfo> queryIntentActivityOptions(ComponentName caller, argument
2416 // If the caller didn't request filter information, drop it now
2423 // Filter out the caller activity if so requested.
2424 if (caller != null) {
2428 if (caller.getPackageName().equals(ainfo.applicationInfo.packageName)
2429 && caller.getClassName().equals(ainfo.name)) {
2436 // If the caller didn't request filter information,
2992 * @throws SecurityException if the caller is not system or root
4766 // the caller may not have been able to delete all of this
5115 // not signed with the same cert as the caller
[all...]

Completed in 94 milliseconds

123