OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:link_dest
(Results
1 - 2
of
2
) sorted by null
/system/core/toolbox/
lsof.c
74
static char
link_dest
[PATH_MAX];
local
77
if ((link_dest_size = readlink(info->path,
link_dest
, sizeof(
link_dest
)-1)) < 0) {
81
snprintf(
link_dest
, sizeof(
link_dest
), "%s (readlink: %s)", info->path, strerror(errno));
83
link_dest
[link_dest_size] = '\0';
87
if (!strcmp(
link_dest
, "/"))
92
"???", "???", "???", "???",
link_dest
);
ls.c
146
struct stat
link_dest
;
local
147
if (!stat(path, &
link_dest
)) {
148
printf("l%c ", mode2kind(
link_dest
.st_mode));
Completed in 908 milliseconds