HomeSort by relevance Sort by last modified time
    Searched refs:dbname (Results 1 - 25 of 38) sorted by null

1 2

  /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 // "dbname" and the specified incarnation number. The result will be
42 // prefixed with "dbname".
43 extern std::string DescriptorFileName(const std::string& dbname,
48 // "dbname"
    [all...]
filename.cc 37 std::string DescriptorFileName(const std::string& dbname, uint64_t number) {
42 return dbname + buf;
45 std::string CurrentFileName(const std::string& dbname) {
46 return dbname + "/CURRENT";
49 std::string LockFileName(const std::string& dbname) {
50 return dbname + "/LOCK";
53 std::string TempFileName(const std::string& dbname, uint64_t number) {
55 return MakeFileName(dbname, number, "dbtmp");
58 std::string InfoLogFileName(const std::string& dbname) {
59 return dbname + "/LOG"
    [all...]
db_iter.h 18 const std::string* dbname,
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...]
db_iter.cc 49 DBIter(const std::string* dbname, Env* env,
51 : dbname_(dbname),
291 const std::string* dbname,
296 return new DBIter(dbname, env, user_key_comparator, internal_iter, sequence);
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)),
384 Status RepairDB(const std::string& dbname, const Options& options) {
385 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& options, const std::string& dbname)
121 dbname, &internal_comparator_, &internal_filter_policy_, options)),
124 dbname_(dbname),
    [all...]
db_impl.h 28 DBImpl(const Options& options, 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)

Completed in 380 milliseconds

1 2