HomeSort by relevance Sort by last modified time
    Searched refs:pathname (Results 1 - 25 of 1064) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/io/
FileFilter.java 42 * Tests whether or not the specified abstract pathname should be
43 * included in a pathname list.
45 * @param pathname The abstract pathname to be tested
46 * @return <code>true</code> if and only if <code>pathname</code>
49 boolean accept(File pathname);
  /external/ltp/include/lapi/
readlinkat.h 27 int readlinkat(int dirfd, const char *pathname, char *buf, size_t bufsiz)
29 return ltp_syscall(__NR_readlinkat, dirfd, pathname, buf, bufsiz);
  /external/ltp/testcases/kernel/syscalls/openat/
openat.h 29 int openat(int dirfd, const char *pathname, int flags, mode_t mode)
31 return ltp_syscall(__NR_openat, dirfd, pathname, flags, mode);
  /external/python/cpython3/Python/
dynload_dl.c 17 const char *pathname, FILE *fp)
22 return dl_loadmod(Py_GetProgramName(), pathname, funcname);
  /external/syslinux/com32/lib/
creat.c 9 int creat(const char *pathname, mode_t mode)
11 return open(pathname, O_CREAT | O_WRONLY | O_TRUNC, mode);
  /external/e2fsprogs/intl/
relocatable.h 41 Relocation simply replaces a pathname starting with the original prefix
42 by the corresponding pathname with the current prefix instead. Both
49 /* Returns the pathname, relocated according to the current installation
51 extern const char * relocate (const char *pathname);
54 a fresh pathname. If this is a problem because your program calls
60 file, and the current pathname of this file. Returns NULL upon failure. */
68 #define relocate(pathname) (pathname)
  /toolchain/binutils/binutils-2.27/intl/
relocatable.h 36 Relocation simply replaces a pathname starting with the original prefix
37 by the corresponding pathname with the current prefix instead. Both
44 /* Returns the pathname, relocated according to the current installation
46 extern const char * relocate (const char *pathname);
49 a fresh pathname. If this is a problem because your program calls
55 file, and the current pathname of this file. Returns NULL upon failure. */
63 #define relocate(pathname) (pathname)
  /external/expat/conftools/
PrintPath 6 # Do not print out full pathname. (silent)
8 # Look in PATHNAME instead of $PATH
22 pathname=$PATH
37 -p* ) pathname="`echo $args | sed 's/^..//'`" ;;
58 pathname=`echo -E $pathname |
67 pathname=`echo $pathname |
93 for path in $pathname
  /bionic/libc/bionic/
open.cpp 50 int creat(const char* pathname, mode_t mode) {
51 return open(pathname, O_CREAT | O_TRUNC | O_WRONLY, mode);
55 int open(const char* pathname, int flags, ...) {
65 return __openat(AT_FDCWD, pathname, force_O_LARGEFILE(flags), mode);
69 int __open_2(const char* pathname, int flags) {
71 return __openat(AT_FDCWD, pathname, force_O_LARGEFILE(flags), 0);
74 int openat(int fd, const char *pathname, int flags, ...) {
84 return __openat(fd, pathname, force_O_LARGEFILE(flags), mode);
88 int __openat_2(int fd, const char* pathname, int flags) {
90 return __openat(fd, pathname, force_O_LARGEFILE(flags), 0)
    [all...]
faccessat.cpp 35 int faccessat(int dirfd, const char* pathname, int mode, int flags) {
59 return ___faccessat(dirfd, pathname, mode);
  /external/skia/tools/skpbench/
_os_path.py 12 def basename(pathname):
13 return pathname.basename(pathname)
  /external/skqp/tools/skpbench/
_os_path.py 12 def basename(pathname):
13 return pathname.basename(pathname)
  /external/squashfs-tools/squashfs-tools/
unsquashfs_info.c 45 char *pathname = NULL; variable
52 if(pathname)
53 free(pathname);
55 pathname = NULL;
61 if(pathname)
62 free(pathname);
64 pathname = name;
121 if(pathname)
122 INFO("%s\n", pathname);
  /bionic/libc/include/bits/fortify/
fcntl.h 51 int open(const char* pathname, int flags, mode_t modes, ...) __overloadable
61 int open(const char* const __pass_object_size pathname, int flags)
64 return __open_2(pathname, flags);
68 int open(const char* const __pass_object_size pathname, int flags, mode_t modes)
72 return __open_real(pathname, flags, modes);
76 int openat(int dirfd, const char* pathname, int flags, mode_t modes, ...)
81 int openat(int dirfd, const char* const __pass_object_size pathname, int flags)
84 return __openat_2(dirfd, pathname, flags);
88 int openat(int dirfd, const char* const __pass_object_size pathname, int flags, mode_t modes)
92 return __openat_real(dirfd, pathname, flags, modes)
    [all...]
  /external/python/cpython2/Lib/
macurl2path.py 10 def url2pathname(pathname):
16 tp = urllib.splittype(pathname)[0]
18 raise RuntimeError, 'Cannot convert non-local URL to pathname'
20 if pathname[:3] == '///':
21 pathname = pathname[2:]
22 elif pathname[:2] == '//':
23 raise RuntimeError, 'Cannot convert non-local URL to pathname'
24 components = pathname.split('/')
52 def pathname2url(pathname)
    [all...]
  /external/python/cpython3/Lib/
macurl2path.py 10 def url2pathname(pathname):
16 tp = urllib.parse.splittype(pathname)[0]
18 raise RuntimeError('Cannot convert non-local URL to pathname')
20 if pathname[:3] == '///':
21 pathname = pathname[2:]
22 elif pathname[:2] == '//':
23 raise RuntimeError('Cannot convert non-local URL to pathname')
24 components = pathname.split('/')
52 def pathname2url(pathname)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
macurl2path.py 10 def url2pathname(pathname):
16 tp = urllib.splittype(pathname)[0]
18 raise RuntimeError, 'Cannot convert non-local URL to pathname'
20 if pathname[:3] == '///':
21 pathname = pathname[2:]
22 elif pathname[:2] == '//':
23 raise RuntimeError, 'Cannot convert non-local URL to pathname'
24 components = pathname.split('/')
52 def pathname2url(pathname)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
macurl2path.py 10 def url2pathname(pathname):
16 tp = urllib.splittype(pathname)[0]
18 raise RuntimeError, 'Cannot convert non-local URL to pathname'
20 if pathname[:3] == '///':
21 pathname = pathname[2:]
22 elif pathname[:2] == '//':
23 raise RuntimeError, 'Cannot convert non-local URL to pathname'
24 components = pathname.split('/')
52 def pathname2url(pathname)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
macurl2path.py 10 def url2pathname(pathname):
16 tp = urllib.splittype(pathname)[0]
18 raise RuntimeError, 'Cannot convert non-local URL to pathname'
20 if pathname[:3] == '///':
21 pathname = pathname[2:]
22 elif pathname[:2] == '//':
23 raise RuntimeError, 'Cannot convert non-local URL to pathname'
24 components = pathname.split('/')
52 def pathname2url(pathname)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
macurl2path.py 10 def url2pathname(pathname):
16 tp = urllib.splittype(pathname)[0]
18 raise RuntimeError, 'Cannot convert non-local URL to pathname'
20 if pathname[:3] == '///':
21 pathname = pathname[2:]
22 elif pathname[:2] == '//':
23 raise RuntimeError, 'Cannot convert non-local URL to pathname'
24 components = pathname.split('/')
52 def pathname2url(pathname)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dynload_dl.c 20 const char *pathname, FILE *fp)
25 return dl_loadmod(Py_GetProgramName(), pathname, funcname);
  /external/ltp/testcases/kernel/syscalls/fanotify/
fanotify.h 50 int dfd, const char *pathname)
52 return syscall(__NR_fanotify_mark, fd, flags, mask, dfd, pathname);
  /external/ltp/testcases/kernel/syscalls/inotify/
inotify.h 41 #define myinotify_add_watch(fd, pathname, mask) \
42 ltp_syscall(__NR_inotify_add_watch, fd, pathname, mask)
  /external/python/cpython2/Python/
dynload_dl.c 20 const char *pathname, FILE *fp)
25 return dl_loadmod(Py_GetProgramName(), pathname, funcname);
  /external/python/cpython2/RISCOS/Python/
dynload_riscos.c 51 char *pathname, FILE *fp)
57 err = dlk_load_no_init(pathname, &init_function);

Completed in 599 milliseconds

1 2 3 4 5 6 7 8 91011>>