HomeSort by relevance Sort by last modified time
    Searched refs:thread (Results 151 - 175 of 627) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium/third_party/libjingle/source/talk/base/
thread.h 48 class Thread;
55 static Thread *CurrentThread();
56 static void SetCurrent(Thread *thread);
57 void Add(Thread *thread);
58 void Remove(Thread *thread);
60 // Returns a thread object with its thread_ ivar set
61 // to whatever the OS uses to represent the thread
96 Thread *thread; member in struct:talk_base::_SendMessage
    [all...]
thread.cc 28 #include "talk/base/thread.h"
76 Thread *ThreadManager::CurrentThread() {
77 return static_cast<Thread *>(pthread_getspecific(key_));
80 void ThreadManager::SetCurrent(Thread *thread) {
81 pthread_setspecific(key_, thread);
98 Thread *ThreadManager::CurrentThread() {
99 return static_cast<Thread *>(TlsGetValue(key_));
102 void ThreadManager::SetCurrent(Thread *thread) {
165 Thread* thread; member in struct:talk_base::ThreadInit
388 AutoThread thread; local
    [all...]
basicpacketsocketfactory.h 38 class Thread;
42 explicit BasicPacketSocketFactory(Thread* thread);
61 Thread* thread_;
  /external/srec/portable/include/
ptrd.h 47 #error "Thread is not defined!"
59 * Library for basic thread and monitor functionality to ensure portability.
62 * Every thread has a priority. Threads with higher priority are executed in preference
63 * to threads with lower priority. When code running in some thread creates a new Thread
64 * object, the new thread has its priority initially set equal to the priority of the creating
65 * thread.
82 * Blocks the current thread for the specified amount of time.
85 * equivalent to a thread yield.
92 * Creates a thread monitor. Thread monitors can be locked, unlocked, can b
    [all...]
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
clone_test.S 1 # count for ~1 million instructions thread 1
2 # count for ~2 million instructions thread 2
9 # 1000 cycles in initial thread #
20 # Spawn a thread! #
51 cmp $0,%rax # are we in new thread?
  /external/valgrind/main/exp-bbv/tests/x86-linux/
clone_test.S 1 # count for ~1 million instructions thread 1
2 # count for ~2 million instructions thread 2
9 # 1000 cycles in initial thread #
20 # Spawn a thread! #
51 cmp $0,%eax # are we in new thread?
  /frameworks/base/core/java/com/google/android/mms/util/
PduCache.java 102 HashSet<Uri> thread = mThreads.get(threadId); local
103 if (thread == null) {
104 thread = new HashSet<Uri>();
105 mThreads.put(threadId, thread);
112 thread.add(finalKey);
214 HashSet<Uri> thread = mThreads.get(entry.getThreadId()); local
215 if (thread != null) {
216 thread.remove(key);
222 Log.v(TAG, "Purge cache in thread: " + threadId);
225 HashSet<Uri> thread = mThreads.remove(threadId) local
    [all...]
  /frameworks/base/media/libstagefright/foundation/
ALooper.cpp 33 struct ALooper::LooperThread : public Thread {
35 : Thread(canCallJava),
43 return Thread::readyToRun();
129 sp<LooperThread> thread; local
135 thread = mThread;
141 if (thread == NULL && !runningLocally) {
145 if (thread != NULL) {
146 thread->requestExit();
151 if (!runningLocally && !thread->isCurrentThread()) {
152 // If not running locally and this thread _is_ the looper thread
    [all...]
  /external/webkit/Source/JavaScriptCore/heap/
MachineStackMarker.cpp 63 #include <thread.h>
123 class MachineThreads::Thread {
125 Thread(pthread_t pthread, const PlatformThread& platThread, void* base)
144 Thread* next;
170 for (Thread* t = m_registeredThreads; t;) {
171 Thread* next = t->next;
209 Thread* thread = new Thread(pthread_self(), getCurrentPlatformThread(), m_heap->globalData()->stack().origin()); local
213 thread->next = m_registeredThreads
    [all...]
  /external/bluetooth/glib/gthread/
gthread-win32.c 4 * gthread.c: solaris thread system implementation
87 HANDLE thread; member in struct:_GThreadData
380 g_thread_set_priority_win32_impl (gpointer thread, GThreadPriority priority)
382 GThreadData *target = *(GThreadData **)thread;
387 win32_check_for_error (SetThreadPriority (target->thread,
392 g_thread_self_win32_impl (gpointer thread)
398 /* This should only happen for the main thread! */
403 &self->thread, 0, FALSE,
411 *(GThreadData **)thread = self;
456 win32_check_for_error (CloseHandle (self->thread));
    [all...]
gthread-posix.c 4 * gthread.c: posix thread system implementation
145 pthread_getprio (*(pthread_t*)thread,
308 gpointer thread,
355 ret = posix_error (pthread_create (thread, &attr,
363 "Error creating thread: %s", g_strerror (ret));
371 posix_check_cmd (pthread_detach (thread));
382 g_thread_join_posix_impl (gpointer thread)
385 posix_check_cmd (pthread_join (*(pthread_t*)thread, &ignore));
395 g_thread_set_priority_posix_impl (gpointer thread, GThreadPriority priority)
404 posix_check_cmd (pthread_getschedparam (*(pthread_t*)thread, &policy
    [all...]
  /external/valgrind/main/memcheck/tests/
badjump.stderr.exp 13 overflow in your program's main thread (unlikely but
15 main thread stack using the --main-stacksize= flag.
16 The main thread stack size used in this run was ....
  /external/webkit/Source/WebKit/android/WebCoreSupport/
CacheResult.cpp 41 // All public methods are called on a UI thread but we do work on the
42 // Chromium thread. However, because we block the WebCore thread while this
44 // Chromium thread work is in progress.
129 // Getting the headers is potentially async, so post to the Chromium thread
133 base::Thread* thread = WebUrlLoaderClient::ioThread(); local
134 if (!thread)
140 thread->message_loop()->PostTask(FROM_HERE, NewRunnableMethod(const_cast<CacheResult*>(this), &CacheResult::writeToFileImpl));
210 // Getting the headers is potentially async, so post to the Chromium thread
    [all...]
  /external/valgrind/main/helgrind/tests/
tc19_shadowmem.stderr.exp 8 Thread #x was created
13 Thread #x was created
18 Possible data race during write of size 1 at 0x........ by thread #x
23 This conflicts with a previous write of size 1 by thread #x
33 Thread #x was created
38 Thread #x was created
43 Possible data race during write of size 1 at 0x........ by thread #x
48 This conflicts with a previous write of size 1 by thread #x
58 Thread #x was created
63 Thread #x was create
    [all...]
rwlock_race.stderr.exp 2 Thread #x was created
7 Thread #x was created
12 Possible data race during write of size 4 at 0x........ by thread #x
16 This conflicts with a previous write of size 4 by thread #x
21 declared at rwlock_race.c:18, in frame #x of thread x
  /dalvik/vm/os/
android.cpp 32 * We use Android thread priority constants to be consistent with the rest
48 void os_changeThreadPriority(Thread* thread, int newPriority)
56 pid_t pid = thread->systemTid;
65 std::string threadName(dvmGetThreadName(thread));
97 /* Get the priority (the "nice" value) of the current thread. The
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
relayport.h 57 talk_base::Thread* thread, talk_base::PacketSocketFactory* factory,
61 return new RelayPort(thread, factory, network, ip, min_port, max_port,
87 RelayPort(talk_base::Thread* thread, talk_base::PacketSocketFactory* factory,
  /external/kernel-headers/original/asm-x86/
i387_32.h 37 "m" ((tsk)->thread.i387.fxsave))
63 [fx] "m" (tsk->thread.i387.fxsave),
64 [fsw] "m" (tsk->thread.i387.fxsave.swd) : "memory");
  /frameworks/base/core/java/android/speech/tts/
BlockingMediaPlayer.java 40 // Only accessed on the Handler thread
62 * Can be called from any thread.
68 HandlerThread thread = new HandlerThread(MEDIA_PLAYER_THREAD_NAME); local
69 thread.start();
70 Handler handler = new Handler(thread.getLooper());
83 // No new messages should get posted to the handler thread after this
92 * Can be called from any thread.
100 * Called on the handler thread.
135 * Called on the handler thread.
  /external/chromium/chrome/browser/resources/gpu_internals/
timeline.css 17 .timeline-thread-track {
24 .timeline-thread-track:not(:first-child) {
  /external/mesa3d/src/pixelflinger2/
pixelflinger2.h 118 pthread_t thread; member in struct:GGLContext::Worker
120 Worker() : assignedWork(false), quit(false), thread(0)
127 // actual thread is created later in raster.cpp
131 if (0 != thread)
135 pthread_cond_signal(&assignCond); // signal thread to quit
137 pthread_join(thread, NULL);
  /external/openssl/crypto/rand/
rand_nw.c 119 #include <nks/thread.h>
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseLockTest.java 71 * same database at the same time with the same prioritization, neither thread
86 Thread.currentThread().sleep(SLEEP_TIME);
95 * This function is to create the second thread for testLockFairness() test.
98 Thread thread = new DatabaseFairnessThread(); local
99 thread.start();
102 private class DatabaseFairnessThread extends Thread {
109 Thread.currentThread().sleep(SLEEP_TIME);
140 Thread.currentThread().sleep(SLEEP_TIME);
153 * This function is to create the second thread for testLockLatency() test
156 Thread thread = new DatabaseLatencyThread(); local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherThread.java 61 Thread thread = null; local
69 thread = new Thread(this);
70 thread.start();
72 thread.join();
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
SystemFacade.java 66 * Start a thread.
68 public void startThread(Thread thread);

Completed in 1385 milliseconds

1 2 3 4 5 67 8 91011>>