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

1 2 3 4 5

  /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);
  /hardware/qcom/gps/msm8960/core/
MsgTask.cpp 47 MsgTask::MsgTask(tCreate tCreator, const char* threadName) :
50 tCreator(threadName, loopMain,
53 createPThread(threadName);
57 MsgTask::MsgTask(tAssociate tAssociator, const char* threadName) :
59 createPThread(threadName);
71 void MsgTask::createPThread(const char* threadName) {
81 NULL != threadName) {
83 memcpy(lname, threadName, MAX_TASK_COMM_LEN);
MsgTask.h 51 MsgTask(tCreate tCreator, const char* threadName);
52 MsgTask(tAssociate tAssociator, const char* 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,
  /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);
  /hardware/qcom/gps/core/
MsgTask.cpp 47 MsgTask::MsgTask(tCreate tCreator, const char* threadName) :
50 tCreator(threadName, loopMain,
53 createPThread(threadName);
57 MsgTask::MsgTask(tAssociate tAssociator, const char* threadName) :
59 createPThread(threadName);
86 void MsgTask::createPThread(const char* threadName) {
96 NULL != threadName) {
98 memcpy(lname, threadName, MAX_TASK_COMM_LEN);
MsgTask.h 51 MsgTask(tCreate tCreator, const char* threadName);
52 MsgTask(tAssociate tAssociator, const char* threadName);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
NameTest.java 58 String threadName;
70 threadName = thrdReply.getNextValueAsString();
71 logWriter.println("\tthreadID = " + threadID + " threadName = "
72 + threadName);
73 if (threadName.length() == 0) {
ThreadGroupTest.java 67 String groupName, threadName;
85 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
88 + "; threadName=" + threadName
92 if (threadName.equals(ThreadGroupDebuggee.TESTED_THREAD)) {
SuspendTest.java 99 String threadName = null;
101 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
109 if ( threadName.equals(testedThreadsNames[k]) ) {
120 + "; threadName = " + threadName);
154 logWriter.println("## FAILURE: Unexpected suspendStatus for thread = " + threadName);
166 logWriter.println("## FAILURE: Can NOT resume thread = " + threadName);
SuspendCountTest.java 113 String threadName = null;
115 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
121 allThreadsNames[i] = threadName;
124 if ( threadName.equals(testedThreadsNames[k]) ) {
135 + "; threadName = " + threadName);
149 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
186 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
214 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
255 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
    [all...]
  /hardware/qcom/display/msm8960/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...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
ThreadOnlyModifierDebuggee.java 109 String threadName = t.getName();
110 logWriter.println("Thread " + threadName + " starts");
113 logWriter.println("Wait for end of thread " + threadName);
118 logWriter.println("Thread " + threadName + " ends");
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
SuspendTest.java 67 String threadName;
77 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
91 + "\"" + threadName + "\" "
97 + threadName + "\"" + " is not in suspended state");
AllThreadsTest.java 69 String threadName;
79 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
93 + "\"" + threadName + "\" "
97 if (threadName.equals(AllThreadsDebuggee.TESTED_THREAD)) {
127 String threadName;
139 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
153 + "\"" + threadName + "\" "
199 String threadName;
208 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
210 if (threadName.equals(AllThreadsDebuggee.TESTED_THREAD))
    [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...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
ChildrenTest.java 98 String threadName = debuggeeWrapper.vmMirror.getThreadName(childThreadID);
100 ("==> thread: threadID = " + childThreadID + "; threadName = " + threadName);
107 if (!threadName.equals(NameDebuggee.TESTED_THREAD)) {
110 assertString("Invalid thread name,", NameDebuggee.TESTED_THREAD, threadName);
  /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());
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
ThreadEndTest.java 90 String threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
91 logWriter.println("=> threadName = " + threadName);
92 assertEquals("Invalid thread name", EventDebuggee.testedThreadName, threadName);
ThreadStartTest.java 92 String threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
93 logWriter.println("=> threadName = " + threadName);
94 assertEquals("Invalid thread name", EventDebuggee.testedThreadName, threadName);

Completed in 239 milliseconds

1 2 3 4 5