Searched refs:Rmdir (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
H A Ddev_fs.h21 virtual Error Rmdir(const Path& path);
H A Ddev_fs.cc277 Error DevFs::Rmdir(const Path& path) { function in class:nacl_io::DevFs
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/passthroughfs/
H A Dpassthrough_fs.h26 virtual Error Rmdir(const Path& path);
H A Dpassthrough_fs.cc57 Error PassthroughFs::Rmdir(const Path& path) { function in class:nacl_io::PassthroughFs
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dmock_fs.h32 MOCK_METHOD1(Rmdir, Error(const Path&));
H A Dhttp_fs_test.cc289 TEST(HttpFsDirTest, Rmdir) {
294 // Rmdir on existing dirs should give "Permission Denied"
295 EXPECT_EQ(EACCES, fs.Rmdir(Path("/")));
296 EXPECT_EQ(EACCES, fs.Rmdir(Path("/mydir")));
297 // Rmdir on existing files should give "Not a direcotory"
298 EXPECT_EQ(ENOTDIR, fs.Rmdir(Path("/mydir/foo")));
299 // Rmdir on non-existent files should give "No such file or directory"
300 EXPECT_EQ(ENOENT, fs.Rmdir(Path("/non_existent")));
H A Dfilesystem_test.cc151 EXPECT_EQ(ENOTEMPTY, fs.Rmdir(Path("/foo")));
167 EXPECT_EQ(0, fs.Rmdir(Path("/foo")));
272 ASSERT_EQ(0, fs.Rmdir(Path("/dir2/foo")));
H A Dhtml5_fs_test.cc218 TEST_F(Html5FsTest, Rmdir) {
225 ASSERT_EQ(ENOTDIR, fs->Rmdir(Path("/file")));
226 EXPECT_EQ(0, fs->Rmdir(Path("/dir")));
H A Dkernel_object_test.cc42 Error Rmdir(const Path& path) { return 0; } function in class:__anon8963::FilesystemForTesting
H A Djs_fs_test.cc580 TEST_F(JsFsTest, Rmdir) {
595 EXPECT_EQ(0, fs_->Rmdir(Path("/foo")));
H A Dkernel_proxy_test.cc725 virtual Error Rmdir(const Path& path) { return ENOSYS; } function in class:__anon8966::KernelProxyMMapTest_Filesystem
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/httpfs/
H A Dhttp_fs.h25 virtual Error Rmdir(const Path& path);
H A Dhttp_fs.cc105 Error HttpFs::Rmdir(const Path& path) { function in class:nacl_io::HttpFs
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/memfs/
H A Dmem_fs.h36 virtual Error Rmdir(const Path& path);
H A Dmem_fs.cc161 Error MemFs::Rmdir(const Path& path) { function in class:nacl_io::MemFs
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/stream/
H A Dstream_fs.h61 virtual Error Rmdir(const Path& path);
H A Dstream_fs.cc100 Error StreamFs::Rmdir(const Path& path) { function in class:nacl_io::StreamFs
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dfilesystem.h85 // Unlink, Mkdir, Rmdir will affect the both the RefCount
89 virtual Error Rmdir(const Path& path) = 0;
H A Dkernel_proxy.cc377 error = fs->Rmdir(rel);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/html5fs/
H A Dhtml5_fs.h25 virtual Error Rmdir(const Path& path);
H A Dhtml5_fs.cc127 Error Html5Fs::Rmdir(const Path& path) { function in class:nacl_io::Html5Fs
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/jsfs/
H A Djs_fs.h42 virtual Error Rmdir(const Path& path);
H A Djs_fs.cc445 Error JsFs::Rmdir(const Path& path) { function in class:nacl_io::JsFs
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/fusefs/
H A Dfuse_fs.h28 virtual Error Rmdir(const Path& path);
H A Dfuse_fs.cc166 Error FuseFs::Rmdir(const Path& path) { function in class:nacl_io::FuseFs
193 return Rmdir(path);

Completed in 5395 milliseconds