Home
last modified time | relevance | path

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

/art/runtime/
Doat_file_assistant_test.cc128 dex_parent_ = dex_location.substr(0, pos); in ScopedNonWritable()
129 if (chmod(dex_parent_.c_str(), 0555) != 0) { in ScopedNonWritable()
130 PLOG(ERROR) << "Could not change permissions on " << dex_parent_; in ScopedNonWritable()
135 bool IsSuccessful() { return is_valid_ && (access(dex_parent_.c_str(), W_OK) != 0); } in IsSuccessful()
139 if (chmod(dex_parent_.c_str(), 0777) != 0) { in ~ScopedNonWritable()
140 PLOG(ERROR) << "Could not restore permissions on " << dex_parent_; in ~ScopedNonWritable()
146 std::string dex_parent_; member in art::ScopedNonWritable