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

1234567891011>>

/external/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/generate/
H A Dgenerator_unittest.py6 import os.path namespace
13 path = os.path.abspath(__file__)
15 path, tail = os.path.split(path)
18 return path
23 sys.path.append(os.path.join(_GetDirAbove("pylib"), "pylib"))
H A Dmodule_unittest.py6 import os.path namespace
13 path = os.path.abspath(__file__)
15 path, tail = os.path.split(path)
18 return path
23 sys.path.append(os.path.join(_GetDirAbove("pylib"), "pylib"))
/external/libmtp/examples/
H A Dnewfolder.c56 newfolder_function(char * path) argument
58 printf("Creating new folder %s\n",path);
59 char * parent = dirname(path);
60 char * folder = basename(path);
/external/libunwind/src/
H A Dos-common.c36 unsigned long *segbase, unsigned long *mapoff, char **path,
42 return local_get_elf_image (as, ei, ip, segbase, mapoff, path, as_arg);
60 * are possible, so only modify this path.
64 if (path != NULL)
66 *path = strdup (map->path);
34 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, void *as_arg) argument
/external/libusb/examples/
H A Dlistdevs.c28 uint8_t path[8]; local
42 r = libusb_get_port_numbers(dev, path, sizeof(path));
44 printf(" path: %d", path[0]);
46 printf(".%d", path[j]);
/external/libxkbcommon/xkbcommon/bench/
H A Dcompose.c37 char *path; local
44 path = test_get_path("compose/en_US.UTF-8/Compose");
45 file = fopen(path, "r");
62 free(path);
/external/llvm/bindings/python/llvm/tests/
H A Dbase.py1 import os.path namespace
26 path = os.path.join(d, lib)
28 if os.path.exists(path):
29 return path
35 return os.path.join(os.path.dirname(os.path.abspath(__file__)), "test_file")
38 return os.path
[all...]
/external/ltp/android/tools/
H A Dmake_install_parser.py20 import os.path namespace
51 (os.path.realpath(self.ltp_root), os.sep))
64 if not os.path.isfile(
65 os.path.realpath(self.ltp_root) + os.sep + src):
/external/ltp/lib/
H A Dtst_fill_file.c31 int tst_fill_file(const char *path, char pattern, size_t bs, size_t bcount) argument
37 fd = open(path, O_CREAT|O_WRONLY|O_TRUNC, S_IRUSR|S_IWUSR);
57 unlink(path);
66 unlink(path);
H A Dtst_fill_fs.c26 void tst_fill_fs(const char *path, int verbose) argument
38 snprintf(file, sizeof(file), "%s/file%i", path, i++);
/external/ltp/testcases/kernel/syscalls/execl/
H A Dexecl01.c54 char path[2048]; local
60 if (tst_get_path("execl01_child", path, sizeof(path)))
66 execl(path, "execl01_child", "canary", NULL);
/external/ltp/testcases/kernel/syscalls/execle/
H A Dexecle01.c55 char path[2048]; local
61 if (tst_get_path("execle01_child", path, sizeof(path)))
67 execle(path, "execle01_child", "canary", NULL, env);
/external/ltp/testcases/kernel/syscalls/execv/
H A Dexecv01.c55 char path[2048]; local
61 if (tst_get_path("execv01_child", path, sizeof(path)))
67 execv(path, args);
/external/mesa3d/scons/
H A Ddxsdk.py31 import os.path namespace
56 include_dir = os.path.join(dxsdk_root, 'Include')
57 lib_dir = os.path.join(dxsdk_root, 'Lib', target_cpu)
61 gcc = 'gcc' in os.path.basename(env['CC']).split('-')
/external/minijail/
H A Delfparse.c67 ElfType get_elf_linkage(const char *path) argument
73 elf_file = fopen(path, "r");
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DDirectoryEntry.java27 * Construct a new instance without setting its path
33 * Construct a new instance with the specified value for its path
35 * @param path - the value for path
37 public DirectoryEntry(String path) { argument
38 super(path);
68 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
70 * @param path - the new path value for the cloned file system entry
71 * @return a new FileSystemEntry that has all the same values as this object except for its path
73 cloneWithNewPath(String path) argument
[all...]
H A DInvalidFilenameException.java19 * Exception thrown when a path/filename is not valid. Causes include:
22 * <li>The path specifies a new filename, but its parent directory does not exist</li>
23 * <li>The path is expected to be a file, but actually specifies an existing directory</li>
31 * @param path - the path involved in the file system operation that caused the exception
33 public InvalidFilenameException(String path) { argument
34 super(path, MESSAGE_KEY);
38 * @param path - the path involved in the file system operation that caused the exception
41 public InvalidFilenameException(String path, Throwabl argument
[all...]
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/filesystem/
H A DDirectoryEntry.java27 * Construct a new instance without setting its path
33 * Construct a new instance with the specified value for its path
35 * @param path - the value for path
37 public DirectoryEntry(String path) { argument
38 super(path);
68 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
70 * @param path - the new path value for the cloned file system entry
71 * @return a new FileSystemEntry that has all the same values as this object except for its path
73 cloneWithNewPath(String path) argument
[all...]
H A DInvalidFilenameException.java19 * Exception thrown when a path/filename is not valid. Causes include:
22 * <li>The path specifies a new filename, but its parent directory does not exist</li>
23 * <li>The path is expected to be a file, but actually specifies an existing directory</li>
31 * @param path - the path involved in the file system operation that caused the exception
33 public InvalidFilenameException(String path) { argument
34 super(path, MESSAGE_KEY);
38 * @param path - the path involved in the file system operation that caused the exception
41 public InvalidFilenameException(String path, Throwabl argument
[all...]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DDirectoryEntry.java27 * Construct a new instance without setting its path
33 * Construct a new instance with the specified value for its path
35 * @param path - the value for path
37 public DirectoryEntry(String path) { argument
38 super(path);
68 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
70 * @param path - the new path value for the cloned file system entry
71 * @return a new FileSystemEntry that has all the same values as this object except for its path
73 cloneWithNewPath(String path) argument
[all...]
H A DInvalidFilenameException.java19 * Exception thrown when a path/filename is not valid. Causes include:
22 * <li>The path specifies a new filename, but its parent directory does not exist</li>
23 * <li>The path is expected to be a file, but actually specifies an existing directory</li>
31 * @param path - the path involved in the file system operation that caused the exception
33 public InvalidFilenameException(String path) { argument
34 super(path, MESSAGE_KEY);
38 * @param path - the path involved in the file system operation that caused the exception
41 public InvalidFilenameException(String path, Throwabl argument
[all...]
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/filesystem/
H A DDirectoryEntry.java27 * Construct a new instance without setting its path
33 * Construct a new instance with the specified value for its path
35 * @param path - the value for path
37 public DirectoryEntry(String path) { argument
38 super(path);
68 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
70 * @param path - the new path value for the cloned file system entry
71 * @return a new FileSystemEntry that has all the same values as this object except for its path
73 cloneWithNewPath(String path) argument
[all...]
H A DInvalidFilenameException.java19 * Exception thrown when a path/filename is not valid. Causes include:
22 * <li>The path specifies a new filename, but its parent directory does not exist</li>
23 * <li>The path is expected to be a file, but actually specifies an existing directory</li>
31 * @param path - the path involved in the file system operation that caused the exception
33 public InvalidFilenameException(String path) { argument
34 super(path, MESSAGE_KEY);
38 * @param path - the path involved in the file system operation that caused the exception
41 public InvalidFilenameException(String path, Throwabl argument
[all...]
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DDirectoryEntry.java27 * Construct a new instance without setting its path
33 * Construct a new instance with the specified value for its path
35 * @param path - the value for path
37 public DirectoryEntry(String path) { argument
38 super(path);
68 * Return a new FileSystemEntry that is a clone of this object, except having the specified path
70 * @param path - the new path value for the cloned file system entry
71 * @return a new FileSystemEntry that has all the same values as this object except for its path
73 cloneWithNewPath(String path) argument
[all...]
H A DInvalidFilenameException.java19 * Exception thrown when a path/filename is not valid. Causes include:
22 * <li>The path specifies a new filename, but its parent directory does not exist</li>
23 * <li>The path is expected to be a file, but actually specifies an existing directory</li>
31 * @param path - the path involved in the file system operation that caused the exception
33 public InvalidFilenameException(String path) { argument
34 super(path, MESSAGE_KEY);
38 * @param path - the path involved in the file system operation that caused the exception
41 public InvalidFilenameException(String path, Throwabl argument
[all...]

Completed in 6210 milliseconds

1234567891011>>