HomeSort by relevance Sort by last modified time
    Searched refs:filesystem (Results 151 - 175 of 294) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
ListCommandHandler.java 22 import org.mockftpserver.fake.filesystem.FileSystemEntry;
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
AbstractFileSystemEntry.java 16 package org.mockftpserver.fake.filesystem;
Permissions.java 16 package org.mockftpserver.fake.filesystem;
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
MkdCommandHandlerTest.groovy 24 import org.mockftpserver.fake.filesystem.FileSystemException
25 import org.mockftpserver.fake.filesystem.Permissions
45 assert fileSystem.exists(DIR)
46 def dirEntry = fileSystem.getEntry(DIR)
54 assert fileSystem.exists(DIR)
55 def dirEntry = fileSystem.getEntry(DIR)
61 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', '/abc'])
67 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.alreadyExists', DIR])
68 assert fileSystem.exists(DIR)
76 fileSystem.getEntry(PARENT).permissions = new Permissions('r-xr-xr-x'
    [all...]
RmdCommandHandlerTest.groovy 23 import org.mockftpserver.fake.filesystem.FileSystemException
24 import org.mockftpserver.fake.filesystem.Permissions
42 assert fileSystem.exists(DIR) == false
51 assert fileSystem.exists(p(DIR, SUB)) == false
56 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
62 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.isNotADirectory', DIR])
63 assert fileSystem.exists(DIR)
70 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.directoryIsNotEmpty', DIR])
71 assert fileSystem.exists(DIR)
72 assert fileSystem.exists(FILE
    [all...]
_AbstractFakeCommandHandlerTest.groovy 28 import org.mockftpserver.fake.filesystem.FileSystemException
29 import org.mockftpserver.fake.filesystem.InvalidFilenameException
30 import org.mockftpserver.fake.filesystem.UnixFakeFileSystem
56 private fileSystem
161 fileSystem = new UnixFakeFileSystem()
162 serverConfiguration.setFileSystem(fileSystem)
CwdCommandHandlerTest.groovy 23 import org.mockftpserver.fake.filesystem.Permissions
54 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', DIR])
61 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.isNotADirectory', DIR])
69 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.cannotExecute', DIR])
RnfrCommandHandlerTest.groovy 23 import org.mockftpserver.fake.filesystem.Permissions
54 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.doesNotExist', FILE])
67 fileSystem.getEntry(FILE).permissions = new Permissions('-wx-wx-wx')
69 assertSessionReply(ReplyCodes.READ_FILE_ERROR, ['filesystem.cannotRead', FILE])
  /external/syslinux/com32/hdt/
hdt-cli-pxe.c 46 if (hardware->sv->filesystem != SYSLINUX_FS_PXELINUX) {
  /external/webrtc/webrtc/base/
fileutils.h 43 friend class Filesystem;
196 // Returns true if pathname refers to no filesystem object, every parent
264 class Filesystem {
271 static void set_default_filesystem(FilesystemInterface *filesystem) {
272 default_filesystem_ = filesystem;
276 FilesystemInterface *filesystem) {
278 default_filesystem_ = filesystem;
410 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(Filesystem);
416 old_fs_ = Filesystem::swap_default_filesystem(new_fs);
419 Filesystem::set_default_filesystem(old_fs_)
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/
UserAccountTest.groovy 18 import org.mockftpserver.fake.filesystem.FileEntry
19 import org.mockftpserver.fake.filesystem.FileSystemEntry
20 import org.mockftpserver.fake.filesystem.Permissions
  /external/libcxx/benchmarks/
filesystem.bench.cpp 1 #include <experimental/filesystem>
7 namespace fs = std::experimental::filesystem;
  /external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.native.obs/
string_alloc.pass.cpp 12 // <experimental/filesystem>
21 #include <experimental/filesystem>
31 namespace fs = std::experimental::filesystem;
  /external/libcxx/test/std/experimental/filesystem/class.rec.dir.itr/rec.dir.itr.members/
copy_assign.pass.cpp 12 // <experimental/filesystem>
18 #include <experimental/filesystem>
27 using namespace std::experimental::filesystem;
move_assign.pass.cpp 12 // <experimental/filesystem>
18 #include <experimental/filesystem>
27 // The filesystem specification explicitly allows for self-move on
33 using namespace std::experimental::filesystem;
recursion_pending.pass.cpp 12 // <experimental/filesystem>
18 #include <experimental/filesystem>
27 using namespace std::experimental::filesystem;
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.canonical/
canonical.pass.cpp 12 // <experimental/filesystem>
18 #include <experimental/filesystem>
26 using namespace std::experimental::filesystem;
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.space/
space.pass.cpp 12 // <experimental/filesystem>
17 #include <experimental/filesystem>
24 using namespace std::experimental::filesystem;
83 // All the test cases should reside on the same filesystem and therefore
  /external/ltp/testcases/commands/df/
df01.sh 38 -f Specify the type of filesystem to be built. If not
39 specified, the default filesystem type (currently ext2)
  /external/ltp/testcases/kernel/fs/fs_readonly/
test_robind.sh 26 # For filesystem, like ext2, ext3, reiserfs, jfs & xfs,
59 This script verifies ReadOnly-filesystem, by mounting block device and
60 executing the filesystem tests.
162 tst_resm TFAIL "RO-FileSystem Tests FAILED for \
165 tst_resm TPASS "RO-FileSystem Tests PASSED for \
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/
UserAccount.java 19 import org.mockftpserver.fake.filesystem.FileSystemEntry;
20 import org.mockftpserver.fake.filesystem.Permissions;
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
AbstractFileSystemEntryTestCase.groovy 16 package org.mockftpserver.fake.filesystem
PermissionsTest.groovy 16 package org.mockftpserver.fake.filesystem
UnixFakeFileSystemTest.groovy 16 package org.mockftpserver.fake.filesystem
45 assert !fileSystem.exists(FILE)
46 fileSystem.add(new FileEntry(FILE))
47 def names = fileSystem.listNames(DIR)
52 assert fileSystem.path(null, null) == ""
53 assert fileSystem.path(null, "abc") == "abc"
54 assert fileSystem.path("abc", null) == "abc"
55 assert fileSystem.path("", "") == ""
56 assert fileSystem.path("", "abc") == "abc"
57 assert fileSystem.path("abc", "") == "abc
    [all...]
WindowsDirectoryListingFormatterTest.groovy 16 package org.mockftpserver.fake.filesystem

Completed in 323 milliseconds

1 2 3 4 5 67 8 91011>>