HomeSort by relevance Sort by last modified time
    Searched refs:threadName (Results 1 - 25 of 65) 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 26 ThreadPriority prio, const char* threadName);
29 const char* threadName);
thread_win.h 26 const char* threadName);
thread_win.cc 23 ThreadPriority prio, const char* threadName)
39 if (threadName != NULL)
43 strncpy(_name, threadName, kThreadMaxNameLength);
thread_posix.cc 78 ThreadPriority prio, const char* threadName)
80 ThreadPosix* ptr = new ThreadPosix(func, obj, prio, threadName);
95 ThreadPriority prio, const char* threadName)
111 if (threadName != NULL)
114 strncpy(_name, threadName, kThreadMaxNameLength);
event_posix.cc 227 const char* threadName = "WebRtc_event_timer_thread";
229 threadName);
  /system/core/include/utils/
AndroidThreads.h 42 const char* threadName,
54 const char* threadName,
66 const char* threadName,
109 const char* threadName = "android:unnamed_thread",
114 return androidCreateThreadEtc(entryFunction, userData, threadName,
ProcessCallStack.h 68 String8 threadName;
  /external/chromium_org/third_party/WebKit/Source/wtf/
Threading.h 49 WTF_EXPORT ThreadIdentifier createThread(ThreadFunction, void*, const char* threadName);
52 WTF_EXPORT ThreadIdentifier createThreadInternal(ThreadFunction, void*, const char* threadName);
56 WTF_EXPORT void initializeCurrentThreadInternal(const char* threadName);
ThreadingPthreads.cpp 200 void initializeCurrentThreadInternal(const char* threadName)
203 pthread_setname_np(threadName);
205 UNUSED_PARAM(threadName);
  /hardware/qcom/display/msm8960/libqdutils/
idle_invalidator.cpp 35 static const char *threadName = "Invalidator";
80 run(threadName, android::PRIORITY_AUDIO);
  /hardware/qcom/display/msm8x26/libqdutils/
idle_invalidator.cpp 35 static const char *threadName = "Invalidator";
80 run(threadName, android::PRIORITY_AUDIO);
  /libcore/libart/src/main/java/java/lang/
Thread.java 226 * @param threadName
232 public Thread(Runnable runnable, String threadName) {
233 if (threadName == null) {
234 throw new NullPointerException("threadName == null");
237 create(null, runnable, threadName, 0);
245 * @param threadName
252 public Thread(String threadName) {
253 if (threadName == null) {
254 throw new NullPointerException("threadName == null");
257 create(null, null, threadName, 0)
    [all...]
  /libcore/libdvm/src/main/java/java/lang/
Thread.java 221 * @param threadName
227 public Thread(Runnable runnable, String threadName) {
228 if (threadName == null) {
229 throw new NullPointerException("threadName == null");
232 create(null, runnable, threadName, 0);
240 * @param threadName
247 public Thread(String threadName) {
248 if (threadName == null) {
249 throw new NullPointerException("threadName == null");
252 create(null, null, threadName, 0)
    [all...]
  /external/webrtc/src/system_wrappers/interface/
thread_wrapper.h 54 // threadName NULL terminated thread name, will be visable in the Windows
59 const char* threadName = 0);
  /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);
  /hardware/qcom/display/msm8974/libqdutils/
idle_invalidator.cpp 35 static const char *threadName = "Invalidator";
84 run(threadName, android::PRIORITY_AUDIO);
  /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,
  /system/core/libutils/
ProcessCallStack.cpp 188 threadInfo.threadName = getThreadName(tid);
225 const String8& threadName = threadInfo.threadName;
228 printer.printFormatLine("\"%s\" sysTid=%d", threadName.string(), tid);
Threads.cpp 74 char * threadName;
82 char * name = t->threadName;
122 const char* threadName,
132 if (threadPriority != PRIORITY_DEFAULT || threadName != NULL) {
142 t->threadName = threadName ? strdup(threadName) : NULL;
254 const char* threadName,
289 const char* threadName,
294 return gCreateThreadFn(entryFunction, userData, threadName,
    [all...]
  /frameworks/av/services/camera/libcameraservice/api_pro/
ProCamera2Client.cpp 63 String8 threadName;
65 threadName = String8::format("PC2-%d-FrameProc", mCameraId);
66 mFrameProcessor->run(threadName.string());

Completed in 1443 milliseconds

1 2 3