OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:thread_name_len
(Results
1 - 2
of
2
) sorted by null
/bionic/libc/bionic/
pthread_setname_np.cpp
53
size_t
thread_name_len
= strlen(thread_name);
local
54
if (
thread_name_len
>= MAX_TASK_COMM_LEN) {
78
ssize_t n = TEMP_FAILURE_RETRY(write(fd, thread_name,
thread_name_len
));
83
} else if (n != static_cast<ssize_t>(
thread_name_len
)) {
/system/core/toolbox/
top.c
50
#define
THREAD_NAME_LEN
32
60
char tname[
THREAD_NAME_LEN
];
340
strncpy(proc->tname, open_paren + 1,
THREAD_NAME_LEN
);
341
proc->tname[
THREAD_NAME_LEN
-1] = 0;
Completed in 41 milliseconds