Home
last modified time | relevance | path

Searched refs:path_ (Results 1 – 3 of 3) sorted by relevance

/art/libartbase/base/
Dcommon_art_test.cc67 path_ = getenv("ANDROID_DATA"); in ScratchDir()
68 path_ += "/tmp-XXXXXX"; in ScratchDir()
69 bool ok = (mkdtemp(&path_[0]) != nullptr); in ScratchDir()
70 CHECK(ok) << strerror(errno) << " for " << path_; in ScratchDir()
71 path_ += "/"; in ScratchDir()
76 std::filesystem::remove_all(path_); in ~ScratchDir()
Dcommon_art_test.h54 return path_; in GetPath()
58 std::string path_;
/art/runtime/jni/
Djava_vm_ext.cc77 : path_(path), in SharedLibrary()
97 LOG(WARNING) << "Error while unloading native library \"" << path_ << "\": " << error_msg; in ~SharedLibrary()
111 return path_; in GetPath()
128 LOG(INFO) << *self << " recursive attempt to load library " << "\"" << path_ << "\""; in CheckOnLoadResult()
132 VLOG(jni) << "[" << *self << " waiting for \"" << path_ << "\" " << "JNI_OnLoad...]"; in CheckOnLoadResult()
137 VLOG(jni) << "[Earlier JNI_OnLoad for \"" << path_ << "\" " in CheckOnLoadResult()
195 const std::string path_; member in art::SharedLibrary