HomeSort by relevance Sort by last modified time
    Searched full:threadname (Results 1 - 25 of 46) 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 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);
  /system/core/debuggerd/
backtrace.c 69 char* threadname = NULL; local
74 threadname = fgets(threadnamebuf, sizeof(threadnamebuf), fp);
76 if (threadname) {
77 size_t len = strlen(threadname);
78 if (len && threadname[len - 1] == '\n') {
79 threadname[len - 1] = '\0';
84 _LOG(log, false, "\n\"%s\" sysTid=%d\n", threadname ? threadname : "<unknown>", tid);
tombstone.c 155 char* threadname = NULL; local
160 threadname = fgets(threadnamebuf, sizeof(threadnamebuf), fp);
162 if (threadname) {
163 size_t len = strlen(threadname);
164 if (len && threadname[len - 1] == '\n') {
165 threadname[len - 1] = '\0';
181 threadname ? threadname : "UNKNOWN",
185 threadname ? threadname : "UNKNOWN")
    [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...]
BinaryHprofReader.java 326 String threadName = readString();
333 System.out.println("\tthreadName=" + threadName);
339 threadName, groupName, parentGroupName);
  /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,
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
SingleThreadNamedTaskExecutor.java 74 String threadName = currentThread.getName();
82 currentThread.setName(threadName + " " + task.getName());
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
ThreadInfo.java 40 ThreadInfo(int threadId, String threadName) {
42 mThreadName = 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...]
  /bionic/linker/
debugger.c 125 char threadname[MAX_TASK_NAME_LEN + 1]; // one more for termination local
139 if (prctl(PR_GET_NAME, (unsigned long)threadname, 0, 0, 0) != 0) {
140 strcpy(threadname, "<name unknown>");
144 threadname[MAX_TASK_NAME_LEN] = 0;
148 signum, signame, info->si_addr, info->si_code, gettid(), threadname);
  /dalvik/vm/os/
android.cpp 65 std::string threadName(dvmGetThreadName(thread));
67 pid, threadName.c_str(), newPriority, newNice, strerror(errno));
  /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);
  /external/chromium/base/threading/
thread_unittest.cc 210 TEST_F(ThreadTest, ThreadName) {
211 Thread a("ThreadName");
213 EXPECT_EQ("ThreadName", a.thread_name());
  /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/chromium/base/
tracked_objects.cc 318 const std::string ThreadData::ThreadName() const {
557 return death_thread_->ThreadName();
564 birth_->birth_thread()->ThreadName().c_str(),
565 death_thread_->ThreadName().c_str());
697 birth_threads_.begin()->first->ThreadName().c_str());
706 death_threads_.begin()->first->ThreadName().c_str());
751 left.birth_thread()->ThreadName() !=
752 right.birth_thread()->ThreadName())
753 return left.birth_thread()->ThreadName() <
754 right.birth_thread()->ThreadName();
    [all...]
  /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.");
  /frameworks/base/tools/layoutlib/bridge/src/android/animation/
AnimationThread.java 73 public AnimationThread(RenderSessionImpl scene, String threadName,
75 super(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...]
  /frameworks/base/include/android_runtime/
AndroidRuntime.h 133 const char* threadName,
  /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);

Completed in 1476 milliseconds

1 2