Home
last modified time | relevance | path

Searched refs:tempfile (Results 1 – 5 of 5) sorted by relevance

/system/extras/simpleperf/
Denvironment_test.cpp54 TemporaryFile tempfile; in TEST() local
55 ASSERT_TRUE(android::base::WriteStringToFile(data, tempfile.path)); in TEST()
62 tempfile.path, std::bind(&KernelSymbolsMatch, std::placeholders::_1, expected_symbol))); in TEST()
69 tempfile.path, std::bind(&KernelSymbolsMatch, std::placeholders::_1, expected_symbol))); in TEST()
73 tempfile.path, std::bind(&KernelSymbolsMatch, std::placeholders::_1, expected_symbol))); in TEST()
/system/extras/verity/fec/tests/
Dfec.py21 import tempfile
62 temp_img = tempfile.NamedTemporaryFile()
63 temp_cor = tempfile.NamedTemporaryFile()
64 temp_fec = tempfile.NamedTemporaryFile()
65 temp_out = tempfile.NamedTemporaryFile()
/system/extras/verity/
Dbuild_verity_metadata.py6 import tempfile
31 with tempfile.NamedTemporaryFile(suffix='.table') as table_file:
32 with tempfile.NamedTemporaryFile(suffix='.sig') as signature_file:
/system/core/adb/
Dtest_device.py33 import tempfile
503 tf = tempfile.NamedTemporaryFile('wb', suffix=file_suffix,
613 file_handle = tempfile.NamedTemporaryFile(dir=in_dir, delete=False)
663 tmp = tempfile.NamedTemporaryFile(mode='wb', delete=False)
682 host_dir = tempfile.mkdtemp()
708 host_dir = tempfile.mkdtemp()
737 host_dir = tempfile.mkdtemp()
775 with tempfile.NamedTemporaryFile() as tmp_file:
787 tmp_write = tempfile.NamedTemporaryFile(mode='wb', delete=False)
826 host_dir = tempfile.mkdtemp()
[all …]
/system/connectivity/shill/mobile_operator_db/
Dserviceproviders_converter.py22 import tempfile
208 fd, fname = tempfile.mkstemp(prefix='converter_')