Searched defs:path (Results 126 - 150 of 2871) sorted by relevance

1234567891011>>

/external/boringssl/src/tool/
H A Dgenerate_ed25519.cc37 static bool WriteToFile(const std::string &path, const uint8_t *in, argument
39 ScopedFILE file(fopen(path.c_str(), "wb"));
41 fprintf(stderr, "Failed to open '%s': %s\n", path.c_str(), strerror(errno));
45 fprintf(stderr, "Failed to write to '%s': %s\n", path.c_str(),
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dfunction-sections-are-bad.cc16 char path[4096]; local
17 snprintf(path, sizeof(path), "%s-so.so", argv[0]);
19 void *handle = dlopen(path, RTLD_LAZY);
H A Dinit-order-dlopen.cc38 std::string path = std::string(argv[0]) + "-so.so"; local
39 void *handle = dlopen(path.c_str(), RTLD_NOW);
/external/compiler-rt/test/lsan/TestCases/
H A Duse_tls_dynamic.cc17 std::string path = std::string(argv[0]) + "-so.so"; local
19 void *handle = dlopen(path.c_str(), RTLD_LAZY);
/external/deqp/framework/delibs/decpp/
H A DdeDirectoryIterator.cpp37 DirectoryIterator::DirectoryIterator (const FilePath& path) argument
38 : m_path(FilePath::normalize(path))
80 DirectoryIterator::DirectoryIterator (const FilePath& path)
81 : m_path (FilePath::normalize(path))
/external/droiddriver/src/io/appium/droiddriver/util/
H A DFileUtils.java35 * Opens file at {@code path} to output. If any directories on {@code path} do
40 public static BufferedOutputStream open(String path) throws FileNotFoundException { argument
41 File file = getAbsoluteFile(path);
53 * Returns a new file constructed using the absolute path of {@code path}.
57 * If any directories on {@code path} do not exist, they will be created.
59 public static File getAbsoluteFile(String path) { argument
60 File file = new File(path);
62 file = new File(System.getProperty("java.io.tmpdir"), path);
[all...]
/external/dtc/tests/
H A Dget_alias.c31 static void check_alias(void *fdt, const char *path, const char *alias) argument
37 if (path && !aliaspath)
40 if (strcmp(aliaspath, path) != 0)
42 alias, aliaspath, path);
H A Dget_phandle.c30 static void check_phandle(void *fdt, const char *path, uint32_t checkhandle) argument
35 offset = fdt_path_offset(fdt, path);
37 FAIL("Couldn't find %s", path);
42 path, phandle, checkhandle);
H A Dnode_check_compatible.c31 static void check_compatible(const void *fdt, const char *path, argument
36 offset = fdt_path_offset(fdt, path);
38 FAIL("fdt_path_offset(%s): %s", path, fdt_strerror(offset));
42 FAIL("fdt_node_check_compatible(%s): %s", path,
45 FAIL("%s is not compatible with \"%s\"", path, compat);
/external/e2fsprogs/misc/
H A Dmklost+found.c35 char path [sizeof (LPF) + 1 + 256]; local
62 strcpy (path, LPF);
63 strcat (path, "/");
64 strcat (path, name);
65 if ((d = creat (path, 0644)) == -1) {
78 strcpy (path, LPF);
79 strcat (path, "/");
80 strcat (path, name);
81 if (unlink (path) == -1) {
/external/fio/oslib/
H A Dlinux-dev-lookup.c10 int blktrace_lookup_device(const char *redirect, char *path, unsigned int maj, argument
18 D = opendir(path);
28 sprintf(full_path, "%s/%s", path, dir->d_name);
38 strcpy(path, full_path);
52 strcpy(path, redirect);
58 strcpy(path, full_path);
/external/google-breakpad/src/processor/
H A Dsimple_symbol_supplier.h66 // a symbol file existing in that path.
95 // Creates a new SimpleSymbolSupplier, using path as the root path where
97 explicit SimpleSymbolSupplier(const string &path) : paths_(1, path) {} argument
105 // Returns the path to the symbol file for the given module. See the
/external/harfbuzz_ng/src/
H A Dgen-arabic-table.py4 import os.path namespace
184 names[items[0]] = os.path.commonprefix ([names[items[0]], fields[1]]).strip ()
/external/icu/icu4c/source/common/
H A Dures_cnv.cpp36 char *path = pathBuffer; local
42 path = NULL;
54 u_UCharsToChars(myPath, path, length+1); /* length+1 to include the NUL */
59 length=ucnv_fromUChars(cnv, path, (int32_t)sizeof(pathBuffer), myPath, length, status);
65 /* not NUL-terminated - path too long */
77 return ures_open(path, localeID, status);
/external/icu/icu4c/source/tools/gentest/
H A Dgenres32.c44 genres32(const char *prog, const char *path) { argument
58 uprv_strcpy(file,path);
/external/jacoco/org.jacoco.report/src/org/jacoco/report/
H A DDirectorySourceFileLocator.java47 protected InputStream getSourceStream(final String path) throws IOException { argument
48 final File file = new File(directory, path);
H A DFileMultiReportOutput.java40 public OutputStream createFile(final String path) throws IOException { argument
41 final File file = new File(basedir, path);
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/
H A DAbstractTest.java23 protected static File adaptPath(File path) { argument
24 if (path.exists()) {
25 return path;
27 File underJavaParserCore = new File("javaparser-symbol-solver-testing/" + path.getPath());
31 throw new IllegalArgumentException("I cannot adapt the path " + path.getAbsolutePath());
36 protected static String adaptPath(String path) { argument
37 return adaptPath(new File(path)).getPath();
/external/jsoncpp/devtools/
H A Dtarball.py1 import os.path namespace
9 tarball_path: output path of the .tar.gz file
12 from path in the tarball.
16 base_dir = os.path.normpath( os.path.abspath( base_dir ) )
17 def archive_name( path ):
18 """Makes path relative to base_dir."""
19 path = os.path.normpath( os.path
[all...]
/external/libchrome/base/files/
H A Dscoped_temp_dir_unittest.cc35 FilePath path = dir.Take(); local
36 EXPECT_EQ(path.value(), test_path.value());
66 // Create a path which will contain a unique temp path.
107 EXPECT_FALSE(dir.GetPath().empty()); // We should still have a valid path.
/external/libchrome/dbus/
H A Dobject_path.cc29 void PrintTo(const ObjectPath& path, std::ostream* out) { argument
30 *out << path.value();
/external/libmicrohttpd/src/microspdy/
H A Dalstructures.h52 * HTTP path
54 char *path; member in struct:SPDY_Request
/external/libmojo/base/android/java/src/org/chromium/base/
H A DPathService.java21 public static void override(int what, String path) { argument
22 nativeOverride(what, path);
25 private static native void nativeOverride(int what, String path); argument
/external/libmojo/base/android/
H A Dpath_service_android.cc19 const JavaParamRef<jstring>& path) {
20 FilePath file_path(ConvertJavaStringToUTF8(env, path));
16 Override(JNIEnv* env, const JavaParamRef<jclass>& clazz, jint what, const JavaParamRef<jstring>& path) argument
H A Dpath_utils_unittest.cc32 FilePath path; local
33 GetDataDirectory(&path);
37 path.value());
44 FilePath path; local
45 GetCacheDirectory(&path);
48 path.value());
55 FilePath path; local
56 GetNativeLibraryDirectory(&path);
58 base::PathExists(path.Append("libbase_unittests.so")) ||
59 base::PathExists(path
[all...]

Completed in 587 milliseconds

1234567891011>>