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

  /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';
85 threadname ? threadname : "<unknown>", tid);
tombstone.c 199 char* threadname = NULL; local
204 threadname = fgets(threadnamebuf, sizeof(threadnamebuf), fp);
206 if (threadname) {
207 size_t len = strlen(threadname);
208 if (len && threadname[len - 1] == '\n') {
209 threadname[len - 1] = '\0';
225 threadname ? threadname : "UNKNOWN",
229 pid, tid, threadname ? threadname : "UNKNOWN")
    [all...]

Completed in 3361 milliseconds