HomeSort by relevance Sort by last modified time
    Searched refs:tid (Results 76 - 100 of 762) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/valgrind/main/coregrind/m_sigframe/
sigframe-amd64-darwin.c 91 ThreadId tid = tst->tid; local
99 addr - VG_STACK_REDZONE_SZB, size, tid );
104 /* Create a signal frame for thread 'tid'. Make a 3-arg frame
109 void VG_(sigframe_create) ( ThreadId tid,
130 tst = VG_(get_ThreadState)(tid);
161 VG_(set_SP)(tid, rsp);
162 VG_TRACK( post_reg_write, Vg_CoreSignal, tid, VG_O_STACK_PTR, sizeof(ULong));
165 VG_(set_IP)(tid, (ULong)handler);
166 VG_TRACK( post_reg_write, Vg_CoreSignal, tid, VG_O_INSTR_PTR, sizeof(ULong))
    [all...]
sigframe-x86-darwin.c 94 ThreadId tid = tst->tid; local
102 addr - VG_STACK_REDZONE_SZB, size, tid );
107 /* Create a signal frame for thread 'tid'. Make a 3-arg frame
112 void VG_(sigframe_create) ( ThreadId tid,
133 tst = VG_(get_ThreadState)(tid);
164 VG_(set_SP)(tid, esp);
165 VG_TRACK( post_reg_write, Vg_CoreSignal, tid, VG_O_STACK_PTR, sizeof(UInt));
168 VG_(set_IP)(tid, (UInt)handler);
169 VG_TRACK( post_reg_write, Vg_CoreSignal, tid, VG_O_INSTR_PTR, sizeof(UInt))
    [all...]
sigframe-ppc64-linux.c 122 VG_TRACK( post_reg_write, Vg_CoreSignal, tst->tid, \
129 VG_TRACK( post_reg_write, Vg_CoreSignal, tst->tid, \
141 ThreadId tid = tst->tid; local
155 addr, tid);
163 VG_(synth_fault_mapping)(tid, addr);
173 size + VG_STACK_REDZONE_SZB, tid );
180 void VG_(sigframe_create)( ThreadId tid,
203 tst = VG_(get_ThreadState)(tid);
223 VG_TRACK( pre_mem_write, Vg_CoreSignal, tid, "signal handler frame"
    [all...]
sigframe-ppc32-linux.c 124 VG_TRACK( post_reg_write, Vg_CoreSignal, tst->tid, \
131 VG_TRACK( post_reg_write, Vg_CoreSignal, tst->tid, \
143 VG_TRACK( pre_mem_write, Vg_CoreSignal, tst->tid, "signal frame mcontext",
165 VG_TRACK( post_mem_write, Vg_CoreSignal, tst->tid,
179 VG_TRACK(pre_mem_write, Vg_CoreSignal, tst->tid, "signal frame mcontext",
183 VG_TRACK( post_mem_write, Vg_CoreSignal, tst->tid,
457 //.. void synth_ucontext(ThreadId tid, const vki_siginfo_t *si,
460 //.. ThreadState *tst = VG_(get_ThreadState)(tid);
511 ThreadId tid = tst->tid; local
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_thread.cc 25 ThreadContext::ThreadContext(int tid)
26 : ThreadContextBase(tid)
56 if (tid == 0)
62 args->thr->clock.set(args->thr->tid, args->thr->fast_state.epoch());
77 FlushUnneededShadowMemory(GetThreadTrace(tid), TraceSize() * sizeof(Event));
78 //!!! FlushUnneededShadowMemory(GetThreadTraceHeader(tid), sizeof(Trace));
96 new(thr) ThreadState(CTX(), tid, unique_id,
111 thr->clock.set(tid, epoch0);
115 Trace *thr_trace = ThreadTrace(thr->tid);
121 tid, (uptr)epoch0, args->stk_addr, args->stk_size
207 int tid = ctx->thread_registry->CreateThread(uid, detached, thr->tid, &args); local
    [all...]
  /bionic/libc/bionic/
pthread-rwlocks.c 156 static __inline__ int read_precondition(pthread_rwlock_t* rwlock, int tid)
166 if (rwlock->writerThreadId == 0 || rwlock->writerThreadId == tid)
174 static __inline__ int write_precondition(pthread_rwlock_t* rwlock, int tid)
181 if (rwlock->writerThreadId == tid)
212 if (__predict_false(!read_precondition(rwlock, __get_thread()->tid)))
229 int tid = __get_thread()->tid; local
230 if (__predict_false(!read_precondition(rwlock, tid))) {
234 } while (ret == 0 && !read_precondition(rwlock, tid));
259 int tid = __get_thread()->tid local
278 int tid = __get_thread()->tid; local
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
mutex_w32.c 83 static int winMutexNotheld2(sqlite3_mutex *p, DWORD tid){
84 return p->nRef==0 || p->owner!=tid;
87 DWORD tid = GetCurrentThreadId(); local
88 return winMutexNotheld2(p, tid);
242 DWORD tid = GetCurrentThreadId(); local
243 assert( p->id==SQLITE_MUTEX_RECURSIVE || winMutexNotheld2(p, tid) );
248 p->owner = tid;
257 DWORD tid = GetCurrentThreadId(); local
260 assert( p->id==SQLITE_MUTEX_RECURSIVE || winMutexNotheld2(p, tid) );
274 p->owner = tid;
297 DWORD tid = GetCurrentThreadId(); local
    [all...]
  /external/chromium_org/tools/traceline/traceline/scripts/
crit_sec.py 42 tid = tid_stack.pop()
43 if tid['thread'] != e['thread']:
44 raise repr(tid) + '--' + repr(e)
scstats.py 17 tid = e['thread']
21 delta, ms, tid, syscall, syscalls.get(syscall, 'unknown'))
  /external/compiler-rt/lib/lsan/
lsan_thread.cc 29 static ThreadContextBase *CreateThreadContext(u32 tid) {
31 return new(mem) ThreadContext(tid);
47 void SetCurrentThread(u32 tid) {
48 current_thread_tid = tid;
51 ThreadContext::ThreadContext(int tid)
52 : ThreadContextBase(tid),
85 void ThreadStart(u32 tid, uptr os_id) {
89 GetThreadStackAndTls(tid == 0, &args.stack_begin, &stack_size,
94 thread_registry->StartThread(tid, os_id, &args);
121 void ThreadJoin(u32 tid) {
    [all...]
  /external/valgrind/main/coregrind/
pub_core_libcproc.h 83 extern void VG_(do_atfork_pre) ( ThreadId tid );
84 extern void VG_(do_atfork_parent) ( ThreadId tid );
85 extern void VG_(do_atfork_child) ( ThreadId tid );
  /external/valgrind/main/drd/
drd_semaphore.h 49 void DRD_(semaphore_post_wait)(const DrdThreadId tid, const Addr semaphore,
51 void DRD_(semaphore_pre_post)(const DrdThreadId tid, const Addr semaphore);
52 void DRD_(semaphore_post_post)(const DrdThreadId tid, const Addr semaphore,
drd_barrier.h 45 void DRD_(barrier_pre_wait)(const DrdThreadId tid, const Addr barrier,
47 void DRD_(barrier_post_wait)(const DrdThreadId tid, const Addr barrier,
drd_hb.c 41 UWord tid; // A DrdThreadId declared as UWord because member in struct:hb_thread_info
70 const DrdThreadId tid)
72 p->tid = tid;
120 .tid = DRD_(thread_get_running_tid)(),
157 void DRD_(hb_happens_before)(const DrdThreadId tid, Addr const hb)
161 const UWord word_tid = tid;
178 DRD_(hb_thread_initialize)(q, tid);
187 DRD_(thread_get_latest_segment)(&q->sg, tid);
192 void DRD_(hb_happens_after)(const DrdThreadId tid, const Addr hb
    [all...]
drd_malloc_wrappers.h 39 void DRD_(malloclike_block)(const ThreadId tid, const Addr p, const SizeT size);
40 Bool DRD_(freelike_block)(const ThreadId tid, const Addr p, const Bool dealloc);
  /external/valgrind/main/drd/tests/
annotate_ignore_rw.c 29 pthread_t tid; local
43 pthread_create(&tid, 0, thread_func, 0);
63 pthread_join(tid, 0);
annotate_ignore_write.c 29 pthread_t tid; local
43 pthread_create(&tid, 0, thread_func, 0);
64 pthread_join(tid, 0);
pth_spinlock.c 38 pthread_t tid[n_threads]; local
46 pthread_create(&tid[i], 0, thread_func, 0);
48 pthread_join(tid[i], 0);
thread_name.c 46 pthread_t tid[NUM_THREADS]; local
52 pthread_create(&tid[i], 0, thread_func, (void*)(ptrdiff_t)i);
55 pthread_join(tid[i], 0);
  /system/core/debuggerd/
backtrace.c 65 static void dump_thread(log_t* log, pid_t tid, ptrace_context_t* context, bool attached,
72 snprintf(path, sizeof(path), "/proc/%d/comm", tid);
85 threadname ? threadname : "<unknown>", tid);
87 if (!attached && ptrace(PTRACE_ATTACH, tid, 0, 0) < 0) {
92 wait_for_stop(tid, total_sleep_time_usec);
95 ssize_t frames = unwind_backtrace_ptrace(tid, context, backtrace, 0, STACK_DEPTH);
110 if (!attached && ptrace(PTRACE_DETACH, tid, 0, 0) != 0) {
111 LOG("ptrace detach from %d failed: %s\n", tid, strerror(errno));
116 void dump_backtrace(int fd, int amfd, pid_t pid, pid_t tid, bool* detach_failed,
123 ptrace_context_t* context = load_ptrace_context(tid);
    [all...]
  /external/openssh/regress/
broken-pipe.sh 4 tid="broken pipe test"
keyscan.sh 4 tid="keyscan"
proxy-connect.sh 4 tid="proxy connect"
try-ciphers.sh 4 tid="try ciphers"
17 verbose "test $tid: proto 2 cipher $c mac $m"
28 verbose "test $tid: proto 1 cipher $c"
44 verbose "test $tid: proto 2 cipher $c mac $m"
  /external/valgrind/main/gdbserver_tests/
nlcontrolc.stdoutB.exp 7 4 Thread .... (tid 4 VgTs_WaitSys) 0x........ in syscall ...
8 3 Thread .... (tid 3 VgTs_WaitSys) 0x........ in syscall ...
9 2 Thread .... (tid 2 VgTs_WaitSys) 0x........ in syscall ...
10 * 1 Thread .... (tid 1 VgTs_WaitSys) 0x........ in syscall ...

Completed in 1171 milliseconds

1 2 34 5 6 7 8 91011>>