Home
last modified time | relevance | path

Searched refs:db_file (Results 1 – 19 of 19) sorted by relevance

/external/lisa/libs/utils/android/
Dviewer.py63 self.db_file = None
140 self.db_file = os.path.join(out_dir, "framestats.txt")
141 System.gfxinfo_get(self._target, self.package, self.db_file)
/external/lisa/libs/utils/android/workloads/
Dyoutube.py41 self.db_file = None
100 self.db_file = os.path.join(out_dir, "framestats.txt")
101 System.gfxinfo_get(self._target, self.package, self.db_file)
Dgmaps.py44 self.db_file = None
125 self.db_file = os.path.join(out_dir, "framestats.txt")
126 System.gfxinfo_get(self._target, self.package, self.db_file)
Duibench.py83 self.db_file = None
179 self.db_file = os.path.join(out_dir, "framestats.txt")
180 with open(self.db_file, 'w') as f:
Djankbench.py107 self.db_file = None
239 self.db_file = os.path.join(out_dir, JANKBENCH_DB_NAME)
240 self._target.pull(db_adb, self.db_file)
Dvellamo.py165 db_file = os.path.join(out_dir, VELLAMO_SCORE_NAME)
167 db_file)
Dsuspend_resume.py51 self.db_file = None
Dapp_startup.py41 self.db_file = None
Ddisplay_image.py43 self.db_file = None
Didle_resume.py51 self.db_file = None
Dsystemui.py74 self.db_file = None
Dsysapp.py161 self.db_file = os.path.join(out_dir, "results.log")
/external/python/cpython3/Lib/test/
Dtest_dbm.py150 db_file = '{}_ndbm.db'.format(_fname)
151 with open(db_file, 'w'):
152 self.addCleanup(test.support.unlink, db_file)
153 self.assertIsNone(self.dbm.whichdb(db_file[:-3]))
/external/vulkan-validation-layers/scripts/
Dspec.py246 def genDB(self, db_file): argument
277 print ("Generating database file %s" % (db_file))
278 with open(db_file, "w") as outfile:
280 def readDB(self, db_file): argument
282 with open(db_file, "r", encoding='utf-8') as infile:
Dvk_validation_stats.py53 db_file = '../layers/vk_validation_error_database.txt' variable
99 def __init__(self, filename=db_file):
100 self.db_file = filename
113 with open(self.db_file, "r", encoding="utf8") as infile:
/external/wpa_supplicant_8/hostapd/
Dhlr_auc_gw.c144 static sqlite3 * db_open(const char *db_file) in db_open() argument
148 if (sqlite3_open(db_file, &db)) { in db_open()
150 db_file, sqlite3_errmsg(db)); in db_open()
/external/wpa_supplicant_8/src/eap_server/
Deap_sim_db.c141 static sqlite3 * db_open(const char *db_file) in db_open() argument
145 if (sqlite3_open(db_file, &db)) { in db_open()
147 "%s: %s", db_file, sqlite3_errmsg(db)); in db_open()
/external/iproute2/lib/
Dbpf.c2295 static void bpf_hash_init(struct bpf_elf_ctx *ctx, const char *db_file) in bpf_hash_init() argument
2303 fp = fopen(db_file, "r"); in bpf_hash_init()
2310 db_file, subpath); in bpf_hash_init()
2317 db_file, pinning); in bpf_hash_init()
/external/lisa/ipynb/examples/android/benchmarks/
DAndroid_UiBench.ipynb302 "db_file = os.path.join(te.res_dir, \"framestats.txt\")\n",
303 "!sed '/Stats since/,/99th/!d;/99th/q' {db_file}\n",
306 "# !cat {results['db_file']}"