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

/frameworks/base/libs/utils/
H A DThreads.cpp71 char * threadName; member in struct:thread_data_t
79 char * name = t->threadName;
109 const char* threadName,
119 if (threadPriority != PRIORITY_DEFAULT || threadName != NULL) {
124 t->threadName = threadName ? strdup(threadName) : NULL;
225 const char* threadName,
260 const char* threadName,
265 return gCreateThreadFn(entryFunction, userData, threadName,
107 androidCreateRawThreadEtc(android_thread_func_t entryFunction, void *userData, const char* threadName, int32_t threadPriority, size_t threadStackSize, android_thread_id_t *threadId) argument
258 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.cpp1035 static int javaAttachThread(const char* threadName, JNIEnv** pEnv) argument
1045 args.name = (char*) threadName;
1050 LOGI("NOTE: attach of thread '%s' failed\n", threadName);
1109 const char* threadName,
1117 assert(threadName != NULL);
1121 args[2] = (void*) strdup(threadName); // javaThreadShell must free
1124 threadName, threadPriority, threadStackSize, threadId);
1106 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 158 milliseconds