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

1 2 3 4 5 6 7 8 91011>>

  /external/kernel-headers/original/linux/
un.h 8 char sun_path[UNIX_PATH_MAX]; /* pathname */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
un.h 8 char sun_path[UNIX_PATH_MAX]; /* pathname */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
un.h 8 char sun_path[UNIX_PATH_MAX]; /* pathname */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
un.h 8 char sun_path[UNIX_PATH_MAX]; /* pathname */
  /external/chromium/third_party/libjingle/source/talk/base/
pathutils.cc 60 // Pathname - parsing of pathnames into components, and vice versa
63 bool Pathname::IsFolderDelimiter(char ch) {
67 char Pathname::DefaultFolderDelimiter() {
71 Pathname::Pathname()
75 Pathname::Pathname(const std::string& pathname)
77 SetPathname(pathname);
80 Pathname::Pathname(const std::string& folder, const std::string& filename
108 std::string Pathname::pathname() const { function in class:talk_base::Pathname
    [all...]
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...]
unixfilesystem.h 40 virtual FileStream *OpenFile(const Pathname &filename,
45 virtual bool CreatePrivateFile(const Pathname &filename);
49 virtual bool DeleteFile(const Pathname &filename);
53 virtual bool DeleteEmptyFolder(const Pathname &folder);
58 virtual bool CreateFolder(const Pathname &pathname);
63 virtual bool MoveFile(const Pathname &old_path, const Pathname &new_path);
64 virtual bool MoveFolder(const Pathname &old_path, const Pathname &new_path)
    [all...]
unixfilesystem.cc 95 bool UnixFilesystem::CreateFolder(const Pathname &path) {
96 std::string pathname(path.pathname());
97 int len = pathname.length();
98 if ((len == 0) || (pathname[len - 1] != '/'))
102 int res = ::stat(pathname.c_str(), &st);
114 } while ((len > 0) && (pathname[len - 1] != '/'));
116 if (!CreateFolder(Pathname(pathname.substr(0, len)))) {
120 LOG(LS_INFO) << "Creating folder: " << pathname;
    [all...]
win32filesystem.h 39 virtual FileStream *OpenFile(const Pathname &filename,
44 virtual bool CreatePrivateFile(const Pathname &filename);
48 virtual bool DeleteFile(const Pathname &filename);
52 virtual bool DeleteEmptyFolder(const Pathname &folder);
57 virtual bool CreateFolder(const Pathname &pathname);
63 virtual bool MoveFile(const Pathname &old_path, const Pathname &new_path);
68 virtual bool MoveFolder(const Pathname &old_path, const Pathname &new_path)
    [all...]
win32filesystem.cc 50 bool Win32Filesystem::CreateFolder(const Pathname &pathname) {
51 if (pathname.pathname().empty() || !pathname.filename().empty())
55 if (!Utf8ToWindowsFilename(pathname.pathname(), &path16))
69 if (!pathname.parent_folder().empty()) {
70 Pathname parent(pathname);
    [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...]
fileutils.cc 79 bool DirectoryIterator::Iterate(const Pathname &dir) {
80 directory_ = dir.pathname();
84 std::string d = dir.pathname() + '*';
168 bool FilesystemInterface::CopyFolder(const Pathname &old_path,
169 const Pathname &new_path) {
171 Pathname new_dir;
172 new_dir.SetFolder(new_path.pathname());
173 Pathname old_dir;
174 old_dir.SetFolder(old_path.pathname());
178 di.Iterate(old_dir.pathname());
266 std::string pathname = path.pathname(); local
    [all...]
  /external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/
set-href-attribute-pathname.js 1 description('Test setting the pathname attribute of the URL in HTMLAnchorElement.');
5 debug("Set pathname that starts with slash");
7 a.pathname = "/path name";
12 debug("Set pathname that does not start with slash and contains '?'");
14 a.pathname = "pa?th";
22 debug("Set pathname that starts with double slash and contains '#'");
24 a.pathname = "//path#name";
30 debug("Set a pathname containing .. in it");
32 a.pathname = "/it/../path";
36 debug("Set pathname to null")
    [all...]
  /external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/
set-href-attribute-pathname-expected.txt 1 Test setting the pathname attribute of the URL in HTMLAnchorElement.
6 Set pathname that starts with slash
8 Set pathname that does not start with slash and contains '?'
10 Set pathname that starts with double slash and contains '#'
12 Set a pathname containing .. in it
14 Set pathname to null
16 Set pathname to empty string
18 Set pathname that includes illegal characters to URL that contains illegal characters.
20 Set pathname to URL that contains '@' in host
22 Set pathname to a URL with non-hierarchical protoco
    [all...]
  /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);
41 int textfile_foreach(const char *pathname, textfile_cb func, void *data);
  /sdk/common/src/com/android/io/
FolderWrapper.java 32 * Creates a new File instance from a parent abstract pathname and a child pathname string.
33 * @param parent the parent pathname
43 * Creates a new File instance by converting the given pathname string into an abstract
44 * pathname.
45 * @param pathname the pathname
49 public FolderWrapper(String pathname) {
50 super(pathname);
54 * Creates a new File instance from a parent abstract pathname and a child pathname string
    [all...]
FileWrapper.java 44 * Creates a new File instance from a parent abstract pathname and a child pathname string.
45 * @param parent the parent pathname
55 * Creates a new File instance by converting the given pathname string into an abstract
56 * pathname.
57 * @param osPathname the OS pathname
66 * Creates a new File instance from a parent abstract pathname and a child pathname string.
67 * @param parent the parent pathname
78 * abstract pathname
    [all...]
  /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/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/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
  /system/core/toolbox/
restorecon.c 20 fprintf(stderr, "usage: %s [-f file_contexts] [-nrRv] pathname...\n", progname);
24 static int restore(const char *pathname, const struct stat *sb)
28 if (lgetfilecon(pathname, &oldcontext) < 0) {
30 pathname, strerror(errno));
33 if (selabel_lookup(sehandle, &newcontext, pathname, sb->st_mode) < 0) {
34 fprintf(stderr, "Could not lookup context for %s: %s\n", pathname,
41 printf("Relabeling %s from %s to %s.\n", pathname, oldcontext, newcontext);
43 if (lsetfilecon(pathname, newcontext) < 0) {
45 pathname, newcontext, strerror(errno));
  /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/linux-tools-perf/util/
path.c 92 char *pathname = get_pathname(); local
95 len = vsnprintf(pathname, PATH_MAX, fmt, args);
99 return cleanup_path(pathname);
105 char *pathname = get_pathname(); local
112 memcpy(pathname, perf_dir, len);
114 pathname[len++] = '/';
116 len += vsnprintf(pathname + len, PATH_MAX - len, fmt, args);
120 return cleanup_path(pathname);
  /libcore/luni/src/main/java/java/io/
FileFilter.java 29 * Indicating whether a specific file should be included in a pathname list.
31 * @param pathname
36 public abstract boolean accept(File pathname);
  /prebuilts/tools/common/proguard/proguard4.7/docs/manual/retrace/
index.html 11 window.top.location.replace("../../index.html#"+window.location.pathname+window.location.hash);
13 var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");

Completed in 2884 milliseconds

1 2 3 4 5 6 7 8 91011>>