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

  /external/oprofile/libop/
op_interface.h 37 u32 tgid; /**< always equal to pid for kernel < 2.4.0 */ member in struct:op_sample
69 unsigned int tgid; member in struct:op_note
op_mangle.h 46 pid_t tgid; member in struct:mangle_values
op_mangle.c 62 /* provision for tgid, tid, unit_mask, cpu and some {root}, {dep},
86 sprintf(mangled + strlen(mangled), "%d.", values->tgid);
  /external/oprofile/daemon/
opd_anon.c 5 * Our caching of maps has some problems: if we get tgid reuse,
36 * anon cache, we'll tear down all the mappings for that tgid. Thus, LRU
71 static unsigned long hash_anon(pid_t tgid, cookie_t app)
73 return ((app >> DCOOKIE_SHIFT) ^ (tgid >> 2)) & (HASH_SIZE - 1);
79 unsigned long hash = hash_anon(trans->tgid, trans->app_cookie);
80 pid_t tgid = trans->tgid; local
90 if (entry->tgid == tgid && entry->app_cookie == app) {
103 printf("Cleared anon maps for tgid %u (%s).\n", tgid, name)
    [all...]
opd_anon.h 36 /** tgid of the app */
37 pid_t tgid; member in struct:anon_mapping
48 * Try to find an anonymous mapping for the given pc/tgid pair.
opd_spu.c 24 pid_t tgid; member in struct:spu_context_info
69 trans->tgid = pop_buffer_value(trans);
74 printf("SPU_CTX_SWITCH to tid %lu, tgid %lu, cookie %llx(%s)\n",
75 (unsigned long)trans->tid, (unsigned long)trans->tgid,
95 spu_context_cache[i].tgid = trans->tgid;
105 trans->tgid = spu_context_cache[i].tgid;
opd_sfile.h 47 pid_t tgid; member in struct:sfile
opd_mangling.c 61 snprintf(name, 1024, "%u.0x%llx.0x%llx", (unsigned int)anon->tgid,
99 values.tgid = sf->tgid;
opd_sfile.c 48 val ^= trans->tgid << 2;
70 val ^= trans->tgid << 2;
84 pid_t tgid, pid_t tid, unsigned int cpu)
94 if (sf->tid != tid || sf->tgid != tgid)
126 trans->anon, trans->tgid, trans->tid, trans->cpu);
134 sf2->anon, sf2->tgid, sf2->tid, sf2->cpu);
179 sf->tgid = (pid_t)-1;
198 sf->tgid = trans->tgid;
    [all...]
opd_trans.h 55 pid_t tgid; member in struct:transient
opd_trans.c 153 /* must be ESCAPE_CODE, CTX_TGID_CODE, tgid. Like this
154 * because tgid was added later in a compatible manner.
158 trans->tgid = pop_buffer_value(trans);
162 printf("CTX_SWITCH to tid %lu, tgid %lu, cookie %llx(%s)\n",
163 (unsigned long)trans->tid, (unsigned long)trans->tgid,
272 /* tgid handled differently */
309 .tgid = -1,
opd_ibs.c 183 (long)trans->tgid,
239 trans->tgid,
  /external/qemu/memcheck/
memcheck.h 124 * tgid - TODO: Clarify that!
127 void memcheck_fork(uint32_t tgid, uint32_t new_pid);
133 * tgid - TODO: Clarify that!
136 void memcheck_clone(uint32_t tgid, uint32_t new_tid);
memcheck_proc_management.c 471 memcheck_fork(uint32_t tgid, uint32_t new_pid)
476 /* tgid may match new_pid, in which case current process is the
477 * one that's being forked, otherwise tgid identifies process
479 if (new_pid == tgid) {
482 parent_proc = get_process_from_tid(tgid);
487 tgid, new_pid, current_tid);
493 tgid, new_pid, parent_proc->image_path, parent_proc->pid,
506 T(PROC_FORK, "memcheck: FORK(tgid=%u, new_pid=%u) by %s[pid=%u] (tid=%u)\n",
507 tgid, new_pid, parent_proc->image_path, parent_proc->pid, current_tid);
511 memcheck_clone(uint32_t tgid, uint32_t new_tid
    [all...]
  /external/qemu/hw/
goldfish_trace.h 68 extern void trace_fork(int tgid, int pid);
69 extern void trace_clone(int tgid, int pid);
77 extern void trace_init_name(int tgid, int pid, const char *name);
goldfish_trace.c 37 static unsigned tgid; // thread group id (really process id) variable
63 case TRACE_DEV_REG_TGID: // save the tgid for the following fork/clone
64 tgid = value;
67 printf("QEMU.trace: kernel, tgid %u\n", value);
73 trace_fork(tgid, value);
80 memcheck_fork(tgid, value);
86 trace_clone(tgid, value);
93 memcheck_clone(tgid, value);
210 trace_init_name(tgid, pid, path);
  /sdk/emulator/qtools/
read_pid.cpp 22 printf("t%lld fork tgid %d pid %d\n", event.time, event.tgid, event.pid);
25 printf("t%lld clone tgid %d pid %d\n", event.time, event.tgid, event.pid);
59 printf("t%lld kthread tgid %d pid %d %s\n",
60 event.time, event.tgid, event.pid, event.path);
trace_reader_base.h 41 int tgid; // thread group id member in struct:PidEvent
trace_reader.h 123 tgid = 0;
179 int tgid; member in class:TraceReader::ProcessState
    [all...]
trace_reader.cpp 456 event->tgid = decoder_->Decode(false);
514 event->tgid = decoder_->Decode(false);
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
auto_fs4.h 78 __u32 tgid; member in struct:autofs_v5_packet
  /external/qemu/
trace.c     [all...]
  /external/kernel-headers/original/linux/
sched.h 821 pid_t tgid; member in struct:task_struct
    [all...]

Completed in 429 milliseconds