OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:threadname
(Results
1 - 3
of
3
) sorted by null
/external/valgrind/main/memcheck/tests/
threadname.c
22
const char*
threadname
= "012345678901234";
local
24
pthread_setname_np(pthread_self(),
threadname
);
local
33
const char*
threadname
= "try1";
local
36
pthread_setname_np(pthread_self(),
threadname
);
local
/system/core/debuggerd/
backtrace.cpp
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, logtype::BACKTRACE, "\n\"%s\" sysTid=%d\n",
threadname
?
threadname
: "<unknown>", tid);
tombstone.cpp
200
char*
threadname
= NULL;
local
205
threadname
= fgets(threadnamebuf, sizeof(threadnamebuf), fp);
207
if (
threadname
) {
208
size_t len = strlen(
threadname
);
209
if (len &&
threadname
[len - 1] == '\n') {
210
threadname
[len - 1] = '\0';
216
if (!strncmp(
threadname
, logd, sizeof(logd) - 1)
217
&& (!
threadname
[sizeof(logd) - 1] || (
threadname
[sizeof(logd) - 1] == '.'))) {
231
threadname
? threadname : "UNKNOWN", procname ? procname : "UNKNOWN")
[
all
...]
Completed in 229 milliseconds