| /device/linaro/bootloader/edk2/FatPkg/EnhancedFatDxe/ |
| Fat.c | 488 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL *FileSystem;
499 (VOID **) &FileSystem,
506 Volume = VOLUME_FROM_VOL_INTERFACE (FileSystem);
|
| /build/blueprint/pathtools/ |
| fs_test.go | 152 fsList := []FileSystem{mock, OsFs} 203 fsList := []FileSystem{mock, OsFs} 255 fsList := []FileSystem{mock, OsFs} 324 fsList := []FileSystem{mock, OsFs} 395 fsList := []FileSystem{mock, OsFs} 473 fsList := []FileSystem{mock, OsFs} 541 fsList := []FileSystem{mock, OsFs}
|
| fs.go | 39 var OsFs FileSystem = osFs{} 41 func MockFs(files map[string][]byte) FileSystem { 88 type FileSystem interface { 122 // osFs implements FileSystem using the local disk. 453 func listDirsRecursive(fs FileSystem, name string, follow ShouldFollowSymlinks) ([]string, error) { 479 func listDirsRecursiveRelative(fs FileSystem, name string, follow ShouldFollowSymlinks, depth int) ([]string, error) {
|
| /bionic/tools/versioner/src/ |
| Driver.cpp | 97 static void generateTargetCC1Flags(llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> vfs, 211 void initializeTargetCC1FlagCache(llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> vfs, 246 void compileHeader(llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> vfs,
|
| /external/turbine/java/com/google/turbine/binder/ |
| JimageClassBinder.java | 45 import java.nio.file.FileSystem; 59 static JimageClassBinder create(FileSystem fileSystem) throws IOException { 60 Path modules = fileSystem.getPath("/modules"); 61 Path packages = fileSystem.getPath("/packages"); 87 FileSystem fileSystem = 89 return JimageClassBinder.create(fileSystem).new JimageClassPath();
|
| /external/tensorflow/tensorflow/core/platform/ |
| file_system_helper.cc | 55 Status GetMatchingPaths(FileSystem* fs, Env* env, const string& pattern,
|
| /external/clang/include/clang/Driver/ |
| ToolChain.h | 37 class FileSystem; 129 vfs::FileSystem &getVFS() const;
|
| /external/grpc-grpc/test/distrib/cpp/ |
| run_distrib_test_cmake_as_externalproject.bat | 24 powershell -Command "Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::ExtractToDirectory('OpenSSL-Win32.zip', '.');"
|
| /external/grpc-grpc/test/distrib/csharp/ |
| run_distrib_test.bat | 19 powershell -Command "Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::ExtractToDirectory('../../../../input_artifacts/csharp_nugets_windows_dotnetcli.zip', 'TestNugetFeed');"
|
| /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/ |
| WindowsFakeFileSystemTest.groovy | 16 package org.mockftpserver.fake.filesystem 46 assertFalse(X, fileSystem.exists(X)) 47 assertFalse(Y, fileSystem.exists(Y)) 49 fileSystem.add(new DirectoryEntry(X)) 50 fileSystem.add(new DirectoryEntry(Y)) 52 assertTrue(X, fileSystem.exists(X)) 53 assertTrue(Y, fileSystem.exists(Y)) 57 assert fileSystem.path(null, null) == "" 58 assert fileSystem.path(null, "abc") == "abc" 59 assert fileSystem.path("abc", null) == "abc [all...] |
| AbstractFakeFileSystemTestCase.groovy | 16 package org.mockftpserver.fake.filesystem 34 assert fileSystem.directoryListingFormatter.class == expectedDirectoryListingFormatterClass 39 fileSystem.add(dirEntry) 41 fileSystem.add(fileEntry) 49 final NEW_SUBDIR = fileSystem.path(NEW_DIR, "sub") 50 assert !fileSystem.exists(NEW_DIR), "Before createDirectory" 51 assert !fileSystem.exists(NEW_SUBDIR), "Before createDirectory" 53 fileSystem.createParentDirectoriesAutomatically = true 54 fileSystem.add(new DirectoryEntry(NEW_SUBDIR)) 55 assert fileSystem.exists(NEW_DIR), "After createDirectory [all...] |
| AbstractFileSystemTestCase.groovy | 16 package org.mockftpserver.fake.filesystem 21 * Abstract superclass for tests of FileSystem implementation classes. Contains common 46 protected FileSystem fileSystem 53 assert !fileSystem.exists(NEW_FILE) 54 assert !fileSystem.exists(NEW_DIR) 55 assert !fileSystem.exists(ILLEGAL_FILE) 56 assert fileSystem.exists(EXISTING_FILE) 57 assert fileSystem.exists(EXISTING_DIR) 59 shouldFailWithMessageContaining("path") { fileSystem.exists(null) [all...] |
| /external/turbine/javatests/com/google/turbine/bytecode/ |
| ClassWriterTest.java | 35 import java.nio.file.FileSystem; 55 FileSystem fs = Jimfs.newFileSystem(Configuration.unix());
|
| /external/turbine/javatests/com/google/turbine/zip/ |
| ZipTest.java | 28 import java.nio.file.FileSystem; 128 try (FileSystem fs =
|
| /external/clang/lib/Basic/ |
| VirtualFileSystem.cpp | 92 FileSystem::~FileSystem() {} 95 FileSystem::getBufferForFile(const llvm::Twine &Name, int64_t FileSize, 104 std::error_code FileSystem::makeAbsolute(SmallVectorImpl<char> &Path) const { 115 bool FileSystem::exists(const Twine &Path) { 196 class RealFileSystem : public FileSystem { 245 IntrusiveRefCntPtr<FileSystem> vfs::getRealFileSystem() { 246 static IntrusiveRefCntPtr<FileSystem> FS = new RealFileSystem(); 290 OverlayFileSystem::OverlayFileSystem(IntrusiveRefCntPtr<FileSystem> BaseFS) { 294 void OverlayFileSystem::pushOverlay(IntrusiveRefCntPtr<FileSystem> FS) [all...] |
| /external/clang/include/clang/Frontend/ |
| CompilerInstance.h | 85 IntrusiveRefCntPtr<vfs::FileSystem> VirtualFileSystem; 372 vfs::FileSystem &getVirtualFileSystem() const { 382 void setVirtualFileSystem(IntrusiveRefCntPtr<vfs::FileSystem> FS) {
|
| /development/vndk/tools/header-checker/src/dumper/ |
| header_checker.cpp | 26 #include <llvm/Support/FileSystem.h>
|
| /external/okhttp/okhttp-testing-support/src/main/java/com/squareup/okhttp/internal/io/ |
| InMemoryFileSystem.java | 37 public final class InMemoryFileSystem implements FileSystem, TestRule {
|
| /external/clang/include/clang/Format/ |
| Format.h | 30 class FileSystem; [all...] |
| /external/grpc-grpc/src/csharp/ |
| build_packages_dotnetcli.bat | 51 powershell -Command "Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::CreateFromDirectory('..\..\artifacts', 'csharp_nugets_windows_dotnetcli.zip');"
|
| /external/javapoet/src/test/java/com/squareup/javapoet/ |
| FileWritingTest.java | 22 import java.nio.file.FileSystem; 45 private final FileSystem fs = Jimfs.newFileSystem(Configuration.unix());
|
| /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/ |
| AbstractFakeCommandHandler.java | 30 import org.mockftpserver.fake.filesystem.FileSystem;
31 import org.mockftpserver.fake.filesystem.FileSystemEntry;
32 import org.mockftpserver.fake.filesystem.FileSystemException;
33 import org.mockftpserver.fake.filesystem.InvalidFilenameException;
96 * Convenience method to return the FileSystem stored in the ServerConfiguration
98 * @return the FileSystem
100 protected FileSystem getFileSystem() {
278 verifyFileSystemCondition(userAccount.canExecute(entry), path, "filesystem.cannotExecute");
291 verifyFileSystemCondition(userAccount.canWrite(entry), path, "filesystem.cannotWrite"); [all...] |
| /external/tensorflow/tensorflow/core/kernels/data/experimental/ |
| matching_files_dataset_op.cc | 103 FileSystem* fs; 261 Status UpdateIterator(IteratorContext* ctx, FileSystem* fs,
|
| /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
| Cache.java | 27 import com.squareup.okhttp.internal.io.FileSystem; 50 * Caches HTTP and HTTPS responses to the filesystem so they may be reused, saving time and 169 this(directory, maxSize, FileSystem.SYSTEM); 172 Cache(File directory, long maxSize, FileSystem fileSystem) { 173 this.cache = DiskLruCache.create(fileSystem, directory, VERSION, ENTRY_COUNT, maxSize); 338 // We couldn't read the metadata for this snapshot; possibly because the host filesystem
|
| /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/ |
| Cache.java | 28 import com.android.okhttp.internal.io.FileSystem; 51 * Caches HTTP and HTTPS responses to the filesystem so they may be reused, saving time and 171 this(directory, maxSize, FileSystem.SYSTEM); 174 Cache(File directory, long maxSize, FileSystem fileSystem) { 175 this.cache = DiskLruCache.create(fileSystem, directory, VERSION, ENTRY_COUNT, maxSize); 340 // We couldn't read the metadata for this snapshot; possibly because the host filesystem
|