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

/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/runtime/base/unix_file/
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.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;
/art/test/MyClassNatives/
H A DMyClassNatives.java36 synchronized native Object []getSinkPropertiesNative(String path); argument
/art/runtime/
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 513 milliseconds