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

1 2 3

  /external/compiler-rt/test/tsan/
mutex_double_lock.cc 7 void *ThreadFunc(void *m) {
16 pthread_create(&th, 0, ThreadFunc, &m);
23 // CHECK: #1 ThreadFunc
28 // CHECK: SUMMARY: ThreadSanitizer: double lock of a mutex {{.*}}mutex_double_lock.cc{{.*}}ThreadFunc
  /external/qemu/distrib/sdl-1.2.15/test/
testhread.c 20 int SDLCALL ThreadFunc(void *data)
51 thread = SDL_CreateThread(ThreadFunc, "#1");
62 thread = SDL_CreateThread(ThreadFunc, "#2");
73 thread = SDL_CreateThread(ThreadFunc, "#3");
testerror.c 20 int SDLCALL ThreadFunc(void *data)
47 thread = SDL_CreateThread(ThreadFunc, "#1");
testsem.c 16 int SDLCALL ThreadFunc(void *data)
83 threads[i] = SDL_CreateThread(ThreadFunc, (void*)i);
torturethread.c 30 int SDLCALL ThreadFunc(void *data) {
73 threads[i] = SDL_CreateThread(ThreadFunc, (void *)(uintptr_t)i);
  /external/chromium_org/ppapi/utility/threading/
simple_thread.h 29 typedef void (*ThreadFunc)(MessageLoop&, void* user_data);
46 // it. In some cases you will want control over the message. If ThreadFunc
48 bool StartWithFunction(ThreadFunc func, void* user_data);
simple_thread.cc 26 SimpleThread::ThreadFunc func;
92 bool SimpleThread::StartWithFunction(ThreadFunc func, void* user_data) {
  /external/chromium_org/third_party/sfntly/cpp/src/test/
platform_thread.cc 23 DWORD __stdcall ThreadFunc(void* params) {
34 *thread_handle = CreateThread(NULL, 0, ThreadFunc, delegate, 0, NULL);
57 void* ThreadFunc(void* params) {
72 success = !pthread_create(thread_handle, &attributes, ThreadFunc, delegate);
  /external/sfntly/cpp/src/test/
platform_thread.cc 23 DWORD __stdcall ThreadFunc(void* params) {
34 *thread_handle = CreateThread(NULL, 0, ThreadFunc, delegate, 0, NULL);
57 void* ThreadFunc(void* params) {
72 success = !pthread_create(thread_handle, &attributes, ThreadFunc, delegate);
  /external/valgrind/main/none/tests/s390x/
ex_clone.c 15 void *threadfunc(void *arg) function
42 pthread_create(&thread, NULL, threadfunc, NULL);
  /external/valgrind/main/drd/tests/
annotate_barrier.stderr.exp 10 by 0x........: threadfunc (annotate_barrier.c:?)
16 by 0x........: threadfunc (annotate_barrier.c:?)
21 by 0x........: threadfunc (annotate_barrier.c:?)
26 at 0x........: threadfunc (annotate_barrier.c:?)
36 by 0x........: threadfunc (annotate_barrier.c:?)
pth_barrier.c 47 static void* threadfunc(struct threadinfo* p) function
92 res = pthread_create(&t[i].tid, &attr, (void*(*)(void*))threadfunc, &t[i]);
annotate_barrier.c 105 static void* threadfunc(struct threadinfo* p) function
147 pthread_create(&t[i].tid, 0, (void*(*)(void*))threadfunc, &t[i]);
annotate_barrier_xml.stderr.exp 84 <fn>threadfunc</fn>
117 <fn>threadfunc</fn>
150 <fn>threadfunc</fn>
175 <fn>threadfunc</fn>
237 <fn>threadfunc</fn>
  /external/valgrind/main/helgrind/tests/
pth_barrier2.stderr.exp 21 at 0x........: threadfunc (pth_barrier.c:60)
27 at 0x........: threadfunc (pth_barrier.c:60)
39 at 0x........: threadfunc (pth_barrier.c:60)
45 at 0x........: threadfunc (pth_barrier.c:60)
57 at 0x........: threadfunc (pth_barrier.c:60)
63 at 0x........: threadfunc (pth_barrier.c:60)
75 at 0x........: threadfunc (pth_barrier.c:60)
81 at 0x........: threadfunc (pth_barrier.c:60)
93 at 0x........: threadfunc (pth_barrier.c:60)
99 at 0x........: threadfunc (pth_barrier.c:60
    [all...]
pth_barrier1.stderr.exp 21 at 0x........: threadfunc (pth_barrier.c:60)
27 at 0x........: threadfunc (pth_barrier.c:60)
pth_barrier3.stderr.exp 21 at 0x........: threadfunc (pth_barrier.c:60)
27 at 0x........: threadfunc (pth_barrier.c:60)
  /external/qemu/distrib/sdl-1.2.15/src/thread/os2/
SDL_systhread.c 41 static void threadfunc(void *pparm) function
74 thread->threadid = thread->handle = (*pfnBeginThread)(threadfunc, NULL, 512*1024, pThreadParms);
  /frameworks/av/include/media/stagefright/
AACWriter.h 66 status_t threadFunc();
AMRWriter.h 60 status_t threadFunc();
  /sdk/emulator/opengl/shared/emugl/common/
lazy_instance_unittest.cpp 106 static void* threadFunc(void* param) {
124 state.mThreads[n] = new TestThread(threadFunc, &state);
  /external/chromium_org/base/threading/
platform_thread_posix.cc 57 void* ThreadFunc(void* params) {
122 ThreadFunc,
platform_thread_win.cc 51 DWORD __stdcall ThreadFunc(void* params) {
112 NULL, stack_size, ThreadFunc, params, flags, NULL);
  /frameworks/av/media/libstagefright/
AMRWriter.cpp 196 return (void *)(uintptr_t) static_cast<AMRWriter *>(me)->threadFunc();
199 status_t AMRWriter::threadFunc() {
  /external/deqp/framework/delibs/decpp/
deThread.cpp 70 static void threadFunc (void* arg)
86 m_thread = deThread_create(threadFunc, this, &m_attribs);

Completed in 643 milliseconds

1 2 3