/third_party/ltp/testcases/kernel/syscalls/ftruncate/ |
H A D | ftruncate04.c | 30 #include <sys/mount.h> 156 * supported - to avoid false negatives, mount the fs first without in setup() 159 if (mount(NULL, MNTPOINT, NULL, MS_REMOUNT|MS_MANDLOCK, NULL) == -1) { in setup()
|
/third_party/ltp/testcases/kernel/syscalls/openat/ |
H A D | openat04.c | 11 * filesystem without POSIX ACL supported(by using noacl mount option). Test it 29 #include <sys/mount.h> 51 TEST(mount(source, target, filesystemtype, mountflags, data)); in do_mount() 57 tst_brk(TBROK | TTERRNO, "mount(%s, %s, %s, %lu, %p) failed", in do_mount() 62 tst_brk(TBROK, "Invalid mount return value %ld", TST_RET); in do_mount()
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-custom-headers/ |
H A D | minimal-http-server-custom-headers.c | 13 * "./mount-origin" of the directory it was started in. 15 * You can change that by changing mount.origin below. 132 /* default mount serves the URL space from ./mount-origin */ 134 static const struct lws_http_mount mount = { variable 137 /* .origin */ "./mount-origin", /* serve from dir */ 193 info.mounts = &mount; in main()
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-smp/ |
H A D | minimal-http-server-eventlib-smp.c | 13 * "./mount-origin" of the directory it was started in. 14 * You can change that by changing mount.origin below. 35 static const struct lws_http_mount mount = { variable 38 /* .origin */ "./mount-origin", /* serve from dir */ 111 info.mounts = &mount; in main()
|
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-threads-foreign-libuv-smp/ |
H A D | minimal-ws-server.c | 16 * To keep it simple, it serves stuff in the subdirectory "./mount-origin" of 18 * You can change that by changing mount.origin. 49 static const struct lws_http_mount mount = { variable 52 /* .origin */ "./mount-origin", /* serve from dir */ 163 info.mounts = &mount; in main()
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-form-post/ |
H A D | minimal-http-server-form-post.c | 54 * you can also do this by adding a mount for the form URL in callback_http() 141 /* default mount serves the URL space from ./mount-origin */ 143 static const struct lws_http_mount mount = { variable 146 /* .origin */ "./mount-origin", /* serve from dir */ 192 info.mounts = &mount; in main()
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-form-post-lwsac/ |
H A D | minimal-http-server-form-post.c | 55 * you can also do this by adding a mount for the form URL in callback_http() 144 /* default mount serves the URL space from ./mount-origin */ 146 static const struct lws_http_mount mount = { variable 149 /* .origin */ "./mount-origin", /* serve from dir */ 195 info.mounts = &mount; in main()
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-sse/ |
H A D | minimal-http-server-sse.c | 13 * "./mount-origin" of the directory it was started in. 15 * You can change that by changing mount.origin below. 134 /* override the default mount for /sse in the URL space */ 156 /* default mount serves the URL space from ./mount-origin */ 158 static const struct lws_http_mount mount = { variable 161 /* .origin */ "./mount-origin", /* serve from dir */ 207 info.mounts = &mount; in main()
|
/third_party/rust/crates/nix/src/mount/ |
H A D | linux.rs | 60 pub fn mount< in mount() functions 87 libc::mount( in mount()
|
/kernel/linux/linux-5.10/fs/sysfs/ |
H A D | Makefile | 6 obj-y := file.o dir.o symlink.o mount.o group.o
|
/kernel/linux/linux-5.10/fs/kernfs/ |
H A D | Makefile | 6 obj-y := mount.o inode.o dir.o file.o symlink.o
|
/kernel/linux/linux-6.6/fs/kernfs/ |
H A D | Makefile | 6 obj-y := mount.o inode.o dir.o file.o symlink.o
|
/kernel/linux/linux-6.6/fs/sysfs/ |
H A D | Makefile | 6 obj-y := file.o dir.o symlink.o mount.o group.o
|
/kernel/linux/linux-5.10/fs/configfs/ |
H A D | Makefile | 8 configfs-objs := inode.o file.o dir.o symlink.o mount.o item.o
|
/kernel/linux/linux-6.6/fs/configfs/ |
H A D | Makefile | 8 configfs-objs := inode.o file.o dir.o symlink.o mount.o item.o
|
/third_party/ltp/include/lapi/ |
H A D | mount.h | 10 #include <sys/mount.h>
|
/kernel/linux/linux-5.10/fs/ |
H A D | internal.h | 14 struct mount; 187 extern void mnt_pin_kill(struct mount *m);
|
/kernel/uniproton/src/fs/ |
H A D | fs.c | 21 #include <sys/mount.h> 199 int mount(const char *source, const char *target, in mount() function
|
/kernel/linux/linux-6.6/samples/bpf/ |
H A D | test_cgrp2_tc.sh | 48 mount -t cgroup2 none $CGRP2_ROOT || return $? 120 echo "mount: "; mount | grep -E '(cgroup2|bpf)'; echo
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-dynamic/ |
H A D | minimal-http-server-dynamic.c | 13 * "./mount-origin" of the directory it was started in. 15 * You can change that by changing mount.origin below. 66 * In contains the url part after the place the mount was in callback_dynamic_http() 224 /* override the default mount for /dyn in the URL space */ 246 /* default mount serves the URL space from ./mount-origin */ 248 static const struct lws_http_mount mount = { variable 251 /* .origin */ "./mount-origin", /* serve from dir */ 313 info.mounts = &mount; in main()
|
/third_party/ltp/testcases/kernel/fs/fs_bind/ |
H A D | fs_bind_lib.sh | 14 TST_NEEDS_CMDS="mount umount awk sed" 34 # supported by mount 55 # Most mount implementations can use --make-* in the same command as bind, 56 # but busybox mount, fails at least to set --make-private 57 EXPECT_PASS mount --bind "$dir" "$dir" 58 EXPECT_PASS mount --make-$bind_type "$dir" 65 # -s Run check in mount namespace 163 # There is a slight chance, this loop does not terminate, if a mount
|
/third_party/ltp/testcases/kernel/security/tomoyo/ |
H A D | tomoyo_policy_memory_test.c | 31 #include <sys/mount.h> 352 mount("/proc", "/proc/", "proc", 0, NULL); in main()
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-form-post-file/ |
H A D | minimal-http-server-form-post-file.c | 115 * you can also do this by adding a mount for the form URL in callback_http() 195 /* default mount serves the URL space from ./mount-origin */ 197 static const struct lws_http_mount mount = { variable 200 /* .origin */ "./mount-origin", /* serve from dir */ 246 info.mounts = &mount; in main()
|
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-foreign/ |
H A D | minimal-http-server-eventlib-foreign.c | 18 * "./mount-origin" of the directory it was started in. 19 * You can change that by changing mount.origin below. 41 static const struct lws_http_mount mount = { variable 44 /* .origin */ "./mount-origin", /* serve from dir */ 250 info.mounts = &mount; in main()
|
/third_party/libfuse/lib/ |
H A D | mount_bsd.c | 54 /* standard FreeBSD mount options */ 84 /* FBSD FUSE specific mount options */ 94 * Linux specific mount options, but let just the mount util 174 goto mount; in fuse_mount_core() 187 mount: in fuse_mount_core() 204 * call the mount util backgrounded, to avoid in fuse_mount_core() 227 perror("fuse: failed to assemble mount arguments"); in fuse_mount_core() 242 perror("fuse: failed to exec mount program"); in fuse_mount_core() 251 perror("fuse: failed to mount fil in fuse_mount_core() [all...] |