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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/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/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
initspin.h 1 /* No thread support. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
initspin.h 1 /* No thread support. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
initspin.h 1 /* No thread support. */
  /dalvik/tests/051-thread/
expected.txt 2 Thread count: 512
3 Starting thread 'Thready'
4 @ Thread running
6 @ Thread bailing
7 Thread starter returning
8 thread test done
  /external/valgrind/main/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 + 1);
tc21_pthonce.stdout.exp 2 child: Hi, I'm thread 0
3 child: Hi, I'm thread 1
boost_thread.stderr.exp 2 Thread 1.
3 Thread 2.
sem_as_mutex3.stderr.exp 2 Conflicting load by thread 1 at 0x........ size 8
5 declared at sem_as_mutex.c:25, in frame #? of thread 1
6 Other segment start (thread 2)
7 (thread finished, call stack no longer available)
8 Other segment end (thread 2)
9 (thread finished, call stack no longer available)
  /external/valgrind/main/helgrind/tests/
tc21_pthonce.stdout.exp 2 child: Hi, I'm thread 0
3 child: Hi, I'm thread 1
  /libcore/luni/src/main/java/java/lang/
VMThread.java 20 Thread thread; field in class:VMThread
23 VMThread(Thread t) {
24 thread = t;
27 native static void create(Thread t, long stackSize);
29 static native Thread currentThread();
39 * Starts the VMThread (and thus the Java Thread) with the given
43 VMThread.create(thread, stackSize);
47 * Queries whether this Thread holds a monitor lock on the
56 * Holds a mapping from native Thread statuses to Java one. Required fo
    [all...]
  /external/chromium/base/threading/
platform_thread_unittest.cc 11 // Trivial tests that thread runs and doesn't crash on create and join ---------
30 TrivialThread thread; local
33 ASSERT_FALSE(thread.did_run());
34 ASSERT_TRUE(PlatformThread::Create(0, &thread, &handle));
36 ASSERT_TRUE(thread.did_run());
40 TrivialThread thread[10]; local
41 PlatformThreadHandle handle[arraysize(thread)];
43 for (size_t n = 0; n < arraysize(thread); n++)
44 ASSERT_FALSE(thread[n].did_run());
45 for (size_t n = 0; n < arraysize(thread); n++
78 FunctionTestThread thread; local
91 FunctionTestThread thread[10]; local
    [all...]
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Thread.c 60 EXYNOS_THREAD_HANDLE_TYPE *thread; local
63 thread = Exynos_OSAL_Malloc(sizeof(EXYNOS_THREAD_HANDLE_TYPE));
64 Exynos_OSAL_Memset(thread, 0, sizeof(EXYNOS_THREAD_HANDLE_TYPE));
66 pthread_attr_init(&thread->attr);
67 if (thread->stack_size != 0)
68 pthread_attr_setstacksize(&thread->attr, thread->stack_size);
71 if (thread->schedparam.sched_priority != 0)
72 pthread_attr_setschedparam(&thread->attr, &thread->schedparam)
113 EXYNOS_THREAD_HANDLE_TYPE *thread = (EXYNOS_THREAD_HANDLE_TYPE *)threadHandle; local
135 EXYNOS_THREAD_HANDLE_TYPE *thread = (EXYNOS_THREAD_HANDLE_TYPE *)threadHandle; local
    [all...]
  /dalvik/tests/067-preemptive-unpark/
expected.txt 3 Asking thread to park
  /external/compiler-rt/lib/tsan/lit_tests/
thread_leak3.c 4 void *Thread(void *x) {
10 pthread_create(&t, 0, Thread, 0);
14 // CHECK: WARNING: ThreadSanitizer: thread leak
15 // CHECK: SUMMARY: ThreadSanitizer: thread leak{{.*}}main
  /external/valgrind/main/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...]
  /external/junit/src/org/junit/internal/runners/statements/
FailOnTimeout.java 20 StatementThread thread= evaluateStatement(); local
21 if (!thread.fFinished)
22 throwExceptionForUnfinishedThread(thread);
26 StatementThread thread= new StatementThread(fOriginalStatement); local
27 thread.start();
28 thread.join(fTimeout);
29 thread.interrupt();
30 return thread;
33 private void throwExceptionForUnfinishedThread(StatementThread thread)
35 if (thread.fExceptionThrownByOriginalStatement != null
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThreadTest.java 20 import java.lang.Thread.UncaughtExceptionHandler;
64 Thread parent;
76 Thread.sleep(100);
83 Thread.sleep(500);
87 while (!Thread.currentThread().isInterrupted()) {
90 Thread.sleep(50);
103 public ResSupThread(Thread t) {
121 Thread st, ct, spinner;
124 * @tests java.lang.Thread#Thread(java.lang.Runnable
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ThreadFactoryBuilderTest.java 25 import java.lang.Thread.UncaughtExceptionHandler;
44 @Override public void uncaughtException(Thread t, Throwable e) {
58 Thread thread = threadFactory.newThread(monitoredRunnable); local
59 checkThreadPoolName(thread, 1);
61 Thread defaultThread =
63 assertEquals(defaultThread.isDaemon(), thread.isDaemon());
64 assertEquals(defaultThread.getPriority(), thread.getPriority());
65 assertSame(defaultThread.getThreadGroup(), thread.getThreadGroup());
67 thread.getUncaughtExceptionHandler())
107 Thread thread = factory.newThread(monitoredRunnable); local
113 Thread thread = factory.newThread(monitoredRunnable); local
120 Thread thread = factory.newThread(monitoredRunnable); local
184 Thread thread = builder.setThreadFactory(backingThreadFactory).build() local
    [all...]
  /dalvik/tests/039-join-main/src/
Main.java 4 * Make sure that a sub-thread can join the main thread.
8 Thread t;
10 t = new Thread(new JoinMainSub(Thread.currentThread()), "Joiner");
11 System.out.print("Starting thread '" + t.getName() + "'\n");
14 try { Thread.sleep(1000); }
22 private Thread mJoinMe;
24 public JoinMainSub(Thread joinMe) {
  /frameworks/av/libvideoeditor/osal/inc/
M4OSA_Thread_priv.h 20 * @brief Thread private for Android
32 /* Context for the thread */
34 M4OSA_UInt32 coreID; /* thread context identifiant */
35 pthread_t threadID; /* thread identifier. */
36 M4OSA_Char* name; /* thread name */
37 M4OSA_UInt32 stackSize; /* thread stackSize in bytes */
38 M4OSA_ThreadDoIt func; /* thread function */
39 M4OSA_Void* param; /* thread parameter */
41 M4OSA_Void* userData; / * thread user data * /
43 M4OSA_ThreadState state; /* thread automaton state *
    [all...]
  /external/qemu/distrib/sdl-1.2.15/test/
testhread.c 22 printf("Started thread %s: My thread id is %u\n",
25 printf("Thread '%s' is alive!\n", (char *)data);
28 printf("Thread '%s' exiting!\n", (char *)data);
42 SDL_Thread *thread; local
51 thread = SDL_CreateThread(ThreadFunc, "#1");
52 if ( thread == NULL ) {
53 fprintf(stderr, "Couldn't create thread: %s\n", SDL_GetError());
57 printf("Waiting for thread #1\n");
59 SDL_WaitThread(thread, NULL)
    [all...]

Completed in 1407 milliseconds

1 2 3 4 5 6 7 8 91011>>