Searched refs:test_pid (Results 1 – 4 of 4) sorted by relevance
/external/bcc/tests/python/ |
D | test_uprobes.py | 31 test_pid = os.getpid() 32 text = text.replace("PID", "%d" % test_pid) 34 b.attach_uprobe(name="c", sym="malloc_stats", fn_name="count", pid=test_pid) 35 b.attach_uretprobe(name="c", sym="malloc_stats", fn_name="count", pid=test_pid) 41 b.detach_uretprobe(name="c", sym="malloc_stats", pid=test_pid) 42 b.detach_uprobe(name="c", sym="malloc_stats", pid=test_pid)
|
/external/tensorflow/tensorflow/core/platform/ |
D | stacktrace_handler_test.cc | 38 int test_pid = fork(); in TEST() local 40 if (test_pid == 0) { in TEST() 55 kill(test_pid, SIGABRT); in TEST()
|
/external/ltp/testcases/kernel/controllers/cpuset/cpuset_memory_spread_test/ |
D | cpuset_memory_spread_testset.sh | 201 local test_pid="$5" 217 /bin/echo "$test_pid" > "$cpusetpath/tasks" 2> $CPUSET_TMP/stderr 234 /bin/kill -s SIGUSR1 $test_pid
|
/external/ltp/lib/ |
D | tst_test.c | 1009 static pid_t test_pid; variable 1023 kill(-test_pid, SIGKILL); in alarm_handler() 1042 if (test_pid > 0) { in sigint_handler() 1044 kill(-test_pid, SIGKILL); in sigint_handler() 1104 test_pid = fork(); in fork_testrun() 1105 if (test_pid < 0) in fork_testrun() 1108 if (!test_pid) { in fork_testrun() 1116 SAFE_WAITPID(test_pid, &status, 0); in fork_testrun()
|