Home
last modified time | relevance | path

Searched refs:linkpath (Results 1 – 10 of 10) sorted by relevance

/external/strace/tests/
Dinode_of_sockfd.c44 char linkpath[sizeof("/proc/self/fd/%u") + sizeof(int) * 3]; in inode_of_sockfd() local
45 assert(snprintf(linkpath, sizeof(linkpath), "/proc/self/fd/%u", fd) in inode_of_sockfd()
46 < (int) sizeof(linkpath)); in inode_of_sockfd()
49 const ssize_t path_len = readlink(linkpath, path, sizeof(path) - 1); in inode_of_sockfd()
51 perror_msg_and_fail("readlink: %s", linkpath); in inode_of_sockfd()
/external/strace/tests-mx32/
Dinode_of_sockfd.c44 char linkpath[sizeof("/proc/self/fd/%u") + sizeof(int) * 3]; in inode_of_sockfd() local
45 assert(snprintf(linkpath, sizeof(linkpath), "/proc/self/fd/%u", fd) in inode_of_sockfd()
46 < (int) sizeof(linkpath)); in inode_of_sockfd()
49 const ssize_t path_len = readlink(linkpath, path, sizeof(path) - 1); in inode_of_sockfd()
51 perror_msg_and_fail("readlink: %s", linkpath); in inode_of_sockfd()
/external/strace/tests-m32/
Dinode_of_sockfd.c44 char linkpath[sizeof("/proc/self/fd/%u") + sizeof(int) * 3]; in inode_of_sockfd() local
45 assert(snprintf(linkpath, sizeof(linkpath), "/proc/self/fd/%u", fd) in inode_of_sockfd()
46 < (int) sizeof(linkpath)); in inode_of_sockfd()
49 const ssize_t path_len = readlink(linkpath, path, sizeof(path) - 1); in inode_of_sockfd()
51 perror_msg_and_fail("readlink: %s", linkpath); in inode_of_sockfd()
/external/python/setuptools/setuptools/
Darchive_util.py152 linkpath = member.linkname
155 linkpath = posixpath.join(base, linkpath)
156 linkpath = posixpath.normpath(linkpath)
157 member = tarobj._getmember(linkpath)
/external/strace/
Dpathtrace.c103 char linkpath[sizeof("/proc/%u/fd/%u") + 2 * sizeof(int)*3]; in getfdpath() local
109 xsprintf(linkpath, "/proc/%u/fd/%u", tcp->pid, fd); in getfdpath()
110 n = readlink(linkpath, buf, bufsize - 1); in getfdpath()
DChangeLog18390 * tests/symlink.c (main): Use av[0] as a linkpath.
/external/u-boot/fs/yaffs2/
Dyaffsfs.c3070 int yaffs_link(const YCHAR *oldpath, const YCHAR *linkpath) in yaffs_link() argument
3084 if (!oldpath || !linkpath) { in yaffs_link()
3089 if (yaffsfs_CheckPath(linkpath) < 0 || yaffsfs_CheckPath(oldpath) < 0) { in yaffs_link()
3098 lnk = yaffsfs_FindObject(NULL, linkpath, 0, 0, NULL, NULL, NULL); in yaffs_link()
3099 lnk_dir = yaffsfs_FindDirectory(NULL, linkpath, &newname, in yaffs_link()
/external/python/cpython3/Lib/
Dtarfile.py774 def linkpath(self): member in TarInfo
777 @linkpath.setter
778 def linkpath(self, linkname): member in TarInfo
/external/openssh/
DPROTOCOL346 string linkpath
/external/python/cpython2/Lib/
Dtarfile.py967 linkpath = property(_getlinkpath, _setlinkpath) variable in TarInfo