Lines Matching refs:mount
84 int rc = mount(NULL, NULL, NULL, 0, NULL); in main()
88 rc = mount(bogus, bogus, bogus, 768, bogus); in main()
92 rc = mount(bogus + 1, bogus + 1, bogus + 1, 0x4000200, bogus + 1); in main()
97 rc = mount(source, target, fstype, 15, data); in main()
102 rc = mount(source, target, fstype, MS_RELATIME | 15, data); in main()
108 rc = mount(source, target, fstype, MS_MGC_VAL, data); in main()
112 rc = mount(source, target, fstype, MS_MGC_VAL | 15, data); in main()
118 rc = mount(source, target, NULL, MS_REMOUNT, data); in main()
122 rc = mount(source, target, fstype, MS_REMOUNT, data); in main()
126 rc = mount(source, target, NULL, MS_BIND, data); in main()
130 rc = mount(source, target, fstype, MS_BIND, NULL); in main()