HomeSort by relevance Sort by last modified time
    Searched refs:thr (Results 101 - 125 of 212) sorted by null

1 2 3 45 6 7 8 9

  /external/mesa3d/include/c11/
threads_posix.h 288 thrd_create(thrd_t *thr, thrd_start_t func, void *arg)
291 assert(thr != NULL);
296 if (pthread_create(thr, NULL, impl_thrd_routine, pack) != 0) {
312 thrd_detach(thrd_t thr)
314 return (pthread_detach(thr) == 0) ? thrd_success : thrd_error;
333 thrd_join(thrd_t thr, int *res)
336 if (pthread_join(thr, &code) != 0)
threads_win32.h 478 thrd_create(thrd_t *thr, thrd_start_t func, void *arg)
482 if (!thr) return thrd_error;
493 *thr = (thrd_t)handle;
536 thrd_detach(thrd_t thr)
538 CloseHandle(thr);
559 thrd_join(thrd_t thr, int *res)
562 w = WaitForSingleObject(thr, INFINITE);
566 if (!GetExitCodeThread(thr, &code)) {
567 CloseHandle(thr);
572 CloseHandle(thr);
    [all...]
  /external/valgrind/perf/
memrw.c 73 pthread_t thr; local
132 ret = pthread_create(&thr, NULL, memrw_fn, &nr_thr);
137 ret = pthread_join(thr, NULL);
  /art/test/ti-agent/
trace_helper.cc 69 jthread thr ATTRIBUTE_UNUSED,
102 jthread thr ATTRIBUTE_UNUSED,
145 jthread thr ATTRIBUTE_UNUSED,
178 jthread thr ATTRIBUTE_UNUSED,
202 jthread thr ATTRIBUTE_UNUSED,
374 jthread thr) {
419 thr))) {
427 thr))) {
435 thr))) {
443 thr))) {
    [all...]
  /art/test/993-breakpoints/src/art/
Breakpoint.java 105 Thread thr) {
106 startBreakpointWatch(methodClass, breakpointReached, false, thr);
117 Thread thr);
118 public static native void stopBreakpointWatch(Thread thr);
  /art/test/994-breakpoint-line/src/art/
Breakpoint.java 105 Thread thr) {
106 startBreakpointWatch(methodClass, breakpointReached, false, thr);
117 Thread thr);
118 public static native void stopBreakpointWatch(Thread thr);
  /art/test/995-breakpoints-throw/src/art/
Breakpoint.java 105 Thread thr) {
106 startBreakpointWatch(methodClass, breakpointReached, false, thr);
117 Thread thr);
118 public static native void stopBreakpointWatch(Thread thr);
  /art/test/996-breakpoint-obsolete/src/art/
Breakpoint.java 105 Thread thr) {
106 startBreakpointWatch(methodClass, breakpointReached, false, thr);
117 Thread thr);
118 public static native void stopBreakpointWatch(Thread thr);
  /art/test/997-single-step/src/art/
Breakpoint.java 105 Thread thr) {
106 startBreakpointWatch(methodClass, breakpointReached, false, thr);
117 Thread thr);
118 public static native void stopBreakpointWatch(Thread thr);
  /external/compiler-rt/lib/tsan/rtl/
tsan_mutex.h 87 void CheckNoLocks(ThreadState *thr);
  /prebuilts/go/darwin-x86/src/runtime/testdata/testprogcgo/
callback.go 14 static void *thr(void *arg) {
24 pthread_create(&th, &attr, thr, 0);
  /prebuilts/go/linux-x86/src/runtime/testdata/testprogcgo/
callback.go 14 static void *thr(void *arg) {
24 pthread_create(&th, &attr, thr, 0);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
AlarmService_Service.java 55 Thread thr = new Thread(null, mTask, "AlarmService_Service"); local
56 thr.start();
  /external/linux-kselftest/tools/testing/selftests/futex/functional/
futex_wait_uninitialized_heap.c 73 pthread_t thr; local
105 ret = pthread_create(&thr, NULL, wait_thread, NULL);
  /external/ltp/testcases/realtime/stress/pi-tests/
testpi-3.c 94 int strartThread(Thread * thr);
95 void stopThread(Thread * thr);
96 void joinThread(Thread * thr);
305 void stopThread(Thread * thr)
307 thr->flags += THREAD_STOP;
308 joinThread(thr);
311 void joinThread(Thread * thr)
314 if (pthread_join(thr->pthread, &ret) != 0) {
  /external/valgrind/helgrind/
hg_errors.h 54 void HG_(record_error_Race) ( Thread* thr,
67 Thr* thr_a,
81 void HG_(record_error_Misc) ( Thread* thr, const HChar* errstr );
  /external/valgrind/none/tests/
thread-exits.c 40 static void *thr(void *v) function
72 ret = pthread_create(&t, NULL, thr, NULL);
  /external/libvpx/libvpx/vp8/common/
mfqe.c 122 unsigned int act, actd, sad, usad, vsad, sse, thr, thrsq, actrisk; local
159 /* thr = qdiff/16 + log2(act) + log4(qprev) */
160 thr = (qdiff >> 4);
161 while (actd >>= 1) thr++;
162 while (qprev >>= 2) thr++;
165 thrsq = thr * thr;
171 if (sad < thr &&
174 2 * usad < thr && 2 * vsad < thr && !actrisk
    [all...]
  /external/deqp/framework/common/
tcuRGBA.hpp 85 bool isBelowThreshold (RGBA thr) const { return (getRed() <= thr.getRed()) && (getGreen() <= thr.getGreen()) && (getBlue() <= thr.getBlue()) && (getAlpha() <= thr.getAlpha()); }
  /external/autotest/client/site_tests/security_ptraceRestrictions/src/
thread-prctl.c 121 pthread_t thr; local
146 pthread_create(&thr, NULL, thr_fn, NULL);
147 pthread_join(thr, NULL);
  /external/valgrind/helgrind/tests/
tc17_sembar.c 190 pthread_t thr[4]; local
196 res = pthread_create( &thr[i], NULL, child, (void*)(i+2) );
201 res = pthread_join( thr[i], NULL );
  /frameworks/base/services/core/java/com/android/server/
MasterClearReceiver.java 70 Thread thr = new Thread("Reboot") { local
86 // thr will be started at the end of this task.
87 new WipeDataTask(context, thr).execute();
89 thr.start();
  /libcore/ojluni/src/main/java/sun/nio/fs/
AbstractPoller.java 62 Thread thr = new Thread(thisRunnable);
63 thr.setDaemon(true);
64 thr.start();
  /cts/hostsidetests/security/securityPatch/CVE-2017-0403/
poc.c 130 void *thr(void *arg) { function
200 pthread_create(&th[i], 0, thr, (void *)i);
  /external/libevent/
evthread_pthread.c 87 pthread_t thr; member in union:__anon23331
97 r.thr = pthread_self();

Completed in 834 milliseconds

1 2 3 45 6 7 8 9