Searched defs:check_output (Results 1 - 4 of 4) sorted by relevance

/external/lldb/utils/vim-lldb/python-vim-lldb/
H A Dimport_lldb.py28 from subprocess import check_output, CalledProcessError namespace
31 lldb_minus_p_path = check_output("%s -P" % lldb_executable, shell=True, stderr=fnull).strip()
/external/libvorbis/test/
H A Dtest.c30 static int check_output (const float * data_in, unsigned len, float allowable);
62 if (check_output (data_in, ARRAY_LEN (data_in), (.15f - .1f*q)) != 0)
80 check_output (const float * data_in, unsigned len, float allowable) function
/external/mksh/src/
H A Dcheck.pl631 $tmp = &check_output($test{'long-name'}, $tempo, 'stdout',
639 $tmp = &check_output($test{'long-name'}, $tempe, 'stderr',
768 check_output subroutine
1276 local $tmp = &check_output($test{'long-name'}, $name,
/external/skia/tools/
H A Dmisc_utils.py82 def check_output(self, *args, **kwargs): member in class:VerboseSubprocess
83 """Wrapper for subprocess.check_output().
86 *args: to be passed to subprocess.check_output()
87 **kwargs: to be passed to subprocess.check_output()
89 Whatever subprocess.check_output() returns.
91 OSError or subprocess.CalledProcessError: raised by check_output.
95 return subprocess.check_output(*args, **kwargs)
98 """Wrap subprocess.check_output and str.strip().
100 Pass the given arguments into subprocess.check_output() and return
104 *args: to be passed to subprocess.check_output()
[all...]

Completed in 452 milliseconds