Searched defs:path (Results 1 - 6 of 6) sorted by relevance

/art/runtime/native/
H A Djava_lang_VMClassLoader.cc64 * entry 'index' of the boot class path.
68 * jar:file://path!/name
70 * Where "path" is the bootstrap class path entry and "name" is the string
71 * passed into this method. "path" needs to be an absolute path (starting
82 const std::vector<const DexFile*>& path = local
84 if (index < 0 || size_t(index) >= path.size()) {
87 const DexFile* dex_file = path[index];
/art/runtime/base/unix_file/
H A Drandom_access_file_test.h46 std::string path; local
47 path = android_data_;
48 path += "/";
49 path += name;
50 return path;
H A Dfd_file.cc36 FdFile::FdFile(int fd, const std::string& path, bool check_usage) argument
38 fd_(fd), file_path_(path), auto_close_(true) {
39 CHECK_NE(0U, path.size());
86 bool FdFile::Open(const std::string& path, int flags) { argument
87 return Open(path, flags, 0640);
90 bool FdFile::Open(const std::string& path, int flags, mode_t mode) { argument
91 CHECK_EQ(fd_, -1) << path;
92 fd_ = TEMP_FAILURE_RETRY(open(path.c_str(), flags, mode));
96 file_path_ = path;
/art/runtime/interpreter/
H A Dunstarted_runtime.cc661 const std::vector<const DexFile*>& path = runtime->GetClassLinker()->GetBootClassPath(); local
662 std::string canonical(DexFile::GetDexCanonicalLocation(path[0]->GetLocation().c_str()));
/art/runtime/
H A Djava_vm_ext.cc58 SharedLibrary(JNIEnv* env, Thread* self, const std::string& path, void* handle, argument
60 : path_(path),
202 SharedLibrary* Get(const std::string& path) { argument
203 auto it = libraries_.find(path);
207 void Put(const std::string& path, SharedLibrary* library) { argument
208 libraries_.Put(path, library);
596 bool JavaVMExt::LoadNativeLibrary(JNIEnv* env, const std::string& path, jobject class_loader, argument
609 library = libraries_->Get(path);
618 path.c_str(), library->GetClassLoader(), class_loader);
622 VLOG(jni) << "[Shared library \"" << path << "\" alread
[all...]
/art/test/MyClassNatives/
H A DMyClassNatives.java36 synchronized native Object []getSinkPropertiesNative(String path); argument

Completed in 200 milliseconds