Home | History | Annotate | Download | only in telephony

Lines Matching refs:tempFileRootDirectory

438      * @param tempFileRootDirectory A directory to place temp files in.
440 public void setTempFileRootDirectory(@NonNull File tempFileRootDirectory) {
446 validateTempFileRootSanity(tempFileRootDirectory);
452 filePath = tempFileRootDirectory.getCanonicalPath();
480 private void validateTempFileRootSanity(File tempFileRootDirectory) throws IOException {
481 if (!tempFileRootDirectory.exists()) {
484 if (!tempFileRootDirectory.isDirectory()) {
487 String canonicalTempFilePath = tempFileRootDirectory.getCanonicalPath();