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

12 3 4 5 6 7 8 91011>>

  /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/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...]
  /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);
  /bionic/libc/bionic/
pthread_getschedparam.cpp 42 int rc = sched_getparam(thread->tid, param);
46 *policy = sched_getscheduler(thread->tid);
pthread_getcpuclockid.cpp 40 *clockid = CLOCK_THREAD_CPUTIME_ID | (thread->tid << CLOCK_IDTYPE_BITS);
  /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/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/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/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);
  /bionic/libc/private/
bionic_pthread.h 38 extern int __pthread_settid(pthread_t thid, pid_t tid);
  /external/compiler-rt/lib/asan/
asan_thread_registry.cc 48 u32 tid = n_threads_; local
54 summary->set_tid(tid);
55 thread_summaries_[tid] = summary;
80 if (thread && thread->tid() == 0) {
154 AsanThreadSummary *AsanThreadRegistry::FindByTid(u32 tid) {
155 CHECK(tid < n_threads_);
156 CHECK(thread_summaries_[tid]);
157 return thread_summaries_[tid];
162 for (u32 tid = 0; tid < n_threads_; tid++)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
DefaultMessageLogFactory.java 17 String firstLine, String tid, String callId, long tsHeaderValue) {
19 isSender, firstLine, tid, callId, tsHeaderValue);
24 String firstLine, String tid, String callId, long timestampVal) {
26 isSender, firstLine, tid, callId, timestampVal);

Completed in 835 milliseconds

12 3 4 5 6 7 8 91011>>