Searched refs:link (Results 1 - 9 of 9) sorted by path

/system/core/adb/
H A Dusb_linux.c233 char link[256]; local
278 link_len = readlink(pathbuf, link, sizeof(link) - 1);
280 link[link_len] = '\0';
281 slash = strrchr(link, '/');
/system/core/toolbox/upstream-netbsd/bin/cp/
H A Dutils.c178 /* if hard linking then simply close the open fds, link and return */
183 if (link(entp->fts_path, to.p_path)) {
/system/core/toolbox/upstream-netbsd/bin/ln/
H A Dln.c60 static int sflag; /* Symbolic, not hard, link. */
63 /* System link call. */
113 linkf = link;
210 /* Attempt the link. */
/system/extras/ext4_utils/
H A Dcontents.c95 .. link is set to dir_inode_num. Stores the location of the inode number
212 u32 make_link(const char *link) argument
216 u32 len = strlen(link);
237 memcpy((char*)inode->i_block, link, len);
240 memcpy(data, link, len);
H A Dcontents.h24 char *link; member in struct:dentry
39 u32 make_link(const char *link);
H A Dmake_ext4fs.c231 dentries[i].link = calloc(info.block_size, 1);
232 readlink(dentries[i].full_path, dentries[i].link, info.block_size - 1);
285 entry_inode = make_link(dentries[i].link);
314 free(dentries[i].link);
/system/media/camera/docs/
H A Dhtml.mako26 a:link { color: #258aaf; text-decoration: none}
85 /* TODO: generate abbr element for each tag link? */
86 /* TODO for each x.y.z try to link it to the entry */
/system/vold/
H A DProcess.cpp35 int Process::readSymLink(const char *path, char *link, size_t max) { argument
45 length = readlink(path, link, max- 1);
48 link[length] = 0;
108 char link[PATH_MAX]; local
110 if (readSymLink(path, link, sizeof(link)) && pathMatchesMountPoint(link, mountPoint)) {
113 strncpy(openFilename, link, max-1);
156 char link[PATH_MAX]; local
159 if (readSymLink(path, link, sizeo
[all...]
H A DProcess.h33 static int readSymLink(const char *path, char *link, size_t max);

Completed in 184 milliseconds