/external/chromium_org/third_party/leveldatabase/src/db/ |
filename.h | 31 // in the db named by "dbname". The result will be prefixed with 32 // "dbname". 33 extern std::string LogFileName(const std::string& dbname, uint64_t number); 36 // in the db named by "dbname". The result will be prefixed with 37 // "dbname". 38 extern std::string TableFileName(const std::string& dbname, uint64_t number); 41 // in the db named by "dbname". The result will be prefixed with 42 // "dbname". 43 extern std::string SSTTableFileName(const std::string& dbname, uint64_t number); 46 // "dbname" and the specified incarnation number. The result will b [all...] |
filename.cc | 42 std::string DescriptorFileName(const std::string& dbname, uint64_t number) { 47 return dbname + buf; 50 std::string CurrentFileName(const std::string& dbname) { 51 return dbname + "/CURRENT"; 54 std::string LockFileName(const std::string& dbname) { 55 return dbname + "/LOCK"; 58 std::string TempFileName(const std::string& dbname, uint64_t number) { 60 return MakeFileName(dbname, number, "dbtmp"); 63 std::string InfoLogFileName(const std::string& dbname) { 64 return dbname + "/LOG" [all...] |
builder.h | 25 extern Status BuildTable(const std::string& dbname,
|
builder.cc | 17 Status BuildTable(const std::string& dbname, 27 std::string fname = TableFileName(dbname, meta->number);
|
table_cache.h | 23 TableCache(const std::string& dbname, const Options* options, int entries);
|
c_test.c | 15 static char dbname[200]; variable 171 snprintf(dbname, sizeof(dbname), 202 leveldb_destroy_db(options, dbname, &err); 206 db = leveldb_open(options, dbname, &err); 211 db = leveldb_open(options, dbname, &err); 218 db = leveldb_open(options, dbname, &err); 327 leveldb_repair_db(options, dbname, &err); 329 db = leveldb_open(options, dbname, &err); 352 leveldb_destroy_db(options, dbname, &err) [all...] |
table_cache.cc | 32 TableCache::TableCache(const std::string& dbname, 36 dbname_(dbname),
|
repair.cc | 47 Repairer(const std::string& dbname, const Options& options) 48 : dbname_(dbname), 52 options_(SanitizeOptions(dbname, &icmp_, &ipolicy_, options)), 457 Status RepairDB(const std::string& dbname, const Options& options) { 458 Repairer repairer(dbname, options);
|
db_impl.cc | 90 Options SanitizeOptions(const std::string& dbname, 102 src.env->CreateDir(dbname); // In case it does not exist 103 src.env->RenameFile(InfoLogFileName(dbname), OldInfoLogFileName(dbname)); 104 Status s = src.env->NewLogger(InfoLogFileName(dbname), &result.info_log); 116 DBImpl::DBImpl(const Options& raw_options, const std::string& dbname) 120 options_(SanitizeOptions(dbname, &internal_comparator_, 124 dbname_(dbname), [all...] |
db_impl.h | 28 DBImpl(const Options& options, const std::string& dbname);
|
version_set.h | 167 VersionSet(const std::string& dbname,
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
OpenWnnSQLiteOpenHelper.java | 33 public OpenWnnSQLiteOpenHelper(Context context, String dbname) { 34 super(context, dbname, null, DATABASE_VERSION);
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/ |
PUserDatabaseParser.java | 95 StringBuffer dbname = new StringBuffer(); local 103 dbname.append(next); 107 userDatabase.setDatabaseName(dbname.toString());
|
/external/chromium_org/content/test/data/indexeddb/ |
transaction_not_blocked.js | 8 var dbname = "doesnt-hang-test"; 9 var request = indexedDB.open(dbname);
|
database_test.js | 17 shouldBe('db.name', 'dbname');
|
transaction_run_forever.js | 8 var dbname = "doesnt-hang-test"; 10 var request = indexedDB.deleteDatabase(dbname); 14 var request = indexedDB.open(dbname, 1);
|
common.js | 136 dbname = self.location.pathname.substring( 138 var deleteRequest = indexedDB.deleteDatabase(dbname); 142 var openRequest = indexedDB.open(dbname);
|
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/ |
db.h | 157 Status RepairDB(const std::string& dbname, const Options& options);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/ |
userfunctions.py | 379 def authorizer_cb(action, arg1, arg2, dbname, source): 423 def authorizer_cb(action, arg1, arg2, dbname, source): 432 def authorizer_cb(action, arg1, arg2, dbname, source): 441 def authorizer_cb(action, arg1, arg2, dbname, source):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/ |
userfunctions.py | 379 def authorizer_cb(action, arg1, arg2, dbname, source): 423 def authorizer_cb(action, arg1, arg2, dbname, source): 432 def authorizer_cb(action, arg1, arg2, dbname, source): 441 def authorizer_cb(action, arg1, arg2, dbname, source):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_basics.py | 41 dbname = None variable in class:BasicTestCase 79 if self.dbname: 80 self.d.open(self.filename, self.dbname, self.dbtype, 198 if self.dbname: 199 self.d.open(self.filename, self.dbname) 978 dbname = 'first' variable in class:BasicMultiDBTestCase 1015 d1.open(self.filename, self.dbname, flags = self.dbopenflags) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_basics.py | 41 dbname = None variable in class:BasicTestCase 79 if self.dbname: 80 self.d.open(self.filename, self.dbname, self.dbtype, 198 if self.dbname: 199 self.d.open(self.filename, self.dbname) 978 dbname = 'first' variable in class:BasicMultiDBTestCase 1015 d1.open(self.filename, self.dbname, flags = self.dbopenflags) [all...] |
/cts/tests/src/android/content/cts/ |
MockContentProvider.java | 71 DatabaseHelper(Context context, String dbname) { 72 super(context, dbname, null, DBVERSION); 98 public MockContentProvider(String authority, String dbName) { 100 mDbName = dbName;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/ |
dbshelve.py | 82 dbenv=None, dbname=None): 111 d.open(filename, dbname, filetype, flags, mode)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/ |
dbshelve.py | 82 dbenv=None, dbname=None): 111 d.open(filename, dbname, filetype, flags, mode)
|