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 - 3
of
3
) sorted by null
/bionic/libc/bionic/
pthread_setname_np.cpp
49
size_t
thread_name_len
= strlen(thread_name);
local
50
if (
thread_name_len
>= MAX_TASK_COMM_LEN) {
74
ssize_t n = TEMP_FAILURE_RETRY(write(fd, thread_name,
thread_name_len
));
79
} else if (n != static_cast<ssize_t>(
thread_name_len
)) {
/system/core/toolbox/
top.c
51
#define
THREAD_NAME_LEN
32
61
char tname[
THREAD_NAME_LEN
];
344
strncpy(proc->tname, open_paren + 1,
THREAD_NAME_LEN
);
345
proc->tname[
THREAD_NAME_LEN
-1] = 0;
/external/lldb/tools/debugserver/source/
RNBRemote.cpp
2454
size_t
thread_name_len
= strlen(thread_name);
local
[
all
...]
Completed in 651 milliseconds