Home
last modified time | relevance | path

Searched refs:SECURE_DIRECTORY_STREAM (Results 1 – 4 of 4) sorted by relevance

/external/guava/guava-tests/test/com/google/common/io/
DMoreFilesTest.java20 import static com.google.common.jimfs.Feature.SECURE_DIRECTORY_STREAM;
450 try (FileSystem fs = newTestFileSystem(SECURE_DIRECTORY_STREAM)) { in testDirectoryDeletion_basic()
467 try (FileSystem fs = newTestFileSystem(SECURE_DIRECTORY_STREAM)) { in testDirectoryDeletion_emptyDir()
478 try (FileSystem fs = newTestFileSystem(SECURE_DIRECTORY_STREAM)) { in testDeleteRecursively_symlinkToDir()
493 try (FileSystem fs = newTestFileSystem(SECURE_DIRECTORY_STREAM)) { in testDeleteDirectoryContents_symlinkToDir()
585 try (FileSystem fs = newTestFileSystem(SECURE_DIRECTORY_STREAM)) { in testDirectoryDeletion_directorySymlinkRace()
623 try (FileSystem fs = newTestFileSystem(SECURE_DIRECTORY_STREAM)) { in testDeleteRecursively_nonDirectoryFile()
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
DFeature.java82 SECURE_DIRECTORY_STREAM, enumConstant
DConfiguration.java23 import static com.google.common.jimfs.Feature.SECURE_DIRECTORY_STREAM;
95 .setSupportedFeatures(LINKS, SYMBOLIC_LINKS, SECURE_DIRECTORY_STREAM, FILE_CHANNEL)
DFileSystemView.java128 return store.supportsFeature(Feature.SECURE_DIRECTORY_STREAM) in newDirectoryStream()