HomeSort by relevance Sort by last modified time
    Searched refs:target_process (Results 1 - 7 of 7) sorted by null

  /system/core/debuggerd/
crash_dump.cpp 329 pid_t target_process = getppid(); local
332 std::string target_proc_path = "/proc/" + std::to_string(target_process);
339 if (getppid() != target_process) {
419 info.pid = target_process;
476 if (tgkill(target_process, tid, SIGSTOP) != 0) {
507 LOG(INFO) << "performing dump of process " << target_process << " (target tid = " << g_target_thread
551 if (thread_info[target_process].thread_name != "system_server") {
552 activity_manager_notify(target_process, signo, amfd_data);
566 target_process, target_process);
    [all...]
  /external/python/cpython3/Lib/multiprocessing/
reduction.py 71 def duplicate(handle, target_process=None, inheritable=False):
72 '''Duplicate a handle. (target_process is a handle not a pid!)'''
73 if target_process is None:
74 target_process = _winapi.GetCurrentProcess()
76 _winapi.GetCurrentProcess(), handle, target_process,
  /external/python/cpython2/Lib/multiprocessing/
forking.py 230 def duplicate(handle, target_process=None, inheritable=False):
231 if target_process is None:
232 target_process = _subprocess.GetCurrentProcess()
234 _subprocess.GetCurrentProcess(), handle, target_process,
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
forking.py 230 def duplicate(handle, target_process=None, inheritable=False):
231 if target_process is None:
232 target_process = _subprocess.GetCurrentProcess()
234 _subprocess.GetCurrentProcess(), handle, target_process,
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
forking.py 230 def duplicate(handle, target_process=None, inheritable=False):
231 if target_process is None:
232 target_process = _subprocess.GetCurrentProcess()
234 _subprocess.GetCurrentProcess(), handle, target_process,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
forking.py 230 def duplicate(handle, target_process=None, inheritable=False):
231 if target_process is None:
232 target_process = _subprocess.GetCurrentProcess()
234 _subprocess.GetCurrentProcess(), handle, target_process,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
forking.py 230 def duplicate(handle, target_process=None, inheritable=False):
231 if target_process is None:
232 target_process = _subprocess.GetCurrentProcess()
234 _subprocess.GetCurrentProcess(), handle, target_process,

Completed in 102 milliseconds