Searched defs:path (Results 151 - 175 of 1434) sorted by relevance

1234567891011>>

/external/libmtp/examples/
H A Dthumb.c51 char *path = NULL; local
77 path = argv[0];
79 if ( stat(path, &statbuff) == -1 ) {
80 fprintf(stderr, "%s: ", path);
88 if ( (fd = open(path, O_RDONLY|O_BINARY) == -1) ) {
90 if ( (fd = open(path, O_RDONLY)) == -1) {
92 printf("Couldn't open image file %s (%s)\n",path,strerror(errno));
/external/libselinux/src/
H A Dcompute_av.c19 char path[PATH_MAX]; local
29 snprintf(path, sizeof path, "%s/access", selinux_mnt);
30 fd = open(path, O_RDWR);
/external/libunwind/include/
H A Dmap_info.h44 char *path; member in struct:map_info
/external/libunwind/src/coredump/
H A D_UPT_get_dyn_info_list_addr.c40 char path[PATH_MAX]; local
53 if (elf_map_image (&ui->ei, path) < 0)
57 Debug (16, "checking object %s\n", path);
59 di = tdep_find_unwind_table (&ui->edi, as, path, lo, off);
/external/libunwind/src/
H A Dos-hpux.c47 unsigned long *segbase, unsigned long *mapoff, char **path)
50 const char *path; local
75 path = dlgetname (&lmd, sizeof (lmd), NULL, 0, 0);
76 if (!path)
87 map->path = strdup(path2);
92 Debug(1, "segbase=%lx, mapoff=%lx, path=%s\n", map->start, map->offset, map->path);
125 if (path != NULL)
127 *path = strdup (map->path);
45 tdep_get_elf_image(unw_addr_space_t as, struct elf_image *ei, pid_t pid, unw_word_t ip, unsigned long *segbase, unsigned long *mapoff, char **path) argument
[all...]
/external/libunwind/src/ptrace/
H A D_UPT_get_dyn_info_list_addr.c39 char path[PATH_MAX]; local
51 Debug (16, "checking object %s\n", path);
53 if (tdep_find_unwind_table (&ui->edi, as, path, lo, off, 0) > 0)
/external/libxml2/include/libxml/
H A Duri.h40 char *path; /* the path string */ member in struct:_xmlURI
81 xmlNormalizeURIPath (char *path);
87 xmlCanonicPath (const xmlChar *path);
89 xmlPathToURI (const xmlChar *path);
/external/linux-tools-perf/src/tools/perf/util/
H A Dcache.h10 #define CMD_EXEC_PATH "--exec-path"
59 static inline int is_absolute_path(const char *path) argument
61 return path[0] == '/';
64 const char *make_nonrelative_path(const char *path);
65 char *strip_path_suffix(const char *path, const char *suffix);
/external/lldb/examples/summaries/cocoa/
H A DLogger.py3 import os.path namespace
37 name = os.path.abspath(name)
/external/lldb/source/Core/
H A DStreamFile.cpp50 StreamFile::StreamFile (const char *path) : argument
52 m_file (path, File::eOpenOptionWrite | File::eOpenOptionCanCreate, File::ePermissionsDefault)
/external/lldb/tools/debugserver/source/MacOSX/
H A DCFBundle.cpp20 CFBundle::CFBundle(const char *path) : argument
24 if (path && path[0])
25 SetPath(path);
56 // Set the path for a bundle by supplying a
59 CFBundle::SetPath (const char *path) argument
65 // Make a CFStringRef from the supplied path
67 cf_path.SetFileSystemRepresentation(path);
/external/llvm/include/llvm/Support/
H A DPath.h10 // This file declares the llvm::sys::path namespace. It is designed after
12 // path class.
26 namespace path { namespace in namespace:llvm::sys
34 /// \a path. The traversal order is as follows:
52 StringRef Path; ///< The entire path.
57 friend const_iterator begin(StringRef path);
58 friend const_iterator end(StringRef path);
72 /// @brief Reverse path iterator.
75 /// \a path in reverse order. The traversal order is exactly reversed from that
79 StringRef Path; ///< The entire path
[all...]
/external/llvm/utils/
H A Dwciia.py12 utils/wciia.py path
38 for path in paths.split():
39 owner['paths'].append(path)
79 for path in owner['paths']:
80 # print "searching (" + path + ")"
82 if fpath == path:
84 # see if path ends with a *
85 rstar = path.rfind('*')
89 if len(fpath) < len(path):
90 rpos = path
104 path = str(sys.argv[1]) variable
[all...]
/external/lzma/CPP/7zip/Common/
H A DFilePathAutoRename.cpp15 const UString &extension, unsigned value, UString &path)
19 path = name;
20 path += number;
21 path += extension;
22 return NFile::NFind::DoesFileOrDirExist(path);
27 UString path; local
49 if (MakeAutoName(name, extension, mid, path))
14 MakeAutoName(const UString &name, const UString &extension, unsigned value, UString &path) argument
/external/mesa3d/scons/
H A Dllvm.py31 import os.path namespace
49 if not os.path.isdir(llvm_dir):
57 llvm_bin_dir = os.path.join(llvm_dir, llvm_subdir, 'bin')
58 if not os.path.isdir(llvm_bin_dir):
59 llvm_bin_dir = os.path.join(llvm_dir, 'bin')
60 if not os.path.isdir(llvm_bin_dir):
72 llvm_config = os.path.join(llvm_dir, 'include/llvm/Config/config.h')
73 if not os.path.exists(llvm_config):
88 env.Prepend(CPPPATH = [os.path.join(llvm_dir, 'include')])
94 env.Prepend(LIBPATH = [os.path
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_tile_soa.py41 import os.path namespace
43 sys.path.insert(0, os.path.join(os.path.dirname(sys.argv[0]), '../../auxiliary/util'))
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystemException.java29 * The path involved in the file system operation that caused the exception
31 private String path; field in class:FileSystemException
39 * Construct a new instance for the specified path and message key
41 * @param path - the path involved in the file system operation that caused the exception
44 public FileSystemException(String path, String messageKey) { argument
45 super(path);
46 this.path = path;
51 * @param path
55 FileSystemException(String path, String messageKey, Throwable cause) argument
65 setPath(String path) argument
[all...]
H A DUnixFakeFileSystem.java25 * <li>Forward slashes (/) are the only valid path separators</li>
54 * Return true if the specified path designates a valid (absolute) file path. For Unix,
55 * a path is valid if it starts with the '/' character, followed by zero or more names
56 * (a sequence of any characters except '/'), delimited by '/'. The path may optionally
59 * @param path - the path
60 * @return true if path is valid, false otherwise
61 * @throws AssertionError - if path is null
63 protected boolean isValidName(String path) { argument
[all...]
H A DWindowsFakeFileSystem.java25 * <li>Either forward slashes (/) or backward slashes (\) are valid path separators (but are normalized to '\')</li>
26 * <li>An absolute path starts with a drive specifier (e.g. 'a:' or 'c:') followed
58 * @param path - the path
61 protected String getFileSystemEntryKey(String path) { argument
62 return normalize(path).toLowerCase();
70 * Return true if the specified path designates a valid (absolute) file path. For Windows
71 * paths, a path is valid if it starts with a drive specifier followed by
74 * @param path
78 isValidName(String path) argument
[all...]
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystemException.java29 * The path involved in the file system operation that caused the exception
31 private String path; field in class:FileSystemException
39 * Construct a new instance for the specified path and message key
41 * @param path - the path involved in the file system operation that caused the exception
44 public FileSystemException(String path, String messageKey) { argument
45 super(path);
46 this.path = path;
51 * @param path
55 FileSystemException(String path, String messageKey, Throwable cause) argument
65 setPath(String path) argument
[all...]
H A DUnixFakeFileSystem.java25 * <li>Forward slashes (/) are the only valid path separators</li>
54 * Return true if the specified path designates a valid (absolute) file path. For Unix,
55 * a path is valid if it starts with the '/' character, followed by an optional sequence of
58 * @param path - the path
59 * @return true if path is valid, false otherwise
60 * @throws AssertionError - if path is null
62 protected boolean isValidName(String path) { argument
63 Assert.notNull(path, "pat
[all...]
H A DWindowsFakeFileSystem.java25 * <li>Either forward slashes (/) or backward slashes (\) are valid path separators (but are normalized to '\')</li>
26 * <li>An absolute path starts with a drive specifier (e.g. 'a:' or 'c:') followed
58 * @param path - the path
61 protected String getFileSystemEntryKey(String path) { argument
62 return normalize(path).toLowerCase();
70 * Return true if the specified path designates a valid (absolute) file path. For Windows
71 * paths, a path is valid if it starts with a drive specifier followed by
74 * @param path
78 isValidName(String path) argument
[all...]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystemException.java29 * The path involved in the file system operation that caused the exception
31 private String path; field in class:FileSystemException
39 * Construct a new instance for the specified path and message key
41 * @param path - the path involved in the file system operation that caused the exception
44 public FileSystemException(String path, String messageKey) { argument
45 super(path);
46 this.path = path;
51 * @param path
55 FileSystemException(String path, String messageKey, Throwable cause) argument
65 setPath(String path) argument
[all...]
H A DUnixFakeFileSystem.java25 * <li>Forward slashes (/) are the only valid path separators</li>
54 * Return true if the specified path designates a valid (absolute) file path. For Unix,
55 * a path is valid if it starts with the '/' character, followed by an optional sequence of
58 * @param path - the path
59 * @return true if path is valid, false otherwise
60 * @throws AssertionError - if path is null
62 protected boolean isValidName(String path) { argument
63 Assert.notNull(path, "pat
[all...]
H A DWindowsFakeFileSystem.java25 * <li>Either forward slashes (/) or backward slashes (\) are valid path separators (but are normalized to '\')</li>
26 * <li>An absolute path starts with a drive specifier (e.g. 'a:' or 'c:') followed
58 * @param path - the path
61 protected String getFileSystemEntryKey(String path) { argument
62 return normalize(path).toLowerCase();
70 * Return true if the specified path designates a valid (absolute) file path. For Windows
71 * paths, a path is valid if it starts with a drive specifier followed by
74 * @param path
78 isValidName(String path) argument
[all...]

Completed in 499 milliseconds

1234567891011>>