Searched refs:threadName (Results 1 - 5 of 5) 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/include/utils/
H A Dthreads.h99 const char* threadName,
111 const char* threadName,
120 const char* threadName,
187 const char* threadName = "android:unnamed_thread",
192 return androidCreateThreadEtc(entryFunction, userData, threadName,
/frameworks/base/include/android_runtime/
H A DAndroidRuntime.h114 const char* threadName,
/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
/frameworks/base/tests/CoreTests/android/core/
H A DMonitorTest.java304 String threadName = Thread.currentThread().getName();
306 // System.out.println(threadName + " waiting");
308 // System.out.println(threadName + " done waiting");
310 // System.out.println(threadName + " interrupted.");

Completed in 203 milliseconds