Searched refs:mDropBoxDir (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/services/core/java/com/android/server/
H A DDropBoxManagerService.java84 private final File mDropBoxDir; field in class:DropBoxManagerService
167 mDropBoxDir = path;
246 temp = new File(mDropBoxDir, "drop" + Thread.currentThread().getId() + ".tmp");
632 if (!mDropBoxDir.isDirectory() && !mDropBoxDir.mkdirs()) {
633 throw new IOException("Can't mkdir: " + mDropBoxDir);
636 mStatFs = new StatFs(mDropBoxDir.getPath());
639 throw new IOException("Can't statfs: " + mDropBoxDir);
644 File[] files = mDropBoxDir.listFiles();
645 if (files == null) throw new IOException("Can't list files: " + mDropBoxDir);
[all...]

Completed in 2908 milliseconds