Searched refs:path (Results 1 - 10 of 10) sorted by relevance

/art/runtime/base/unix_file/
H A Dfd_file.cc32 FdFile::FdFile(int fd, const std::string& path) : fd_(fd), file_path_(path), auto_close_(true) { argument
33 CHECK_NE(0U, path.size());
46 bool FdFile::Open(const std::string& path, int flags) { argument
47 return Open(path, flags, 0640);
50 bool FdFile::Open(const std::string& path, int flags, mode_t mode) { argument
51 CHECK_EQ(fd_, -1) << path;
52 fd_ = TEMP_FAILURE_RETRY(open(path.c_str(), flags, mode));
56 file_path_ = path;
H A Drandom_access_file_test.h44 std::string path; local
45 path = android_data_;
46 path += "/";
47 path += name;
48 return path;
H A Dfd_file.h36 explicit FdFile(int fd, const std::string& path);
/art/runtime/native/
H A Djava_lang_VMClassLoader.cc52 * entry 'index' of the boot class path.
56 * jar:file://path!/name
58 * Where "path" is the bootstrap class path entry and "name" is the string
59 * passed into this method. "path" needs to be an absolute path (starting
69 const std::vector<const DexFile*>& path = Runtime::Current()->GetClassLinker()->GetBootClassPath(); local
70 if (index < 0 || size_t(index) >= path.size()) {
73 const DexFile* dex_file = path[index];
/art/test/068-classloader/src/
H A DFancyLoader.java141 File path = new File(pathName);
145 raf = new RandomAccessFile(path, "r");
/art/test/MyClassNatives/
H A DMyClassNatives.java36 synchronized native Object []getSinkPropertiesNative(String path); argument
/art/tools/
H A Dcpplint.py143 path to the directory that contains .git, .hg, or .svn. When this flag
144 is specified, the relative path is calculated from the specified
464 # The path of last found header.
468 """Returns a path canonicalized for alphabetical comparison.
478 Canonicalized path.
742 FileInfo provides easy access to the components of a file's path
751 return os.path.abspath(self._filename).replace('\\', '/')
754 """FullName after removing the local path to the repository.
756 If we have a real absolute path name here we can try to do something smart:
757 detecting the root of the checkout and truncating /path/t
[all...]
/art/test/
H A DAndroid.mk62 # $(3): target output module path (default module path is used on host)
110 adb shell sh -c "dalvikvm -XXlib:libartd.so -Ximage:$(ART_TEST_DIR)/core.art -classpath $(ART_TEST_DIR)/oat-test-dex-$(1).jar -Djava.library.path=$(ART_TEST_DIR) $(1) $(2) && touch $(ART_TEST_DIR)/test-art-target-oat-$(1)"
123 dalvikvm -XXlib:libartd.so -Ximage:$(shell pwd)/$(HOST_CORE_IMG_OUT) -classpath $(HOST_OUT_JAVA_LIBRARIES)/oat-test-dex-$(1).jar -Djava.library.path=$(HOST_OUT_SHARED_LIBRARIES) $(1) $(2) \
133 dalvikvm -XXlib:libartd.so -Ximage:$(shell pwd)/$(HOST_CORE_IMG_OUT) -Xint -classpath $(HOST_OUT_JAVA_LIBRARIES)/oat-test-dex-$(1).jar -Djava.library.path=$(HOST_OUT_SHARED_LIBRARIES) $(1) $(2) \
160 $(hide) DX=$(abspath $(DX)) JASMIN=$(abspath $(HOST_OUT_EXECUTABLES)/jasmin) $(LOCAL_PATH)/run-test --build-only --output-path $$(abspath $$(dir $$@)) $(1)
/art/runtime/
H A Djni_internal.h70 * Loads the given shared library. 'path' is an absolute pathname.
75 bool LoadNativeLibrary(const std::string& path, mirror::ClassLoader* class_loader,
H A Djni_internal.cc447 SharedLibrary(const std::string& path, void* handle, Object* class_loader) argument
448 : path_(path),
564 SharedLibrary* Get(const std::string& path) { argument
565 auto it = libraries_.find(path);
569 void Put(const std::string& path, SharedLibrary* library) { argument
570 libraries_.Put(path, library);
3120 bool JavaVMExt::LoadNativeLibrary(const std::string& path, ClassLoader* class_loader, argument
3133 library = libraries->Get(path);
3142 path.c_str(), library->GetClassLoader(), class_loader);
3146 VLOG(jni) << "[Shared library \"" << path << "\" alread
[all...]

Completed in 5771 milliseconds