HomeSort by relevance Sort by last modified time
    Searched refs:tid (Results 176 - 200 of 626) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/valgrind/main/coregrind/m_syswrap/
syswrap-amd64-linux.c 235 The parent gets the child's new tid returned from clone, but the
280 VG_(printf)("tid %d: guessed client stack range %#lx-%#lx\n",
451 do_clone(tid,
465 ML_(do_fork_clone)(tid,
514 vg_assert(VG_(is_valid_tid)(tid));
515 vg_assert(tid >= 1 && tid < VG_N_THREADS);
516 vg_assert(VG_(is_running_thread)(tid));
520 tst = VG_(get_ThreadState)(tid);
530 VG_(sigframe_destroy)(tid, True)
    [all...]
syswrap-x86-darwin.c 179 ThreadId tid = VG_(alloc_ThreadState)(); local
180 ThreadState *tst = VG_(get_ThreadState)(tid);
192 find_stack_segment(tid, tst->arch.vex.guest_ESP);
212 stack = (char *)allocstack(tst->tid);
312 record_named_port(tst->tid, kport, MACH_PORT_RIGHT_SEND, "thread-%p");
334 find_stack_segment(tst->tid, sp);
340 //VG_TRACK ( pre_thread_ll_create, ptid, tst->tid );
420 ThreadId tid = VG_(lwpid_to_vgtid)(kport); local
421 vg_assert(VG_(is_valid_tid)(tid));
424 tst = VG_(get_ThreadState)(tid);
    [all...]
  /bionic/libc/bionic/
pthread.c 168 * 31-16 tid owner thread's tid (recursive and errorcheck only)
278 * tid of the owning thread. Note that this works because the Linux
593 int mvalue, mtype, tid, shared; local
609 tid = __get_thread()->tid;
610 if ( tid == MUTEX_OWNER_FROM_BITS(mvalue) )
620 int newval = MUTEX_OWNER_TO_BITS(tid) | mtype | MUTEX_STATE_BITS_LOCKED_UNCONTENDED;
639 newval = MUTEX_OWNER_TO_BITS(tid) | mtype | MUTEX_STATE_BITS_LOCKED_CONTENDED;
687 int mvalue, mtype, tid, shared local
754 int mvalue, mtype, tid, shared; local
849 int mvalue, mtype, tid, shared; local
    [all...]
pthread_create.cpp 104 if (sched_setscheduler(thread->tid, thread->attr.sched_policy, &param) == -1) {
201 int tid = __pthread_clone(start_routine, tls, flags, arg); local
202 if (tid < 0) {
212 thread->tid = tid;
226 _thread_created_hook(thread->tid);
  /external/valgrind/main/callgrind/
threads.c 127 void CLG_(switch_thread)(ThreadId tid)
129 if (tid == CLG_(current_tid)) return;
131 CLG_DEBUG(0, ">> thread %d (was %d)\n", tid, CLG_(current_tid));
146 /* If we cumulate costs of threads, use TID 1 for all jccs/bccs */
152 CLG_(current_tid) = tid;
153 CLG_ASSERT(tid < VG_N_THREADS);
155 if (tid != VG_INVALID_THREADID) {
160 if (thread[tid] == 0) thread[tid] = new_thread();
161 t = thread[tid];
    [all...]
  /bionic/linker/
debugger.cpp 40 extern "C" int tgkill(int tgid, int tid, int sig);
57 pid_t tid; member in struct:debugger_msg_t
189 pid_t tid = gettid(); local
194 // local socket but we need to tell it the tid of the crashing thread.
195 // debuggerd will be paranoid and verify that we sent a tid
199 msg.tid = tid;
204 ret = TEMP_FAILURE_RETRY(read(s, &tid, 1));
  /external/libselinux/src/
procattr.c 25 pid_t tid; local
31 tid = gettid();
32 rc = asprintf(&path, "/proc/self/task/%d/attr/%s", tid, attr);
81 pid_t tid; local
88 tid = gettid();
89 rc = asprintf(&path, "/proc/self/task/%d/attr/%s", tid, attr);
  /external/linux-tools-perf/util/
event.h 15 u32 pid, tid; member in struct:ip_event
21 u32 pid, tid; member in struct:mmap_event
30 u32 pid, tid; member in struct:comm_event
37 u32 tid, ptid; member in struct:fork_event
52 u32 pid, tid; member in struct:read_event
73 u32 pid, tid; member in struct:perf_sample
  /external/oprofile/daemon/liblegacy/
opd_parse_proc.c 75 image = opd_get_image(cp, image_name, 0, proc->tid, proc->tgid);
101 snprintf(mapsfile + 6, 6, "%hu", proc->tid);
117 verbprintf(vmisc, "image name %s for pid %u %u\n", image_name, proc->tid, proc->tgid);
153 image_name, 0, proc->tid, proc->tgid);
165 static u32 read_tgid(u32 tid)
172 snprintf(status_file + 6, 6, "%hu", tid);
  /external/valgrind/main/coregrind/
pub_core_threadstate.h 135 ThreadId parent; // parent tid (if any)
147 void (*post_mach_trap_fn)(ThreadId tid,
284 ThreadId in this tid field, but be aware that it should
286 ThreadId tid; member in struct:__anon16973
385 extern ThreadState *VG_(get_ThreadState) ( ThreadId tid );
387 /* Check that tid is in range and denotes a non-Empty thread. */
388 extern Bool VG_(is_valid_tid) ( ThreadId tid );
391 extern Bool VG_(is_running_thread)(ThreadId tid);
394 extern Bool VG_(is_exiting)(ThreadId tid);
pub_core_machine.h 137 //Addr VG_(get_IP) ( ThreadId tid ); // in pub_tool_machine.h
138 //Addr VG_(get_SP) ( ThreadId tid ); // in pub_tool_machine.h
139 Addr VG_(get_FP) ( ThreadId tid );
141 void VG_(set_IP) ( ThreadId tid, Addr encip );
142 void VG_(set_SP) ( ThreadId tid, Addr sp );
149 ThreadId tid );
  /external/valgrind/main/drd/tests/
bar_bad_xml.stderr.exp 35 <tid>...</tid>
62 <tid>...</tid>
111 <tid>...</tid>
160 <tid>...</tid>
209 <tid>...</tid>
    [all...]
pth_barrier.c 28 pthread_t tid; member in struct:threadinfo
92 res = pthread_create(&t[i].tid, &attr, (void*(*)(void*))threadfunc, &t[i]);
104 pthread_join(t[i].tid, 0);
  /external/openssh/regress/
sftp-glob.sh 4 tid="sftp glob"
15 verbose "$tid: $errtag (skipped: $skip)"
18 verbose "$tid: $errtag"
putty-transfer.sh 4 tid="putty transfer data"
17 verbose "$tid: proto $p compression $c"
ssh-com-sftp.sh 4 tid="basic sftp put/get with ssh.com server"
52 verbose "test $tid: buffer_size $B num_requests $R"
  /bionic/libc/kernel/common/linux/
smb.h 54 __u16 tid; member in struct:smb_conn_opt
  /development/ndk/platforms/android-3/include/linux/
smb.h 48 __u16 tid; member in struct:smb_conn_opt
  /external/compiler-rt/lib/tsan/rtl/
tsan_report.cc 39 const char *thread_name(char *buf, int tid) {
40 if (tid == 0)
42 internal_snprintf(buf, kThreadBufSize, "thread T%d", tid);
101 thread_name(thrbuf, mop->tid));
115 loc->size, loc->addr, thread_name(thrbuf, loc->tid));
118 Printf(" Location is stack of %s.\n\n", thread_name(thrbuf, loc->tid));
120 Printf(" Location is TLS of %s.\n\n", thread_name(thrbuf, loc->tid));
123 loc->fd, thread_name(thrbuf, loc->tid));
144 Printf(" (tid=%zu, %s) created by %s",
226 mop->tid);
    [all...]
  /external/oprofile/libpp/
filename_spec.h 79 generic_spec<pid_t> tid; member in class:filename_spec
parse_filename.h 32 std::string tid; member in struct:parsed_filename
  /external/valgrind/main/coregrind/m_gdbserver/
valgrind_low.h 46 void (*transfer_register) (ThreadId tid, int regno, void * buf,
  /frameworks/native/cmds/dumpstate/
dumpstate.h 55 void show_wchan(int pid, int tid, const char *name);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
smb.h 49 __u16 tid; member in struct:smb_conn_opt
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
smb.h 49 __u16 tid; member in struct:smb_conn_opt

Completed in 1514 milliseconds

1 2 3 4 5 6 78 91011>>