Home | History | Annotate | Download | only in tests-m32

Lines Matching refs:source

8  * Redistribution and use in source and binary forms, with or without
11 * 1. Redistributions of source code must retain the above copyright
76 static const char source[] = "mount_source";
97 rc = mount(source, target, fstype, 15, data);
99 source, target, fstype, str_ro_nosuid_nodev_noexec,
102 rc = mount(source, target, fstype, MS_RELATIME | 15, data);
104 source, target, fstype,
108 rc = mount(source, target, fstype, MS_MGC_VAL, data);
110 source, target, fstype, str_mgc_val, data, sprintrc(rc));
112 rc = mount(source, target, fstype, MS_MGC_VAL | 15, data);
114 source, target, fstype,
118 rc = mount(source, target, NULL, MS_REMOUNT, data);
120 source, target, str_remount, data, sprintrc(rc));
122 rc = mount(source, target, fstype, MS_REMOUNT, data);
124 source, target, fstype, str_remount, data, sprintrc(rc));
126 rc = mount(source, target, NULL, MS_BIND, data);
128 source, target, str_bind, data, sprintrc(rc));
130 rc = mount(source, target, fstype, MS_BIND, NULL);
132 source, target, fstype, str_bind, sprintrc(rc));