OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:data_file
(Results
1 - 17
of
17
) sorted by null
/external/autotest/client/site_tests/platform_BootLockbox/
platform_BootLockbox.py
18
self.
data_file
= '/tmp/__lockbox_test'
19
open(self.
data_file
, mode='w').write('test_lockbox_data')
22
self._remove_file(self.
data_file
)
23
self._remove_file(self.
data_file
+ '.signature')
47
' --action=sign_lockbox --file=' + self.
data_file
,
52
' --action=verify_lockbox --file=' + self.
data_file
,
85
open(self.
data_file
, mode='w').write('test_lockbox_data2')
88
open(self.
data_file
, mode='w').write('test_lockbox_data')
/external/autotest/tko/
draw_graphs
30
foreach $
data_file
(@data_files) {
31
$
data_file
=~ /^plotdata\.([\w-]+)\.([\w-]+)$/;
33
print " === Analysing data file: $
data_file
$test $machine\n";
35
open DATAFILE, $
data_file
|| die "Cannot open $
data_file
";
/external/webrtc/webrtc/modules/audio_coding/neteq/
audio_classifier_unittest.cc
48
FILE*
data_file
= fopen(data_filename.c_str(), "rb");
local
56
ASSERT_EQ(1u, fread(&is_music_ref, sizeof(is_music_ref), 1,
data_file
));
60
fclose(
data_file
);
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
dynamodb_dump
25
data_file
= os.path.join(out_dir, "%s.data" % table.name)
38
with open(
data_file
, "w") as data_fd:
dynamodb_load
76
data_file
= os.path.join(in_dir, "%s.data" % t)
90
with open(
data_file
) as in_fd:
/external/libcxx/test/libcxx/android/test/
format.py
73
for
data_file
in data_files:
74
df_path = os.path.join(src_dir,
data_file
)
75
df_dev_path = self._wd_path(exec_file,
data_file
)
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/libcxx/android/test/
format.py
75
for
data_file
in data_files:
76
df_path = os.path.join(src_dir,
data_file
)
77
df_dev_path = self._wd_path(exec_file,
data_file
)
/external/chromium-trace/catapult/experimental/statistical_analysis/
compare_benchmark_results.py
34
with open(os.path.abspath(json_path)) as
data_file
:
35
return json.load(
data_file
)
/external/skia/tools/
gen_bench_expectations_from_codereview.py
112
for
data_file
in os.listdir(dest_dir):
113
match = re.match('bench_(?P<revision>[0-9a-fA-F]{2,40})_data.*',
data_file
)
/external/autotest/client/cros/
ownership.py
377
data_file
= scoped_tempfile()
378
data_file
.fo.write(data)
379
data_file
.fo.seek(0)
387
stdin=
data_file
.fo,
/external/chromium-trace/catapult/third_party/gsutil/gslib/
__init__.py
38
data_file
=coverage_outfile, data_suffix=True, auto_data=True,
/frameworks/base/tools/localedata/
extract_icu_data.py
182
for
data_file
in all_icu_data_files:
183
locale = os.path.splitext(os.path.basename(
data_file
))[0]
184
with open(
data_file
) as input_file:
/external/v8/tools/
stats-viewer.py
117
data_file
= open(self.data_name, "r")
118
size = os.fstat(
data_file
.fileno()).st_size
119
fileno =
data_file
.fileno()
451
def Main(
data_file
, name_filter):
455
data_file
: The counters file to monitor.
458
StatsViewer(
data_file
, name_filter).Run()
/external/chromium-trace/catapult/third_party/coverage/coverage/
control.py
60
self,
data_file
=None, data_suffix=None, cover_pylib=None,
66
`
data_file
` is the base name of the data file to use, defaulting to
67
".coverage". `data_suffix` is appended (with a dot) to `
data_file
` to
147
self.config.
data_file
= env_data_file
154
data_file
=
data_file
, cover_pylib=cover_pylib, timid=timid,
284
self.data_files = CoverageDataFiles(basename=self.config.
data_file
, warn=self._warn)
770
All coverage data files whose name starts with `
data_file
` (from the
[
all
...]
cmdline.py
628
data_file
= self.coverage.get_option("run:
data_file
")
629
if self.path_exists(
data_file
):
630
self.coverage.combine(data_paths=[
data_file
])
html.py
64
with open(data_filename(fname)) as
data_file
:
65
return
data_file
.read()
config.py
159
self.
data_file
= ".coverage"
272
('
data_file
', 'run:
data_file
'),
Completed in 415 milliseconds