Home
last modified time | relevance | path

Searched refs:thread_fn (Results 1 – 3 of 3) sorted by relevance

/external/bluetooth/bluedroid/osi/include/
Dthread.h24 typedef void (*thread_fn)(void *context); typedef
42 bool thread_post(thread_t *thread, thread_fn func, void *context);
/external/valgrind/main/helgrind/tests/
Dannotate_hbefore.c304 void* thread_fn ( void* arg )
322 r= pthread_create( &t1, NULL, &thread_fn, (void*)&w ); assert(!r);
323 r= pthread_create( &t2, NULL, &thread_fn, (void*)&w ); assert(!r);
/external/bluetooth/bluedroid/osi/src/
Dthread.c49 thread_fn func;
109 bool thread_post(thread_t *thread, thread_fn func, void *context) { in thread_post()