Home
last modified time | relevance | path

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

/art/libartbase/base/
Dcommon_art_test.cc60 path_ = getenv("ANDROID_DATA"); in ScratchDir()
61 path_ += "/tmp-XXXXXX"; in ScratchDir()
62 bool ok = (mkdtemp(&path_[0]) != nullptr); in ScratchDir()
63 CHECK(ok) << strerror(errno) << " for " << path_; in ScratchDir()
64 path_ += "/"; in ScratchDir()
70 nftw(path_.c_str(), [](const char* name, const struct stat*, int type, struct FTW *) { in ~ScratchDir()
Dcommon_art_test.h53 return path_; in GetPath()
57 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