HomeSort by relevance Sort by last modified time
    Searched refs:Thread (Results 1 - 25 of 4068) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/framework/delibs/decpp/
deThread.hpp 23 * \brief Thread base class.
35 * Thread provides base class for implementing threads. To leverage that
36 * functionality, inherit Thread in your class and implement virtual run()
39 * \note Thread class is not thread-safe, i.e. thread control functions
43 class Thread
46 Thread (void);
47 virtual ~Thread (void);
55 /** Thread entry point. *
    [all...]
deThread.cpp 21 * \brief Thread base class.
35 * \brief Thread constructor.
37 Thread::Thread (void)
44 * \brief Destroy thread.
46 * If the thread is currently running, OS is instructed to destroy it
49 Thread::~Thread (void)
56 * \brief Set thread priority.
62 * Sets priority for the thread start(). setPriority() has no effec
    [all...]
  /external/opencv3/3rdparty/openexr/IlmThread/
IlmThread.cpp 37 // class Thread -- dummy implementation for
59 Thread::Thread ()
65 Thread::~Thread ()
72 Thread::start ()
IlmThreadPosix.cpp 37 // class Thread -- implementation for
69 return (reinterpret_cast<Thread*>(t))->run();
75 Thread::Thread ()
81 Thread::~Thread ()
89 Thread::start ()
92 Iex::throwErrnoExc ("Cannot create new thread (%T).", error);
  /external/compiler-rt/test/tsan/
thread_leak4.c 4 void *Thread(void *x) {
5 sleep(100); // leave the thread "running"
11 pthread_create(&t, 0, Thread, 0);
17 // CHECK-NOT: WARNING: ThreadSanitizer: thread leak
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-pe/
tlssec32.d 2 Entry 9 00003000 00000018 Thread Storage Directory \[\.tls\]
tlssec64.d 2 Entry 9 0000000000003000 00000028 Thread Storage Directory \[\.tls\]
  /external/valgrind/helgrind/tests/
tc04_free_lock.stderr.exp 2 ---Thread-Announcement------------------------------------------
4 Thread #x is the program's root thread
8 Thread #x: Exiting thread still holds 2 locks
  /external/valgrind/gdbserver_tests/
mcbreak.stdout.exp 1 pid .... Thread .... first
2 pid .... Thread .... second
3 pid .... Thread .... third
4 pid .... Thread .... fourth
5 pid .... Thread .... after next: inferior call pushed from mcbreak.stdinB.gdb
6 pid .... Thread .... called from level
8 pid .... Thread .... called from main
  /external/regex-re2/util/
thread.cc 8 #include "util/thread.h"
10 Thread::Thread() {
16 Thread::~Thread() {
20 Thread* t = (Thread*)v;
25 void Thread::Start() {
33 void Thread::Join() {
41 void Thread::SetJoinable(bool j)
    [all...]
thread.h 10 class Thread {
12 Thread();
13 virtual ~Thread();
  /art/test/144-static-field-sigquit/src/
Main.java 20 Thread thread1 = new Thread(new SigQuit());
21 Thread thread2 = new Thread(new SynchronizedUse());
25 Thread.sleep(2000);
  /hardware/intel/common/wrs_omxil_core/utils/src/
thread.cpp 2 * thread.cpp, thread class
20 #include <thread.h>
22 Thread::Thread()
30 Thread::Thread(RunnableInterface *r)
38 Thread::~Thread()
45 int Thread::Start(void
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
ShutdownHookRegistrar.java 24 * <p>See {@link Runtime#addShutdownHook(Thread)}.
26 void addShutdownHook(Thread hook);
28 * Removes a shutdown hook that was previously registered via {@link #addShutdownHook(Thread)}.
30 * <p>See {@link Runtime#removeShutdownHook(Thread)}.
32 boolean removeShutdownHook(Thread hook);
  /external/testng/src/test/java/test/ant/
MultipleThreadTest.java 12 * Tests that more than one thread is used for running tests
17 public static Set<Thread> _threads;
21 _threads=Collections.synchronizedSet(new HashSet<Thread>());
26 _threads.add(Thread.currentThread());
31 _threads.add(Thread.currentThread());
36 _threads.add(Thread.currentThread());
41 _threads.add(Thread.currentThread());
46 _threads.add(Thread.currentThread());
51 _threads.add(Thread.currentThread());
56 _threads.add(Thread.currentThread());
    [all...]
  /art/runtime/
monitor_linux.cc 21 void Monitor::LogContentionEvent(Thread*, uint32_t, uint32_t, const char*, int32_t) {
  /art/test/148-multithread-gc-annotations/src/
Main.java 20 Thread annoThread = new Thread(new AnnotationThread(), "Annotation thread");
21 Thread gcThread = new Thread(new MovingGCThread(), "Moving GC thread");
  /external/testng/src/test/java/test/timeout/
InvocationTimeOutSampleTest.java 10 Thread.sleep(250);
12 Thread.currentThread().interrupt();
19 Thread.sleep(250);
21 Thread.currentThread().interrupt();
  /external/valgrind/drd/tests/
boost_thread.stderr.exp 2 Thread 1.
3 Thread 2.
  /hardware/intel/common/wrs_omxil_core/utils/inc/
thread.h 2 * thread.h, thread class
32 class Thread : public RunnableInterface {
34 Thread();
35 Thread(RunnableInterface *r);
36 ~Thread();
44 * when the class is derived from Thread class
  /libcore/luni/src/main/java/java/util/concurrent/
ThreadFactory.java 10 * An object that creates new threads on demand. Using thread factories
11 * removes hardwiring of calls to {@link Thread#Thread(Runnable) new Thread},
12 * enabling applications to use special thread subclasses, priorities, etc.
18 * public Thread newThread(Runnable r) {
19 * return new Thread(r);
24 * useful simple implementation, that sets the created thread context
32 * Constructs a new {@code Thread}. Implementations may also initialize
35 * @param r a runnable to be executed by new thread instanc
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
Interruptible.java 27 * An object that interrupts a thread blocked in an I/O operation.
34 public void interrupt(Thread t);
  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadTest.java 25 static class MyHandler implements Thread.UncaughtExceptionHandler {
26 public void uncaughtException(Thread t, Throwable e) {
38 Thread current = Thread.currentThread();
59 // assertEquals(null, Thread.getDefaultUncaughtExceptionHandler());
62 Thread.UncaughtExceptionHandler defaultHandler
63 = Thread.getDefaultUncaughtExceptionHandler();
66 Thread.setDefaultUncaughtExceptionHandler(eh);
68 assertSame(eh, Thread.getDefaultUncaughtExceptionHandler());
70 Thread.setDefaultUncaughtExceptionHandler(defaultHandler)
    [all...]
  /external/compiler-rt/lib/tsan/dd/
dd_rtl.h 27 struct Thread {
35 Thread *thr;
37 Callback(Thread *thr);
58 void ThreadInit(Thread *thr);
59 void ThreadDestroy(Thread *thr);
61 void MutexBeforeLock(Thread *thr, uptr m, bool writelock);
62 void MutexAfterLock(Thread *thr, uptr m, bool writelock, bool trylock);
63 void MutexBeforeUnlock(Thread *thr, uptr m, bool writelock);
64 void MutexDestroy(Thread *thr, uptr m);
  /system/extras/memory_replay/
Thread.cpp 20 #include "Thread.h"
22 Thread::Thread() {
26 Thread::~Thread() {
30 void Thread::WaitForReady() {
38 void Thread::WaitForPending() {
46 void Thread::SetPending() {
53 void Thread::ClearPending() {
60 Action* Thread::CreateAction(uintptr_t key_pointer, const char* type, const char* line)
    [all...]

Completed in 467 milliseconds

1 2 3 4 5 6 7 8 91011>>