HomeSort by relevance Sort by last modified time
    Searched refs:mount (Results 76 - 100 of 234) sorted by null

1 2 34 5 6 7 8 910

  /system/extras/tests/fstest/
perm_checker.conf 44 /dev/android_ums 640 640 mount mount mount mount
102 /dev/socket/mountd 660 660 root mount root mount
106 /dev/socket/usbd 660 660 root mount mount mount
  /external/chromium_org/native_client_sdk/src/examples/demo/nacl_io/
nacl_io_demo.c 12 #include <sys/mount.h>
293 mount("", "/", "memfs", 0, "");
295 mount("", /* source */
301 mount("", /* source. Use relative URL */
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_node_http.h 39 MountNodeHttp(Mount* mount, const std::string& url, bool cache_content);
mount_node.cc 17 #include "nacl_io/mount.h"
26 MountNode::MountNode(Mount* mount) : mount_(mount) {
31 // Mount should normally never be NULL, but may be null in tests.
108 // This implementation just reads from the mount into the mmap'd memory area.
mount_node_dir.cc 17 MountNodeDir::MountNodeDir(Mount* mount) : MountNode(mount), cache_(NULL) {
mount_passthrough.cc 13 explicit MountNodePassthrough(Mount* mount, int real_fd)
14 : MountNode(mount), real_fd_(real_fd) {}
111 return Mount::Init(dev, args, ppapi);
mount_node.h 22 class Mount;
31 explicit MountNode(Mount* mount);
45 // must not be called by the mount.
92 // Directory operations on the node are done by the Mount. The mount's lock
114 // to track it's parent. When a node is unlinked, the mount should do
116 Mount* mount_;
118 friend class Mount;
mount_node_http.cc 168 MountHttp* mount = static_cast<MountHttp*>(mount_); local
169 if (stat_.st_size == 0 || !mount->cache_stat_) {
267 MountNodeHttp::MountNodeHttp(Mount* mount,
270 : MountNode(mount),
  /external/iproute2/ip/
ipnetns.c 6 #include <sys/mount.h>
111 if (mount(netns_name, etc_name, "none", MS_BIND, NULL) < 0) {
155 /* Mount a version of /sys that describes the network namespace */
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) {
  /libcore/luni/src/main/native/
Portability.h 66 #include <sys/mount.h>
  /system/core/toolbox/
umount.c 2 #include <sys/mount.h>
  /system/vold/
DirectVolume.cpp 47 ALOGE("Vold managed volumes must have auto mount point; ignoring %s",
51 char mount[PATH_MAX]; local
53 snprintf(mount, PATH_MAX, "%s/%s", Volume::MEDIA_DIR, rec->label);
54 mMountpoint = strdup(mount);
55 snprintf(mount, PATH_MAX, "%s/%s", Volume::FUSE_DIR, rec->label);
56 mFuseMountpoint = strdup(mount);
  /bootable/recovery/mtdutils/
mounts.c 22 #include <sys/mount.h>
219 return mount(volume->device, volume->mount_point, volume->filesystem,
  /bootable/recovery/
roots.cpp 19 #include <sys/mount.h>
97 // mount an MTD partition as a YAFFS2 filesystem.
102 LOGE("failed to find \"%s\" partition to mount at \"%s\"\n",
109 result = mount(v->blk_device, v->mount_point, v->fs_type,
113 LOGE("failed to mount %s (%s)\n", v->mount_point, strerror(errno));
  /external/chromium_org/native_client_sdk/src/examples/demo/flock/
flock.cc 8 #include <sys/mount.h>
106 // Mount the images directory as an HTTP resource.
107 mount("images", "/images", "httpfs", 0, "");
  /external/chromium_org/native_client_sdk/src/examples/tutorial/dlopen/
dlopen.cc 10 #include <sys/mount.h>
59 // Mount a HTTP mount at /http. All reads from /http/* will read from the
61 mount("", "/http", "httpfs", 0, "");
  /external/libselinux/src/
init.c 12 #include <sys/mount.h>
39 /* We check to see if the preferred mount point for selinux file
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
mount.h 32 /* These are the fs-independent mount-flags: up to 16 flags are
36 MS_RDONLY = 1, /* Mount read-only. */
69 /* Magic mount flag number. Has to be or-ed to the flag values. */
106 /* Mount a filesystem. */
107 extern int mount (__const char *__special_file, __const char *__dir,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
mount.h 32 /* These are the fs-independent mount-flags: up to 16 flags are
36 MS_RDONLY = 1, /* Mount read-only. */
69 /* Magic mount flag number. Has to be or-ed to the flag values. */
106 /* Mount a filesystem. */
107 extern int mount (__const char *__special_file, __const char *__dir,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
mount.h 32 /* These are the fs-independent mount-flags: up to 16 flags are
36 MS_RDONLY = 1, /* Mount read-only. */
69 /* Magic mount flag number. Has to be or-ed to the flag values. */
106 /* Mount a filesystem. */
107 extern int mount (__const char *__special_file, __const char *__dir,
  /art/runtime/native/
dalvik_system_Zygote.cc 17 // sys/mount.h has to come before linux/fs.h due to redefinition of MS_RDONLY, MS_BIND, etc
18 #include <sys/mount.h>
312 // Create a private mount namespace and bind mount appropriate emulated
322 // Create a second private mount namespace for our process
352 // Mount entire external storage tree for all users
353 if (mount(source, target, NULL, MS_BIND, NULL) == -1) {
354 PLOG(WARNING) << "Failed to mount " << source << " to " << target;
358 // Only mount user-specific external storage
359 if (mount(source_user.c_str(), target_user.c_str(), NULL, MS_BIND, NULL) == -1)
    [all...]
  /dalvik/vm/native/
dalvik_system_Zygote.cpp 33 #include <sys/mount.h>
247 * Create a private mount namespace and bind mount appropriate emulated
254 // Create a second private mount namespace for our process
287 // Mount entire external storage tree for all users
288 if (mount(source, target, NULL, MS_BIND, NULL) == -1) {
289 ALOGE("Failed to mount %s to %s: %s", source, target, strerror(errno));
293 // Only mount user-specific external storage
294 if (mount(source_user, target_user, NULL, MS_BIND, NULL) == -1) {
295 ALOGE("Failed to mount %s to %s: %s", source_user, target_user, strerror(errno))
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/music_manager_private/
device_id_mac.cc 10 #include <sys/mount.h>
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io_test/
kernel_proxy_mock.h 40 MOCK_METHOD5(mount, int(const char*, const char*, const char*, unsigned long,
kernel_wrap_test.cc 92 // And will call mount / and /dev.
93 EXPECT_CALL(mock, mount(_, _, _, _, _))
232 TEST_F(KernelWrapTest, mount) {
234 mount(StrEq("mount1"), StrEq("mount2"), StrEq("mount3"), 2345, NULL))
236 mount("mount1", "mount2", "mount3", 2345, NULL);

Completed in 905 milliseconds

1 2 34 5 6 7 8 910