HomeSort by relevance Sort by last modified time
    Searched full:threadname (Results 51 - 75 of 313) sorted by null

1 23 4 5 6 7 8 91011>>

  /system/core/libutils/
ProcessCallStack.cpp 185 threadInfo.threadName = getThreadName(tid);
214 const String8& threadName = threadInfo.threadName;
217 printer.printFormatLine("\"%s\" sysTid=%d", threadName.string(), tid);
Threads.cpp 71 char * threadName;
79 char * name = t->threadName;
119 const char* threadName __android_unused,
129 if (threadPriority != PRIORITY_DEFAULT || threadName != NULL) {
139 t->threadName = threadName ? strdup(threadName) : NULL;
251 const char* /*threadName*/,
284 const char* threadName,
289 return gCreateThreadFn(entryFunction, userData, threadName,
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
SuspendCountTest.java 114 String threadName = null;
116 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
122 allThreadsNames[i] = threadName;
125 if ( threadName.equals(testedThreadsNames[k]) ) {
136 + "; threadName = " + threadName);
150 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
187 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
215 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
256 logWriter.println("## FAILURE: Unexpected suspendCount for thread = " + threadName);
    [all...]
ForceEarlyReturnDebuggee.java 33 public static String threadName;
68 threadName = synchronizer.receiveMessage();
69 DebuggeeThread thrd = new DebuggeeThread(threadName);
ResumeTest.java 102 String threadName = null;
104 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
112 if ( threadName.equals(testedThreadsNames[k]) ) {
146 + "; threadName = " + testedThreadsNames[i]);
185 + "; threadName = " + testedThreadsNames[i]);
288 + "; threadName = " + testedThreadsNames[i]);
ThreadGroup002Test.java 112 String threadName = null;
114 threadName = debuggeeWrapper.vmMirror.getThreadName(threadID);
122 if ( threadName.equals(testedThreadsNames[k]) ) {
170 + "; threadName = " + testedThreadsNames[threadCount]);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadGroupReference/
ChildrenTest.java 101 String threadName = debuggeeWrapper.vmMirror.getThreadName(childThreadID);
103 ("==> thread: threadID = " + childThreadID + "; threadName = " + threadName);
110 if (!threadName.equals(NameDebuggee.TESTED_THREAD)) {
113 assertString("Invalid thread name,", NameDebuggee.TESTED_THREAD, threadName);
  /external/guava/guava/src/com/google/common/util/concurrent/
Callables.java 106 private static boolean trySetName(final String threadName, Thread currentThread) {
111 currentThread.setName(threadName);
  /frameworks/base/services/core/java/com/android/server/pm/
AbstractStatsBase.java 50 protected AbstractStatsBase(String fileName, String threadName, boolean lock) {
52 mBackgroundThreadName = threadName;
  /external/chromium-trace/catapult/devil/devil/utils/
logging_common.py 35 def __init__(self, fmt='%(threadName)-4s %(message)s'):
  /toolchain/binutils/binutils-2.27/include/nlm/
internal.h 185 in the threadName field, excluding the null byte terminator. The
186 threadName field contains the thread name as specified by the THREADNAME
191 char threadName[NLM_MAX_THREAD_NAME_LENGTH + 1];
  /external/oj-libjdwp/src/share/back/
transport.c 418 char threadName[MAXPATHLEN + 100];
490 (void)strcpy(threadName, "JDWP Transport Listener: ");
491 (void)strcat(threadName, name);
494 error = spawnNewThread(func, (void*)info, threadName);
539 (void)strcpy(threadName, "JDWP Transport Listener: ");
540 (void)strcat(threadName, name);
543 err = spawnNewThread(func, (void*)trans, threadName);
  /cts/hostsidetests/atrace/src/android/atrace/cts/
AtraceHostTest.java 46 void onTraceEntry(String threadName, int pid, int tid, String eventType, String args);
77 /*threadname*/ m.group(1),
88 /*threadname*/ m.group(1),
99 /*threadname*/ m.group(1),
  /system/core/libutils/include/utils/
ProcessCallStack.h 68 String8 threadName;
  /external/valgrind/docs/internals/
xml-output-protocol4.txt 411 <threadname>NAME</threadname> if set
432 * The <threadname> tag identifies the name of the thread if it was
722 <threadname>NAME</threadname> if set
730 <threadname>NAME</threadname> if set
737 * The <threadname> tag identifies the name of the thread if it was
758 <threadname>NAME</threadname> if se
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
Resume002Test.java 92 String threadName = debuggeeWrapper.vmMirror.getThreadName(eventThreadID);
93 logWriter.println("Thread \"" + threadName + "\" hit breakpoint");
  /external/vogar/src/vogar/tasks/
TaskQueue.java 144 String threadName = Thread.currentThread().getName();
150 Thread.currentThread().setName(threadName);
  /frameworks/layoutlib/bridge/src/android/animation/
AnimationThread.java 72 public AnimationThread(RenderSessionImpl scene, String threadName,
74 super(threadName);
  /frameworks/support/compat/src/main/java/androidx/core/provider/
SelfDestructiveThread.java 79 String threadName, int priority, int destructAfterMillisec) {
80 mThreadName = threadName;
  /hardware/qcom/display/msm8084/libqdutils/
idle_invalidator.cpp 41 static const char *threadName = "IdleInvalidator";
89 run(threadName, android::PRIORITY_LOWEST);
  /hardware/qcom/display/msm8226/libqdutils/
idle_invalidator.cpp 41 static const char *threadName = "IdleInvalidator";
89 run(threadName, android::PRIORITY_LOWEST);
  /hardware/qcom/display/msm8994/libqdutils/
idle_invalidator.cpp 42 static const char *threadName = "IdleInvalidator";
81 run(threadName, android::PRIORITY_LOWEST);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
JDWPStackFrameAccessTest.java 191 String threadName = synchronizer.receiveMessage();
192 long threadId = getThreadIdFromName(threadName);
204 private long getThreadIdFromName(String threadName) {
208 if (threadName.equals(currentThreadName)) {
212 throw new TestErrorException("Could not find thread id of thread \"" + threadName + "\"");
  /device/generic/goldfish/camera/
WorkerThread.h 29 WorkerThread(const char* threadName,
  /external/autotest/site_utils/lxc/
unittest_setup.py 21 '%(lineno)4.4d| %(threadName)16.16s(%(thread)d)| %(message)s')

Completed in 624 milliseconds

1 23 4 5 6 7 8 91011>>