HomeSort by relevance Sort by last modified time
    Searched defs:thr (Results 76 - 100 of 152) sorted by null

1 2 34 5 6 7

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_init/
1-2.c 173 pthread_t thr; local
240 if ((ret = pthread_create(&thr, NULL, unlock_issue, NULL))) {
258 if ((ret = pthread_join(thr, &th_ret))) {
291 if ((ret = pthread_create(&thr, NULL, deadlk_issue, NULL))) {
309 if ((ret = pthread_cancel(thr))) {
316 if ((ret = pthread_join(thr, &th_ret))) {
3-2.c 178 pthread_t thr; local
233 if ((ret = pthread_create(&thr, NULL, unlock_issue, NULL))) {
251 if ((ret = pthread_join(thr, &th_ret))) {
284 if ((ret = pthread_create(&thr, NULL, deadlk_issue, NULL))) {
302 if ((ret = pthread_cancel(thr))) {
309 if ((ret = pthread_join(thr, &th_ret))) {
  /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 );
  /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);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
deringing_luma.cpp 41 int thr, blks, incr; local
94 thr = thres[blks];
97 thr, width, max_diff);
148 thr = thres[blks];
151 thr, width, max_diff);
210 thr = thres[blks];
213 thr, width, max_diff);
216 width, thr, max_diff);
  /libcore/luni/src/test/java/libcore/java/lang/
OldThrowableTest.java 26 Throwable thr = new Throwable(message, npe); local
27 assertEquals("message is incorrect.", message, thr.getMessage());
28 assertEquals("cause is incorrect.", npe, thr.getCause());
30 thr = new Throwable(null, npe);
31 assertNull("message is not null.", thr.getMessage());
32 assertEquals("cause is incorrect.", npe, thr.getCause());
34 thr = new Throwable(message, null);
35 assertEquals("message is incorrect.", message, thr.getMessage());
36 assertNull("cause is not null.", thr.getCause());
42 Throwable thr = new Throwable(npe) local
74 Throwable thr = new Throwable(message, npe); local
83 Throwable thr = new Throwable(); local
118 Throwable thr = new Throwable(npe); local
    [all...]
OldThreadGroupTest.java 192 for(MyThread thr:subThreads) {
193 thr.start();
210 for(MyThread thr:subThreads1) {
211 thr.start();
219 for(MyThread thr:subThreads) {
220 thr.interrupt();
OldThreadTest.java 408 Thread thr = new Thread(); local
409 thr.start();
411 thr.start();
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaScannerService.java 107 Thread thr = new Thread(null, this, "MediaScannerService"); local
108 thr.start();
  /art/test/1900-track-alloc/src/art/
Test1900.java 48 for (Thread thr : thrs) {
49 thr.join();
  /art/test/1917-get-stack-frame/src/art/
Test1917.java 63 private final Thread thr; field in class:Test1917.StackTraceGenerator
65 public StackTraceGenerator(Thread thr, Consumer<StackTrace.StackFrameData> con) {
66 this.thr = thr;
75 if (thr == null) {
78 return thr;
136 Thread thr = new Thread(
138 thr.start();
139 thr.join();
  /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/compiler-rt/lib/tsan/rtl/
tsan_interface_inl.h 88 ThreadState *thr = cur_thread(); local
89 thr->is_vptr_access = true;
90 MemoryWrite(thr, CALLERPC, (uptr)vptr_p, kSizeLog8);
91 thr->is_vptr_access = false;
97 ThreadState *thr = cur_thread(); local
98 thr->is_vptr_access = true;
99 MemoryRead(thr, CALLERPC, (uptr)vptr_p, kSizeLog8);
100 thr->is_vptr_access = false;
tsan_mman.cc 83 ThreadState *thr = cur_thread(); local
84 if (thr->proc())
101 ProcWire(gp->proc, thr);
106 ThreadState *thr = cur_thread(); local
107 if (thr->proc() != gp->proc)
109 ProcUnwire(gp->proc, thr);
135 static void SignalUnsafeCall(ThreadState *thr, uptr pc) {
136 if (atomic_load_relaxed(&thr->in_signal_handler) == 0 ||
140 ObtainCurrentStack(thr, pc, &stack);
146 OutputReport(thr, rep)
227 ThreadState *thr = cur_thread(); local
235 ThreadState *thr = cur_thread(); local
243 ThreadState *thr = cur_thread(); local
252 ThreadState *thr = cur_thread(); local
298 ThreadState *thr = cur_thread(); local
    [all...]
tsan_platform_linux.cc 356 ThreadState* thr = (ThreadState*)__get_tls()[TLS_SLOT_TSAN]; local
357 if (thr == nullptr) {
362 thr = reinterpret_cast<ThreadState*>(__get_tls()[TLS_SLOT_TSAN]);
363 if (thr == nullptr) {
364 thr = reinterpret_cast<ThreadState*>(MmapOrDie(sizeof(ThreadState),
366 __get_tls()[TLS_SLOT_TSAN] = thr;
380 return thr;
388 ThreadState* thr = (ThreadState*)__get_tls()[TLS_SLOT_TSAN]; local
389 if (thr != dead_thread_state) {
391 UnmapOrDie(thr, sizeof(ThreadState))
    [all...]
tsan_rtl_mutex.cc 26 void ReportDeadlock(ThreadState *thr, uptr pc, DDReport *r);
29 ThreadState *thr; member in struct:__tsan::Callback
32 Callback(ThreadState *thr, uptr pc)
33 : thr(thr)
35 DDCallback::pt = thr->proc()->dd_pt;
36 DDCallback::lt = thr->dd_lt;
39 u32 Unwind() override { return CurrentStackId(thr, pc); }
40 int UniqueTid() override { return thr->unique_id; }
43 void DDMutexInit(ThreadState *thr, uptr pc, SyncVar *s)
374 ThreadState *thr = reinterpret_cast<ThreadState*>(arg); local
417 ThreadState *thr = reinterpret_cast<ThreadState*>(arg); local
    [all...]
tsan_rtl_thread.cc 27 , thr()
49 ThreadState *thr; member in struct:__tsan::OnCreatedArgs
54 thr = 0;
58 if (!args->thr) // GCD workers don't have a parent thread.
60 args->thr->fast_state.IncrementEpoch();
62 TraceAddEvent(args->thr, args->thr->fast_state, EventTypeMop, 0);
63 ReleaseImpl(args->thr, 0, &sync);
64 creation_stack_id = CurrentStackId(args->thr, args->pc);
66 StatInc(args->thr, StatThreadMaxTid)
81 ThreadState *thr; member in struct:__tsan::OnStartedArgs
    [all...]
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util_posix.cc 96 pthread_t thr; local
97 __interceptor_pthread_create(&thr, 0, BeforeInitThread, 0);
98 __interceptor_pthread_join(thr, 0);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_lock/
3-1.c 102 pthread_t *thr; member in struct:__anon28606
123 if ((ret = pthread_kill(*(thearg->thr), thearg->sig))) {
322 arg1.thr = &th_work;
323 arg2.thr = &th_work;
  /external/ltp/testcases/realtime/func/pi_perf/
pi_perf.c 119 struct thread *thr = (struct thread *)arg; local
121 printf("Busy %ld started\n", (long)thr->arg);
  /external/mesa3d/src/egl/main/
eglcurrent.c 355 _EGLThreadInfo *thr = _eglGetCurrentThread(); local
359 funcName = thr->CurrentFuncName;
363 _eglDebugReportFullv(error, thr->CurrentFuncName, funcName, type, thr->CurrentObjectLabel, message, args);
  /packages/apps/Protips/src/com/android/protips/
ProtipWidget.java 52 HandlerThread thr = new HandlerThread("ProtipWidget async"); external variable declarations
53 thr.start();
54 mAsyncHandler = new Handler(thr.getLooper());
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssService.java 87 Thread thr = new Thread(null, this, "rss_service_thread"); local
88 thr.start();
  /external/iw/
station.c 230 uint32_t thr; local
232 thr = nla_get_u32(sinfo[NL80211_STA_INFO_EXPECTED_THROUGHPUT]);
234 thr = thr * 1000 / 1024;
237 thr / 1000, thr % 1000);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/
CallableDeclaration.java 205 for (ReferenceType thr : getThrownExceptions()) {
212 sb.append(thr.toString(prettyPrinterNoCommentsConfiguration));

Completed in 1220 milliseconds

1 2 34 5 6 7