Home
last modified time | relevance | path

Searched refs:exec_fn (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Lib/distutils/
Dspawn.py93 exec_fn = search_path and os.execvp or os.execv
114 exec_fn = search_path and os.execvpe or os.execve
119 exec_fn(executable, cmd)
121 exec_fn(executable, cmd, env)
/external/python/cpython2/Lib/distutils/
Dspawn.py121 exec_fn = search_path and os.execvp or os.execv
142 exec_fn = search_path and os.execvpe or os.execve
148 exec_fn(executable, cmd)
150 exec_fn(executable, cmd, env)
/external/ltp/include/
Dtst_safe_pthread.h28 #define TST_DECLARE_ONCE_FN(name_fn, exec_fn) \ argument
32 pthread_once(&ltp_once, exec_fn); \
/external/ltp/include/old/
Dtest.h92 #define TST_DECLARE_ONCE_FN(name_fn, exec_fn) \ argument
96 pthread_once(&ltp_once, exec_fn); \
/external/squashfs-tools/squashfs-tools/
Daction.c2605 static int exec_fn(struct atom *atom, struct action_data *action_data) in exec_fn() function
3239 { "exec", 1, exec_fn, NULL, 1, 0},
/external/v8/src/wasm/
Dwasm-interpreter.cc2561 #define EXECUTE_UNOP(name, ctype, exec_fn) \ in Execute() argument
2565 auto result = exec_fn(val, &trap); \ in Execute()