HomeSort by relevance Sort by last modified time
    Searched refs:dbname (Results 1 - 25 of 37) 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 // 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)),
456 Status RepairDB(const std::string& dbname, const Options& options) {
457 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,