HomeSort by relevance Sort by last modified time
    Searched full:new_tid (Results 1 - 4 of 4) sorted by null

  /system/core/debuggerd/
backtrace.c 138 pid_t new_tid = strtoul(de->d_name, &end, 10); local
139 if (*end || new_tid == tid) {
143 dump_thread(&log, new_tid, context, false, detach_failed, total_sleep_time_usec);
tombstone.c 459 pid_t new_tid = strtoul(de->d_name, &end, 10); local
460 if (*end || new_tid == tid) {
465 if (ptrace(PTRACE_ATTACH, new_tid, 0, 0) < 0) {
470 dump_thread_info(log, pid, new_tid, false);
471 dump_thread(context, log, new_tid, false, total_sleep_time_usec);
473 if (ptrace(PTRACE_DETACH, new_tid, 0, 0) != 0) {
474 LOG("ptrace detach from %d failed: %s\n", new_tid, strerror(errno));
  /external/qemu/memcheck/
memcheck_proc_management.c 506 memcheck_clone(uint32_t tgid, uint32_t new_tid)
513 if (new_tid == tgid) {
521 tgid, new_tid, current_tid);
527 tgid, new_tid, parent_proc->image_path, parent_proc->pid,
531 create_new_thread(parent_proc, new_tid);
533 T(PROC_CLONE, "memcheck: CLONE(tgid=%u, new_tid=%u) by %s[pid=%u] (tid=%u)\n",
534 tgid, new_tid, parent_proc->image_path, parent_proc->pid, current_tid);
memcheck.h 128 * new_tid - Thread ID that's been assigned to the new thread.
130 void memcheck_clone(uint32_t tgid, uint32_t new_tid);

Completed in 2805 milliseconds