• Home
  • Raw
  • Download

Lines Matching refs:sep

144     const char *sep = strchr(t, '=');  in match_template()  local
145 sep = sep ? sep : strchr(t, ' '); in match_template()
146 if (sep && (!sep[1] || sep[1] == '%')) { in match_template()
147 int tlen = sep - t; in match_template()
148 if (sep[0] == '=') in match_template()
151 *sepp = sep - t; in match_template()
197 const struct fuse_opt *opt, unsigned sep, in process_opt() argument
205 if (sep && opt->templ[sep + 1]) { in process_opt()
206 const char *param = arg + sep; in process_opt()
207 if (opt->templ[sep] == '=') in process_opt()
209 if (process_opt_param(var, opt->templ + sep + 1, in process_opt()
219 const struct fuse_opt *opt, unsigned sep, in process_opt_sep_arg() argument
230 newarg = malloc(sep + strlen(param) + 1); in process_opt_sep_arg()
234 memcpy(newarg, arg, sep); in process_opt_sep_arg()
235 strcpy(newarg + sep, param); in process_opt_sep_arg()
236 res = process_opt(ctx, opt, sep, newarg, iso); in process_opt_sep_arg()
244 unsigned sep; in process_gopt() local
245 const struct fuse_opt *opt = find_opt(ctx->opt, arg, &sep); in process_gopt()
247 for (; opt; opt = find_opt(opt + 1, arg, &sep)) { in process_gopt()
249 if (sep && opt->templ[sep] == ' ' && !arg[sep]) in process_gopt()
250 res = process_opt_sep_arg(ctx, opt, sep, arg, iso); in process_gopt()
252 res = process_opt(ctx, opt, sep, arg, iso); in process_gopt()
263 char *sep; in process_real_option_group() local
276 sep = (char*)NULL; in process_real_option_group()
280 sep = strchr(opts, ','); in process_real_option_group()
281 if (sep) in process_real_option_group()
282 *sep = '\0'; in process_real_option_group()
287 opts = sep + 1; in process_real_option_group()
288 } while (sep); in process_real_option_group()
297 const char *sep = strchr(opts, ','); in process_option_group() local
298 if (!sep) in process_option_group()