Lines Matching refs:res
258 char *res; in variable_expand() local
274 res = expand_string_with_args(v->value, argc, argv); in variable_expand()
276 res = xstrdup(v->value); in variable_expand()
280 return res; in variable_expand()
352 char *tmp, *name, *res, *endptr, *prev, *p; in eval_clause() local
368 res = xstrdup(argv[n - 1]); in eval_clause()
421 res = variable_expand(name, new_argc, new_argv); in eval_clause()
422 if (res) in eval_clause()
426 res = function_expand(name, new_argc, new_argv); in eval_clause()
427 if (res) in eval_clause()
432 res = env_expand(name); in eval_clause()
433 if (res) in eval_clause()
437 res = xstrdup(""); in eval_clause()
445 return res; in eval_clause()