HomeSort by relevance Sort by last modified time
    Searched refs:pathname (Results 51 - 75 of 309) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/android-ndk-r7/platforms/android-5/arch-arm/usr/include/
fcntl.h 48 extern int unlinkat(int dirfd, const char *pathname, int flags);
  /prebuilts/ndk/android-ndk-r7/platforms/android-5/arch-x86/usr/include/
fcntl.h 48 extern int unlinkat(int dirfd, const char *pathname, int flags);
  /prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-arm/usr/include/
fcntl.h 48 extern int unlinkat(int dirfd, const char *pathname, int flags);
  /prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-x86/usr/include/
fcntl.h 48 extern int unlinkat(int dirfd, const char *pathname, int flags);
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/
fcntl.h 48 extern int unlinkat(int dirfd, const char *pathname, int flags);
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/
fcntl.h 48 extern int unlinkat(int dirfd, const char *pathname, int flags);
  /external/chromium/third_party/libjingle/source/talk/base/
fileutils.h 49 class Pathname;
71 virtual bool Iterate(const Pathname &path);
113 // Returns a DirectoryIterator for a given pathname.
121 virtual FileStream *OpenFile(const Pathname &filename,
131 virtual bool CreatePrivateFile(const Pathname &filename) = 0;
136 virtual bool DeleteFile(const Pathname &filename) = 0;
142 virtual bool DeleteEmptyFolder(const Pathname &folder) = 0;
147 virtual bool DeleteFolderContents(const Pathname &folder);
151 virtual bool DeleteFolderAndContents(const Pathname &folder) {
158 bool DeleteFileOrFolder(const Pathname &path)
    [all...]
pathutils.h 38 // Pathname - parsing of pathnames into components, and vice versa.
41 // component. A folder never contains a filename. A pathname may include
44 // pathname() /home/john/example.txt
57 class Pathname {
63 Pathname();
64 Pathname(const std::string& pathname);
65 Pathname(const std::string& folder, const std::string& filename);
67 // Set's the default folder delimiter for this Pathname
74 // Reset to the empty pathname
    [all...]
diskcache.cc 284 Pathname pathname; local
285 pathname.SetFolder(folder_);
286 pathname.SetBasename(buffer);
287 pathname.SetExtension(extension);
293 return pathname.pathname();
298 Pathname pathname(filename);
300 if (1 != sscanf(pathname.extension().c_str(), ".%u", &tempdex)
    [all...]
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
RootProcessScanner.java 86 private static boolean isUnapprovedRootProcess(File pathname)
88 return isPidDirectory(pathname)
89 && !isKernelProcess(pathname)
90 && isRootProcess(pathname);
93 private static boolean isPidDirectory(File pathname) {
94 return pathname.isDirectory() && Pattern.matches("\\d+", pathname.getName());
  /hardware/msm7k/libgralloc-qsd8k/tests/
pmemalloc_test.cpp 59 virtual int open(const char* pathname, int flags, int mode) {
96 virtual int open(const char* pathname, int flags, int mode) {
97 EXPECT_EQ(fakePmemDev, pathname);
138 virtual int open(const char* pathname, int flags, int mode) {
139 EXPECT_EQ(fakePmemDev, pathname);
183 virtual int open(const char* pathname, int flags, int mode) {
184 EXPECT_EQ(fakePmemDev, pathname);
213 virtual int open(const char* pathname, int flags, int mode) {
214 EXPECT_EQ(fakePmemDev, pathname);
287 virtual int open(const char* pathname, int flags, int mode)
    [all...]
  /external/bluetooth/bluez/src/
textfile.c 185 static int write_key(const char *pathname, const char *key, const char *value, int icase)
193 fd = open(pathname, O_RDWR);
309 static char *read_key(const char *pathname, const char *key, int icase)
316 fd = open(pathname, O_RDONLY);
373 int textfile_put(const char *pathname, const char *key, const char *value)
375 return write_key(pathname, key, value, 0);
378 int textfile_caseput(const char *pathname, const char *key, const char *value)
380 return write_key(pathname, key, value, 1);
383 int textfile_del(const char *pathname, const char *key)
385 return write_key(pathname, key, NULL, 0)
    [all...]
  /external/bluetooth/glib/gio/
glocalfilemonitor.h 57 GFileMonitor * _g_local_file_monitor_new (const char *pathname,
  /system/core/init/
util.h 34 int mkdir_recursive(const char *pathname, mode_t mode);
  /external/emma/core/java12/com/vladium/util/
Files.java 106 String pathname = tokenizer.nextToken (); local
108 if (canonical) pathname = canonicalizePathname (pathname);
110 if (pathnames.add (pathname))
112 _result.add (new File (pathname));
124 * Converts 'pathname' into the canonical OS form. This wrapper function
125 * will return the absolute form of 'pathname' if File.getCanonicalPath() fails.
127 public static String canonicalizePathname (final String pathname)
129 if (pathname == null) throw new IllegalArgumentException ("null input: pathname");
    [all...]
  /external/icu4c/tools/toolutil/
toolutil.h 55 * This function returns a pointer to the original pathname
58 * if the pathname is indeed abbreviated.
61 * the input pathname pointer.
67 getLongPathname(const char *pathname);
70 * Find the basename at the end of a pathname, i.e., the part
72 * to this part of the pathname.
73 * If the pathname only contains a basename and no file separator,
74 * then the pathname pointer itself is returned.
80 * Find the directory name of a pathname, that is, everything
87 * @param path the full pathname to inspect.
    [all...]
  /external/webkit/Source/WebCore/workers/
WorkerLocation.idl 40 readonly attribute DOMString pathname;
  /dalvik/dx/src/com/android/dx/cf/direct/
ClassPathOpener.java 39 /** {@code non-null;} pathname to start with */
40 private final String pathname; field in class:ClassPathOpener
88 * @param pathname {@code non-null;} path element to process
94 public ClassPathOpener(String pathname, boolean sort, Consumer consumer) {
95 this.pathname = pathname;
107 File file = new File(pathname);
  /external/qemu/
path.c 24 char *pathname; member in struct:pathelem
53 if (asprintf(&new->pathname, "%s/%s", root, name) == -1) {
76 if ((dir = opendir(path->pathname)) != NULL) {
100 *e = new_entry(root->pathname, root, name);
128 return cursor->pathname;
  /external/oprofile/opjitconv/
opjitconv.c 88 static void get_pathname(char const * pathname, void * name_list)
91 struct pathname * pn = xmalloc(sizeof(struct pathname));
92 pn->name = xstrdup(pathname);
96 static void delete_pathname(struct pathname * pname)
108 struct pathname * pname = list_entry(pos1, struct pathname,
151 struct pathname * anon_dir =
152 list_entry(pos, struct pathname, neighbor);
443 struct pathname * pname = list_entry(pos1, struct pathname
    [all...]
  /cts/tools/cts-java-scanner/src/com/android/cts/javascanner/
DocletRunner.java 87 public boolean accept(File pathname) {
88 return pathname.isDirectory() || pathname.toString().endsWith(".java");
  /external/valgrind/main/include/
pub_tool_libcfile.h 71 extern SysRes VG_(mknod) ( const Char* pathname, Int mode, UWord dev );
72 extern SysRes VG_(open) ( const Char* pathname, Int flags, Int mode );
75 extern Int VG_(fd_open) (const Char* pathname, Int flags, Int mode);
  /external/emma/lib/internal/
stamptool.jar 
  /external/freetype/include/freetype/
ftsystem.h 296 * pathname ::
328 FT_StreamDesc pathname; member in struct:FT_StreamRec_
  /external/webkit/Source/WebCore/html/
HTMLAnchorElement.idl 41 readonly attribute DOMString pathname;
49 attribute [ConvertNullToNullString] DOMString pathname;

Completed in 3695 milliseconds

1 23 4 5 6 7 8 91011>>