Home | History | Annotate | Download | only in debuggerd

Lines Matching refs:threadname

204   char* threadname = nullptr;
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] == '.'))) {
235 threadname ? threadname : "UNKNOWN", procname ? procname : "UNKNOWN");