OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:link_path
(Results
1 - 3
of
3
) sorted by null
/system/core/init/
devices.c
384
char
link_path
[256];
local
406
snprintf(
link_path
, sizeof(
link_path
), "/dev/block/platform/%s", device);
411
if (asprintf(&links[link_num], "%s/by-name/%s",
link_path
, p) > 0)
419
if (asprintf(&links[link_num], "%s/by-num/p%d",
link_path
, uevent->partition_num) > 0)
426
if (asprintf(&links[link_num], "%s/%s",
link_path
, slash + 1) > 0)
/external/chromium/chrome/common/
logging_chrome.cc
205
void RemoveSymlinkAndLog(const FilePath&
link_path
,
207
if (::unlink(
link_path
.value().c_str()) == -1)
208
PLOG(WARNING) << "Unable to unlink symlink " <<
link_path
.value();
/external/llvm/lib/Support/Unix/
Path.inc
328
char
link_path
[MAXPATHLEN];
329
if (realpath(exe_path,
link_path
))
330
return Path(
link_path
);
352
char
link_path
[MAXPATHLEN];
353
if (realpath(DLInfo.dli_fname,
link_path
))
354
return Path(
link_path
);
Completed in 2467 milliseconds