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

1 2 3 4

  /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/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/
StubServerConfiguration.groovy 20 import org.mockftpserver.fake.filesystem.FileSystem
33 FileSystem fileSystem
  /libcore/ojluni/src/main/native/
FileSystem_md.c 41 NATIVE_METHOD(FileSystem, getFileSystem, "()Ljava/io/FileSystem;"),
45 jniRegisterNativeMethods(env, "java/io/FileSystem", gMethods, NELEM(gMethods));
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
FileSystem.java 30 public interface FileSystem {
33 * Gets the root entry of this filesystem. This is usually a directory, but
42 * Returns if this {@code FileSystem} is in read-only mode.
44 * @return if this {@code FileSystem} is read-only
FileSystemFactory.java 25 * Factory for {@link FileSystem} instances.
35 * Creates a new {@link FileSystem} for the specified {@code device}. When
43 * @return a new {@code FileSystem} instance for the specified device
48 public static FileSystem create(BlockDevice device, boolean readOnly)
AbstractFileSystem.java 25 * Abstract class with common things in different FileSystem implementations.
30 public abstract class AbstractFileSystem implements FileSystem {
66 * Checks if this {@code FileSystem} was already closed, and throws an
69 * @throws IllegalStateException if this {@code FileSystem} was
81 * Checks if this {@code FileSystem} is read-only, and throws an
84 * @throws ReadOnlyException if this {@code FileSystem} is read-only
  /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"
150 class FileSystem;
158 FileSystem *FS;
162 recursive_directory_iterator(FileSystem &FS, const Twine &Path,
182 class FileSystem : public llvm::ThreadSafeRefCountedBase<FileSystem> {
184 virtual ~FileSystem();
226 /// \brief Gets an \p vfs::FileSystem for the 'real' file system, as seen by
228 IntrusiveRefCntPtr<FileSystem> getRealFileSystem()
    [all...]
FileManager.h 116 IntrusiveRefCntPtr<vfs::FileSystem> FS;
175 IntrusiveRefCntPtr<vfs::FileSystem> FS = nullptr);
224 IntrusiveRefCntPtr<vfs::FileSystem> getVirtualFileSystem() const {
  /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);
WindowsFakeFileSystemPermissionsTest.java 21 import org.mockftpserver.fake.filesystem.DirectoryEntry;
22 import org.mockftpserver.fake.filesystem.FileEntry;
23 import org.mockftpserver.fake.filesystem.FileSystem;
24 import org.mockftpserver.fake.filesystem.Permissions;
25 import org.mockftpserver.fake.filesystem.WindowsFakeFileSystem;
31 * filesystem, and including file/directory permissions.
44 FileSystem fileSystem = new WindowsFakeFileSystem();
65 fileSystem.add(directoryEntry1);
    [all...]
  /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/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
FileSystem.java 16 package org.mockftpserver.fake.filesystem;
26 public interface FileSystem {
  /frameworks/compile/mclinker/include/mcld/Support/
FileOutputBuffer.h 16 #include <llvm/Support/FileSystem.h>
raw_ostream.h 11 #include <llvm/Support/FileSystem.h>
  /external/clang/lib/Basic/
FileSystemStatCache.cpp 45 FileSystemStatCache *Cache, vfs::FileSystem &FS) {
63 // Otherwise, we have to go to the filesystem. We can always just use
111 std::unique_ptr<vfs::File> *F, vfs::FileSystem &FS) {
  /frameworks/compile/mclinker/lib/Support/
Android.mk 8 FileSystem.cpp \
  /libcore/ojluni/src/main/java/java/io/
FileSystem.java 31 * Package-private abstract class for the local filesystem abstraction.
34 abstract class FileSystem {
37 * Return the FileSystem object representing this platform's local
38 * filesystem.
40 public static native FileSystem getFileSystem();
46 * Return the local filesystem's name-separator character.
51 * Return the local filesystem's path-separator character.
207 /* -- Filesystem interface -- */
210 * List the available filesystem roots.
File.java 128 * <p>On Android, the underlying filesystem encoding for filenames is always UTF-8.
139 * The FileSystem object representing the platform's local file system.
141 static private final FileSystem fs = FileSystem.getFileSystem();
186 * For use by FileSystem classes.
271 directory defined by the FileSystem.getDefaultParent method. On Unix
571 * filesystem queries
599 * filesystem queries
731 return fs.checkAccess(this, FileSystem.ACCESS_READ);
756 return fs.checkAccess(this, FileSystem.ACCESS_WRITE)
    [all...]
  /external/clang/include/clang/Frontend/
CompilerInvocation.h 210 class FileSystem;
213 IntrusiveRefCntPtr<vfs::FileSystem>
  /external/clang/include/clang/Driver/
Driver.h 41 class FileSystem;
70 IntrusiveRefCntPtr<vfs::FileSystem> VFS;
224 IntrusiveRefCntPtr<vfs::FileSystem> VFS = nullptr);
237 vfs::FileSystem &getVFS() const { return *VFS; }

Completed in 743 milliseconds

1 2 3 4