Home
last modified time | relevance | path

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

/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
DDirectoryEntry.java64 public DirectoryEntry requireExists(Path pathForException) throws NoSuchFileException { in requireExists() method in DirectoryEntry
94 requireExists(pathForException); in requireDirectory()
110 requireExists(pathForException); in requireSymbolicLink()
DFileSystemView.java202 DirectoryEntry entry = lookUp(path, options).requireExists(path); in toRealPath()
384 lookUpWithLock(path, Options.FOLLOW_LINKS).requireExists(path); in checkAccess()
416 existingView.lookUp(existing, Options.FOLLOW_LINKS).requireExists(existing).file(); in link()
436 DirectoryEntry entry = lookUp(path, Options.NOFOLLOW_LINKS).requireExists(path); in deleteFile()
516 DirectoryEntry sourceEntry = lookUp(source, options).requireExists(source); in copy()
708 return lookUpWithLock(path, options).requireExists(path).file(); in getFileAttributeView()
717 File file = lookUpWithLock(path, options).requireExists(path).file();
724 File file = lookUpWithLock(path, options).requireExists(path).file();
734 File file = lookUpWithLock(path, options).requireExists(path).file();
DJimfsSecureDirectoryStream.java204 return view.lookUpWithLock(checkedPath, optionsSet).requireExists(checkedPath).file(); in getFileAttributeView()