HomeSort by relevance Sort by last modified time
    Searched full:threadfunc (Results 1 - 25 of 64) 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
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue6997_linux.c 13 static void* threadfunc(void* dummy) { function
20 return pthread_create(&thread, NULL, &threadfunc, NULL);
  /prebuilts/go/linux-x86/misc/cgo/test/
issue6997_linux.c 13 static void* threadfunc(void* dummy) { function
20 return pthread_create(&thread, NULL, &threadfunc, NULL);
  /external/compiler-rt/test/asan/TestCases/Linux/
pthread_create_version.cc 10 void *ThreadFunc(void *) { return nullptr; }
19 pthread_create(&t, &attr, ThreadFunc, nullptr);
  /external/gemmlowp/test/
test_blocking_counter.cc 31 pthread_create(&thread_, nullptr, ThreadFunc, this);
46 void ThreadFunc() {
54 static void* ThreadFunc(void* ptr) {
55 static_cast<Thread*>(ptr)->ThreadFunc();
  /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/none/tests/s390x/
ex_clone.c 15 void *threadfunc(void *arg) function
42 pthread_create(&thread, NULL, threadfunc, NULL);
  /hardware/interfaces/gnss/1.0/default/
ThreadCreationWrapper.cpp 19 void* threadFunc(void* arg) {
34 int ret = pthread_create(&threadId, nullptr, threadFunc, reinterpret_cast<void*>(
ThreadCreationWrapper.h 46 void* threadFunc(void* arg);
53 * threadFunc() method which in-turn invokes pthread_create.
  /external/valgrind/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>
  /prebuilts/misc/windows/sdl2/test/
testthread.c 34 ThreadFunc(void *data)
76 thread = SDL_CreateThread(ThreadFunc, "One", "#1");
90 thread = SDL_CreateThread(ThreadFunc, "Two", "#2");
testerror.c 33 ThreadFunc(void *data)
64 thread = SDL_CreateThread(ThreadFunc, NULL, "#1");
testsem.c 28 ThreadFunc(void *data)
111 threads[i] = SDL_CreateThread(ThreadFunc, name, (void *) i);
torturethread.c 45 ThreadFunc(void *data)
97 threads[i] = SDL_CreateThread(ThreadFunc, name, (void*) (uintptr_t) i);
  /external/valgrind/helgrind/tests/
pth_barrier2.stderr.exp 25 at 0x........: threadfunc (pth_barrier.c:60)
31 at 0x........: threadfunc (pth_barrier.c:60)
44 at 0x........: threadfunc (pth_barrier.c:60)
50 at 0x........: threadfunc (pth_barrier.c:60)
63 at 0x........: threadfunc (pth_barrier.c:60)
69 at 0x........: threadfunc (pth_barrier.c:60)
82 at 0x........: threadfunc (pth_barrier.c:60)
88 at 0x........: threadfunc (pth_barrier.c:60)
101 at 0x........: threadfunc (pth_barrier.c:60)
107 at 0x........: threadfunc (pth_barrier.c:60
    [all...]
pth_barrier1.stderr.exp 25 at 0x........: threadfunc (pth_barrier.c:60)
31 at 0x........: threadfunc (pth_barrier.c:60)
pth_barrier3.stderr.exp 25 at 0x........: threadfunc (pth_barrier.c:60)
31 at 0x........: threadfunc (pth_barrier.c:60)
  /frameworks/av/media/libstagefright/include/media/stagefright/
AACWriter.h 65 status_t threadFunc();
AMRWriter.h 56 status_t threadFunc();
  /frameworks/av/media/libstagefright/
AMRWriter.cpp 183 return (void *)(uintptr_t) static_cast<AMRWriter *>(me)->threadFunc();
186 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);
  /external/libchrome/base/threading/
platform_thread_posix.cc 48 void* ThreadFunc(void* params) {
110 int err = pthread_create(&handle, &attributes, ThreadFunc, params.get());

Completed in 613 milliseconds

1 2 3