/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
mount_dev.h | 23 virtual Error Rmdir(const Path& path);
|
mount_passthrough.h | 26 virtual Error Rmdir(const Path& path);
|
mount_html5fs.h | 25 virtual Error Rmdir(const Path& path);
|
mount_mem.h | 36 virtual Error Rmdir(const Path& path);
|
mount.h | 80 // Unlink, Mkdir, Rmdir will affect the both the RefCount 84 virtual Error Rmdir(const Path& path) = 0;
|
mount_http.h | 26 virtual Error Rmdir(const Path& path);
|
mount_stream.h | 64 virtual Error Rmdir(const Path& path);
|
mount_fuse.h | 29 virtual Error Rmdir(const Path& path);
|
mount_stream.cc | 98 Error MountStream::Rmdir(const Path& path) { return EACCES; }
|
mount_passthrough.cc | 159 Error MountPassthrough::Rmdir(const Path& path) {
|
mount_fuse.cc | 165 Error MountFuse::Rmdir(const Path& path) { 166 if (!fuse_ops_->rmdir) 169 int result = fuse_ops_->rmdir(path.Join().c_str()); 190 return Rmdir(path);
|
mount_html5fs.cc | 84 Error MountHtml5Fs::Rmdir(const Path& path) { return Remove(path); }
|
mount_mem.cc | 179 Error MountMem::Rmdir(const Path& path) {
|
mount_dev.cc | 292 Error MountDev::Rmdir(const Path& path) { return EPERM; }
|
mount_http.cc | 122 Error MountHttp::Rmdir(const Path& path) {
|
kernel_proxy.cc | 352 int KernelProxy::rmdir(const char* path) { function in class:nacl_io::KernelProxy 362 error = mnt->Rmdir(rel); [all...] |
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
mount_mock.h | 31 MOCK_METHOD1(Rmdir, Error(const Path&));
|
mount_http_test.cc | 218 TEST(MountHttpDirTest, Rmdir) { 223 // Rmdir on existing dirs should give "Permission Denied" 224 EXPECT_EQ(EACCES, mnt.Rmdir(Path("/"))); 225 EXPECT_EQ(EACCES, mnt.Rmdir(Path("/mydir"))); 226 // Rmdir on existing files should give "Not a direcotory" 227 EXPECT_EQ(ENOTDIR, mnt.Rmdir(Path("/mydir/foo"))); 228 // Rmdir on non-existent files should give "No such file or directory" 229 EXPECT_EQ(ENOENT, mnt.Rmdir(Path("/non_existent")));
|
mount_test.cc | 140 EXPECT_EQ(ENOTEMPTY, mnt.Rmdir(Path("/foo"))); 156 EXPECT_EQ(0, mnt.Rmdir(Path("/foo"))); 263 ASSERT_EQ(0, mnt.Rmdir(Path("/dir2/foo")));
|
kernel_object_test.cc | 41 Error Rmdir(const Path& path) { return 0; }
|
mount_html5fs_test.cc | 165 // Unlink + Rmdir forward to Remove unconditionally, which will not fail if the 181 // Unlink + Rmdir forward to Remove unconditionally, which will not fail if the 191 ASSERT_EQ(ENOTDIR, mnt->Rmdir(Path("/file"))); 192 EXPECT_EQ(0, mnt->Rmdir(Path("/dir")));
|
kernel_proxy_test.cc | 531 virtual Error Rmdir(const Path& path) { return ENOSYS; }
|