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

/frameworks/base/services/core/java/com/android/server/
H A DDropBoxManagerService.java83 private final File mDropBoxDir; field in class:DropBoxManagerService
138 mDropBoxDir = path;
207 temp = new File(mDropBoxDir, "drop" + Thread.currentThread().getId() + ".tmp");
592 if (!mDropBoxDir.isDirectory() && !mDropBoxDir.mkdirs()) {
593 throw new IOException("Can't mkdir: " + mDropBoxDir);
596 mStatFs = new StatFs(mDropBoxDir.getPath());
599 throw new IOException("Can't statfs: " + mDropBoxDir);
604 File[] files = mDropBoxDir.listFiles();
605 if (files == null) throw new IOException("Can't list files: " + mDropBoxDir);
[all...]

Completed in 126 milliseconds