/external/strace/linux/microblaze/ |
H A D | get_scno.c | 1 if (upeek(tcp->pid, 0, &scno) < 0)
|
H A D | get_syscall_result.c | 1 if (upeek(tcp->pid, 3 * 4, µblaze_r3) < 0)
|
/external/ltrace/testsuite/ltrace.minor/ |
H A D | trace-fork.c | 20 pid_t pid; local 21 pid = fork (); 23 if (pid == -1) 25 else if (pid == 0) 29 printf("My child pid is %d\n",pid);
|
/external/strace/linux/alpha/ |
H A D | get_syscall_result.c | 1 if (upeek(tcp->pid, REG_A3, &alpha_a3) < 0) 3 if (upeek(tcp->pid, REG_R0, &alpha_r0) < 0)
|
/external/strace/linux/bfin/ |
H A D | get_scno.c | 1 if (upeek(tcp->pid, PT_ORIG_P0, &scno))
|
H A D | get_syscall_result.c | 1 if (upeek(tcp->pid, PT_R0, &bfin_r0) < 0)
|
/external/strace/linux/crisv10/ |
H A D | get_scno.c | 1 if (upeek(tcp->pid, 4*PT_R9, &scno) < 0)
|
H A D | get_syscall_result.c | 1 if (upeek(tcp->pid, 4*PT_R10, &cris_r10) < 0)
|
/external/strace/linux/hppa/ |
H A D | get_scno.c | 1 if (upeek(tcp->pid, PT_GR20, &scno) < 0)
|
H A D | get_syscall_result.c | 1 if (upeek(tcp->pid, PT_GR28, &hppa_r28) < 0)
|
/external/strace/linux/m68k/ |
H A D | get_scno.c | 1 if (upeek(tcp->pid, 4*PT_ORIG_D0, &scno) < 0)
|
H A D | get_syscall_result.c | 1 if (upeek(tcp->pid, 4*PT_D0, &m68k_d0) < 0)
|
/external/strace/linux/sh/ |
H A D | get_syscall_result.c | 2 if (upeek(tcp->pid, 4*REG_REG0, (long *)&sh_r0) < 0)
|
/external/strace/linux/sh64/ |
H A D | get_syscall_result.c | 2 if (upeek(tcp->pid, REG_GENERAL(9), (long *)&sh64_r9) < 0)
|
H A D | get_scno.c | 1 if (upeek(tcp->pid, REG_SYSCALL, &scno) < 0)
|
/external/strace/linux/xtensa/ |
H A D | get_scno.c | 1 if (upeek(tcp->pid, SYSCALL_NR, &scno) < 0)
|
H A D | get_syscall_result.c | 1 if (upeek(tcp->pid, REG_A_BASE + 2, &xtensa_a2) < 0)
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
H A D | ShadowProcess.java | 9 private static Integer pid; field in class:ShadowProcess 13 if (pid != null) { 14 return pid; 19 public static void setPid(int pid) { argument 20 ShadowProcess.pid = pid; 24 ShadowProcess.pid = null;
|
/external/openssh/openbsd-compat/ |
H A D | bsd-waitpid.c | 33 waitpid(int pid, int *stat_loc, int options) argument 38 if (pid <= 0) { 39 if (pid != -1) { 43 /* wait4() wants pid=0 for indiscriminate wait. */ 44 pid = 0; 46 wait_pid = wait4(pid, &statusp, options, NULL);
|
/external/valgrind/none/tests/ |
H A D | fork.c | 9 pid_t pid; local 11 pid = fork (); 18 printf("%s", pid==0 ? "X" : "XX"); 20 if (pid != 0) 21 waitpid(pid, NULL, 0);
|
/external/google-breakpad/src/client/mac/crash_generation/ |
H A D | client_info.h | 37 explicit ClientInfo(pid_t pid) : pid_(pid) {} argument 39 pid_t pid() const { return pid_; } function in class:google_breakpad::ClientInfo
|
/external/valgrind/gdbserver_tests/ |
H A D | fork_chain.c | 8 int pid; local 12 pid = fork(); 13 if (pid == -1) { 18 if (pid == 0) { 25 while((ret = waitpid(pid, &status, 0)) != pid) {
|
/external/compiler-rt/test/lsan/TestCases/ |
H A D | fork.cc | 16 pid_t pid = fork(); local 17 assert(pid >= 0); 18 if (pid > 0) { 19 waitpid(pid, &status, 0);
|
/external/dhcpcd/dhcpcd-hooks/ |
H A D | 50-yp.conf | 6 [ -s /var/run/ypbind.pid ] && cat /var/run/ypbind.pid 12 local cf=/etc/yp.conf."$interface" prefix= x= pid= 31 pid="$(ypbind_pid)" 32 if [ -n "$pid" ]; then 33 kill -HUP "$pid" 41 local pid="$(ypbind_pid)" 42 if [ -n "$pid" ]; then 43 kill -HUP "$pid"
|
/external/lldb/tools/debugserver/source/ |
H A D | DNB.h | 46 nub_process_t DNBProcessAttach (nub_process_t pid, struct timespec *timeout, char *err_str, size_t err_len) DNB_EXPORT; 57 nub_bool_t DNBProcessResume (nub_process_t pid, const DNBThreadResumeAction *actions, size_t num_actions) DNB_EXPORT; 58 nub_bool_t DNBProcessHalt (nub_process_t pid) DNB_EXPORT; 59 nub_bool_t DNBProcessDetach (nub_process_t pid) DNB_EXPORT; 60 nub_bool_t DNBProcessSignal (nub_process_t pid, int signal) DNB_EXPORT; 61 nub_bool_t DNBProcessKill (nub_process_t pid) DNB_EXPORT; 62 nub_size_t DNBProcessMemoryRead (nub_process_t pid, nub_addr_t addr, nub_size_t size, void *buf) DNB_EXPORT; 63 nub_size_t DNBProcessMemoryWrite (nub_process_t pid, nub_addr_t addr, nub_size_t size, const void *buf) DNB_EXPORT; 64 nub_addr_t DNBProcessMemoryAllocate (nub_process_t pid, nub_size_t size, uint32_t permissions) DNB_EXPORT; 65 nub_bool_t DNBProcessMemoryDeallocate (nub_process_t pid, nub_addr_ [all...] |