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

12 3 4 5 6 7 8 91011>>

  /external/valgrind/main/include/
pub_tool_machine.h 99 Addr VG_(get_IP) ( ThreadId tid );
100 Addr VG_(get_SP) ( ThreadId tid );
110 VG_(get_shadow_regs_area) ( ThreadId tid,
114 VG_(set_shadow_regs_area) ( ThreadId tid,
120 void VG_(set_syscall_return_shadows) ( ThreadId tid,
130 extern void VG_(apply_to_GP_regs)(void (*f)(ThreadId tid,
134 // Returns False at the end. 'tid' is the iterator and you can only
136 extern void VG_(thread_stack_reset_iter) ( /*OUT*/ThreadId* tid );
137 extern Bool VG_(thread_stack_next) ( /*MOD*/ThreadId* tid,
142 extern Addr VG_(thread_get_stack_max) ( ThreadId tid );
    [all...]
  /external/oprofile/daemon/liblegacy/
opd_proc.h 34 pid_t tid; member in struct:opd_proc
86 * @param tid tid for this process
91 void opd_handle_exec(pid_t tid, pid_t tgid);
107 * @param tid tid for this process
110 * A process with pid tid is searched on the process list,
114 struct opd_proc * opd_get_proc(pid_t tid, pid_t tgid);
118 * @param tid tid for this proces
    [all...]
opd_image.c 52 "tid %d, tgid %d ref count %u\n",
54 image->tid, image->tgid, (int)image->ref_count);
58 "kernel %d, tid %d, tgid %d ref count %u\n",
60 image->tid, image->tgid, image->ref_count);
98 * @param tid thread id
103 static size_t opd_hash_image(char const * name, pid_t tid, pid_t tgid)
107 hash += tid + tgid;
117 * @param tid thread id
130 pid_t tid, pid_t tgid)
135 verbprintf(vmisc, "Creating image: %s %s, kernel %d, tid %d,
    [all...]
opd_image.h 40 pid_t tid; member in struct:opd_image
80 * @param tid thread id
88 char const * app_name, pid_t tid, pid_t tgid);
95 * @param tid thread id
104 int kernel, pid_t tid, pid_t tgid);
  /external/valgrind/main/coregrind/m_syswrap/
priv_syswrap-main.h 41 void ML_(wqthread_continue_NORETURN)(ThreadId tid);
  /external/valgrind/main/drd/tests/
pth_cancel_locked.c 27 pthread_t tid; local
36 pthread_create(&tid, 0, &thread, 0);
43 pthread_cancel(tid);
46 pthread_join(tid, 0);
pth_barrier_thr_cr.c 27 pthread_t *tid; local
37 tid = malloc(thread_count * sizeof(*tid));
38 assert(tid);
40 res = pthread_create(&tid[i], NULL, thread, NULL);
44 res = pthread_join(tid[i], NULL);
47 free(tid);
annotate_static.cpp 38 pthread_t tid; local
40 pthread_create(&tid, 0, thread_func, NULL);
43 pthread_join(tid, NULL);
  /frameworks/av/services/audioflinger/
SchedulingPolicyService.h 22 // Request elevated priority for thread tid, whose thread group leader must be pid.
27 int requestPriority(pid_t pid, pid_t tid, int32_t prio, bool asynchronous = false);
  /external/valgrind/main/coregrind/
pub_core_signals.h 57 extern SysRes VG_(do_sys_sigaltstack) ( ThreadId tid, vki_stack_t* ss,
62 extern SysRes VG_(do_sys_sigprocmask) ( ThreadId tid, Int how,
67 ( ThreadId tid, /* OUT */ vki_sigset_t* saved_mask );
74 extern void VG_(synth_fault) (ThreadId tid);
75 extern void VG_(synth_fault_mapping)(ThreadId tid, Addr addr);
76 extern void VG_(synth_fault_perms) (ThreadId tid, Addr addr);
77 extern void VG_(synth_sigill) (ThreadId tid, Addr addr);
78 extern void VG_(synth_sigtrap) (ThreadId tid);
79 extern void VG_(synth_sigbus) (ThreadId tid);
pub_core_sigframe.h 45 /* Create a signal frame for thread 'tid'. */
47 void VG_(sigframe_create) ( ThreadId tid,
56 /* Remove a signal frame from thread 'tid's stack, and
59 void VG_(sigframe_destroy)( ThreadId tid, Bool isRT );
m_machine.c 48 Addr VG_(get_IP) ( ThreadId tid ) {
49 return INSTR_PTR( VG_(threads)[tid].arch );
51 Addr VG_(get_SP) ( ThreadId tid ) {
52 return STACK_PTR( VG_(threads)[tid].arch );
54 Addr VG_(get_FP) ( ThreadId tid ) {
55 return FRAME_PTR( VG_(threads)[tid].arch );
58 void VG_(set_IP) ( ThreadId tid, Addr ip ) {
59 INSTR_PTR( VG_(threads)[tid].arch ) = ip;
61 void VG_(set_SP) ( ThreadId tid, Addr sp ) {
62 STACK_PTR( VG_(threads)[tid].arch ) = sp
338 ThreadId tid; local
    [all...]
  /bionic/libc/bionic/
pthread_getschedparam.cpp 42 int rc = sched_getparam(thread->tid, param);
46 *policy = sched_getscheduler(thread->tid);
  /external/linux-tools-perf/util/
thread_map.h 12 struct thread_map *thread_map__new_by_tid(pid_t tid);
13 struct thread_map *thread_map__new(pid_t pid, pid_t tid);
  /external/openssh/regress/
connect.sh 4 tid="simple connect"
sftp-cmds.sh 8 tid="sftp commands"
46 verbose "$tid: lls"
50 verbose "$tid: lls w/path"
54 verbose "$tid: ls"
59 verbose "$tid: shell"
64 verbose "$tid: pwd"
69 verbose "$tid: lpwd"
74 verbose "$tid: quit"
79 verbose "$tid: help"
85 verbose "$tid: get
    [all...]
  /system/core/debuggerd/
machine.h 28 void dump_memory_and_code(const ptrace_context_t* context, log_t* log, pid_t tid, bool at_fault);
29 void dump_registers(const ptrace_context_t* context, log_t* log, pid_t tid, bool at_fault);
  /system/core/include/cutils/
sched_policy.h 37 /* Assign thread tid to the cgroup associated with the specified policy.
40 * On platforms which support gettid(), zero tid means current thread.
43 extern int set_sched_policy(int tid, SchedPolicy policy);
45 /* Return the policy associated with the cgroup of thread tid via policy pointer.
46 * On platforms which support gettid(), zero tid means current thread.
49 extern int get_sched_policy(int tid, SchedPolicy *policy);
  /external/compiler-rt/lib/lsan/
lsan_thread.h 24 explicit ThreadContext(int tid);
41 void ThreadStart(u32 tid, uptr os_id);
43 u32 ThreadCreate(u32 tid, uptr uid, bool detached);
44 void ThreadJoin(u32 tid);
48 void SetCurrentThread(u32 tid);
  /external/valgrind/main/drd/
drd_malloc_wrappers.c 70 static void* new_block(ThreadId tid, SizeT size, SizeT align, Bool is_zeroed)
80 DRD_(malloclike_block)(tid, (Addr)p, size);
89 void DRD_(malloclike_block)(const ThreadId tid, const Addr p, const SizeT size)
105 mc->where = VG_(record_ExeContext)(tid, 0);
109 static void handle_free(ThreadId tid, void* p)
114 success = DRD_(freelike_block)(tid, (Addr)p, True);
122 Bool DRD_(freelike_block)(const ThreadId tid, const Addr p, const Bool dealloc)
146 static void* drd_malloc(ThreadId tid, SizeT n)
148 return new_block(tid, n, VG_(clo_alignment), /*is_zeroed*/False);
152 static void* drd_memalign(ThreadId tid, SizeT align, SizeT n
    [all...]
drd_hb.h 45 void DRD_(hb_happens_after)(const DrdThreadId tid, const Addr hb);
46 void DRD_(hb_happens_before)(const DrdThreadId tid, const Addr hb);
47 void DRD_(hb_happens_done)(const DrdThreadId tid, const Addr hb);
  /external/chromium_org/tools/grit/grit/format/
rc_header.py 57 for tid in item.GetTextualIds():
58 if tid in tids and tid not in seen:
59 seen.add(tid)
60 yield '#define %s %d\n' % (tid, tids[tid])
67 for tid in item.GetTextualIds():
68 if tid in tids and tid not in seen:
69 seen.add(tid)
    [all...]
  /external/valgrind/main/coregrind/m_scheduler/
scheduler.c 123 static void do_client_request ( ThreadId tid );
124 static void scheduler_sanity ( ThreadId tid );
125 static void mostly_clear_thread_record ( ThreadId tid );
174 void print_sched_event ( ThreadId tid, Char* what )
176 VG_(message)(Vg_DebugMsg, " SCHED[%d]: %s\n", tid, what );
253 void VG_(acquire_BigLock)(ThreadId tid, HChar* who)
262 print_sched_event(tid, buf);
271 tst = VG_(get_ThreadState)(tid);
278 VG_(printf)("tid %d found %d running\n", tid, VG_(running_tid))
430 ThreadId tid = VG_(running_tid); local
543 ThreadId tid; local
1542 ThreadId tid; local
1990 ThreadId tid; local
    [all...]
  /external/compiler-rt/lib/lsan/lit_tests/TestCases/
fork_threaded.cc 20 pthread_t tid; local
22 res = pthread_create(&tid, 0, exit_thread_func, 0);
24 pthread_join(tid, 0);
  /external/valgrind/main/helgrind/tests/
free_is_write.c 21 pthread_t tid; local
32 pthread_create(&tid, NULL, thread_func, NULL);
39 pthread_join(tid, NULL);

Completed in 1071 milliseconds

12 3 4 5 6 7 8 91011>>