Home
last modified time | relevance | path

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

/aosp12/bionic/benchmarks/linker_relocation/
H A Drun_bench_with_ninja.sh110 json_file=$top/tmp/libandroid_servers_arm64.json
111 if [ ! -e $json_file ]; then
118 python3 -B $top/regen/gen_bench.py --ninja --cc "$cc" $json_file $work_dir
/aosp12/system/bt/test/
H A Dgen_coverage.py301 json_file = open(test_json_summary_file, 'w')
302 json.dump(generate_coverage_json(test), json_file)
303 json_file.close()
400 if args.json_file:
/aosp12/hardware/google/pixel/power-libperfmgr/libperfmgr/tools/
H A DConfigVerifier.cc85 static void execConfig(const std::string& json_file, in execConfig() argument
88 android::perfmgr::HintManager::GetFromJSON(json_file); in execConfig()
/aosp12/hardware/interfaces/scripts/
H A Dlist_hal_vts.py72 def load_modules_info(json_file): argument
78 with open(json_file) as fp:
/aosp12/hardware/google/pixel/power-libperfmgr/libperfmgr/tests/
H A DHintManagerTest.cc598 TemporaryFile json_file; in TEST_F() local
599 ASSERT_TRUE(android::base::WriteStringToFile(json_doc_, json_file.path)) in TEST_F()
602 HintManager::GetFromJSON(json_file.path, false); in TEST_F()
607 hm = HintManager::GetFromJSON(json_file.path); in TEST_F()