Lines Matching refs:res
251 char *res; in variable_expand() local
267 res = expand_string_with_args(v->value, argc, argv); in variable_expand()
269 res = xstrdup(v->value); in variable_expand()
273 return res; in variable_expand()
345 char *tmp, *name, *res, *endptr, *prev, *p; in eval_clause() local
361 res = xstrdup(argv[n - 1]); in eval_clause()
411 res = variable_expand(name, new_argc, new_argv); in eval_clause()
412 if (res) in eval_clause()
416 res = function_expand(name, new_argc, new_argv); in eval_clause()
417 if (res) in eval_clause()
422 res = env_expand(name); in eval_clause()
423 if (res) in eval_clause()
427 res = xstrdup(""); in eval_clause()
435 return res; in eval_clause()