Searched refs:total_sleep_time_usec (Results 1 – 7 of 7) sorted by relevance
/system/core/debuggerd/ |
D | utility.c | 89 int wait_for_signal(pid_t tid, int* total_sleep_time_usec) { in wait_for_signal() argument 107 if (*total_sleep_time_usec > max_total_sleep_usec) { in wait_for_signal() 115 *total_sleep_time_usec += sleep_time_usec; in wait_for_signal() 119 void wait_for_stop(pid_t tid, int* total_sleep_time_usec) { in wait_for_stop() argument 122 if (*total_sleep_time_usec > max_total_sleep_usec) { in wait_for_stop() 128 *total_sleep_time_usec += sleep_time_usec; in wait_for_stop()
|
D | backtrace.c | 66 bool* detach_failed, int* total_sleep_time_usec) { in dump_thread() argument 92 wait_for_stop(tid, total_sleep_time_usec); in dump_thread() 117 int* total_sleep_time_usec) { in dump_backtrace() argument 125 dump_thread(&log, tid, context, true, detach_failed, total_sleep_time_usec); in dump_backtrace() 143 dump_thread(&log, new_tid, context, false, detach_failed, total_sleep_time_usec); in dump_backtrace()
|
D | utility.h | 63 int wait_for_signal(pid_t tid, int* total_sleep_time_usec); 64 void wait_for_stop(pid_t tid, int* total_sleep_time_usec);
|
D | backtrace.h | 29 int* total_sleep_time_usec);
|
D | tombstone.h | 29 bool dump_sibling_threads, bool quiet, bool* detach_failed, int* total_sleep_time_usec);
|
D | debuggerd.c | 307 int total_sleep_time_usec = 0; in handle_request() local 309 int signal = wait_for_signal(request.tid, &total_sleep_time_usec); in handle_request() 320 &total_sleep_time_usec); in handle_request() 325 &total_sleep_time_usec); in handle_request() 358 &detach_failed, &total_sleep_time_usec); in handle_request()
|
D | tombstone.c | 425 int* total_sleep_time_usec) { in dump_thread() argument 426 wait_for_stop(tid, total_sleep_time_usec); in dump_thread() 438 log_t* log, pid_t pid, pid_t tid, int* total_sleep_time_usec) { in dump_sibling_thread_report() argument 471 dump_thread(context, log, new_tid, false, total_sleep_time_usec); in dump_sibling_thread_report() 666 bool dump_sibling_threads, int* total_sleep_time_usec) in dump_crash() argument 696 dump_thread(context, log, tid, true, total_sleep_time_usec); in dump_crash() 704 detach_failed = dump_sibling_thread_report(context, log, pid, tid, total_sleep_time_usec); in dump_crash() 812 int* total_sleep_time_usec) { in engrave_tombstone() argument 833 total_sleep_time_usec); in engrave_tombstone()
|