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

1234

/external/chromium_org/native_client_sdk/src/libraries/nacl_io_test/
H A Dmount_node_mock.cc7 MountNodeMock::MountNodeMock(nacl_io::Mount* mount) : MountNode(mount) {} argument
H A Dkernel_proxy_test.cc22 #include "nacl_io/mount.h"
57 // Unmount the passthrough FS and mount a memfs.
59 EXPECT_EQ(0, kp_->mount("", "/", "memfs", 0, NULL));
79 MountMem* mount = (MountMem*)kp_->RootMount(); local
82 EXPECT_EQ(0, mount->Open(Path("/"), O_RDONLY, &root));
324 MountNodeMockMMap(Mount* mount) : MountNode(mount), node_mmap_count_(0) { argument
428 SingletonMountFactory(const ScopedMount& mount) : mount_(mount) {} argument
463 // Unmount the passthrough FS and mount
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dmount_node_char.h14 explicit MountNodeCharDevice(Mount* mount) : MountNode(mount) { argument
H A Dmount_dev.cc35 RealNode(Mount* mount, int fd);
50 explicit NullNode(Mount* mount) : MountNodeCharDevice(mount) {} argument
61 ConsoleNode(Mount* mount, PP_LogLevel level);
74 explicit ZeroNode(Mount* mount);
85 explicit UrandomNode(Mount* mount);
100 RealNode::RealNode(Mount* mount, int fd) : MountNode(mount), fd_(fd) { argument
146 ConsoleNode::ConsoleNode(Mount* mount, PP_LogLevel level) argument
147 : MountNodeCharDevice(mount), level
171 ZeroNode(Mount* mount) argument
187 UrandomNode(Mount* mount) argument
[all...]
H A Dmount_node_mem.h14 explicit MountNodeMem(Mount* mount);
H A Dkernel_handle.h11 #include "nacl_io/mount.h"
23 // file information, such as it's mount, node, access type and offset.
42 const ScopedMount& mount() { return mount_; } function in class:nacl_io::KernelHandle
H A Dmount_node_mem.cc18 MountNodeMem::MountNodeMem(Mount* mount) argument
19 : MountNode(mount), data_(NULL), capacity_(0) {
H A Dmount_node_html5fs.h19 // must not be called by the mount.
36 MountNodeHtml5Fs(Mount* mount, PP_Resource fileref);
H A Dmount_node_tty.h21 explicit MountNodeTty(Mount* mount);
H A Dmount_node.cc17 #include "nacl_io/mount.h"
26 MountNode::MountNode(Mount* mount) : mount_(mount) { argument
108 // This implementation just reads from the mount into the mmap'd memory area.
H A Dmount_node_dir.cc17 MountNodeDir::MountNodeDir(Mount* mount) : MountNode(mount), cache_(NULL) { argument
H A Dmount_passthrough.cc13 explicit MountNodePassthrough(Mount* mount, int real_fd) argument
14 : MountNode(mount), real_fd_(real_fd) {}
H A Dmount_node_http.h39 MountNodeHttp(Mount* mount, const std::string& url, bool cache_content);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dmount.c8 int mount(const char* source, const char* target, const char* filesystemtype, function
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/include/sys/
H A Dmount.h12 int mount(const char* source, const char* target, const char* filesystemtype,
/external/linux-tools-perf/util/
H A Ddebugfs.h4 #include <sys/mount.h>
/external/e2fsprogs/e2fsck/
H A Dflushb.c22 #include <sys/mount.h>
/external/e2fsprogs/lib/ext2fs/
H A Dflushb.c25 #include <sys/mount.h> /* This may define BLKFLSBUF */
35 * BLKFLSBUF in sys/mount.h, but FDFLUSH still doesn't seem to be
/external/libselinux/src/
H A Dload_policy.c5 #include <sys/mount.h>
/external/genext2fs/
H A Dtest-mount.sh31 # dtest-mount - Exercise the -d directory option of genext2fs
34 # Usage: dtest-mount file-size number-of-blocks
41 mount -t ext2 -o ro,loop ext2.img mnt || fail
50 # ftest-mount - Exercise the -f spec-file option of genext2fs
54 # Usage: ftest-mount spec-file number-of-blocks
61 mount -t ext2 -o ro,loop ext2.img mnt || fail
/external/chromium/chrome/browser/chromeos/cros/
H A Dcros_library.cc65 DEFINE_GET_LIBRARY_METHOD(Mount, mount);
122 DEFINE_SET_LIBRARY_METHOD(Mount, mount);
/external/chromium_org/native_client_sdk/src/examples/demo/nacl_io/
H A Dnacl_io_demo.c12 #include <sys/mount.h>
293 mount("", "/", "memfs", 0, "");
295 mount("", /* source */
301 mount("", /* source. Use relative URL */
/external/iproute2/ip/
H A Dipnetns.c6 #include <sys/mount.h>
111 if (mount(netns_name, etc_name, "none", MS_BIND, NULL) < 0) {
160 if (mount(name, "/sys", "sysfs", 0, NULL) < 0) {
161 fprintf(stderr, "mount of /sys failed: %s\n",strerror(errno));
198 * a new mount namespace and bind them into a well known
201 * The mount namespace is created so that any necessary
235 if (mount("/proc/self/ns/net", netns_path, "none", MS_BIND, NULL) < 0) {
/external/chromium_org/native_client_sdk/src/examples/demo/flock/
H A Dflock.cc8 #include <sys/mount.h>
107 mount("images", "/images", "httpfs", 0, "");
/external/chromium_org/native_client_sdk/src/examples/tutorial/dlopen/
H A Ddlopen.cc10 #include <sys/mount.h>
59 // Mount a HTTP mount at /http. All reads from /http/* will read from the
61 mount("", "/http", "httpfs", 0, "");

Completed in 1056 milliseconds

1234