HomeSort by relevance Sort by last modified time
    Searched defs:thread (Results 201 - 225 of 684) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prtrace.h 78 ** Trace Facility methods are thread-safe and SMP safe.
113 PRThread *thread; /* The thread creating the trace entry */ member in struct:PRTraceEntry
571 ** thread, the function appears to block until another thread
574 ** called from a user supplied thread whose only job is to
586 ** load, the thread priority of the recording thread, number of
600 ** Only one thread can call PR_RecordTraceEntries() within a
  /external/chromium_org/third_party/skia/include/utils/
SkThreadPool.h 39 * Create a threadpool with count threads, or one thread per core if kThreadPerCore.
46 * Queues up an SkRunnable to run when a thread is available, or synchronously if count is 0.
48 * a reference to a T on the thread's local stack.
71 kHalting_State, // There's no work to do and no thread is busy. All threads can shut down.
93 SkThread* thread = SkNEW_ARGS(SkThread, (&SkTThreadPool::Loop, this)); local
94 *fThreads.append() = thread;
95 thread->start();
171 // The SkTThreadPool passes itself as arg to each thread as they're created.
201 // Otherwise, we'd only ever do work on one thread at a time, which rather
  /external/deqp/framework/delibs/destream/
deThreadStream.c 35 deThread thread; member in struct:deThreadInStream_s
44 deStreamCpyThread* thread; member in struct:deThreadOutStream_s
93 /* \todo [mika] Add handling for errors on thread stream */
101 /* \todo [mika] Add handling for status on thread stream */
112 deThread_join(threadStream->thread);
113 deThread_destroy(threadStream->thread);
147 threadStream->thread = deThread_create(inStreamCopy, threadStream, DE_NULL);
162 /* \todo [mika] Add handling for errors on thread stream */
170 /* \todo [mika] Add handling for errors on thread stream */
203 threadStream->thread = deStreamCpyThread_create(&(threadStream->consumerStream), output, ringbufferBlockSize)
    [all...]
  /external/fio/
idletime.h 25 pthread_t thread; member in struct:idle_prof_thread
  /external/libcxx/src/
thread.cpp 1 //===------------------------- thread.cpp----------------------------------===//
10 #include "thread"
32 thread::~thread()
39 thread::join()
44 throw system_error(error_code(ec, system_category()), "thread::join failed");
52 thread::detach()
63 throw system_error(error_code(ec, system_category()), "thread::detach failed");
68 thread::hardware_concurrency() _NOEXCEPT
97 return 0; // Means not computable [thread.thread.static
    [all...]
  /external/lldb/source/Commands/
CommandObjectArgs.cpp 32 #include "lldb/Target/Thread.h"
133 Thread *thread = m_exe_ctx.GetThreadPtr(); local
135 if (!thread)
137 result.AppendError ("args found no thread.");
142 lldb::StackFrameSP thread_cur_frame = thread->GetSelectedFrame ();
145 result.AppendError ("The current thread has no current frame.");
247 if (!abi->GetArgumentValues (*thread, value_list))
  /external/lldb/source/Expression/
ClangFunction.cpp 41 #include "lldb/Target/Thread.h"
410 log->Printf("-- [ClangFunction::GetThreadPlanToCallFunction] Creating thread plan to call function --");
413 Thread *thread = exe_ctx.GetThreadPtr(); local
414 if (thread == NULL)
416 errors.Printf("Can't call a function without a valid thread.");
423 ThreadPlan *new_plan = new ThreadPlanCallFunction (*thread,
  /external/lldb/tools/lldb-perf/lib/
TestCase.h 37 lldb::SBThread thread; member in struct:lldb_perf::TestCase::ActionWanted
42 thread (),
51 thread = lldb::SBThread();
58 thread = t;
65 thread = t;
72 thread = lldb::SBThread();
80 thread = lldb::SBThread();
87 thread = lldb::SBThread();
  /external/mesa3d/src/gallium/winsys/radeon/drm/
radeon_drm_cs.h 61 * by the kernel in another thread, the other one is being filled
67 /* The CS being currently-owned by the other thread. */
77 pipe_thread thread; member in struct:radeon_drm_cs
  /external/nist-sip/java/gov/nist/core/
ThreadAuditor.java 6 * Thread Auditor class:
15 * the thread can periodically ping the auditor.
25 private Map<Thread,ThreadHandle> threadHandles = new HashMap<Thread,ThreadHandle>();
32 /// Set to true when the thread pings, periodically reset to false by the auditor
35 /// Thread being monitored
36 private Thread thread; field in class:ThreadAuditor.ThreadHandle
38 /// Thread auditor monitoring this thread
142 Thread thread = threadHandle.getThread(); local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/
SDL_sysaudio.h 50 void (*ThreadInit)(_THIS); /* Called by audio thread at start */
67 /* The current audio specification (shared with audio thread) */
84 /* A thread to feed the audio device */
85 SDL_Thread *thread; member in struct:SDL_AudioDevice
  /external/qemu/distrib/sdl-1.2.15/src/thread/
SDL_thread.c 24 /* System independent thread management routines for SDL */
33 (except the main thread)
56 they will no longer have access to any per-thread data.
69 /* Routines for manipulating the thread list */
70 static void SDL_AddThread(SDL_Thread *thread)
76 is only one thread running the first time this is called.
87 printf("Adding thread (%d already - %d max)\n",
101 SDL_Threads[SDL_numthreads++] = thread;
106 static void SDL_DelThread(SDL_Thread *thread)
115 if ( thread == SDL_Threads[i] )
214 SDL_Thread *thread; local
    [all...]
  /external/skia/include/utils/
SkThreadPool.h 39 * Create a threadpool with count threads, or one thread per core if kThreadPerCore.
46 * Queues up an SkRunnable to run when a thread is available, or synchronously if count is 0.
48 * a reference to a T on the thread's local stack.
71 kHalting_State, // There's no work to do and no thread is busy. All threads can shut down.
93 SkThread* thread = SkNEW_ARGS(SkThread, (&SkTThreadPool::Loop, this)); local
94 *fThreads.append() = thread;
95 thread->start();
171 // The SkTThreadPool passes itself as arg to each thread as they're created.
201 // Otherwise, we'd only ever do work on one thread at a time, which rather
  /external/valgrind/main/callgrind/
threads.c 51 * Per-thread data:
58 * datastructures for the process (= Thread 1).
61 /* current running thread */
64 static thread_info* thread[VG_N_THREADS]; variable
68 return thread;
73 return thread[CLG_(current_tid)];
80 thread[i] = 0;
90 if (!thread[t]) continue;
92 (*func)(thread[t]);
131 CLG_DEBUG(0, ">> thread %d (was %d)\n", tid, CLG_(current_tid))
    [all...]
  /external/valgrind/main/coregrind/m_gdbserver/
inferiors.c 68 error ("tried to change thread ID after multiple threads are created\n");
122 struct thread_info *thread = get_thread (inf); local
124 return thread->gdb_id;
131 unsigned int thread_to_gdb_id (struct thread_info *thread)
133 return thread->gdb_id;
141 struct thread_info *thread = get_thread (inf); local
142 if (thread->gdb_id == gdb_id)
143 return thread;
152 struct thread_info *thread = gdb_id_to_thread (gdb_id); local
154 return thread ? thread->entry.id : 0
160 struct thread_info *thread = get_thread (inf); local
    [all...]
regcache.c 66 struct thread_info *thread = (struct thread_info *) entry; local
69 regcache = (struct inferior_regcache_data *) inferior_regcache_data (thread);
74 current_inferior = thread;
131 struct thread_info *thread = (struct thread_info *) entry; local
134 regcache = (struct inferior_regcache_data *) inferior_regcache_data (thread);
138 set_inferior_regcache_data (thread, new_register_cache ());
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
InactivityTimer.java 88 public Thread newThread(Runnable runnable) {
89 Thread thread = new Thread(runnable); local
90 thread.setDaemon(true);
91 return thread;
  /frameworks/av/media/libstagefright/foundation/
ALooper.cpp 33 struct ALooper::LooperThread : public Thread {
35 : Thread(canCallJava),
43 return Thread::readyToRun();
130 sp<LooperThread> thread; local
136 thread = mThread;
142 if (thread == NULL && !runningLocally) {
146 if (thread != NULL) {
147 thread->requestExit();
152 if (!runningLocally && !thread->isCurrentThread()) {
153 // If not running locally and this thread _is_ the looper thread
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
thread.cpp 1 //===------------------------- thread.cpp----------------------------------===//
10 #include "thread"
34 thread::~thread()
41 thread::join()
46 throw system_error(error_code(ec, system_category()), "thread::join failed");
54 thread::detach()
65 throw system_error(error_code(ec, system_category()), "thread::detach failed");
70 thread::hardware_concurrency() _NOEXCEPT
99 return 0; // Means not computable [thread.thread.static
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimetools.py 108 import thread namespace
110 import dummy_thread as thread namespace
111 _counter_lock = thread.allocate_lock()
112 del thread
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_thread.py 5 thread = test_support.import_module('thread') variable
16 _print_mutex = thread.allocate_lock()
28 self.done_mutex = thread.allocate_lock()
30 self.running_mutex = thread.allocate_lock()
31 self.random_mutex = thread.allocate_lock()
43 thread.start_new_thread(self.task, (self.next_ident,))
59 # Basic test for thread creation.
68 self.assertEqual(thread.stack_size(), 0, "initial stack size is not 0")
70 thread.stack_size(0
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimetools.py 108 import thread namespace
110 import dummy_thread as thread namespace
111 _counter_lock = thread.allocate_lock()
112 del thread
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_thread.py 5 thread = test_support.import_module('thread') variable
16 _print_mutex = thread.allocate_lock()
28 self.done_mutex = thread.allocate_lock()
30 self.running_mutex = thread.allocate_lock()
31 self.random_mutex = thread.allocate_lock()
43 thread.start_new_thread(self.task, (self.next_ident,))
59 # Basic test for thread creation.
68 self.assertEqual(thread.stack_size(), 0, "initial stack size is not 0")
70 thread.stack_size(0
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContentQueryMapTest.java 213 new Thread(new Runnable() {
218 //listener is ready, release the sender thread
242 new Thread(new Runnable() {
247 //listener is ready, release the sender thread
272 HandlerThread thread = new HandlerThread("testSetKeepUpdatedWithHandler"); local
273 thread.start();
274 Handler handler = new Handler(thread.getLooper());
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
DeviceSensors.java 37 private Thread mThread;
431 // use the same polling thread (also see crbug/234282).
434 HandlerThread thread = new HandlerThread("DeviceMotionAndOrientation"); local
435 thread.start();
436 mHandler = new Handler(thread.getLooper()); // blocks on thread start

Completed in 2266 milliseconds

1 2 3 4 5 6 7 891011>>