HomeSort by relevance Sort by last modified time
    Searched refs:link_dest (Results 1 - 4 of 4) 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 148 struct stat link_dest; local
149 if (!stat(path, &link_dest)) {
150 printf("l%c ", mode2kind(link_dest.st_mode));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
dir_util.py 152 link_dest = os.readlink(src_name)
154 log.info("linking %s -> %s", dst_name, link_dest)
156 os.symlink(link_dest, dst_name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
dir_util.py 152 link_dest = os.readlink(src_name)
154 log.info("linking %s -> %s", dst_name, link_dest)
156 os.symlink(link_dest, dst_name)

Completed in 95 milliseconds