HomeSort by relevance Sort by last modified time
    Searched refs:tid (Results 1 - 25 of 1361) 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 56 ThreadId tid; local
62 for (tid = 1; tid < VG_N_THREADS; tid++) {
64 ANNOTATE_BENIGN_RACE_SIZED(&VG_(threads)[tid].status,
65 sizeof(VG_(threads)[tid].status), ""));
67 ANNOTATE_BENIGN_RACE_SIZED(&VG_(threads)[tid].os_state.exitcode,
68 sizeof(VG_(threads)[tid].os_state.exitcode),
97 ThreadState *VG_(get_ThreadState)(ThreadId tid)
99 vg_assert(tid >= 0 && tid < VG_N_THREADS)
140 ThreadId tid; local
154 ThreadId tid; local
167 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 36 pid_t tid = self->tid; local
37 if (__predict_true(tid != -1)) {
38 return tid;
40 self->tid = syscall(__NR_gettid);
41 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_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;
pthread_setschedparam.cpp 37 pid_t tid = pthread_gettid_np(t); local
38 if (tid == -1) return ESRCH;
40 return (sched_setscheduler(tid, policy, param) == -1) ? errno : 0;
  /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;
  /external/ltp/lib/newlib_tests/
test01.c 33 .tid = "test01",
test03.c 31 .tid = "test02",
test10.c 30 .tid = "test10",
test12.c 29 .tid = "test12",
  /frameworks/base/core/java/android/os/
ISchedulingPolicyService.aidl 28 * Move thread tid into appropriate cgroup and assign it priority prio.
29 * The thread group leader of tid must be pid.
32 int requestPriority(int pid, int tid, int prio, boolean isForApp);
  /system/core/libbacktrace/
thread_utils.c 25 int tgkill(int tgid, int tid, int sig) {
26 return syscall(__NR_tgkill, tgid, tid, sig);
  /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...]

Completed in 341 milliseconds

1 2 3 4 5 6 7 8 91011>>