HomeSort by relevance Sort by last modified time
    Searched refs:threadName (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/webrtc/src/system_wrappers/source/
thread.cc 22 const char* threadName)
25 return new ThreadWindows(func, obj, prio, threadName);
27 return ThreadPosix::Create(func, obj, prio, threadName);
thread_posix.h 24 ThreadPriority prio, const char* threadName);
27 const char* threadName);
thread_posix.cc 50 ThreadPriority prio, const char* threadName)
52 ThreadPosix* ptr = new ThreadPosix(func, obj, prio, threadName);
67 ThreadPriority prio, const char* threadName)
79 if (threadName != NULL)
82 strncpy(_name, threadName, kThreadMaxNameLength);
event_posix.cc 227 const char* threadName = "WebRtc_event_timer_thread";
229 threadName);
  /frameworks/native/include/utils/
AndroidThreads.h 42 const char* threadName,
54 const char* threadName,
63 const char* threadName,
106 const char* threadName = "android:unnamed_thread",
111 return androidCreateThreadEtc(entryFunction, userData, threadName,
  /external/webkit/Source/JavaScriptCore/wtf/
Threading.h 91 ThreadIdentifier createThread(ThreadFunction, void*, const char* threadName);
94 ThreadIdentifier createThreadInternal(ThreadFunction, void*, const char* threadName);
98 void initializeCurrentThreadInternal(const char* threadName);
ThreadingPthreads.cpp 189 void initializeCurrentThreadInternal(const char* threadName)
192 pthread_setname_np(threadName);
194 UNUSED_PARAM(threadName);
  /external/webrtc/src/system_wrappers/interface/
thread_wrapper.h 51 // threadName NULL terminated thread name, will be visable in the Windows
56 const char* threadName = 0);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
ThreadInfo.java 40 ThreadInfo(int threadId, String threadName) {
42 mThreadName = threadName;
ClientData.java 527 synchronized void addThread(int threadId, String threadName) {
528 ThreadInfo attr = new ThreadInfo(threadId, threadName);
  /libcore/luni/src/main/java/java/lang/
Thread.java 227 * @param threadName
233 public Thread(Runnable runnable, String threadName) {
234 if (threadName == null) {
238 create(null, runnable, threadName, 0);
246 * @param threadName
253 public Thread(String threadName) {
254 if (threadName == null) {
258 create(null, null, threadName, 0);
290 * @param threadName
297 public Thread(ThreadGroup group, Runnable runnable, String threadName) {
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
HprofData.java 55 public final String threadName;
59 public static ThreadEvent start(int objectId, int threadId, String threadName,
62 threadName, groupName, parentGroupName);
70 String threadName, String groupName, String parentGroupName) {
71 if (threadName == null) {
72 throw new NullPointerException("threadName == null");
77 this.threadName = threadName;
86 this.threadName = null;
95 result = 31 * result + hashCode(threadName);
    [all...]
SamplingProfiler.java 462 String threadName = thread.getName();
471 threadName, groupName, parentGroupName);
BinaryHprofReader.java 326 String threadName = readString();
333 System.out.println("\tthreadName=" + threadName);
339 threadName, groupName, parentGroupName);
BinaryHprofWriter.java 111 int threadNameId = writeString(e.threadName);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
SingleThreadNamedTaskExecutor.java 74 String threadName = currentThread.getName();
82 currentThread.setName(threadName + " " + task.getName());
  /dalvik/vm/os/
android.cpp 65 std::string threadName(dvmGetThreadName(thread));
67 pid, threadName.c_str(), newPriority, newNice, strerror(errno));
  /frameworks/base/tools/layoutlib/bridge/src/android/animation/
AnimationThread.java 73 public AnimationThread(RenderSessionImpl scene, String threadName,
75 super(threadName);
  /frameworks/base/include/android_runtime/
AndroidRuntime.h 133 const char* threadName,
  /frameworks/native/libs/utils/
Threads.cpp 89 char * threadName;
97 char * name = t->threadName;
138 const char* threadName,
148 if (threadPriority != PRIORITY_DEFAULT || threadName != NULL) {
158 t->threadName = threadName ? strdup(threadName) : NULL;
270 const char* threadName,
305 const char* threadName,
310 return gCreateThreadFn(entryFunction, userData, threadName,
    [all...]
  /dalvik/vm/
Thread.cpp 559 std::string threadName(dvmGetThreadName(target));
561 threadId, target->threadId, threadName.c_str());
    [all...]
Profile.cpp 290 std::string threadName(dvmGetThreadName(thread));
291 fprintf(fp, "%d\t%s\n", thread->threadId, threadName.c_str());
  /frameworks/base/core/jni/
AndroidRuntime.cpp 924 static int javaAttachThread(const char* threadName, JNIEnv** pEnv)
934 args.name = (char*) threadName;
939 ALOGI("NOTE: attach of thread '%s' failed\n", threadName);
    [all...]
  /libcore/dalvik/src/test/java/dalvik/system/profiler/
SamplingProfilerTest.java 230 assertNotNull(event.threadName);
236 assertNull(event.threadName);
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidMonitorTest.java 300 String threadName = Thread.currentThread().getName();
302 // System.out.println(threadName + " waiting");
304 // System.out.println(threadName + " done waiting");
306 // System.out.println(threadName + " interrupted.");

Completed in 758 milliseconds

1 2 3