HomeSort by relevance Sort by last modified time
    Searched defs:currentThread (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA1/
SDL_main.cpp 102 RThread currentThread;
106 currentThread.Rename(exeName.Name());
107 currentThread.SetProcessPriority(EPriorityLow);
108 currentThread.SetPriority(EPriorityMuchLess);
  /frameworks/av/libvideoeditor/osal/src/
M4OSA_Mutex.c 132 pthread_t currentThread;
145 currentThread = pthread_self();
147 if(pMutexContext ->threadOwnerID == currentThread)
195 pMutexContext->threadOwnerID = currentThread;
219 pthread_t currentThread;
227 currentThread = pthread_self();
229 if(pMutexContext->threadOwnerID != currentThread)
  /external/chromium_org/webkit/child/
webkitplatformsupport_child_impl.cc 66 blink::WebThread* WebKitPlatformSupportChildImpl::currentThread() {
  /libcore/libdvm/src/main/java/java/lang/
VMThread.java 29 static native Thread currentThread();
Daemons.java 278 h.uncaughtException(Thread.currentThread(), syntheticException);
  /packages/apps/Dialer/src/com/android/dialer/util/
AsyncTaskExecutors.java 82 Preconditions.checkState(Thread.currentThread() == Looper.getMainLooper().getThread(),
83 "submit method must be called from ui thread, was: " + Thread.currentThread());
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_lock.py 15 from threading import currentThread
17 from threading import current_thread as currentThread
145 name = currentThread().getName()
147 name = currentThread().name
test_thread.py 25 from threading import currentThread
27 from threading import current_thread as currentThread
127 name = currentThread().getName()
129 name = currentThread().name
156 name = currentThread().getName()
158 name = currentThread().name
255 name = currentThread().getName()
257 name = currentThread().name
281 name = currentThread().getName()
283 name = currentThread().nam
    [all...]
test_all.py 461 from threading import Thread, currentThread
462 del Thread, currentThread
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_lock.py 15 from threading import currentThread
17 from threading import current_thread as currentThread
145 name = currentThread().getName()
147 name = currentThread().name
test_thread.py 25 from threading import currentThread
27 from threading import current_thread as currentThread
127 name = currentThread().getName()
129 name = currentThread().name
156 name = currentThread().getName()
158 name = currentThread().name
255 name = currentThread().getName()
257 name = currentThread().name
281 name = currentThread().getName()
283 name = currentThread().nam
    [all...]
test_all.py 461 from threading import Thread, currentThread
462 del Thread, currentThread
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoDecodeRunnable.java 63 * @param currentThread the current Thread
65 void setImageDecodeThread(Thread currentThread);
118 mPhotoTask.setImageDecodeThread(Thread.currentThread());
PhotoDownloadRunnable.java 64 * @param currentThread the current Thread
66 void setDownloadThread(Thread currentThread);
114 mPhotoTask.setDownloadThread(Thread.currentThread());
  /external/nist-sip/java/gov/nist/core/
ThreadAuditor.java 44 thread = Thread.currentThread();
107 threadHandles.put(Thread.currentThread(), threadHandle);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
SingleThreadNamedTaskExecutor.java 73 Thread currentThread = Thread.currentThread();
74 String threadName = currentThread.getName();
82 currentThread.setName(threadName + " " + task.getName());
  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadingPthreads.cpp 282 ThreadIdentifier currentThread()
ThreadingWin.cpp 262 ThreadIdentifier currentThread()
  /libcore/luni/src/main/java/java/lang/
ThreadLocal.java 53 Thread currentThread = Thread.currentThread();
54 Values values = values(currentThread);
62 values = initializeValues(currentThread);
86 Thread currentThread = Thread.currentThread();
87 Values values = values(currentThread);
89 values = initializeValues(currentThread);
103 Thread currentThread = Thread.currentThread();
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/locks/
ReentrantLock.java 101 final Thread current = Thread.currentThread();
121 if (Thread.currentThread() != getExclusiveOwnerThread())
135 return getExclusiveOwnerThread() == Thread.currentThread();
178 setExclusiveOwnerThread(Thread.currentThread());
203 final Thread current = Thread.currentThread();
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
Profile.java 188 Thread t = Thread.currentThread();
194 sWatchdog.removeWatchEntry(Thread.currentThread());
216 sWatchdog.hold(Thread.currentThread());
220 sWatchdog.commit(Thread.currentThread());
224 sWatchdog.drop(Thread.currentThread());
  /external/chromium_org/third_party/WebKit/public/platform/
Platform.h 363 virtual WebThread* currentThread() { return 0; }
  /libcore/libart/src/main/java/java/lang/
Daemons.java 281 h.uncaughtException(Thread.currentThread(), syntheticException);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
threading.py 29 __all__ = ['activeCount', 'active_count', 'Condition', 'currentThread',
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
threading.py 29 __all__ = ['activeCount', 'active_count', 'Condition', 'currentThread',
    [all...]

Completed in 479 milliseconds

1 2 3