Searched refs:thread (Results 101 - 125 of 1148) sorted by relevance

1234567891011>>

/external/nist-sip/java/gov/nist/core/
H A DThreadAuditor.java15 * the thread can periodically ping the auditor.
32 /// Set to true when the thread pings, periodically reset to false by the auditor
36 private Thread thread; field in class:ThreadAuditor.ThreadHandle
38 /// Thread auditor monitoring this thread
44 thread = Thread.currentThread();
48 /// Called by the auditor thread to check the ping status of the thread
53 /// Called by the auditor thread to reset the ping status of the thread
58 /// Return the thread bein
113 removeThread(Thread thread) argument
[all...]
/external/compiler-rt/test/asan/TestCases/Posix/
H A Ddeep_thread_stack.cc30 pthread_t thread; local
31 pthread_create(&thread, NULL, (callback_type)function, NULL);
32 pthread_join(thread, NULL);
50 // CHECK: WRITE of size 4 at 0x{{.*}} thread T[[ACCESS_THREAD:[0-9]+]]
51 // CHECK: freed by thread T[[FREE_THREAD:[0-9]+]] here:
52 // CHECK: previously allocated by thread T[[ALLOC_THREAD:[0-9]+]] here:
/external/valgrind/helgrind/tests/
H A Dpth_destroy_cond.c10 pthread_t thread; variable
29 pthread_create(&thread, NULL, ThreadFunction, (void*) NULL);
35 pthread_join(thread, NULL);
/external/valgrind/none/tests/s390x/
H A Dex_clone.c13 pthread_t thread; variable
42 pthread_create(&thread, NULL, threadfunc, NULL);
57 pthread_join(thread, NULL);
/external/webrtc/webrtc/base/
H A Dnullsocketserver_unittest.cc31 Thread thread; local
32 EXPECT_TRUE(thread.Start());
33 thread.Post(this, 0);
/external/elfutils/libdwfl/
H A Ddwfl_frame_regs.c32 dwfl_thread_state_registers (Dwfl_Thread *thread, int firstreg, argument
35 Dwfl_Frame *state = thread->unwound;
49 dwfl_thread_state_register_pc (Dwfl_Thread *thread, Dwarf_Word pc)
51 Dwfl_Frame *state = thread->unwound;
/external/ltp/testcases/kernel/io/disktest/
H A Dthreading.h111 #define ISTHREADVALID(thread) (thread != NULL)
120 #define ISTHREADVALID(thread) (thread != 0)
/external/python/cpython2/Lib/test/
H A Dtest_threaded_import.py10 thread = import_module('thread') variable
12 critical_section = thread.allocate_lock()
13 done = thread.allocate_lock()
22 # thread can exit and set critical_section to None as part of global
45 # Tricky: When regrtest imports this module, the thread running regrtest
67 thread.start_new_thread(task, ())
/external/testng/src/main/java/org/testng/internal/thread/
H A DIExecutor.java1 package org.testng.internal.thread;
H A DIThreadFactory.java1 package org.testng.internal.thread;
H A DTestNGThread.java1 package org.testng.internal.thread;
4 * Custom named thread.
/external/testng/src/main/java/org/testng/internal/thread/graph/
H A DIThreadWorkerFactory.java1 package org.testng.internal.thread.graph;
H A DIWorker.java1 package org.testng.internal.thread.graph;
/external/testng/src/test/java/test/thread/
H A DFactorySampleTest.java1 package test.thread;
H A DThreadPoolSizeTest.java1 package test.thread;
/external/valgrind/coregrind/m_gdbserver/
H A Dinferiors.c68 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) argument
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
160 struct thread_info *thread = get_thread (inf); local
165 remove_thread(struct thread_info *thread) argument
[all...]
/external/valgrind/memcheck/tests/
H A Ddescr_belowsp.stderr.exp2 Address 0x........ is on thread 1's stack
5 Address 0x........ is on thread 2's stack
12 Address 0x........ is on thread 2's stack
15 describing 0x........ discovered address giving SEGV in thread stack
16 Address 0x........ is on thread 2's stack
19 Address 0x........ is on thread 2's stack
22 Address 0x........ is on thread 2's stack
25 Address 0x........ is on thread 2's stack
/external/compiler-rt/test/tsan/
H A Dbench_release_only.cc12 void thread(int tid) { function
22 start_thread_group(bench_nthread, thread);
H A Dbench_ten_mutexes.cc12 void thread(int tid) { function
25 start_thread_group(2, thread);
/external/valgrind/drd/tests/
H A Dpth_barrier_race.c22 static void* thread(void* arg) function
35 pthread_create(&tid, NULL, thread, NULL);
40 * happens after the created thread has returned from pthread_barrier_wait().
/external/valgrind/memcheck/tests/amd64-linux/
H A Daccess_below_sp_2.stderr.exp4 Address 0x........ is on thread 1's stack
/external/valgrind/none/tests/linux/
H A Dbrk-overflow1.stderr.exp2 brk segment overflow in thread #1: can't grow to 0x........
H A Dbrk-overflow2.stderr.exp2 brk segment overflow in thread #1: can't grow to 0x........
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_pthread_wrappers.h11 // It provides handy wrappers for thread manipulation, that:
44 inline void PTHREAD_CREATE(pthread_t *thread, void *attr, argument
50 *thread = CreateThread(0, 0, PthreadHelperThreadProc, data, 0, 0);
52 ASSERT_NE(nullptr, *thread) << "Failed to create a thread, got error 0x"
56 inline void PTHREAD_JOIN(pthread_t thread, void **value_ptr) { argument
58 ASSERT_EQ(WAIT_OBJECT_0, WaitForSingleObject(thread, INFINITE));
59 ASSERT_NE(0, CloseHandle(thread));
/external/libchrome/base/task_scheduler/
H A Dscheduler_lock_unittest.cc90 BasicLockTestThread thread(&lock);
92 thread.Start();
113 thread.Join();
116 EXPECT_EQ(thread.acquired(), 20);
181 BasicLockAcquireAndWaitThread thread(&lock1);
182 thread.Start();
185 thread.WaitForLockAcquisition();
186 thread.ContinueMain();
187 thread.Join();
202 BasicLockAcquireAndWaitThread thread(
[all...]

Completed in 716 milliseconds

1234567891011>>