Home
last modified time | relevance | path

Searched refs:path (Results 1 – 16 of 16) sorted by relevance

/art/runtime/base/unix_file/
Dfd_file.cc36 FdFile::FdFile(int fd, const std::string& path, bool check_usage) in FdFile() argument
38 fd_(fd), file_path_(path), auto_close_(true) { in FdFile()
39 CHECK_NE(0U, path.size()); in FdFile()
86 bool FdFile::Open(const std::string& path, int flags) { in Open() argument
87 return Open(path, flags, 0640); in Open()
90 bool FdFile::Open(const std::string& path, int flags, mode_t mode) { in Open() argument
91 CHECK_EQ(fd_, -1) << path; in Open()
92 fd_ = TEMP_FAILURE_RETRY(open(path.c_str(), flags, mode)); in Open()
96 file_path_ = path; in Open()
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()
Dfd_file.h39 explicit FdFile(int fd, const std::string& path, bool checkUsage);
/art/runtime/native/
Djava_lang_VMClassLoader.cc78 …const std::vector<const DexFile*>& path = Runtime::Current()->GetClassLinker()->GetBootClassPath(); in VMClassLoader_getBootClassPathResource() local
79 if (index < 0 || size_t(index) >= path.size()) { in VMClassLoader_getBootClassPathResource()
82 const DexFile* dex_file = path[index]; in VMClassLoader_getBootClassPathResource()
/art/tools/
Dcpplint.py751 return os.path.abspath(self._filename).replace('\\', '/')
765 if os.path.exists(fullname):
766 project_dir = os.path.dirname(fullname)
768 if os.path.exists(os.path.join(project_dir, ".svn")):
772 one_up_dir = os.path.dirname(root_dir)
773 while os.path.exists(os.path.join(one_up_dir, ".svn")):
774 root_dir = os.path.dirname(root_dir)
775 one_up_dir = os.path.dirname(one_up_dir)
777 prefix = os.path.commonprefix([root_dir, project_dir])
782 root_dir = os.path.dirname(fullname)
[all …]
/art/test/068-classloader/src/
DFancyLoader.java141 File path = new File(pathName); in findClassNonDalvik() local
145 raf = new RandomAccessFile(path, "r"); in findClassNonDalvik()
/art/test/122-secondarydex/
Dinfo.txt3 - Regression test to ensure slow path of direct invoke does null check.
/art/test/081-hot-exceptions/
Dinfo.txt1 Make a hot exception-throwing path to stress test how the trace builder handles
/art/runtime/
Djni_internal.cc352 SharedLibrary(const std::string& path, void* handle, mirror::Object* class_loader) in SharedLibrary() argument
353 : path_(path), in SharedLibrary()
497 SharedLibrary* Get(const std::string& path) { in Get() argument
498 auto it = libraries_.find(path); in Get()
502 void Put(const std::string& path, SharedLibrary* library) { in Put() argument
503 libraries_.Put(path, library); in Put()
3225 bool JavaVMExt::LoadNativeLibrary(const std::string& path, in LoadNativeLibrary() argument
3239 library = libraries->Get(path); in LoadNativeLibrary()
3248 path.c_str(), library->GetClassLoader(), class_loader.Get()); in LoadNativeLibrary()
3252 VLOG(jni) << "[Shared library \"" << path << "\" already loaded in " in LoadNativeLibrary()
[all …]
Djni_internal.h70 bool LoadNativeLibrary(const std::string& path, Handle<mirror::ClassLoader> class_loader,
Ddex_file.cc973 UniqueCPtr<const char[]> path(realpath(base_location.c_str(), nullptr)); in GetDexCanonicalLocation() local
974 if (path != nullptr && path.get() != base_location) { in GetDexCanonicalLocation()
975 return std::string(path.get()) + suffix; in GetDexCanonicalLocation()
/art/test/
Drun-test208 tmp_dir="`cd $oldwd ; python -c "import os; print os.path.realpath('$tmp_dir')"`"
DAndroid.run-test.mk175 $(LOCAL_PATH)/run-test --build-only --output-path $$(abspath $$(dir $$@)) $(1)
467 run_test_options := --output-path $(ART_HOST_TEST_DIR)/run-test-output/$$(run_test_rule_name) \
/art/test/MyClassNatives/
DMyClassNatives.java36 synchronized native Object []getSinkPropertiesNative(String path); in getSinkPropertiesNative() argument
/art/compiler/llvm/
Dintrinsic_func_list.def1110 // High-level Invokes (fast-path determination not yet performed)
1381 // "HL" versions - will be deprecated when fast/slow path handling done
1450 // "HL" versions - will be deprecated when fast/slow path handling done
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S389 cbnz r3, .Lslow_lock @ if either of the top two bits are set, go slow path