Home
last modified time | relevance | path

Searched refs:path (Results 26 – 50 of 130) sorted by relevance

123456

/art/libnativeloader/include/nativeloader/
Dnative_loader.h44 JNIEnv* env, int32_t target_sdk_version, const char* path, jobject class_loader,
66 struct NativeLoaderNamespace* ns, const char* path, bool* needs_native_bridge,
/art/libartbase/base/
Dscoped_flock.cc103 ScopedFlock LockedFile::DupOf(const int fd, const std::string& path, in DupOf() argument
108 UNUSED(path); in DupOf()
119 new LockedFile(DupCloexec(fd), path, /* check_usage= */ false, read_only_mode)); in DupOf()
/art/test/510-checker-try-catch/smali/
DRuntime.smali19 # - foo(false, false): normal path, returns 42
20 # - foo(true, false): exceptional path #1, returns 3
21 # - foo(false, true): exceptional path #2, returns 8
47 return v3 # Normal path return.
51 return v1 # Exceptional path #1 return.
54 return v2 # Exceptional path #2 return.
88 return v5 # Normal path return.
98 return v1 # Exceptional path #1 return.
105 return v3 # Exceptional path #2 return.
132 return v3 # Normal path return.
[all …]
/art/libartbase/base/unix_file/
Dfd_file.cc148 FdFile::FdFile(int fd, const std::string& path, bool check_usage) in FdFile() argument
149 : FdFile(fd, path, check_usage, false) {} in FdFile()
151 FdFile::FdFile(int fd, const std::string& path, bool check_usage, in FdFile() argument
155 file_path_(path), in FdFile()
164 FdFile::FdFile(const std::string& path, int flags, mode_t mode, in FdFile() argument
166 Open(path, flags, mode); in FdFile()
287 bool FdFile::Open(const std::string& path, int flags) { in Open() argument
288 return Open(path, flags, 0640); in Open()
291 bool FdFile::Open(const std::string& path, int flags, mode_t mode) { in Open() argument
293 DCHECK_EQ(fd_, -1) << path; in Open()
[all …]
Drandom_access_file_test.h46 std::string path; in GetTmpPath() local
47 path = android_data_; in GetTmpPath()
48 path += "/"; in GetTmpPath()
49 path += name; in GetTmpPath()
50 return path; in GetTmpPath()
/art/tools/runtime_memusage/
Dprune_sanitizer_output.py96 if not os.path.isdir(path_name):
142 filename = os.path.basename(trace_file.name + "_filtered")
143 outfile = os.path.join(out_dir_name, filename)
/art/dexlayout/
Ddexdiag_test.cc42 std::string path = GetArtBinDir() + '/' + kDexDiagBinaryName; in GetDexDiagFilePath() local
43 std::string path32 = path + "32"; in GetDexDiagFilePath()
49 return path; in GetDexDiagFilePath()
/art/tools/jfuzz/
Drun_dex_fuzz_test.py26 sys.path.append(os.path.dirname(os.path.dirname(
27 os.path.realpath(__file__))))
Drun_jfuzz_test_nightly.py38 cwd = os.path.dirname(os.path.realpath(__file__))
Drun_jfuzz_test.py30 sys.path.append(os.path.dirname(os.path.dirname(
31 os.path.realpath(__file__))))
546 repro_cmd_str = (os.path.basename(__file__) +
579 bisection_search_path = os.path.join(
604 file_path = os.path.join(self._jfuzz_dir, file_name)
605 if os.path.isfile(file_path):
607 elif os.path.isdir(file_path):
/art/runtime/native/
Djava_lang_VMClassLoader.cc134 const std::vector<const DexFile*>& path = in VMClassLoader_getBootClassPathEntries() local
137 env->NewObjectArray(path.size(), WellKnownClasses::java_lang_String, nullptr); in VMClassLoader_getBootClassPathEntries()
142 for (size_t i = 0; i < path.size(); ++i) { in VMClassLoader_getBootClassPathEntries()
143 const DexFile* dex_file = path[i]; in VMClassLoader_getBootClassPathEntries()
/art/runtime/
Dvdex_file.cc393 bool VdexFile::WriteToDisk(const std::string& path, in WriteToDisk() argument
410 if (!CreateDirectories(path, error_msg)) { in WriteToDisk()
414 std::unique_ptr<File> out(OS::CreateEmptyFileWriteOnly(path.c_str())); in WriteToDisk()
416 *error_msg = "Could not open " + path + " for writing"; in WriteToDisk()
421 *error_msg = "Could not write vdex header to " + path; in WriteToDisk()
431 *error_msg = "Could not write dex checksums to " + path; in WriteToDisk()
439 *error_msg = "Could not write verifier deps to " + path; in WriteToDisk()
445 *error_msg = "Could not write boot classpath checksum to " + path; in WriteToDisk()
451 *error_msg = "Could not write class loader context to " + path; in WriteToDisk()
457 *error_msg = "Could not flush and close " + path; in WriteToDisk()
/art/test/164-resolution-trampoline-dex-cache/src/
DMain.java48 String path = location + "/" + TEST_NAME + (ex ? "-ex.jar" : ".jar"); in getClassLoaderFor() local
49 return (ClassLoader)ctor.newInstance(path, parent); in getClassLoaderFor()
/art/tools/luci/config/
Dluci-logdog.cfg15 # The base Google Storage archival path for this project.
17 # Archived LogDog logs will be written to this bucket/path.
/art/libnativeloader/
DTEST_MAPPING9 "path": "cts/tests/tests/jni"
/art/tools/
Dlibjdwp-compat.props17 sun.boot.class.path=
18 sun.boot.library.path=
Dparallel_run.py27 import os.path
58 fs.add(p.submit(run_one, args.cmd, os.path.join(td, "run_log." + str(idx))))
/art/test/155-java-set-resolved-type/src/
DMain.java75 String path = location + "/" + TEST_NAME + (ex ? "-ex.jar" : ".jar"); in getClassLoaderFor() local
76 return (ClassLoader)ctor.newInstance(path, parent); in getClassLoaderFor()
/art/test/127-checker-secondarydex/
Dinfo.txt3 - Regression test to ensure slow path of direct invoke does null check.
/art/test/595-profile-saving/
Drun29 --runtime-option -Xps-profile-boot-class-path \
/art/test/430-live-register-slow-path/
DAndroid.bp3 name: "art-run-test-430-live-register-slow-path",
/art/tools/jvmti-agents/wrapagentproperties/
DREADME.md15 …so -agentpath:$ANDROID_HOST_OUT/lib64/libwrapagentproperties.so=/path/to/prop.file,/path/to/agent=…
/art/test/572-checker-array-get-regression/
Dinfo.txt1 Regression test for the ARM64 Baker's read barrier fast path compiler
/art/tools/signal_dumper/
Dsignal_dumper.cc98 std::string path = std::string(env_value) + kAddr2linePath; in FindAddr2line() local
99 if (access(path.c_str(), X_OK) == 0) { in FindAddr2line()
100 return std::make_unique<std::string>(path); in FindAddr2line()
105 std::string path = std::string(".") + kAddr2linePath; in FindAddr2line() local
106 if (access(path.c_str(), X_OK) == 0) { in FindAddr2line()
107 return std::make_unique<std::string>(path); in FindAddr2line()
116 std::string path = derived_top + kAddr2linePath; in FindAddr2line() local
117 if (access(path.c_str(), X_OK) == 0) { in FindAddr2line()
118 return std::make_unique<std::string>(path); in FindAddr2line()
/art/test/081-hot-exceptions/
Dinfo.txt1 Make a hot exception-throwing path to stress test how the trace builder handles

123456