/bionic/libc/unistd/ |
creat.c | 31 int creat(const char* pathname, mode_t mode) 33 return open(pathname, O_WRONLY|O_TRUNC|O_CREAT, mode);
|
open.c | 34 int open(const char *pathname, int flags, ...) 51 return __open(pathname, flags, mode);
|
openat.c | 34 int openat(int fd, const char *pathname, int flags, ...) 51 return __openat(fd, pathname, flags, mode);
|
/libcore/luni/src/main/java/java/io/ |
FileFilter.java | 33 * Indicating whether a specific file should be included in a pathname list. 35 * @param pathname 40 public abstract boolean accept(File pathname);
|
/external/bluetooth/bluez/src/ |
textfile.h | 32 int textfile_put(const char *pathname, const char *key, const char *value); 33 int textfile_caseput(const char *pathname, const char *key, const char *value); 34 int textfile_del(const char *pathname, const char *key); 35 int textfile_casedel(const char *pathname, const char *key); 36 char *textfile_get(const char *pathname, const char *key); 37 char *textfile_caseget(const char *pathname, const char *key); 39 int textfile_foreach(const char *pathname,
|
/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)
|
/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
|
/external/chromium/sdch/open-vcdiff/src/gtest/internal/ |
gtest-filepath.h | 48 // FilePath - a class for file and directory pathname manipulation which 49 // handles platform-specific conventions (like the pathname separator). 63 explicit FilePath(const char* pathname) : pathname_(pathname) { } 64 explicit FilePath(const String& pathname) : pathname_(pathname) { } 82 // Returns a pathname for a file that does not currently exist. The pathname 85 // already exists. The number will be incremented until a pathname is found 137 // Returns true if pathname describes a directory in the file-syste [all...] |
/external/bluetooth/glib/gio/fam/ |
fam-helper.h | 32 fam_sub* _fam_sub_add (const gchar* pathname,
|
fam-helper.c | 38 gchar *pathname; member in struct:_fam_sub 114 path = g_strdup_printf ("%s/%s", sub->pathname, ev.filename); 209 _fam_sub_add (const gchar *pathname, 230 sub->pathname = g_strdup (pathname); 235 FAMMonitorDirectory (fam_connection, pathname, &sub->request, sub); 237 FAMMonitorFile (fam_connection, pathname, &sub->request, sub); 273 g_free (sub->pathname);
|
/external/gtest/include/gtest/internal/ |
gtest-filepath.h | 48 // FilePath - a class for file and directory pathname manipulation which 49 // handles platform-specific conventions (like the pathname separator). 64 explicit FilePath(const char* pathname) : pathname_(pathname) { 68 explicit FilePath(const String& pathname) : pathname_(pathname) { 102 // Returns a pathname for a file that does not currently exist. The pathname 105 // already exists. The number will be incremented until a pathname is found 160 // Returns true if pathname describes a directory in the file-syste [all...] |
/external/oprofile/libutil/ |
op_file.h | 64 typedef void (*get_pathname_callback)(char const * pathname, void * name_list); 77 * @param filter a pathname filter 86 * dir is of type 'dir' and its complete pathname contains a match to
|
/external/protobuf/gtest/include/gtest/internal/ |
gtest-filepath.h | 48 // FilePath - a class for file and directory pathname manipulation which 49 // handles platform-specific conventions (like the pathname separator). 64 explicit FilePath(const char* pathname) : pathname_(pathname) { 68 explicit FilePath(const String& pathname) : pathname_(pathname) { 102 // Returns a pathname for a file that does not currently exist. The pathname 105 // already exists. The number will be incremented until a pathname is found 160 // Returns true if pathname describes a directory in the file-syste [all...] |
/external/chromium/third_party/icu/source/tools/toolutil/ |
toolutil.c | 66 getLongPathname(const char *pathname) { 70 HANDLE file=FindFirstFileA(pathname, &info); 74 const char *basename=findBasename(pathname); 75 if(basename!=pathname) { 77 uprv_memmove(info.cFileName+(basename-pathname), info.cFileName, uprv_strlen(info.cFileName)+1); 78 uprv_memcpy(info.cFileName, pathname, basename-pathname); 80 pathname=info.cFileName; 85 return pathname; 109 uprv_mkdir(const char *pathname, UErrorCode *status) [all...] |
toolutil.h | 28 * This function returns a pointer to the original pathname 31 * if the pathname is indeed abbreviated. 34 * the input pathname pointer. 40 getLongPathname(const char *pathname); 43 * Find the basename at the end of a pathname, i.e., the part 45 * to this part of the pathname. 46 * If the pathname only contains a basename and no file separator, 47 * then the pathname pointer itself is returned. 59 * Creates a directory with pathname. 64 uprv_mkdir(const char *pathname, UErrorCode *status) [all...] |
/external/e2fsprogs/lib/ext2fs/ |
namei.c | 24 const char *pathname, size_t pathlen, int follow, 31 char *pathname; local 59 pathname = buffer; 61 pathname = (char *)&(ei.i_block[0]); 62 retval = open_namei(fs, root, dir, pathname, ei.i_size, 1, 70 * This routine interprets a pathname in the context of the current 73 * (pointing into the pathname) and the length of the filename. 76 const char *pathname, int pathlen, 87 if ((c = *pathname) == '/') { 89 pathname++ [all...] |
/external/icu4c/tools/toolutil/ |
toolutil.cpp | 82 getLongPathname(const char *pathname) { 86 HANDLE file=FindFirstFileA(pathname, &info); 90 const char *basename=findBasename(pathname); 91 if(basename!=pathname) { 93 uprv_memmove(info.cFileName+(basename-pathname), info.cFileName, uprv_strlen(info.cFileName)+1); 94 uprv_memcpy(info.cFileName, pathname, basename-pathname); 96 pathname=info.cFileName; 101 return pathname; 160 uprv_mkdir(const char *pathname, UErrorCode *status) [all...] |
/bionic/libc/include/ |
fcntl.h | 48 extern int unlinkat(int dirfd, const char *pathname, int flags);
|
/development/ndk/platforms/android-3/include/ |
fcntl.h | 48 extern int unlinkat(int dirfd, const char *pathname, int flags);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/ |
fcntl.h | 44 extern int unlinkat(int dirfd, const char *pathname, int flags);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/ |
fcntl.h | 44 extern int unlinkat(int dirfd, const char *pathname, int flags);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/ |
fcntl.h | 44 extern int unlinkat(int dirfd, const char *pathname, int flags);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/ |
fcntl.h | 44 extern int unlinkat(int dirfd, const char *pathname, int flags);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/ |
fcntl.h | 44 extern int unlinkat(int dirfd, const char *pathname, int flags);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/ |
fcntl.h | 44 extern int unlinkat(int dirfd, const char *pathname, int flags);
|