Lines Matching refs:s
60 static void add_extra_option(struct extra_opts *extra, char *s) in add_extra_option() argument
62 int len = strlen(s); in add_extra_option()
84 strcpy(extra->end, s); in add_extra_option()
92 char *s; in parse_mount_options() local
95 while ((s = strsep(&arg, ",")) != NULL) { in parse_mount_options()
96 char *opt = s; in parse_mount_options()
98 int res, no = s[0] == 'n' && s[1] == 'o'; in parse_mount_options()
101 s += 2; in parse_mount_options()
103 if (strcmp(s, "loop") == 0) { in parse_mount_options()
108 res = strcmp(s, options[i].str); in parse_mount_options()
121 if (res != 0 && s[0]) in parse_mount_options()
136 char *s; in do_mount() local
169 while ((s = strsep(&type, ",")) != NULL) { in do_mount()
171 if (mount(dev, dir, s, rwflag, data) == -1) { in do_mount()