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

/art/runtime/native/
H A Djava_lang_VMClassLoader.cc61 * entry 'index' of the boot class path.
65 * jar:file://path!/name
67 * Where "path" is the bootstrap class path entry and "name" is the string
68 * passed into this method. "path" needs to be an absolute path (starting
78 const std::vector<const DexFile*>& path = Runtime::Current()->GetClassLinker()->GetBootClassPath(); local
79 if (index < 0 || size_t(index) >= path.size()) {
82 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/test/MyClassNatives/
H A DMyClassNatives.java36 synchronized native Object []getSinkPropertiesNative(String path); argument
/art/runtime/
H A Djni_internal.cc352 SharedLibrary(const std::string& path, void* handle, mirror::Object* class_loader) argument
353 : path_(path),
497 SharedLibrary* Get(const std::string& path) { argument
498 auto it = libraries_.find(path);
502 void Put(const std::string& path, SharedLibrary* library) { argument
503 libraries_.Put(path, library);
3225 bool JavaVMExt::LoadNativeLibrary(const std::string& path, argument
3239 library = libraries->Get(path);
3248 path.c_str(), library->GetClassLoader(), class_loader.Get());
3252 VLOG(jni) << "[Shared library \"" << path << "\" alread
[all...]

Completed in 1062 milliseconds