HomeSort by relevance Sort by last modified time
    Searched defs:pthread (Results 1 - 5 of 5) sorted by null

  /device/samsung/crespo/sec_mm/sec_omx/sec_osal/
SEC_OSAL_Thread.c 30 #include <pthread.h>
45 pthread_t pthread; member in struct:_SEC_THREAD_HANDLE_TYPE
78 result = pthread_create(&thread->pthread, &thread->attr, function_name, (void *)argument);
79 /* pthread_setschedparam(thread->pthread, SCHED_RR, &thread->schedparam); */
113 if (pthread_join(thread->pthread, NULL) != 0) {
135 /* thread_cancel(thread->pthread); */
136 pthread_exit(thread->pthread);
137 pthread_join(thread->pthread, NULL);
  /external/webkit/Tools/DumpRenderTree/pthreads/
JavaScriptThreadingPthreads.cpp 36 #include <pthread.h>
95 pthread_t pthread; local
96 pthread_create(&pthread, 0, &runJavaScriptThread, 0);
97 pthread_detach(pthread);
98 javaScriptThreads()->add(pthread);
121 pthread_t pthread; local
122 pthread_create(&pthread, 0, &runJavaScriptThread, 0);
123 pthread_detach(pthread);
124 javaScriptThreads()->add(pthread);
  /frameworks/native/libs/utils/
Threads.cpp 34 # include <pthread.h>
494 // I'm trying to mimic pthread semantics though.
881 pthread_t pthread = android_thread_id_t_to_pthread(mThread); local
882 tid = __pthread_gettid(pthread);
  /external/valgrind/main/coregrind/
pub_core_threadstate.h 148 // This thread's pthread
149 Addr pthread; member in struct:__anon14010
  /external/webkit/Tools/DumpRenderTree/win/
DumpRenderTree.cpp 47 #include <pthread.h>
1135 pthread_t pthread; local
1156 pthread_t pthread; local
1179 pthread_t* pthread = pthreads[i]; local
    [all...]

Completed in 154 milliseconds