HomeSort by relevance Sort by last modified time
    Searched full:symlink (Results 1 - 25 of 1015) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/tests/f_fast_symlink_extents/
name 1 fast symlink with extents flag set
expect.1 2 Fast symlink 13 has EXTENT_FL set. Clear? yes
  /bionic/libc/arch-mips/syscalls/
symlink.S 4 .globl symlink
6 .ent symlink
8 symlink: label
22 .end symlink
  /external/e2fsprogs/tests/f_badsymlinks/
expect.1 2 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.
19 Symlink /empty_link (inode #17) is invalid.
22 Symlink /long_fastlink (inode #13) is invalid.
25 Symlink /long_link (inode #14) is invalid.
28 Symlink /high_fastlink (inode #15) is invalid.
31 Symlink /high_link (inode #16) is invalid.
34 Symlink /empty_fastlink (inode #12) is invalid.
37 Symlink /bad_link_block (inode #19) is invalid
    [all...]
  /bionic/libc/arch-arm/syscalls/
symlink.S 6 ENTRY(symlink) function
15 END(symlink)
  /external/chromium_org/tools/gyp/test/generator-output/
gyptest-symlink.py 10 symlink.
18 if not hasattr(os, 'symlink'):
19 test.skip_test('Missing os.symlink -- skipping test.\n')
27 test.symlink('build/deeper', test.workpath('symlink'))
32 '--generator-output=' + test.workpath('symlink'),
35 chdir = 'symlink'
  /bootable/diskinstaller/
init.rc 9 symlink /system/etc /etc
10 symlink /system/bin/ash /system/bin/sh
  /ndk/
remove-windows-symlink.sh 3 # Find all symlink in toolchains/windows and windows-x86_64 directories
15 for SYMLINK in $SYMLINKS; do
16 if [ -L "$SYMLINK" ]; then
17 DIR=`dirname "$SYMLINK"`
18 FILE=`basename "$SYMLINK"`
  /device/asus/flo/conn_init/
Android.mk 60 $(LOCAL_BUILT_MODULE): SYMLINK := $(TARGET_OUT_VENDOR)/firmware/wlan/prima/$(LOCAL_MODULE)
62 $(hide) echo "Symlink: $(SYMLINK) -> $(TARGET)"
64 $(hide) mkdir -p $(dir $(SYMLINK))
66 $(hide) rm -rf $(SYMLINK)
67 $(hide) ln -sf $(TARGET) $(SYMLINK)
77 $(LOCAL_BUILT_MODULE): SYMLINK := $(TARGET_OUT_VENDOR)/firmware/wlan/prima/$(LOCAL_MODULE)
79 $(hide) echo "Symlink: $(SYMLINK) -> $(TARGET)"
81 $(hide) mkdir -p $(dir $(SYMLINK))
    [all...]
  /bionic/libc/arch-x86/syscalls/
symlink.S 6 ENTRY(symlink) function
24 END(symlink)
  /ndk/sources/host-tools/make-3.81/tests/scripts/options/
symlinks 5 $details = "Verify that symlink handling with and without -L works properly.";
10 # (in that the symlink() function doesn't fail) but it really doesn't, so
13 if ($port_type eq 'W32' || !( eval { symlink("",""); 1 })) {
18 # Set up a symlink sym -> dep
24 symlink("../$dirnm/dep", 'sym');
45 symlink('dep1', 'dep');
55 # should get an error: with -L we should use the timestamp of the symlink.
57 symlink("../$dirname/dep", 'sym');
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
symlink_support.py 14 symlink(TESTFN, symlink_path)
24 """Skip decorator for tests that require functional symlink"""
26 msg = "Requires functional symlink implementation"
31 Ctypes symlink implementation since Python doesn't support
91 symlink = os.symlink if hasattr(os, 'symlink') else ( variable
96 # On Windows, to remove a directory symlink, one must use rmdir
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
symlink_support.py 14 symlink(TESTFN, symlink_path)
24 """Skip decorator for tests that require functional symlink"""
26 msg = "Requires functional symlink implementation"
31 Ctypes symlink implementation since Python doesn't support
91 symlink = os.symlink if hasattr(os, 'symlink') else ( variable
96 # On Windows, to remove a directory symlink, one must use rmdir
  /device/samsung/manta/
init.smdk5250.rc 13 symlink /storage/emulated/legacy /sdcard
14 symlink /storage/emulated/legacy /mnt/sdcard
15 symlink /storage/emulated/legacy /storage/sdcard0
16 symlink /mnt/shell/emulated/0 /storage/emulated/legacy
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
symlink.c 8 int symlink(const char* oldpath, const char* newpath) { function
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
realpath.c 46 * Find the real name of path, by removing all ".", ".." and symlink
58 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local
195 slen = readlink(resolved, symlink, sizeof(symlink) - 1);
201 symlink[slen] = '\0';
202 if (symlink[0] == '/') {
215 * append them to symlink. The result is placed
219 if (symlink[slen - 1] != '/') {
220 if (slen + 1 >= sizeof(symlink)) {
226 symlink[slen] = '/'
    [all...]
  /external/openssh/openbsd-compat/
realpath.c 47 * Find the real name of path, by removing all ".", ".." and symlink
59 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local
150 slen = readlink(resolved, symlink, sizeof(symlink) - 1);
153 symlink[slen] = '\0';
154 if (symlink[0] == '/') {
167 * append them to symlink. The result is placed
171 if (symlink[slen - 1] != '/') {
172 if (slen + 1 >= sizeof(symlink)) {
176 symlink[slen] = '/'
    [all...]
  /frameworks/base/data/fonts/
Android.mk 21 # create symlink for given font
24 define create-font-symlink
26 @echo "Symlink: $$@ -> $$<"
38 $(eval $(call create-font-symlink,DroidSans.ttf,Roboto-Regular.ttf))
39 $(eval $(call create-font-symlink,DroidSans-Bold.ttf,Roboto-Bold.ttf))
117 $(eval $(call create-font-symlink,Roboto-Light.ttf,Roboto-Regular.ttf))
118 $(eval $(call create-font-symlink,Roboto-LightItalic.ttf,Roboto-Italic.ttf))
119 $(eval $(call create-font-symlink,Roboto-Thin.ttf,Roboto-Regular.ttf))
120 $(eval $(call create-font-symlink,Roboto-ThinItalic.ttf,Roboto-Italic.ttf))
121 $(eval $(call create-font-symlink,RobotoCondensed-Regular.ttf,Roboto-Regular.ttf)
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/
input-type-file-drag-drop.html 15 <li> Dropping a symlink'd file should accpect/show/upload the target, not the symlink itself.
  /external/chromium_org/build/
symlink.py 6 """Make a symlink and optionally touch a file (to handle dependencies)."""
29 os.symlink(s, t)
33 os.symlink(s, t)
  /external/clang/tools/driver/
CMakeLists.txt 64 # Create a relative symlink
71 # Create the clang++ symlink in the build directory.
79 # Create the clang-cl symlink in the build directory.
  /external/e2fsprogs/lib/ext2fs/
valid_blk.c 37 * If the symbolic link is a "fast symlink", then the symlink
51 return 0; /* Probably a fast symlink */
  /external/e2fsprogs/tests/f_filetype/
expect.1 2 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/openssh/contrib/aix/
inventory.sh 22 # type=SYMLINK
51 # Entry is SymLink
52 print "\ttype=SYMLINK\n";
  /build/libs/host/include/host/
CopyFile.h 13 COPY_NO_DEREFERENCE = 0x00010000, // copy symlink link instead of target

Completed in 629 milliseconds

1 2 3 4 5 6 7 8 91011>>