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

1 2 34 5 6 7 8 91011>>

  /bionic/libthread_db/
libthread_db.c 88 pc = (void *)ptrace(PTRACE_PEEKUSR, handle->tid, (void *)48 /* eip */, NULL);
98 gEventMsgHandle.pid = ptrace(PTRACE_PEEKUSR, handle->tid, (void *)4 /* ecx */, NULL);
99 gEventMsgHandle.tid = gEventMsgHandle.pid;
103 pc = (void *)ptrace(PTRACE_PEEKUSR, handle->tid, (void *)60 /* r15/pc */, NULL);
108 gEventMsgHandle.pid = ptrace(PTRACE_PEEKUSR, handle->tid, (void *)0 /* r0 */, NULL);
109 gEventMsgHandle.tid = gEventMsgHandle.pid;
113 pc = (void *)ptrace(PTRACE_PEEKUSR, handle->tid, (void *)(64*4) /* pc */, NULL);
117 gEventMsgHandle.pid = ptrace(PTRACE_PEEKUSR, handle->tid, (void *)(4*4) /* a0 */, NULL);
118 gEventMsgHandle.tid = gEventMsgHandle.pid;
155 th->tid = lwpid
    [all...]
  /external/bluetooth/bluedroid/utils/src/
bt_utils.c 119 int tid = gettid(); local
126 // set_sched_policy does not support tid == 0
127 rc = set_sched_policy(tid, SP_FOREGROUND);
132 ALOGW("failed to change sched policy, tid %d, err: %d", tid, errno);
135 if (setpriority(PRIO_PROCESS, tid, ANDROID_PRIORITY_AUDIO) < 0) {
136 ALOGW("failed to change priority tid: %d to %d", tid, ANDROID_PRIORITY_AUDIO);
  /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...]
  /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"

Completed in 732 milliseconds

1 2 34 5 6 7 8 91011>>