HomeSort by relevance Sort by last modified time
    Searched refs:FileSystem (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /external/tensorflow/tensorflow/core/platform/
file_system_helper.h 26 class FileSystem;
34 // This helper may be used by implementations of FileSystem::GetMatchingPaths()
41 // pattern: see FileSystem::GetMatchingPaths() for details.
45 Status GetMatchingPaths(FileSystem* fs, Env* env, const string& pattern,
file_system.cc 30 FileSystem::~FileSystem() {}
32 string FileSystem::TranslateName(const string& name) const {
39 Status FileSystem::IsDirectory(const string& name) {
50 void FileSystem::FlushCaches() {}
58 bool FileSystem::FilesExist(const std::vector<string>& files,
74 Status FileSystem::DeleteRecursively(const string& dirname,
138 Status FileSystem::RecursivelyCreateDir(const string& dirname) {
172 Status FileSystem::CopyFile(const string& src, const string& target) {
env.cc 55 FileSystem* Lookup(const string& scheme) override;
60 mutable std::unordered_map<string, std::unique_ptr<FileSystem>> registry_
67 if (!registry_.emplace(string(scheme), std::unique_ptr<FileSystem>(factory()))
75 FileSystem* FileSystemRegistryImpl::Lookup(const string& scheme) {
95 Status Env::GetFileSystemForFile(const string& fname, FileSystem** result) {
98 FileSystem* file_system = file_system_registry_->Lookup(string(scheme));
124 FileSystem* fs = nullptr;
134 FileSystem* fs;
141 FileSystem* fs;
148 FileSystem* fs
    [all...]
file_system.h 44 /// of custom filesystem adapters must implement this interface,
46 class FileSystem {
206 /// \brief Translate an URI to a filename for the FileSystem implementation.
223 /// \brief Flushes any cached filesystem objects from memory.
226 FileSystem() {}
228 virtual ~FileSystem();
240 /// filesystem.
242 return errors::Unimplemented("This filesystem does not support Name()");
296 /// \brief Flushes the file and optionally syncs contents to filesystem.
299 /// delivered to the filesystem
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/
ServerConfiguration.java 18 import org.mockftpserver.fake.filesystem.FileSystem;
29 * @return the {@link FileSystem} for this server
31 public FileSystem getFileSystem();
FakeFtpServer.java 25 import org.mockftpserver.fake.filesystem.FileSystem;
36 * for most testing and simulation scenarios. You define a filesystem (internal, in-memory) containing
42 * reply messages consistent with its configuration and the contents of its internal filesystem,
51 * <li>Create and configure a <b>FileSystem</b>, and attach to the <b>FakeFtpServer</b> instance.</li>
59 * FileSystem fileSystem = new WindowsFakeFileSystem();
60 * fileSystem.add(new DirectoryEntry("c:\\"));
61 * fileSystem.add(new DirectoryEntry("c:\\data"));
62 * fileSystem.add(new FileEntry("c:\\data\\file1.txt", "abcdef 1234567890"));
    [all...]
  /external/libbrillo/brillo/imageloader/
manifest.h 19 enum class FileSystem { kExt4, kSquashFS };
32 FileSystem fs_type() const;
42 FileSystem fs_type_;
manifest.cc 129 fs_type_ = FileSystem::kSquashFS;
133 fs_type_ = FileSystem::kExt4;
135 fs_type_ = FileSystem::kSquashFS;
175 FileSystem Manifest::fs_type() const {
  /bionic/tools/versioner/src/
Driver.h 34 void initializeTargetCC1FlagCache(llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> vfs,
38 void compileHeader(llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> vfs,
VFS.h 25 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> createCommonVFS(const std::string& header_dir,
VFS.cpp 68 llvm::IntrusiveRefCntPtr<FileSystem> createCommonVFS(const std::string& header_dir,
91 return llvm::IntrusiveRefCntPtr<FileSystem>(vfs.release());
  /external/desugar/java/com/google/devtools/common/options/
UnquotedParamsFilePreProcessor.java 19 import java.nio.file.FileSystem;
32 public UnquotedParamsFilePreProcessor(FileSystem fs) {
ParamsFilePreProcessor.java 17 import java.nio.file.FileSystem;
38 private final FileSystem fs;
40 ParamsFilePreProcessor(FileSystem fs) {
ShellQuotedParamsFilePreProcessor.java 21 import java.nio.file.FileSystem;
35 public ShellQuotedParamsFilePreProcessor(FileSystem fs) {
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/
StubServerConfiguration.groovy 20 import org.mockftpserver.fake.filesystem.FileSystem
33 FileSystem fileSystem
  /external/clang/include/clang/Basic/
FileSystemStatCache.h 20 #include "llvm/Support/FileSystem.h"
27 class FileSystem;
73 vfs::FileSystem &FS);
97 vfs::FileSystem &FS) = 0;
100 std::unique_ptr<vfs::File> *F, vfs::FileSystem &FS) {
126 vfs::FileSystem &FS) override;
VirtualFileSystem.h 10 /// \brief Defines the virtual file system interface vfs::FileSystem.
20 #include "llvm/Support/FileSystem.h"
159 class FileSystem;
167 FileSystem *FS;
171 recursive_directory_iterator(FileSystem &FS, const Twine &Path,
196 class FileSystem : public llvm::ThreadSafeRefCountedBase<FileSystem> {
198 virtual ~FileSystem();
240 /// \brief Gets an \p vfs::FileSystem for the 'real' file system, as seen by
242 IntrusiveRefCntPtr<FileSystem> getRealFileSystem()
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/fake/example/
SimpleUnixFakeFtpServerTest.java 20 import org.mockftpserver.fake.filesystem.DirectoryEntry;
21 import org.mockftpserver.fake.filesystem.FileEntry;
22 import org.mockftpserver.fake.filesystem.FileSystem;
23 import org.mockftpserver.fake.filesystem.UnixFakeFileSystem;
29 * filesystem.
38 FileSystem fileSystem = new UnixFakeFileSystem();
39 fileSystem.add(new DirectoryEntry("/data"));
40 fileSystem.add(new FileEntry("/data/file1.txt", "abcdef 1234567890"));
    [all...]
SimpleWindowsFakeFtpServerTest.java 20 import org.mockftpserver.fake.filesystem.DirectoryEntry;
21 import org.mockftpserver.fake.filesystem.FileEntry;
22 import org.mockftpserver.fake.filesystem.FileSystem;
23 import org.mockftpserver.fake.filesystem.WindowsFakeFileSystem;
29 * filesystem.
38 FileSystem fileSystem = new WindowsFakeFileSystem();
39 fileSystem.add(new DirectoryEntry("c:\\data"));
40 fileSystem.add(new FileEntry("c:\\data\\file1.txt", "abcdef 1234567890"));
    [all...]
RemoteFileTest.java 20 import org.mockftpserver.fake.filesystem.FileEntry;
21 import org.mockftpserver.fake.filesystem.FileSystem;
22 import org.mockftpserver.fake.filesystem.UnixFakeFileSystem;
61 FileSystem fileSystem = new UnixFakeFileSystem();
62 fileSystem.add(new FileEntry(FILE, CONTENTS));
63 fakeFtpServer.setFileSystem(fileSystem);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
FaultyFileSystem.java 18 import com.squareup.okhttp.internal.io.FileSystem;
29 public final class FaultyFileSystem implements FileSystem {
30 private final FileSystem delegate;
33 public FaultyFileSystem(FileSystem delegate) {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/
FileSystem.java 35 * <p>This interface is less ambitious than {@link java.nio.file.FileSystem} introduced in Java 7.
40 public interface FileSystem {
42 FileSystem SYSTEM = new FileSystem() {
  /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/io/
FileSystem.java 36 * <p>This interface is less ambitious than {@link java.nio.file.FileSystem} introduced in Java 7.
42 public interface FileSystem {
44 FileSystem SYSTEM = new FileSystem() {
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
FileSystem.java 16 package org.mockftpserver.fake.filesystem;
26 public interface FileSystem {
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformInitPei/
FlashMap.c 126 &FlashHobData.SubAreaData.FileSystem,
139 &FlashHobData.SubAreaData.FileSystem,

Completed in 2023 milliseconds

1 2 3 4 5 6