Home
last modified time | relevance | path

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

/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/
Djson_validate.py33 if not os.path.exists(args.json_file):
34 print('Error: json file \"%s\" does not exist.' % args.json_file)
48 with open(args.json_file) as jsonFile:
/hardware/google/pixel/power-libperfmgr/libperfmgr/tools/
DConfigVerifier.cc85 static void execConfig(const std::string& json_file, in execConfig() argument
87 android::perfmgr::HintManager *hm = android::perfmgr::HintManager::GetFromJSON(json_file); in execConfig()
/hardware/google/pixel/power-libperfmgr/libperfmgr/tests/
DHintManagerTest.cc679 TemporaryFile json_file; in TEST_F() local
680 ASSERT_TRUE(android::base::WriteStringToFile(json_doc_, json_file.path)) in TEST_F()
682 HintManager *hm = HintManager::GetFromJSON(json_file.path, false); in TEST_F()
687 hm = HintManager::GetFromJSON(json_file.path); in TEST_F()
884 TemporaryFile json_file; in TEST_F() local
885 ASSERT_TRUE(android::base::WriteStringToFile(json_doc_, json_file.path)) << strerror(errno); in TEST_F()
886 HintManager *hm = HintManager::GetFromJSON(json_file.path, false); in TEST_F()
903 TemporaryFile json_file; in TEST_F() local
904 ASSERT_TRUE(android::base::WriteStringToFile(json_doc_, json_file.path)) << strerror(errno); in TEST_F()
905 HintManager *hm = HintManager::GetFromJSON(json_file.path, false); in TEST_F()
[all …]
/hardware/interfaces/scripts/
Dlist_hal_vts.py72 def load_modules_info(json_file): argument
78 with open(json_file) as fp: