HomeSort by relevance Sort by last modified time
    Searched refs:tid (Results 1 - 25 of 1214) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/qcom/gps/msm8998/utils/platform_lib_abstractions/loc_stub/src/
loc_stub_sched_policy.cpp 47 int set_sched_policy(int tid, SchedPolicy policy)
  /external/valgrind/coregrind/
m_threadstate.c 58 ThreadId tid; local
64 for (tid = 1; tid < VG_N_THREADS; tid++) {
66 ANNOTATE_BENIGN_RACE_SIZED(&VG_(threads)[tid].status,
67 sizeof(VG_(threads)[tid].status), ""));
69 ANNOTATE_BENIGN_RACE_SIZED(&VG_(threads)[tid].os_state.exitcode,
70 sizeof(VG_(threads)[tid].os_state.exitcode),
100 ThreadState *VG_(get_ThreadState)(ThreadId tid)
102 vg_assert(tid >= 0 && tid < VG_N_THREADS)
143 ThreadId tid; local
157 ThreadId tid; local
170 ThreadId tid; local
    [all...]
pub_core_replacemalloc.h 44 void* (*tl_malloc) (ThreadId tid, SizeT n);
45 void* (*tl___builtin_new) (ThreadId tid, SizeT n);
46 void* (*tl___builtin_vec_new) (ThreadId tid, SizeT n);
47 void* (*tl_memalign) (ThreadId tid, SizeT align, SizeT n);
48 void* (*tl_calloc) (ThreadId tid, SizeT nmemb, SizeT n);
49 void (*tl_free) (ThreadId tid, void* p);
50 void (*tl___builtin_delete) (ThreadId tid, void* p);
51 void (*tl___builtin_vec_delete)(ThreadId tid, void* p);
52 void* (*tl_realloc) (ThreadId tid, void* p, SizeT size);
53 SizeT (*tl_malloc_usable_size) (ThreadId tid, void* payload)
    [all...]
pub_core_coredump.h 41 extern void VG_(make_coredump) ( ThreadId tid, const vki_siginfo_t *si,
pub_core_signals.h 58 extern SysRes VG_(do_sys_sigaltstack) ( ThreadId tid, vki_stack_t* ss,
63 extern SysRes VG_(do_sys_sigprocmask) ( ThreadId tid, Int how,
68 ( ThreadId tid, /* OUT */ vki_sigset_t* saved_mask );
75 extern void VG_(synth_fault) (ThreadId tid);
76 extern void VG_(synth_fault_mapping)(ThreadId tid, Addr addr);
77 extern void VG_(synth_fault_perms) (ThreadId tid, Addr addr);
78 extern void VG_(synth_sigill) (ThreadId tid, Addr addr);
79 extern void VG_(synth_sigtrap) (ThreadId tid);
80 extern void VG_(synth_sigbus) (ThreadId tid);
81 extern void VG_(synth_sigfpe) (ThreadId tid, UInt code)
    [all...]
  /bionic/libc/bionic/
gettid.cpp 37 pid_t tid = self->tid; local
38 if (__predict_true(tid != -1)) {
39 return tid;
41 self->tid = syscall(__NR_gettid);
42 return self->tid;
pthread_getschedparam.cpp 37 pid_t tid = pthread_gettid_np(t); local
38 if (tid == -1) return ESRCH;
40 if (sched_getparam(tid, param) == -1) return errno;
41 *policy = sched_getscheduler(tid);
pthread_setschedparam.cpp 38 pid_t tid = pthread_gettid_np(t); local
39 if (tid == -1) return ESRCH;
41 return (sched_setscheduler(tid, policy, param) == -1) ? errno : 0;
47 pid_t tid = pthread_gettid_np(t); local
48 if (tid == -1) return ESRCH;
51 return (sched_setparam(tid, &param) == -1) ? errno : 0;
pthread_getcpuclockid.cpp 34 pid_t tid = pthread_gettid_np(t); local
35 if (tid == -1) return ESRCH;
37 // The tid is stored in the top bits, but negated.
38 clockid_t result = ~static_cast<clockid_t>(tid) << 3;
pthread_kill.cpp 38 pid_t tid = pthread_gettid_np(t); local
39 if (tid == -1) return ESRCH;
41 return (tgkill(getpid(), tid, sig) == -1) ? errno : 0;
  /hardware/qcom/gps/msm8909w_3100/utils/platform_lib_abstractions/loc_pla/src/
platform_lib_sched_policy.cpp 37 int platform_lib_abstraction_set_sched_policy(int tid, PLASchedPolicy policy)
39 return set_sched_policy(tid, (SchedPolicy)policy);
  /hardware/qcom/gps/msm8998/utils/platform_lib_abstractions/loc_pla/src/
platform_lib_sched_policy.cpp 37 int platform_lib_abstraction_set_sched_policy(int tid, PLASchedPolicy policy)
39 return set_sched_policy(tid, (SchedPolicy)policy);
  /development/tools/bugreport/src/com/android/bugreport/bugreport/
ThreadInfo.java 31 public int tid; field in class:ThreadInfo
41 public ThreadInfo(ProcessInfo pi, int tid, String name) {
43 this.tid = tid;
  /device/google/cuttlefish_common/common/vsoc/lib/
compat.cpp 26 thread_local uint32_t tid = syscall(SYS_gettid); local
27 return tid;
  /system/core/libbacktrace/
thread_utils.c 25 int tgkill(int tgid, int tid, int sig) {
26 return syscall(__NR_tgkill, tgid, tid, sig);
  /system/core/logd/
LogBufferInterface.cpp 27 pid_t LogBufferInterface::tidToPid(pid_t tid) {
28 return android::tidToPid(tid);
  /external/valgrind/coregrind/m_coredump/
coredump-macho.c 38 void VG_(make_coredump)(ThreadId tid, const vki_siginfo_t *si, ULong max_size)
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_delete/speculative/
5-1.c 22 timer_t tid; local
24 tid = (timer_t) & tval;
26 if (timer_delete(tid) == -1) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_getoverrun/speculative/
6-1.c 22 timer_t tid; local
24 tid = (timer_t) & tval;
26 if (timer_getoverrun(tid) == -1) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_gettime/speculative/
6-1.c 22 timer_t tid; local
25 tid = (timer_t) & tval;
26 if (timer_gettime(tid, &its) == -1) {
  /external/valgrind/drd/tests/
annotate_hb_race.c 31 pthread_t tid[2]; local
35 pthread_create(&tid[0], 0, thread_func, &result[0]);
36 pthread_create(&tid[1], 0, thread_func, &result[1]);
42 pthread_join(tid[0], NULL);
43 pthread_join(tid[1], NULL);
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);
49 pthread_cancel(tid);
  /external/valgrind/drd/
drd_thread.h 146 DrdThreadId DRD_(VgThreadIdToDrdThreadId)(const ThreadId tid);
147 DrdThreadId DRD_(NewVgThreadIdToDrdThreadId)(const ThreadId tid);
148 DrdThreadId DRD_(PtThreadIdToDrdThreadId)(const PThreadId tid);
149 ThreadId DRD_(DrdThreadIdToVgThreadId)(const DrdThreadId tid);
154 void DRD_(thread_delete)(const DrdThreadId tid, Bool detached);
155 void DRD_(thread_finished)(const DrdThreadId tid);
156 void DRD_(drd_thread_atfork_child)(const DrdThreadId tid);
157 void DRD_(thread_pre_cancel)(const DrdThreadId tid);
158 void DRD_(thread_set_stack_startup)(const DrdThreadId tid,
160 Addr DRD_(thread_get_stack_min)(const DrdThreadId tid);
    [all...]
drd_thread.c 48 static void thread_append_segment(const DrdThreadId tid, Segment* const sg);
49 static void thread_discard_segment(const DrdThreadId tid, Segment* const sg);
51 const DrdThreadId tid);
52 static Bool thread_conflict_set_up_to_date(const DrdThreadId tid);
164 DrdThreadId DRD_(VgThreadIdToDrdThreadId)(const ThreadId tid)
168 if (tid == VG_INVALID_THREADID)
174 && DRD_(g_threadinfo)[i].vg_threadid == tid)
184 static DrdThreadId DRD_(VgThreadIdToNewDrdThreadId)(const ThreadId tid)
188 tl_assert(DRD_(VgThreadIdToDrdThreadId)(tid) == DRD_INVALID_THREADID);
198 DRD_(g_threadinfo)[i].vg_threadid = tid;
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/pmf/
pmf_helpers.h 22 typedef unsigned long long (*pmf_svc_get_ts_t)(unsigned int tid,
56 * Convenience macro to validate tid index for the given TS array.
66 unsigned int tid, \
70 PMF_VALIDATE_TID(_name, tid); \
73 __pmf_store_timestamp(base_addr, tid, ts); \
75 __pmf_dump_timestamp(tid, ts); \
78 unsigned int tid, \
82 PMF_VALIDATE_TID(_name, tid); \
85 __pmf_store_timestamp_with_cache_maint(base_addr, tid, ts);\
87 __pmf_dump_timestamp(tid, ts);
    [all...]

Completed in 1586 milliseconds

1 2 3 4 5 6 7 8 91011>>