HomeSort by relevance Sort by last modified time
    Searched defs:threadname (Results 1 - 3 of 3) sorted by null

  /external/valgrind/memcheck/tests/
threadname.c 27 const char* threadname = "012345678901234"; local
30 pthread_setname_np(pthread_self(), threadname); local
32 pthread_setname_np(threadname);
42 const char* threadname = "try1"; local
46 pthread_setname_np(pthread_self(), threadname); local
48 pthread_setname_np(threadname);
  /system/core/debuggerd/
backtrace.cpp 74 char* threadname = NULL; local
79 threadname = fgets(threadnamebuf, sizeof(threadnamebuf), fp);
81 if (threadname) {
82 size_t len = strlen(threadname);
83 if (len && threadname[len - 1] == '\n') {
84 threadname[len - 1] = '\0';
89 _LOG(log, logtype::BACKTRACE, "\n\"%s\" sysTid=%d\n", threadname ? threadname : "<unknown>", tid);
tombstone.cpp 204 char* threadname = nullptr; local
209 threadname = fgets(threadnamebuf, sizeof(threadnamebuf), fp);
211 if (threadname) {
212 size_t len = strlen(threadname);
213 if (len && threadname[len - 1] == '\n') {
214 threadname[len - 1] = '\0';
220 if (threadname != nullptr && !strncmp(threadname, logd, sizeof(logd) - 1)
221 && (!threadname[sizeof(logd) - 1] || (threadname[sizeof(logd) - 1] == '.')))
    [all...]

Completed in 499 milliseconds