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

1 2

  /external/webrtc/src/system_wrappers/source/
thread.cc 22 const char* threadName)
25 return new ThreadWindows(func, obj, prio, threadName);
27 return ThreadLinux::Create(func, obj, prio, threadName);
thread_linux.h 24 ThreadPriority prio, const char* threadName);
27 const char* threadName);
thread_linux.cc 50 ThreadPriority prio, const char* threadName)
52 ThreadLinux* ptr = new ThreadLinux(func, obj, prio, threadName);
67 ThreadPriority prio, const char* threadName)
79 if (threadName != NULL)
82 strncpy(_name, threadName, kThreadMaxNameLength);
event_linux.cc 227 const char* threadName = "WebRtc_event_timer_thread";
229 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 49 // threadName NULL terminated thread name, will be visable in the Windows
54 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);