Home
last modified time | relevance | path

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

/art/runtime/
Doat_file_assistant_test.cc110 dex_parent_ = dex_location.substr(0, pos); in ScopedNonWritable()
111 if (chmod(dex_parent_.c_str(), 0555) != 0) { in ScopedNonWritable()
112 PLOG(ERROR) << "Could not change permissions on " << dex_parent_; in ScopedNonWritable()
117 bool IsSuccessful() { return is_valid_ && (access(dex_parent_.c_str(), W_OK) != 0); } in IsSuccessful()
121 if (chmod(dex_parent_.c_str(), 0777) != 0) { in ~ScopedNonWritable()
122 PLOG(ERROR) << "Could not restore permissions on " << dex_parent_; in ~ScopedNonWritable()
128 std::string dex_parent_; member in art::ScopedNonWritable