Searched defs:getCallingPid (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/os/
H A DBinder.java64 public static final native int getCallingPid(); method in class:Binder
99 * @see #getCallingPid()
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.cpp60 static int getCallingPid() { function in namespace:android
61 return IPCThreadState::self()->getCallingPid();
136 int callingPid = getCallingPid();
222 int callingPid = getCallingPid();
304 const int pid = getCallingPid();
393 int callingPid = getCallingPid();
468 getCallingPid(),
579 "died (this pid %d)", cameraClient.get(), getCallingPid());
H A DCameraClient.cpp33 static int getCallingPid() { function in namespace:android
34 return IPCThreadState::self()->getCallingPid();
47 int callingPid = getCallingPid();
64 int callingPid = getCallingPid();
102 int callingPid = getCallingPid();
125 int callingPid = getCallingPid();
137 ALOGE("attempt to use a camera after disconnect() (pid %d)", getCallingPid());
144 int callingPid = getCallingPid();
159 int callingPid = getCallingPid();
181 int callingPid = getCallingPid();
[all...]
H A DCamera2Client.cpp36 static int getCallingPid() { function in namespace:android
37 return IPCThreadState::self()->getCallingPid();
67 int callingPid = getCallingPid();
376 int callingPid = getCallingPid();
425 if (mClientPid != 0 && getCallingPid() != mClientPid) {
428 mCameraId, getCallingPid(), mClientPid);
432 mClientPid = getCallingPid();
445 __FUNCTION__, mCameraId, getCallingPid(), mClientPid);
448 mClientPid = getCallingPid();
452 if (mClientPid != getCallingPid()) {
[all...]
/frameworks/native/libs/binder/
H A DIPCThreadState.cpp364 int IPCThreadState::getCallingPid() function in class:android::IPCThreadState

Completed in 100 milliseconds