Home
last modified time | relevance | path

Searched refs:run_shell (Results 1 – 3 of 3) sorted by relevance

/external/toybox/toys/pending/
Dsulogin.c70 static void run_shell(char *shell) in run_shell() function
117 run_shell((shell && *shell)? shell: "/bin/sh"); in sulogin_main()
/external/tensorflow/
Dconfigure.py133 def run_shell(cmd, allow_non_zero=False): function
155 library_paths = run_shell(
159 library_paths = [run_shell(
175 return run_shell([python_bin_path, '-c', 'import sys; print(sys.version[0])'])
447 curr_version = run_shell(['bazel', '--batch', 'version'])
944 cudnn_path_from_ldconfig = run_shell([ldconfig_bin, '-p'])
1024 ldd_out = run_shell([ldd_bin, tensorrt_lib]).split(os.linesep)
1058 ldconfig_output = run_shell([ldconfig_bin, '-p'])
1110 output = run_shell(device_query_bin).split('\n')
/external/v8/samples/
Dshell.cc63 static bool run_shell; variable
77 run_shell = (argc == 1); in main()
89 if (run_shell) RunShell(context, platform); in main()
269 run_shell = true; in RunMain()