HomeSort by relevance Sort by last modified time
    Searched full:db_file (Results 1 - 25 of 27) sorted by null

1 2

  /external/python/cpython2/Doc/includes/sqlite3/
createdb.py 7 DB_FILE = "mydb"
9 if os.path.exists(DB_FILE):
10 os.remove(DB_FILE)
12 con = sqlite3.connect(DB_FILE)
  /external/python/cpython3/Doc/includes/sqlite3/
createdb.py 7 DB_FILE = "mydb"
9 if os.path.exists(DB_FILE):
10 os.remove(DB_FILE)
12 con = sqlite3.connect(DB_FILE)
  /packages/apps/Launcher3/tests/src/com/android/launcher3/model/
DbDowngradeHelperTest.java 51 private static final String DB_FILE = "test.db";
61 mDbFile = mContext.getDatabasePath(DB_FILE);
117 helper = new DatabaseHelper(mContext, null, DB_FILE) {
149 DatabaseHelper dbHelper = new DatabaseHelper(mContext, null, DB_FILE) {
166 super(mContext, DB_FILE, null, version);
  /external/lisa/libs/utils/android/workloads/
youtube.py 41 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)
gmaps.py 44 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)
uibench.py 83 self.db_file = None
179 self.db_file = os.path.join(out_dir, "framestats.txt")
180 with open(self.db_file, 'w') as f:
vellamo.py 165 db_file = os.path.join(out_dir, VELLAMO_SCORE_NAME)
167 db_file)
jankbench.py 107 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)
app_startup.py 41 self.db_file = None
display_image.py 43 self.db_file = None
idle_resume.py 51 self.db_file = None
suspend_resume.py 51 self.db_file = None
sysapp.py 161 self.db_file = os.path.join(out_dir, "results.log")
systemui.py 74 self.db_file = None
  /external/python/cpython3/Lib/test/
test_dbm.py 150 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/lisa/libs/utils/android/
viewer.py 63 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/vulkan-validation-layers/scripts/
spec.py 246 def genDB(self, db_file):
277 print ("Generating database file %s" % (db_file))
278 with open(db_file, "w") as outfile:
280 def readDB(self, db_file):
282 with open(db_file, "r", encoding='utf-8') as infile:
vk_validation_stats.py 53 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:
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
spec.py 215 def genDB(self, db_file):
242 print "Generating database file %s" % (db_file)
243 with open(db_file, "w") as outfile:
246 def readDB(self, db_file):
250 with open(db_file, "r") as infile:
  /external/wpa_supplicant_8/hostapd/
hlr_auc_gw.c 144 static sqlite3 * db_open(const char *db_file)
148 if (sqlite3_open(db_file, &db)) {
150 db_file, sqlite3_errmsg(db));
  /external/autotest/scheduler/
rdb_testing_utils.py 290 DB_FILE = os.path.join(common.autotest_dir, 'host_scheduler_db')
305 db_file_path = self.DB_FILE
host_scheduler.py 425 db_file_path=rdb_testing_utils.FileDatabaseHelper.DB_FILE)
  /external/wpa_supplicant_8/src/eap_server/
eap_sim_db.c 141 static sqlite3 * db_open(const char *db_file)
145 if (sqlite3_open(db_file, &db)) {
147 "%s: %s", db_file, sqlite3_errmsg(db));
    [all...]
  /external/iproute2/lib/
bpf.c     [all...]
  /external/lisa/ipynb/examples/android/benchmarks/
Android_UiBench.ipynb 302 "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']}"
    [all...]

Completed in 652 milliseconds

1 2