| /external/valgrind/main/none/tests/ |
| pth_blockedsig.stdout.exp | 0 thread CHILD sending SIGUSR1 to thread MAIN
|
| 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...] |
| /external/qemu/distrib/sdl-1.2.12/src/thread/generic/ |
| SDL_systhread.c | 24 /* Thread management routines for SDL */ 29 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args) 45 void SDL_SYS_WaitThread(SDL_Thread *thread) 50 void SDL_SYS_KillThread(SDL_Thread *thread)
|
| /external/qemu/distrib/sdl-1.2.12/src/thread/dc/ |
| SDL_systhread.c | 24 /* Thread management routines for SDL */ 30 #include <kos/thread.h> 32 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args) 34 thread->handle = thd_create(SDL_RunThread,args); 35 if (thread->handle == NULL) { 36 SDL_SetError("Not enough resources to create thread"); 52 void SDL_SYS_WaitThread(SDL_Thread *thread) 54 thd_wait(thread->handle); 57 void SDL_SYS_KillThread(SDL_Thread *thread) 59 thd_destroy(thread->handle) [all...] |
| /device/samsung/crespo/sec_mm/sec_omx/sec_osal/ |
| SEC_OSAL_Thread.c | 58 SEC_THREAD_HANDLE_TYPE *thread; local 61 thread = SEC_OSAL_Malloc(sizeof(SEC_THREAD_HANDLE_TYPE)); 62 SEC_OSAL_Memset(thread, 0, sizeof(SEC_THREAD_HANDLE_TYPE)); 64 pthread_attr_init(&thread->attr); 65 if (thread->stack_size != 0) 66 pthread_attr_setstacksize(&thread->attr, thread->stack_size); 69 if (thread->schedparam.sched_priority != 0) 70 pthread_attr_setschedparam(&thread->attr, &thread->schedparam) 107 SEC_THREAD_HANDLE_TYPE *thread = (SEC_THREAD_HANDLE_TYPE *)threadHandle; local 130 SEC_THREAD_HANDLE_TYPE *thread = (SEC_THREAD_HANDLE_TYPE *)threadHandle; local [all...] |
| /external/qemu/distrib/sdl-1.2.12/src/thread/ |
| SDL_systhread.h | 31 /* This function creates a thread, passing args to SDL_RunThread(), 32 saves a system-dependent thread id in thread->id, and returns 0 36 extern int SDL_SYS_CreateThread(SDL_Thread *thread, void *args, pfnSDL_CurrentBeginThread pfnBeginThread, pfnSDL_CurrentEndThread pfnEndThread); 38 extern int SDL_SYS_CreateThread(SDL_Thread *thread, void *args); 41 /* This function does any necessary setup in the child thread */ 44 /* This function waits for the thread to finish and frees any data 47 extern void SDL_SYS_WaitThread(SDL_Thread *thread); 49 /* This function kills the thread and returns */ 50 extern void SDL_SYS_KillThread(SDL_Thread *thread); [all...] |
| SDL_thread.c | 24 /* System independent thread management routines for SDL */ 33 (except the main thread) 56 they will no longer have access to any per-thread data. 69 /* Routines for manipulating the thread list */ 70 static void SDL_AddThread(SDL_Thread *thread) 76 is only one thread running the first time this is called. 87 printf("Adding thread (%d already - %d max)\n", 101 SDL_Threads[SDL_numthreads++] = thread; 106 static void SDL_DelThread(SDL_Thread *thread) 115 if ( thread == SDL_Threads[i] ) 212 SDL_Thread *thread; local [all...] |
| /external/valgrind/main/drd/tests/ |
| tc21_pthonce.stdout.exp | 2 child: Hi, I'm thread 0 3 child: Hi, I'm thread 1
|
| 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)
|
| sem_open3.stderr.exp | 2 Conflicting load by thread 1 at 0x........ size 8 5 declared at sem_open.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
|
| /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...] |
| /external/qemu/distrib/sdl-1.2.12/src/thread/amigaos/ |
| SDL_thread.c | 24 /* System independent thread management routines for SDL */ 33 (except the main thread) 52 they will no longer have access to any per-thread data. 59 /* Routines for manipulating the thread list */ 60 static void SDL_AddThread(SDL_Thread *thread) 68 is only one thread running the first time this is called. 79 printf("Adding thread (%d already - %d max)\n", 96 SDL_Threads[SDL_numthreads++] = thread; 101 static void SDL_DelThread(SDL_Thread *thread) 108 if ( thread == SDL_Threads[i] ) 192 SDL_Thread *thread; local [all...] |
| /dalvik/vm/os/ |
| os.h | 17 struct Thread; 20 * Raises the scheduling priority of the current thread. Returns the 29 * Sets the current thread scheduling priority. Used to undo the effects 37 * Changes the priority of a system thread to match that of the Thread object. 42 void os_changeThreadPriority(Thread* thread, int newPriority); 45 * Returns the thread priority for the current thread by querying the system. 46 * This is useful when attaching a thread through JNI [all...] |
| linux.cpp | 31 void os_changeThreadPriority(Thread* thread, int newPriority)
|
| /external/qemu/distrib/sdl-1.2.12/src/thread/riscos/ |
| SDL_systhread.c | 31 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args) 47 void SDL_SYS_WaitThread(SDL_Thread *thread) 52 void SDL_SYS_KillThread(SDL_Thread *thread) 70 Uint32 riscos_main_thread = 0; /* Thread running events */ 79 int SDL_SYS_CreateThread(SDL_Thread *thread, void *args) 83 /* Set the thread attributes */ 90 /* Create the thread and go! */ 91 if ( pthread_create(&thread->handle, &type, RunThread, args) != 0 ) { 92 SDL_SetError("Not enough resources to create thread"); 110 /* Mask asynchronous signals for this thread */ [all...] |
| /dalvik/vm/ |
| Thread.cpp | 18 * Thread support. 57 // change this to LOGV/LOGD to debug thread activity 64 thread, are visible to code running in the VM and to the debugger. (We 65 don't want the debugger to try to manipulate the thread that listens for 80 Internal native VM threads, such as the finalizer thread, must explicitly 85 thread. The debugger may suspend or resume individual threads, while the 86 GC always suspends all threads. Each thread has a "suspend count" that 88 When the count is zero, the thread is runnable. This allows us to fulfill 89 a debugger requirement: if the debugger suspends a thread, the thread i 250 Thread* thread; local 679 Thread* thread; local 803 Thread* thread; local [all...] |
| /bionic/libc/kernel/arch-sh/asm/ |
| system_64.h | 22 #define switch_to(prev,next,last) do { if (last_task_used_math != next) { struct pt_regs *regs = next->thread.uregs; if (regs) regs->sr |= SR_FD; } last = sh64_switch_to(prev, &prev->thread, next, &next->thread); } while (0)
|
| /prebuilt/windows/sdl/host/include/SDL/ |
| SDL_thread.h | 31 /* Header for the SDL thread management routines 39 /* Thread synchronization primitives */ 48 /* The SDL thread structure, defined in SDL_thread.c */ 52 /* Create a thread */ 55 /* Get the 32-bit thread identifier for the current thread */ 58 /* Get the 32-bit thread identifier for the specified thread, 59 equivalent to SDL_ThreadID() if the specified thread is NULL. 61 extern DECLSPEC Uint32 SDLCALL SDL_GetThreadID(SDL_Thread *thread); [all...] |
| /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
| LoadLocaleProviderTestHelper.java | 29 Thread thread = new Thread(this); local 30 thread.setContextClassLoader(loader); 31 thread.start(); 32 thread.join();
|
| /external/clang/test/CodeGen/ |
| 2003-11-27-ConstructorCast.c | 13 struct thread_struct thread = (struct thread_struct) { {{0}} }; local
|
| 2003-11-27-UnionCtorInitialization.c | 15 struct thread_struct thread = (struct thread_struct) { {{0}} }; local
|
| /external/kernel-headers/original/asm-arm/ |
| domain.h | 64 struct thread_info *thread = current_thread_info(); \ 65 unsigned int domain = thread->cpu_domain; \ 67 thread->cpu_domain = domain | domain_val(dom, type); \ 68 set_domain(thread->cpu_domain); \
|
| /external/webkit/Source/WebCore/workers/ |
| SharedWorkerContext.cpp | 52 SharedWorkerContext::SharedWorkerContext(const String& name, const KURL& url, const String& userAgent, SharedWorkerThread* thread) 53 : WorkerContext(url, userAgent, thread) 62 SharedWorkerThread* SharedWorkerContext::thread() function in class:WebCore::SharedWorkerContext 64 return static_cast<SharedWorkerThread*>(Base::thread());
|
| /libcore/dalvik/src/main/java/dalvik/system/profiler/ |
| ThreadSampler.java | 23 * between portable and VM specific implementations of thread 34 * Return a stack trace for the current thread limited by the 36 * return null if no sample is availble for the thread, which may 37 * happen in cases such as thread termination. The resulting array 43 public StackTraceElement[] getStackTrace(Thread thread);
|