Searched defs:threadName (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/libs/utils/
H A DThreads.cpp86 char * threadName; member in struct:thread_data_t
94 char * name = t->threadName;
133 const char* threadName,
143 if (threadPriority != PRIORITY_DEFAULT || threadName != NULL) {
148 t->threadName = threadName ? strdup(threadName) : NULL;
249 const char* threadName,
284 const char* threadName,
289 return gCreateThreadFn(entryFunction, userData, threadName,
131 androidCreateRawThreadEtc(android_thread_func_t entryFunction, void *userData, const char* threadName, 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
[all...]
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp1027 static int javaAttachThread(const char* threadName, JNIEnv** pEnv) argument
1037 args.name = (char*) threadName;
1042 LOGI("NOTE: attach of thread '%s' failed\n", threadName);
1101 const char* threadName,
1109 assert(threadName != NULL);
1113 args[2] = (void*) strdup(threadName); // javaThreadShell must free
1116 threadName, threadPriority, threadStackSize, threadId);
1098 javaCreateThreadEtc( android_thread_func_t entryFunction, void* userData, const char* threadName, int32_t threadPriority, size_t threadStackSize, android_thread_id_t* threadId) argument

Completed in 79 milliseconds