Searched refs:threadId (Results 1 - 5 of 5) sorted by relevance

/system/core/include/utils/
H A DAndroidThreads.h45 android_thread_id_t *threadId);
57 android_thread_id_t *threadId);
69 android_thread_id_t *threadId);
109 thread_id_t *threadId = 0)
112 threadPriority, threadStackSize, threadId) ? true : false;
/system/core/libutils/include/utils/
H A DAndroidThreads.h45 android_thread_id_t *threadId);
57 android_thread_id_t *threadId);
69 android_thread_id_t *threadId);
109 thread_id_t *threadId = 0)
112 threadPriority, threadStackSize, threadId) ? true : false;
/system/core/libutils/
H A DThreads.cpp122 android_thread_id_t *threadId)
166 if (threadId != NULL) {
167 *threadId = (android_thread_id_t)thread; // XXX: this is not portable
254 android_thread_id_t *threadId)
256 return doCreateThread( fn, userData, threadId);
287 android_thread_id_t *threadId)
290 threadPriority, threadStackSize, threadId);
117 androidCreateRawThreadEtc(android_thread_func_t entryFunction, void *userData, const char* threadName __android_unused, int32_t threadPriority, size_t threadStackSize, android_thread_id_t *threadId) argument
282 androidCreateThreadEtc(android_thread_func_t entryFunction, void *userData, const char* threadName, int32_t threadPriority, size_t threadStackSize, android_thread_id_t *threadId) argument
/system/core/libsync/tests/
H A Dsync_test.cpp459 auto threadMain = [&](int threadId) {
461 SyncFence fence(timeline, i * 2 + threadId);
468 ASSERT_EQ(counter, i * 2 + threadId);
497 auto threadMain = [&](int threadId) {
504 if ((iterations + threadId) % 8 != 0) {
518 ASSERT_EQ(producerTimelines[threadId].inc(), 0);
/system/core/libbacktrace/
H A Dbacktrace_test.cpp74 pthread_t threadId; member in struct:thread_t
652 ASSERT_TRUE(pthread_create(&runners[i].threadId, &attr, ThreadMaxRun, &runners[i]) == 0);
669 ASSERT_TRUE(pthread_create(&dumpers[i].thread.threadId, &attr, ThreadDump, &dumpers[i]) == 0);
696 ASSERT_TRUE(pthread_create(&runner.threadId, &attr, ThreadMaxRun, &runner) == 0);
712 ASSERT_TRUE(pthread_create(&dumpers[i].thread.threadId, &attr, ThreadDump, &dumpers[i]) == 0);

Completed in 114 milliseconds