HomeSort by relevance Sort by last modified time
    Searched refs:Thread (Results 176 - 200 of 5550) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/compiler-rt/test/tsan/
fd_close_norace2.cc 8 void *Thread(void *x) {
21 pthread_create(&t, 0, Thread, 0);
global_race.cc 6 void *Thread(void *a) {
16 pthread_create(&t, 0, Thread, 0);
global_race2.cc 6 void *Thread(void *a) {
16 pthread_create(&t, 0, Thread, 0);
global_race3.cc 11 void *Thread(void *a) {
21 pthread_create(&t, 0, Thread, 0);
halt_on_error.cc 6 void *Thread(void *x) {
16 pthread_create(&t, 0, Thread, 0);
heap_race.cc 7 void *Thread(void *a) {
17 pthread_create(&t, NULL, Thread, p);
ignore_sync.cc 11 void *Thread(void *x) {
22 pthread_create(&t, 0, Thread, 0);
race_on_mutex2.c 4 void *Thread(void *x) {
16 pthread_create(&t, 0, Thread, &Mtx);
race_top_suppression.cc 13 void *Thread(void *x) {
22 pthread_create(&t, 0, Thread, 0);
race_top_suppression1.cc 17 void *Thread(void *x) {
26 pthread_create(&t, 0, Thread, 0);
sleep_sync.cc 10 void *Thread(void *p) {
12 MySleep(); // Assume the main thread has done the write.
20 pthread_create(&t, 0, Thread, 0);
32 // CHECK-NEXT: #2 Thread
stack_race2.cc 10 void *Thread(void *a) {
23 pthread_create(&t, 0, Thread, 0);
28 // CHECK: Location is stack of thread T1.
thread_detach2.c 5 // The bug was that synchronization between thread creation and thread start
10 void *Thread(void *a) {
20 pthread_create(&t, 0, Thread, 0);
thread_leak5.c 4 void *Thread(void *x) {
14 pthread_create(&t, 0, Thread, 0);
21 // CHECK: WARNING: ThreadSanitizer: thread leak
22 // CHECK: And 4 more similar thread leaks
tls_race.cc 4 void *Thread(void *a) {
14 pthread_create(&t, 0, Thread, &Var);
21 // CHECK-Linux: Location is TLS of main thread.
22 // CHECK-FreeBSD: Location is TLS of main thread.
tls_race2.cc 10 void *Thread(void *a) {
23 pthread_create(&t, 0, Thread, 0);
28 // CHECK-Linux: Location is TLS of thread T1.
29 // CHECK-FreeBSD: Location is TLS of thread T1.
vptr_harmful_race4.cc 17 void *Thread(void *x) {
27 pthread_create(&t, 0, Thread, obj);
  /external/gemmlowp/test/
test_blocking_counter.cc 24 class Thread {
26 Thread(BlockingCounter* blocking_counter, int number_of_times_to_decrement)
34 ~Thread() { Join(); }
44 Thread(const Thread& other) = delete;
55 static_cast<Thread*>(ptr)->ThreadFunc();
69 std::vector<Thread*> threads;
72 threads.push_back(new Thread(blocking_counter, num_decrements_per_thread));
  /external/testng/src/test/java/test/annotationtransformer/
AnnotationTransformerClassSampleTest.java 19 Thread.sleep(2000);
23 Thread.currentThread().interrupt();
  /external/testng/src/test/java/test/thread/
Test1Test.java 1 package test.thread;
10 addId("Test1Test.f11()", Thread.currentThread().getId());
16 addId("Test1Test.f12()", Thread.currentThread().getId());
Test2Test.java 1 package test.thread;
10 addId("Test2Test.f21()", Thread.currentThread().getId());
16 addId("Test2Test.f22()", Thread.currentThread().getId());
  /external/webrtc/webrtc/base/
worker.h 19 class Thread;
23 // The only method that should be considered thread-safe is HaveWork(), which
24 // allows you to signal the availability of work from any thread. All other
25 // methods are thread-hostile. Specifically:
28 // a different thread.
30 // (regardless of the thread), but you can call StopWork() in a subclass's
39 // Attaches the worker to the current thread and begins processing work if not
43 // thread.
52 // Called on the worker thread to start working.
54 // Called on the worker thread when work has been signalled via HaveWork()
    [all...]
  /frameworks/native/services/surfaceflinger/
StartPropertySetThread.h 23 #include <utils/Thread.h>
27 class StartPropertySetThread : public Thread {
30 // happening 1/10th with fsck) concurrently. Running in a separate thread
34 // to this thread. see b/63844978.
  /hardware/libhardware/modules/camera/3_4/
function_thread.h 22 #include <utils/Thread.h>
28 class FunctionThread : public android::Thread {
  /libcore/ojluni/src/main/java/java/lang/
InheritableThreadLocal.java 31 * from parent thread to child thread: when a child thread is created, the
32 * child receives initial values for all inheritable thread-local variables
38 * <p>Inheritable thread-local variables are used in preference to
39 * ordinary thread-local variables when the per-thread-attribute being
50 * Computes the child's initial value for this inheritable thread-local
52 * thread is created. This method is called from within the parent
53 * thread before the child is started
    [all...]

Completed in 1160 milliseconds

1 2 3 4 5 6 78 91011>>