Lines Matching refs:sep
174 const char *sep = strchr(t, '=');
175 sep = sep ? sep : strchr(t, ' ');
176 if (sep && (!sep[1] || sep[1] == '%')) {
177 int tlen = sep - t;
178 if (sep[0] == '=')
181 *sepp = sep - t;
229 const struct fuse_opt *opt, unsigned sep,
237 if (sep && opt->templ[sep + 1]) {
238 const char *param = arg + sep;
239 if (opt->templ[sep] == '=')
241 if (process_opt_param(var, opt->templ + sep + 1,
251 const struct fuse_opt *opt, unsigned sep,
262 newarg = malloc(sep + strlen(param) + 1);
266 memcpy(newarg, arg, sep);
267 strcpy(newarg + sep, param);
268 res = process_opt(ctx, opt, sep, newarg, iso);
276 unsigned sep;
277 const struct fuse_opt *opt = find_opt(ctx->opt, arg, &sep);
279 for (; opt; opt = find_opt(opt + 1, arg, &sep)) {
281 if (sep && opt->templ[sep] == ' ' && !arg[sep])
282 res = process_opt_sep_arg(ctx, opt, sep, arg,
285 res = process_opt(ctx, opt, sep, arg, iso);