/frameworks/base/core/java/android/os/ |
Binder.java | 328 Thread thr = new Thread("Binder.dumpAsync") { local 337 thr.start();
|
/packages/apps/Protips/src/com/android/protips/ |
ProtipWidget.java | 52 HandlerThread thr = new HandlerThread("ProtipWidget async"); typedefs 53 thr.start(); 54 mAsyncHandler = new Handler(thr.getLooper());
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
MediaScannerService.java | 129 Thread thr = new Thread(null, this, "MediaScannerService"); local 130 thr.start();
|
/development/samples/MySampleRss/src/com/example/codelab/rssexample/ |
RssService.java | 87 Thread thr = new Thread(null, this, "rss_service_thread"); local 88 thr.start();
|
/libcore/luni/src/test/java/libcore/java/lang/ |
OldThreadGroupTest.java | 202 for(MyThread thr:subThreads) { 203 thr.start(); 220 for(MyThread thr:subThreads1) { 221 thr.start(); 229 for(MyThread thr:subThreads) { 230 thr.interrupt();
|
OldThreadTest.java | 407 Thread thr = new Thread(); local 408 thr.start(); 410 thr.start();
|
/external/chromium_org/sandbox/linux/seccomp-bpf/ |
demo.cc | 427 pthread_t thr; local 428 if (!pthread_create(&thr, NULL, ThreadFnc, 431 pthread_join(thr, &ret);
|
/external/compiler-rt/lib/tsan/go/ |
tsan_go.cc | 82 ThreadState *thr = (ThreadState*)internal_alloc(MBlockThreadContex, local 84 internal_memset(thr, 0, sizeof(*thr)); 85 return thr; 89 ThreadState *thr = AllocGoroutine(); local 90 main_thr = *thrp = thr; 91 thr->in_rtl++; 92 Initialize(thr); 93 thr->in_rtl--; 98 ThreadState *thr = main_thr local 150 ThreadState *thr = AllocGoroutine(); local [all...] |
/external/compiler-rt/lib/tsan/rtl/ |
tsan_interface_java.cc | 44 ThreadState *thr = cur_thread(); local 48 StatInc(thr, StatSyncDestroyed); 51 thr->mset.Remove(s->GetId()); 77 ScopedJavaFunc(ThreadState *thr, uptr pc) 78 : thr_(thr) { 80 FuncEntry(thr, pc); 121 SyncVar* GetJavaSync(ThreadState *thr, uptr pc, uptr addr, 127 DPrintf("#%d: GetJavaSync %p->%p\n", thr->tid, addr, b); 132 DPrintf("#%d: found existing sync for %p\n", thr->tid, addr); 137 DPrintf("#%d: creating new sync for %p\n", thr->tid, addr) [all...] |
tsan_mman.cc | 76 void AllocatorThreadStart(ThreadState *thr) { 77 allocator()->InitCache(&thr->alloc_cache); 78 internal_allocator()->InitCache(&thr->internal_alloc_cache); 81 void AllocatorThreadFinish(ThreadState *thr) { 82 allocator()->DestroyCache(&thr->alloc_cache); 83 internal_allocator()->DestroyCache(&thr->internal_alloc_cache); 90 static void SignalUnsafeCall(ThreadState *thr, uptr pc) { 91 if (!thr->in_signal_handler || !flags()->report_signal_unsafe) 95 stack.ObtainCurrent(thr, pc); 104 void *user_alloc(ThreadState *thr, uptr pc, uptr sz, uptr align) 182 ThreadState *thr = cur_thread(); local 190 ThreadState *thr = cur_thread(); local 197 ThreadState *thr = cur_thread(); local 208 ThreadState *thr = cur_thread(); local 265 ThreadState *thr = cur_thread(); local [all...] |
tsan_rtl_thread.cc | 27 , thr() 50 ThreadState *thr; member in struct:__tsan::OnCreatedArgs 55 thr = 0; 59 args->thr->fast_state.IncrementEpoch(); 61 TraceAddEvent(args->thr, args->thr->fast_state, EventTypeMop, 0); 62 args->thr->clock.set(args->thr->tid, args->thr->fast_state.epoch()); 63 args->thr->fast_synch_epoch = args->thr->fast_state.epoch() 82 ThreadState *thr; member in struct:__tsan::OnStartedArgs [all...] |
tsan_interceptors.cc | 134 static SignalContext *SigCtx(ThreadState *thr) { 135 SignalContext *ctx = (SignalContext*)thr->signal_ctx; 136 if (ctx == 0 && thr->is_alive) { 139 MemoryResetRange(thr, (uptr)&SigCtx, (uptr)ctx, sizeof(*ctx)); 140 thr->signal_ctx = ctx; 149 ScopedInterceptor(ThreadState *thr, const char *fname, uptr pc); 156 ScopedInterceptor::ScopedInterceptor(ThreadState *thr, const char *fname, 158 : thr_(thr) 159 , in_rtl_(thr->in_rtl) { 161 Initialize(thr); 773 ThreadState *thr = cur_thread(); local 796 ThreadState *thr = cur_thread(); local 1608 ThreadState *thr = cur_thread(); local 1786 ThreadState *thr; member in struct:TsanInterceptorContext 1886 ThreadState * thr = cur_thread(); local [all...] |
tsan_rtl.h | 477 ThreadState *thr; member in class:__tsan::ThreadContext 587 void ALWAYS_INLINE StatInc(ThreadState *thr, StatType typ, u64 n = 1) { 589 thr->stat[typ] += n; 591 void ALWAYS_INLINE StatSet(ThreadState *thr, StatType typ, u64 n) { 593 thr->stat[typ] = n; 603 void ReportRace(ThreadState *thr); 629 u32 CurrentStackId(ThreadState *thr, uptr pc); 630 void PrintCurrentStack(ThreadState *thr, uptr pc); 633 void Initialize(ThreadState *thr); 634 int Finalize(ThreadState *thr); [all...] |
/external/libvpx/libvpx/vp8/common/ |
mfqe.c | 149 unsigned int act, actd, sad, usad, vsad, sse, thr, thrsq, actrisk; local 188 /* thr = qdiff/16 + log2(act) + log4(qprev) */ 189 thr = (qdiff >> 4); 190 while (actd >>= 1) thr++; 191 while (qprev >>= 2) thr++; 194 thrsq = thr * thr; 200 if (sad < thr && 203 2 * usad < thr && 2 * vsad < thr && !actrisk [all...] |
/system/core/adb/ |
transport_local.c | 259 adb_thread_t thr; local 261 adb_thread_create(&thr, server_socket_thread, arg); 304 adb_thread_t thr; local 329 if(adb_thread_create(&thr, func, (void *)port)) {
|
commandline.c | 347 adb_thread_t thr; local 365 adb_thread_create(&thr, stdin_read_thread, fds); [all...] |
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
AlertReceiver.java | 95 HandlerThread thr = new HandlerThread("AlertReceiver async"); typedefs 96 thr.start(); 97 sAsyncHandler = new Handler(thr.getLooper()); [all...] |
/frameworks/base/services/java/com/android/server/ |
SystemServer.java | 1178 ServerThread thr = new ServerThread(); local [all...] |
/external/oprofile/libpp/ |
xml_utils.cpp | 841 thread_info & thr = my_threads[t]; local 842 thr.summarize(); 843 add_to_summary(thr.get_summary());
|
/external/valgrind/main/callgrind/ |
dump.c | 1458 thread_info** thr = CLG_(get_threads)(); local [all...] |
/external/valgrind/main/helgrind/ |
hg_errors.c | 295 Thread* thr; member in struct:__anon28101::__anon28102::__anon28103 316 Thread* thr; /* doing the unlocking */ member in struct:__anon28101::__anon28102::__anon28104 320 Thread* thr; /* doing the unlocking */ member in struct:__anon28101::__anon28102::__anon28105 325 Thread* thr; /* doing the unlocking */ member in struct:__anon28101::__anon28102::__anon28106 329 Thread* thr; member in struct:__anon28101::__anon28102::__anon28107 335 Thread* thr; member in struct:__anon28101::__anon28102::__anon28108 351 Thread* thr; member in struct:__anon28101::__anon28102::__anon28109 396 tl_assert(xe->XE.Race.thr); 400 xe->XE.Race.thr->locksetW, 465 Thr* thrp = NULL [all...] |
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/ |
_unixos.h | 124 struct PRThread *thr; member in struct:PRPollQueue 135 extern void _PR_Unblock_IO_Wait(struct PRThread *thr);
|
/external/chromium_org/third_party/openssl/openssl/apps/ |
speed.c | 320 HANDLE thr; local 322 thr = CreateThread(NULL,4096,sleepy,NULL,0,NULL); 323 if (thr==NULL) 329 CloseHandle(thr); /* detach the thread */ [all...] |
/external/openssl/apps/ |
speed.c | 320 HANDLE thr; local 322 thr = CreateThread(NULL,4096,sleepy,NULL,0,NULL); 323 if (thr==NULL) 329 CloseHandle(thr); /* detach the thread */ [all...] |
/hardware/qcom/audio/legacy/libalsa-intf/ |
msm8960_use_cases.h | 173 pthread_t thr; member in struct:snd_use_case_mgr
|