Home
last modified time | relevance | path

Searched refs:symlink (Results 1 – 25 of 292) sorted by relevance

12345678910>>...12

/external/roboto-fonts/
DAndroid.mk24 define create-font-symlink
56 $(eval $(call create-font-symlink,Roboto-Black.ttf,Roboto-Bold.ttf))
57 $(eval $(call create-font-symlink,Roboto-BlackItalic.ttf,Roboto-BoldItalic.ttf))
58 $(eval $(call create-font-symlink,Roboto-Light.ttf,Roboto-Regular.ttf))
59 $(eval $(call create-font-symlink,Roboto-LightItalic.ttf,Roboto-Italic.ttf))
60 $(eval $(call create-font-symlink,Roboto-Medium.ttf,Roboto-Regular.ttf))
61 $(eval $(call create-font-symlink,Roboto-MediumItalic.ttf,Roboto-Italic.ttf))
62 $(eval $(call create-font-symlink,Roboto-Thin.ttf,Roboto-Regular.ttf))
63 $(eval $(call create-font-symlink,Roboto-ThinItalic.ttf,Roboto-Italic.ttf))
64 $(eval $(call create-font-symlink,RobotoCondensed-Regular.ttf,Roboto-Regular.ttf))
[all …]
/external/openssh/openbsd-compat/
Drealpath.c61 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; in realpath() local
152 slen = readlink(resolved, symlink, sizeof(symlink) - 1); in realpath()
155 symlink[slen] = '\0'; in realpath()
156 if (symlink[0] == '/') { in realpath()
173 if (symlink[slen - 1] != '/') { in realpath()
175 (ptrdiff_t)sizeof(symlink)) { in realpath()
179 symlink[slen] = '/'; in realpath()
180 symlink[slen + 1] = 0; in realpath()
182 left_len = strlcat(symlink, left, sizeof(left)); in realpath()
188 left_len = strlcpy(left, symlink, sizeof(left)); in realpath()
/external/v8/build/
Dsymlink.gni5 # Creates a symlink.
8 # output: Where to create the symlink.
9 template("symlink") {
20 script = "//build/symlink.py"
29 # Creates a symlink from root_build_dir/target_name to |binary_label|. This rule
32 # Note that for executables, using a copy (as opposed to a symlink) does not
37 # binary_label: Target that builds the file to symlink to. e.g.:
41 # output_name: Where to create the symlink
53 symlink(target_name) {
Dsymlink.py42 os.symlink(s, t)
49 os.symlink(s, t)
/external/e2fsprogs/tests/f_filetype/
Dexpect.12 Special (device/socket/fifo/symlink) file (inode 14) has immutable
5 Special (device/socket/fifo/symlink) file (inode 15) has immutable
8 Special (device/socket/fifo/symlink) file (inode 16) has immutable
11 Special (device/socket/fifo/symlink) file (inode 17) has immutable
23 Setting filetype for entry 'symlink' in / (2) to 7.
/external/toybox/toys/posix/
Drm.c58 if (try->symlink) goto skip; in do_rm()
72 if (!dir || try->symlink != (char *)2) perror_msg_raw(try->name); in do_rm()
74 if (try->parent) try->parent->symlink = (char *)2; in do_rm()
/external/curl/lib/
Dftplistparser.c122 } symlink; member
705 parser->state.UNIX.sub.symlink = PL_UNIX_SYMLINK_PRESPACE; in Curl_ftp_parselist()
763 switch(parser->state.UNIX.sub.symlink) { in Curl_ftp_parselist()
768 parser->state.UNIX.sub.symlink = PL_UNIX_SYMLINK_NAME; in Curl_ftp_parselist()
774 parser->state.UNIX.sub.symlink = PL_UNIX_SYMLINK_PRETARGET1; in Curl_ftp_parselist()
784 parser->state.UNIX.sub.symlink = PL_UNIX_SYMLINK_PRETARGET2; in Curl_ftp_parselist()
791 parser->state.UNIX.sub.symlink = PL_UNIX_SYMLINK_NAME; in Curl_ftp_parselist()
797 parser->state.UNIX.sub.symlink = PL_UNIX_SYMLINK_PRETARGET3; in Curl_ftp_parselist()
804 parser->state.UNIX.sub.symlink = PL_UNIX_SYMLINK_NAME; in Curl_ftp_parselist()
810 parser->state.UNIX.sub.symlink = PL_UNIX_SYMLINK_PRETARGET4; in Curl_ftp_parselist()
[all …]
/external/e2fsprogs/tests/f_badsymlinks/
Dexpect.12 Special (device/socket/fifo/symlink) file (inode 18) has immutable
10 Special (device/socket/fifo/symlink) file (inode 20) has immutable
15 Block #1 (22) causes symlink to be too big. CLEARED.
/external/squashfs-tools/squashfs-tools/
Dunsquash-2.c224 &header.symlink; in read_inode_2()
234 i.symlink = malloc(inodep->symlink_size + 1); in read_inode_2()
235 if(i.symlink == NULL) in read_inode_2()
238 strncpy(i.symlink, block_ptr + in read_inode_2()
241 i.symlink[inodep->symlink_size] = '\0'; in read_inode_2()
Dunsquash-1.c154 &header.symlink; in read_inode_1()
164 i.symlink = malloc(inodep->symlink_size + 1); in read_inode_1()
165 if(i.symlink == NULL) in read_inode_1()
168 strncpy(i.symlink, block_ptr + in read_inode_1()
171 i.symlink[inodep->symlink_size] = '\0'; in read_inode_1()
Dunsquash-3.c233 &header.symlink; in read_inode_3()
243 i.symlink = malloc(inodep->symlink_size + 1); in read_inode_3()
244 if(i.symlink == NULL) in read_inode_3()
247 strncpy(i.symlink, block_ptr + in read_inode_3()
250 i.symlink[inodep->symlink_size] = '\0'; in read_inode_3()
Dunsquash-4.c185 struct squashfs_symlink_inode_header *inode = &header.symlink; in read_inode_4()
189 i.symlink = malloc(inode->symlink_size + 1); in read_inode_4()
190 if(i.symlink == NULL) in read_inode_4()
193 strncpy(i.symlink, block_ptr + in read_inode_4()
196 i.symlink[inode->symlink_size] = '\0'; in read_inode_4()
/external/v8/tools/gyp/test/symlinks/
Dgyptest-symlinks.py57 os.symlink(gyp_file.name, symlink_gyp)
58 os.symlink(c_file.name, symlink_c)
/external/autotest/client/site_tests/security_SymlinkRestrictions/
Dcontrol7 PURPOSE = "Verify symlink restrictions introduced by the Yama LSM"
8 CRITERIA = "Fails if kernel lacks symlink restrictions"
/external/e2fsprogs/
DMCONFIG.in159 $(top_builddir)/util/install-symlink: $(top_srcdir)/util/install-symlink.in \
161 cd $(top_builddir); CONFIG_FILES=util/install-symlink ./config.status
162 chmod +x $(top_builddir)/util/install-symlink
167 INSTALL_SYMLINK = /bin/sh $(top_builddir)/util/install-symlink \
170 DEP_INSTALL_SYMLINK = $(top_builddir)/util/install-symlink \
/external/autotest/client/bin/
Dharness_standalone.py55 os.symlink(rc, service)
56 os.symlink(rc, service_link)
/external/e2fsprogs/tests/f_clear_xattr/
Dexpect.117 i_file_acl for inode 14 (/symlink) is 22, should be zero.
20 i_file_acl for inode 15 (/long-symlink) is 23, should be zero.
/external/bison/m4/
Dfcntl-o.m422 AC_CHECK_FUNCS_ONCE([symlink])
53 if (symlink ("/dev/null", sym) != 0)
64 if (unlink (sym) != 0 || symlink (".", sym) != 0)
/external/toybox/
DMakefile41 scripts/install.sh --symlink --force
44 scripts/install.sh --long --symlink --force
/external/bison/build-aux/
Dgnupload158 --symlink-regex=*)
161 --symlink-regex)
164 --symlink)
/external/autotest/client/cros/networking/
Dshill_context.py140 os.symlink(our_proc_dir, SHILL_START_LOCK_PATH)
148 os.symlink(our_proc_dir, SHILL_START_LOCK_PATH)
/external/bison/lib/
Dunistd.in.h1371 # undef symlink
1372 # define symlink rpl_symlink
1374 _GL_FUNCDECL_RPL (symlink, int, (char const *contents, char const *file)
1376 _GL_CXXALIAS_RPL (symlink, int, (char const *contents, char const *file));
1379 _GL_FUNCDECL_SYS (symlink, int, (char const *contents, char const *file)
1382 _GL_CXXALIAS_SYS (symlink, int, (char const *contents, char const *file));
1384 _GL_CXXALIASWARN (symlink);
1386 # undef symlink
1388 _GL_WARN_ON_USE (symlink, "symlink is not portable - "
/external/autotest/client/site_tests/firmware_TouchMTB/
Dfirmware_window.py281 def _make_symlink(path, symlink): argument
285 if os.path.islink(symlink):
286 os.remove(symlink)
287 os.symlink(real_gtk_dir, self.gtk_symlink)
386 os.symlink(self.original_gtk_realpath, self.gtk_symlink)
/external/bison/darwin-lib/
Dunistd.h1683 # undef symlink
1684 # define symlink rpl_symlink
1686 _GL_FUNCDECL_RPL (symlink, int, (char const *contents, char const *file)
1688 _GL_CXXALIAS_RPL (symlink, int, (char const *contents, char const *file));
1691 _GL_FUNCDECL_SYS (symlink, int, (char const *contents, char const *file)
1694 _GL_CXXALIAS_SYS (symlink, int, (char const *contents, char const *file));
1696 _GL_CXXALIASWARN (symlink);
1698 # undef symlink
1700 _GL_WARN_ON_USE (symlink, "symlink is not portable - "
/external/bison/linux-lib/
Dunistd.h1683 # undef symlink
1684 # define symlink rpl_symlink
1686 _GL_FUNCDECL_RPL (symlink, int, (char const *contents, char const *file)
1688 _GL_CXXALIAS_RPL (symlink, int, (char const *contents, char const *file));
1691 _GL_FUNCDECL_SYS (symlink, int, (char const *contents, char const *file)
1694 _GL_CXXALIAS_SYS (symlink, int, (char const *contents, char const *file));
1696 _GL_CXXALIASWARN (symlink);
1698 # undef symlink
1700 _GL_WARN_ON_USE (symlink, "symlink is not portable - "

12345678910>>...12