OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stdout_file
(Results
1 - 8
of
8
) sorted by null
/system/extras/simpleperf/scripts/
utils.py
181
def run_and_return_output(self, adb_args,
stdout_file
=None):
184
if
stdout_file
:
185
with open(
stdout_file
, 'wb') as stdout_fh:
203
def check_run_and_return_output(self, adb_args,
stdout_file
=None):
204
result, stdoutdata = self.run_and_return_output(adb_args,
stdout_file
)
app_profiler.py
320
def run_in_app_dir(self, args,
stdout_file
=None, check_result=True):
323
return self.adb.check_run_and_return_output(args,
stdout_file
)
325
return self.adb.run_and_return_output(args,
stdout_file
)
/frameworks/compile/slang/tests/
slang_test.py
275
stdout_file
= open('stdout.txt', 'w+')
289
ret = subprocess.call(args, stdout=
stdout_file
, stderr=stderr_file)
293
stdout_file
.close()
/frameworks/ml/nn/tools/test_generator/tests/
test.py
221
stdout_file
= open('stdout.txt', 'w+')
235
ret = subprocess.call(args, stdout=
stdout_file
, stderr=stderr_file)
239
stdout_file
.close()
/external/devlib/devlib/platform/
gem5.py
55
self.
stdout_file
= None
123
self.
stdout_file
= open(f, 'w')
139
stdout=self.
stdout_file
,
/test/vts/drivers/shell/
ShellDriver.cpp
106
int
stdout_file
= mkstemp(stdout_file_name);
local
108
close(
stdout_file
);
/external/autotest/client/tools/
html_report.py
[
all
...]
/external/autotest/site_utils/
gs_offloader.py
536
with tempfile.TemporaryFile('w+') as
stdout_file
, \
539
self._offload(dir_entry, dest_path,
stdout_file
, stderr_file)
547
stdout_file
.seek(0)
551
logging.warning('Stdout:\n%s \nStderr:\n%s',
stdout_file
.read(),
567
stdout_file
, stderr_file):
575
@param
stdout_file
: Log file.
598
stdout=
stdout_file
, stderr=stderr_file)
[
all
...]
Completed in 292 milliseconds