/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
getdents_helper.h | 23 Error GetDents(size_t offs, dirent* pdir, size_t size, int* out_bytes) const;
|
mount_node_html5fs.h | 21 virtual Error GetDents(size_t offs,
|
mount_node_dir.cc | 57 Error MountNodeDir::GetDents(size_t offs, 63 return cache_.GetDents(offs, pdir, size, out_bytes);
|
mount_node_dir.h | 34 virtual Error GetDents(size_t offs,
|
getdents_helper.cc | 59 Error GetDentsHelper::GetDents(size_t offs,
|
kernel_handle.h | 54 Error GetDents(struct dirent* pdir, size_t count, int* bytes_written);
|
mount_node.h | 61 virtual Error GetDents(size_t offs,
|
mount_node_http.h | 23 virtual Error GetDents(size_t offs,
|
mount_fuse.h | 104 virtual Error GetDents(size_t offs,
|
kernel_handle.cc | 117 Error KernelHandle::GetDents(struct dirent* pdir, size_t nbytes, int* cnt) { 119 Error error = node_->GetDents(handle_attr_.offs, pdir, nbytes, cnt);
|
mount_node_html5fs.cc | 86 Error MountNodeHtml5Fs::GetDents(size_t offs, 139 return helper.GetDents(offs, pdir, size, out_bytes);
|
mount_node.cc | 80 Error MountNode::GetDents(size_t offs,
|
mount_passthrough.cc | 75 virtual Error GetDents(size_t offs,
|
mount_fuse.cc | 23 FillDirInfo(GetDentsHelper* getdents, size_t num_bytes) 24 : getdents(getdents), num_bytes(num_bytes), wrote_offset(false) {} 26 GetDentsHelper* getdents; member in struct:nacl_io::__anon8801::FillDirInfo 376 Error MountNodeFuseDir::GetDents(size_t offs, 396 GetDentsHelper getdents; local 397 FillDirInfo fill_info(&getdents, count); 409 // GetDentsHelpers::GetDents should use an offset of 0. 415 error = getdents.GetDents(offs, pdir, count, out_bytes) [all...] |
mount_node_http.cc | 157 Error MountNodeHttp::GetDents(size_t offs,
|
kernel_proxy.cc | 501 int KernelProxy::getdents(int fd, void* buf, unsigned int count) { function in class:nacl_io::KernelProxy 510 error = handle->GetDents(static_cast<dirent*>(buf), count, &cnt); [all...] |
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
mount_node_mock.h | 26 MOCK_METHOD4(GetDents, Error(size_t, struct dirent*, size_t, int*));
|
mount_fuse_test.cc | 263 TEST_F(MountFuseTest, GetDents) { 272 ASSERT_EQ(0, root->GetDents(0, &entries[0], sizeof(entries), &bytes_read)); 280 ASSERT_EQ(0, root->GetDents(sizeof(dirent), &entries[0], 2 * sizeof(dirent), 289 ASSERT_EQ(0, root->GetDents(0, &entries[0], sizeof(entries), &bytes_read));
|
mount_node_test.cc | 110 EXPECT_EQ(ENOTDIR, file.GetDents(0, &d, sizeof(d), &result_bytes)); 233 EXPECT_EQ(0, root.GetDents(0, &d[0], sizeof(d), &result_bytes)); 254 EXPECT_EQ(0, root.GetDents(sizeof(d), &d[0], sizeof(d), &result_bytes));
|
mount_html5fs_test.cc | 420 TEST_F(MountHtml5FsTest, GetDents) { 442 node->GetDents(0, &dirents[0], sizeof(dirents), &bytes_read)); 450 0, root->GetDents(0, &dirents[0], sizeof(dirent) * 3 + 2, &bytes_read)); 474 EXPECT_EQ(0, root->GetDents(0, &dirents[0], sizeof(dirents), &bytes_read));
|
mount_test.cc | 79 EXPECT_EQ(0, root->GetDents(0, dirs, sizeof(dirs), &len));
|