Searched refs:linkpath (Results 1 – 10 of 10) sorted by relevance
/external/strace/tests/ |
D | inode_of_sockfd.c | 44 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/ |
D | inode_of_sockfd.c | 44 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/ |
D | inode_of_sockfd.c | 44 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/ |
D | archive_util.py | 152 linkpath = member.linkname 155 linkpath = posixpath.join(base, linkpath) 156 linkpath = posixpath.normpath(linkpath) 157 member = tarobj._getmember(linkpath)
|
/external/strace/ |
D | pathtrace.c | 103 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()
|
D | ChangeLog | 18390 * tests/symlink.c (main): Use av[0] as a linkpath.
|
/external/u-boot/fs/yaffs2/ |
D | yaffsfs.c | 3070 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/ |
D | tarfile.py | 774 def linkpath(self): member in TarInfo 777 @linkpath.setter 778 def linkpath(self, linkname): member in TarInfo
|
/external/openssh/ |
D | PROTOCOL | 346 string linkpath
|
/external/python/cpython2/Lib/ |
D | tarfile.py | 967 linkpath = property(_getlinkpath, _setlinkpath) variable in TarInfo
|