HomeSort by relevance Sort by last modified time
    Searched refs:PathStatus (Results 1 - 4 of 4) sorted by null

  /system/core/tzdatacheck/
tzdatacheck.cpp 199 enum PathStatus { ERR, NONE, IS_DIR, IS_REG, UNKNOWN };
201 static PathStatus checkPath(const std::string& path) {
219 PathStatus pathStatus = checkPath(fileToDelete);
220 if (pathStatus == NONE) {
224 if (pathStatus != IS_REG) {
249 int pathStatus = checkPath(dirToDelete);
250 if (pathStatus == NONE) {
254 if (pathStatus != IS_DIR) {
317 const PathStatus dataCurrentDirStatus)
    [all...]
  /libcore/ojluni/src/main/java/java/io/
File.java 175 private static enum PathStatus { INVALID, CHECKED };
180 private transient PathStatus status = null;
192 status = (this.path.indexOf('\u0000') < 0) ? PathStatus.CHECKED
193 : PathStatus.INVALID;
195 return status == PathStatus.INVALID;
    [all...]
  /frameworks/base/
preloaded-classes 199 [Ljava.io.File$PathStatus;
    [all...]
compiled-classes-phone     [all...]

Completed in 63 milliseconds