/build/ |
envsetup.sh | 682 function pid() function 686 local PID=`adb shell ps | fgrep $1 | sed -e 's/[^ ]* *\([0-9]*\).*/\1/'` 687 echo "$PID" 689 echo "usage: pid name" 697 adb shell echo '""' '>>' /data/anr/traces.txt && adb shell chmod 776 /data/anr/traces.txt && adb shell kill -3 $(pid system_server) 722 local PID 726 PID="$3" 728 PID=`pid $3` 731 adb shell gdbserver $PORT --attach $PID [all...] |
/external/bluetooth/bluez/tools/ |
hciattach.c | 1261 pid_t pid; local 1412 if ((pid = fork())) { 1414 printf("%d\n", pid);
|
/external/dbus/dbus/ |
dbus-transport.c | [all...] |
dbus-sysdeps-unix.c | 3080 pid_t pid; local [all...] |
/external/libpcap/ |
pcap-dag.c | 74 pid_t pid; member in struct:pcap_dag_node 152 if (pcap_dags->pid == getpid()) { 176 node->pid = getpid();
|
/external/ppp/pppd/ |
tty.c | 852 * maybe_relock - our PID has changed, maybe update the lock file. 855 maybe_relock(arg, pid) 857 int pid; 860 relock(pid); [all...] |
/frameworks/base/core/java/android/app/ |
IActivityManager.java | 218 public void setProcessForeground(IBinder token, int pid, 221 public int checkPermission(String permission, int pid, int uid) 224 public int checkUriPermission(Uri uri, int pid, int uid, int mode) [all...] |
ActivityManagerNative.java | 868 int pid = data.readInt(); local 878 int pid = data.readInt(); local 889 int pid = data.readInt(); local [all...] |
/frameworks/base/services/camera/libcameraservice/ |
CameraService.cpp | 76 LOGI("CameraService started (pid=%d)", getpid()); 148 LOG1("CameraService::connect E (pid %d, id %d)", callingPid, cameraId); 157 LOGE("CameraService::connect X (pid %d) rejected (invalid cameraId %d).", 166 LOGI("Camera is disabled. connect X (pid %d) rejected", callingPid); 175 LOG1("CameraService::connect X (pid %d) (the same client)", 179 LOGW("CameraService::connect X (pid %d) rejected (existing client).", 188 LOGW("CameraService::connect X (pid %d) rejected" 216 LOG1("CameraService::removeClient E (pid %d)", callingPid); 246 LOG1("CameraService::removeClient X (pid %d)", callingPid); 259 const int pid = getCallingPid() local [all...] |
/frameworks/base/services/camera/tests/CameraServiceTest/ |
CameraServiceTest.cpp | 522 pid_t pid = fork(); local 523 if (pid == 0) { 528 ASSERT_EQ(pid, wait(&status)); 541 // Reconnect to a different client (but the same pid) -- ok.
|
/external/dhcpcd/ |
client.c | 191 pid_t pid; local 211 switch (pid = fork()) { 237 if (pid != 0) { 238 writepid(*state->pid_fd, pid); 244 if (pid == 0) { [all...] |
/external/webkit/Source/WebCore/rendering/style/ |
RenderStyle.cpp | 223 RenderStyle* RenderStyle::getCachedPseudoStyle(PseudoId pid) const 231 if (pid == VISITED_LINK) 238 if (pseudoStyle->styleType() == pid) 260 void RenderStyle::removeCachedPseudoStyle(PseudoId pid) 266 if (pseudoStyle->styleType() == pid) { [all...] |
/frameworks/base/services/java/com/android/server/ |
InputMethodManagerService.java | 180 return "SessionState{uid " + client.uid + " pid " + client.pid 200 final int pid; field in class:InputMethodManagerService.ClientState 210 + " pid " + pid + "}"; 218 pid = _pid; 219 binding = new InputBinding(null, inputContext.asBinder(), uid, pid); 390 Slog.w(TAG, "Got RemoteException sending 'screen on/off' notification to pid " 391 + mCurClient.pid + " uid " + mCurClient.uid); 678 IInputContext inputContext, int uid, int pid) { [all...] |
/external/qemu/ |
net-android.c | 1086 "pid directory=%s\n" 1462 int pid, status; local [all...] |
net.c | 958 "pid directory=%s\n" 1334 int pid, status; local [all...] |
/external/chromium/chrome/browser/task_manager/ |
task_manager_resource_providers.cc | 86 // We cache the process and pid as when a Tab/BackgroundContents is closed the 247 // If an origin PID was specified then the request originated in a plugin 467 // If an origin PID was specified then the request originated in a plugin so 672 // If an origin PID was specified, the request is from a plugin, not the 851 pid_ = child_proc.pid(); 1484 int pid = base::GetCurrentProcId(); local [all...] |
/external/chromium/third_party/libevent/test/ |
regress.c | 533 pid_t pid; local 546 if ((pid = fork()) == 0) { 570 if (waitpid(pid, &status, 0) == -1) { [all...] |
/external/dbus/bus/ |
driver.c | 1343 unsigned long pid; local [all...] |
connection.c | 555 unsigned long pid; local 571 if (dbus_connection_get_unix_process_id (connection, &pid)) 578 if (!_dbus_string_append_printf (&loginfo_buf, "pid=%ld comm=\"", pid)) 582 _dbus_command_for_pid (pid, &loginfo_buf, MAX_LOG_COMMAND_LEN, NULL); [all...] |
/external/valgrind/main/coregrind/m_syswrap/ |
syswrap-linux.c | 1008 int, pid, [all...] |
priv_syswrap-generic.h | 63 Bool ML_(do_sigkill)(Int pid, Int tgid);
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/ |
NativeHeapPanel.java | 597 Integer pid = c.getClientData().getPid(); local 598 List<NativeHeapSnapshot> importedSnapshots = mImportedSnapshotsPerPid.get(pid); 604 mImportedSnapshotsPerPid.put(pid, importedSnapshots); [all...] |
/external/blktrace/btt/ |
inlines.h | 165 iop->pip = find_process(iop->t.pid, NULL);
|
/external/qemu/hw/ |
usb-msd.c | 360 switch (p->pid) {
|
/external/v8/tools/ |
test.py | 436 def KillProcessWithID(pid): 438 os.popen('taskkill /T /F /PID %d' % pid) 440 os.kill(pid, signal.SIGTERM) 491 KillProcessWithID(process.pid) [all...] |