HomeSort by relevance Sort by last modified time
    Searched full:thread (Results 1 - 25 of 17074) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/none/tests/
pth_blockedsig.stdout.exp 0 thread CHILD sending SIGUSR1 to thread MAIN
thread-exits.vgtest 1 prog: thread-exits
pth_once.stdout.exp 2 identify_yourself: Hi, I'm a thread
3 identify_yourself: Hi, I'm a thread
4 identify_yourself: Hi, I'm a thread
5 identify_yourself: Hi, I'm a thread
6 identify_yourself: Hi, I'm a thread
7 identify_yourself: Hi, I'm a thread
8 identify_yourself: Hi, I'm a thread
9 identify_yourself: Hi, I'm a thread
10 identify_yourself: Hi, I'm a thread
11 identify_yourself: Hi, I'm a thread
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
initspin.h 1 /* No thread support. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
initspin.h 1 /* No thread support. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
initspin.h 1 /* No thread support. */
  /external/valgrind/memcheck/tests/solaris/
thr_daemon_exit_libc.stdout.exp 1 DAEMON thread #0 running
2 DAEMON thread #1 running
3 DAEMON thread #2 running
4 DAEMON thread #3 running
5 DAEMON thread #4 running
6 non-daemon thread #0 running
7 non-daemon thread #1 running
8 non-daemon thread #2 running
9 non-daemon thread #3 running
10 non-daemon thread #4 runnin
    [all...]
  /system/bt/osi/test/
thread_test.cpp 9 #include "osi/include/thread.h"
16 thread_t *thread = thread_new("test_thread"); local
17 ASSERT_TRUE(thread != NULL);
18 thread_free(thread);
22 thread_t *thread = thread_new("test_thread"); local
23 thread_free(thread);
27 thread_t *thread = thread_new("test_name"); local
28 ASSERT_STREQ(thread_name(thread), "test_name");
29 thread_free(thread);
33 thread_t *thread = thread_new("0123456789abcdef") local
39 thread_t *thread = thread_new("0123456789abcdefg"); local
45 thread_t *thread = (thread_t *)context; local
50 thread_t *thread = thread_new("test_thread"); local
56 thread_t *thread = thread_new("test_thread"); local
    [all...]
  /external/valgrind/drd/tests/
pth_detached3.c 1 /* Invoke pthread_detach() with an invalid thread ID. */
15 pthread_t thread; local
17 pthread_create(&thread, NULL, thread_func, NULL);
18 pthread_join(thread, NULL);
20 /* Invoke pthread_detach() with the thread ID of a joined thread. */
21 pthread_detach(thread);
23 /* Invoke pthread_detach() with an invalid thread ID. */
24 pthread_detach(thread + 8);
boost_thread.stderr.exp 2 Thread 1.
3 Thread 2.
tc21_pthonce.stdout.exp 3 child: Hi, I'm thread 0
4 child: Hi, I'm thread 1
  /external/lzma/CPP/Windows/
Thread.h 1 // Windows/Thread.h
14 ::CThread thread; member in class:NWindows::CThread
16 CThread() { Thread_Construct(&thread); }
18 bool IsCreated() { return Thread_WasCreated(&thread) != 0; }
19 WRes Close() { return Thread_Close(&thread); }
21 { return Thread_Create(&thread, startAddress, parameter); }
22 WRes Wait() { return Thread_Wait(&thread); }
25 operator HANDLE() { return thread; }
26 void Attach(HANDLE handle) { thread = handle; }
27 HANDLE Detach() { HANDLE h = thread; thread = NULL; return h; }
    [all...]
  /external/vulkan-validation-layers/demos/smoke/
README.md 1 This demo demonstrates multi-thread command buffer recording.
  /art/test/051-thread/
expected.txt 2 thread test starting
3 testThreadCapacity thread count: 512
4 testThreadDaemons starting thread 'TestDaemonThread'
5 testThreadDaemons @ Thread running
7 testThreadDaemons @ Thread bailing
15 thread test done
  /external/testng/src/test/java/test/thread/
testng.xml 2 <suite name="Thread Counters" verbose="2" thread-count="2">
3 <test name="Test level thread-count" thread-count="3" parallel="methods">
5 <class name="test.thread.TestThreadCountTest" />
8 <test name="Suite level thread-count" parallel="methods">
10 <class name="test.thread.SuiteThreadCountTest" />
Sample1.java 1 package test.thread;
9 logThread(Thread.currentThread().getId());
SequentialSample2Test.java 1 package test.thread;
9 addId("SequentialSample2Test.f1()", Thread.currentThread().getId());
13 addId("SequentialSample2Test.f2()", Thread.currentThread().getId());
17 addId("SequentialSample2Test.f3()", Thread.currentThread().getId());
SequentialSample3Test.java 1 package test.thread;
9 addId("SequentialSample3Test.f1()", Thread.currentThread().getId());
13 addId("SequentialSample3Test.f2()", Thread.currentThread().getId());
17 addId("SequentialSample3Test.f3()", Thread.currentThread().getId());
  /external/autotest/client/tests/monotonic_time/src/
threads.c 19 typedef struct thread { struct
20 pthread_t thread; member in struct:thread
31 * Helper function to run a thread on a specific set of CPUs.
35 thread_t *thread = arg; local
38 if (sched_setaffinity(0, sizeof thread->cpus, &thread->cpus) < 0)
41 result = thread->func(thread->arg);
58 thread_t *thread; local
64 thread = &threads[num_threads++]
93 thread_t *thread; local
    [all...]
  /external/jetty/src/resources/org/eclipse/jetty/util/thread/jmx/
QueuedThreadPool-mbean.properties 1 QueuedThreadPool: A thread pool with no max bound by default
5 name: Name of the thread pool
6 daemon: Is pool thread using daemon thread
8 maxIdleTimeMs: Maximum time a thread may be idle in ms
10 dump(): Dump thread state
11 stopThread(long): Stop a pool thread
12 stopThread(long)[0]: id:Thread ID
13 interruptThread(long): Interrupt a pool thread
14 interruptThread(long)[0]: id:Thread I
    [all...]
  /external/valgrind/helgrind/tests/
tc21_pthonce.stdout.exp 3 child: Hi, I'm thread 0
4 child: Hi, I'm thread 1
  /bionic/libc/bionic/
pthread_internal.cpp 44 pthread_t __pthread_internal_add(pthread_internal_t* thread) {
48 thread->next = g_thread_list;
49 thread->prev = NULL;
50 if (thread->next != NULL) {
51 thread->next->prev = thread;
53 g_thread_list = thread;
54 return reinterpret_cast<pthread_t>(thread);
57 void __pthread_internal_remove(pthread_internal_t* thread) {
60 if (thread->next != NULL)
83 pthread_internal_t* thread = reinterpret_cast<pthread_internal_t*>(thread_id); local
    [all...]
  /system/extras/memory_replay/tests/
ThreadTest.cpp 25 #include "Thread.h"
27 typedef std::pair<Thread*, volatile bool*> thread_data_t;
30 Thread thread; local
32 // A thread should be ready immediately. If not, this will hang forever.
33 thread.WaitForReady();
38 Thread* thread = thread_data->first; local
41 thread->WaitForReady();
48 Thread thread local
68 Thread* thread = thread_data->first; local
78 Thread thread; local
96 Thread thread; local
104 Thread thread; local
    [all...]
  /art/test/067-preemptive-unpark/
expected.txt 3 Asking thread to park
  /art/test/202-thread-oome/
info.txt 1 Tests that we throw OOME if Thread.nativeCreate fails, rather than aborting.

Completed in 3575 milliseconds

1 2 3 4 5 6 7 8 91011>>