Home
last modified time | relevance | path

Searched refs:mounts (Results 1 – 25 of 96) sorted by relevance

1234

/third_party/ltp/testcases/kernel/fs/fs_bind/
Dfs_bind_lib.sh156 local mounts
167 mounts=$( sed '1!G;h;$!d' /proc/mounts \
170 [ -z "$mounts" ] && break
171 echo $mounts | xargs umount 2>/dev/null
218 local mounts
222 mounts=$( awk -v tmp="$TST_TMPDIR/$FS_BIND_SANDBOX/" '
226 ' /proc/mounts )
227 if [ -n "$mounts" ]; then
228 tst_res TFAIL "There are still mounts in the sandbox:\n$mounts"
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-multivhost/
Dminimal-http-server.c137 info.mounts = &mount_localhost1; in main()
147 info.mounts = &mount_localhost2; in main()
160 info.mounts = &mount_localhost3; in main()
/third_party/libwebsockets/plugins/deaddrop/
DREADME.md15 ## Required mounts
17 To use deaddrop meaningfully, all the mounts and the ws protocol must be
42 As a plugin, you can configure the mounts and pvos per-vhost easily in JSON.
46 The mountpoints would look something like this (added to vhost/mounts)
/third_party/ltp/testcases/kernel/fs/binfmt_misc/
Dbinfmt_misc_lib.sh31 mntpoint=$(awk '/ binfmt_misc / { print $2 }' /proc/mounts)
51 mntpoint=$(awk '/ binfmt_misc / { print $2 }' /proc/mounts)
/third_party/libfuse/util/
Dinit_script39 ! grep -qw $MOUNTPOINT /proc/mounts; then
56 if grep -qw $MOUNTPOINT /proc/mounts; then
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-tls-80/
Dminimal-http-server-tls-80.c109 info.mounts = &mount80; in main()
118 info.mounts = &mount; in main()
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-tls-mem/
Dminimal-http-server-tls-mem.c429 info.mounts = &mount; in main()
443 info.mounts = &mount; in main()
/third_party/ltp/testcases/commands/eject/
Deject-tests.sh25 if grep -q "$CD_DRIVE" /proc/mounts; then
99 if grep -q "$CD_DRIVE" /proc/mounts; then
/third_party/libwebsockets/lib/core-net/
Dvhost.c578 const struct lws_http_mount *mounts; in lws_create_vhost() local
875 vh->http.mount_list = info->mounts; in lws_create_vhost()
917 mounts = info->mounts; in lws_create_vhost()
918 while (mounts) { in lws_create_vhost()
921 mount_protocols[mounts->origin_protocol], in lws_create_vhost()
922 mounts->origin ? mounts->origin : "none", in lws_create_vhost()
923 mounts->mountpoint); in lws_create_vhost()
925 mounts = mounts->mount_next; in lws_create_vhost()
/third_party/ltp/testcases/kernel/tracing/dynamic_debug/
Ddynamic_debug01.sh28 if grep -q debugfs /proc/mounts ; then
30 DEBUGFS_PATH=$(awk '/debugfs/{print $2}' /proc/mounts)
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
Dwpa_debug.c130 int mounts, trace_fd; in wpa_debug_open_linux_tracing() local
135 mounts = open("/proc/mounts", O_RDONLY); in wpa_debug_open_linux_tracing()
136 if (mounts < 0) { in wpa_debug_open_linux_tracing()
141 buflen = read(mounts, buf, sizeof(buf) - 1); in wpa_debug_open_linux_tracing()
142 close(mounts); in wpa_debug_open_linux_tracing()
/third_party/ltp/testcases/kernel/security/smack/
Dsmack_common.sh32 grep -q $smackfsdir /proc/mounts
/third_party/ltp/lib/newlib_tests/
Dtest_zero_hugepage.sh16 if grep -q -E '^proc /proc(/sys)? proc ro' /proc/mounts; then
/third_party/libfuse/doc/
Dkernel.txt18 user. NOTE: this is not the same as mounts allowed with the "user"
45 non-privileged mounts. This opens up new possibilities for the use of
175 How do non-privileged mounts work?
181 The implication of providing non-privileged mounts is that the mount
208 for non-privileged mounts.
264 mounts, it can relax the last limitation with a "user_allow_other"
/third_party/ltp/lib/newlib_tests/shell/
Dtst_skip_filesystems.sh26 fs=$(grep "$TST_MNTPOINT $TST_FS_TYPE" /proc/mounts | cut -d ' ' -f3)
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-mimetypes/
Dminimal-http-server-mimetypes.c77 info.mounts = &mount; in main()
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-proxy/
Dminimal-http-server-proxy.c65 info.mounts = &mount; in main()
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-broker/
Dminimal-ws-broker.c80 info.mounts = &mount; in main()
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-ring/
Dminimal-ws-server-ring.c80 info.mounts = &mount; in main()
/third_party/libwebsockets/minimal-examples/client-server/minimal-ws-proxy/
Dminimal-ws-proxy.c85 info.mounts = &mount; in main()
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server/
Dminimal-http-server.c70 info.mounts = &mount; in main()
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-basicauth/
Dminimal-http-server-basicauth.c97 info.mounts = &mount; in main()
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-pmd/
Dminimal-ws-server-pmd.c90 info.mounts = &mount; in main()
/third_party/libwebsockets/minimal-examples/ws-server/minimal-ws-server-pmd-corner/
Dminimal-ws-server-pmd-corner.c90 info.mounts = &mount; in main()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/
Dwpa_debug.c132 int mounts, trace_fd; in wpa_debug_open_linux_tracing() local
137 mounts = open("/proc/mounts", O_RDONLY); in wpa_debug_open_linux_tracing()
138 if (mounts < 0) { in wpa_debug_open_linux_tracing()
143 buflen = read(mounts, buf, sizeof(buf) - 1); in wpa_debug_open_linux_tracing()
144 close(mounts); in wpa_debug_open_linux_tracing()

1234