Home
last modified time | relevance | path

Searched refs:st (Results 1 – 15 of 15) sorted by relevance

/rocksdb-6.9/utilities/ttl/
Ddb_ttl_impl.cc110 Status st; in Open() local
117 if (st.ok()) { in Open()
122 return st; in Open()
150 return st; in AppendTS()
155 return st; in AppendTS()
189 Status st; in StripTS() local
195 return st; in StripTS()
200 Status st; in StripTS() local
206 return st; in StripTS()
222 return st; in Get()
[all …]
/rocksdb-6.9/tools/
Dldb_cmd.cc405 Status st; in OpenDB() local
464 if (!st.ok()) { in OpenDB()
1300 if (st.ok()) { in DoCommand()
1339 if (st.ok()) { in DoCommand()
1891 return st; in GetOldNumOfLevels()
1902 return st; in GetOldNumOfLevels()
1912 Status st; in DoCommand() local
2346 if (st.ok()) { in DoCommand()
2458 if (st.ok()) { in DoCommand()
2691 Status st = in DoCommand() local
[all …]
Dsst_dump_tool.cc643 if (!st.ok()) { in Run()
684 st = dumper.DumpTable(out_filename); in Run()
685 if (!st.ok()) { in Run()
696 st = dumper.ReadSequential( in Run()
700 if (!st.ok()) { in Run()
702 st.ToString().c_str()); in Run()
711 st = dumper.VerifyChecksum(); in Run()
712 if (!st.ok()) { in Run()
714 st.ToString().c_str()); in Run()
726 st = dumper.ReadTableProperties(&table_properties_from_reader); in Run()
[all …]
Dreduce_levels_test.cc86 ROCKSDB_NAMESPACE::Status st = in OpenDB() local
88 if (!st.ok()) { in OpenDB()
89 fprintf(stderr, "Can't open the db:%s\n", st.ToString().c_str()); in OpenDB()
91 return st; in OpenDB()
Dldb_test.py448 st = ".*"
449 subpat = st + " seq:" + num + ", type:" + num
Ddb_bench_tool.cc6476 uint64_t st = FLAGS_env->NowNanos(); in GetMergeOperands() local
6483 std::cout << "Get: " << (sp - st) / 1000000000.0 << " seconds\n"; in GetMergeOperands()
6492 st = FLAGS_env->NowNanos(); in GetMergeOperands()
6509 std::cout << "Get Merge operands: " << (sp - st) / 1000000000.0 in GetMergeOperands()
/rocksdb-6.9/db/
Ddb_io_failure_test.cc276 Status* st = static_cast<Status*>(arg); in TEST_F() local
277 *st = Status::IOError("range sync dummy error"); in TEST_F()
356 Status* st = static_cast<Status*>(arg); in TEST_F() local
395 Status* st = static_cast<Status*>(arg); in TEST_F() local
396 *st = Status::IOError("close dummy error"); in TEST_F()
447 Status* st = static_cast<Status*>(arg); in TEST_F() local
448 *st = Status::IOError("close dummy error"); in TEST_F()
486 Status* st = static_cast<Status*>(arg); in TEST_F() local
487 *st = Status::IOError("sync dummy error"); in TEST_F()
539 Status* st = static_cast<Status*>(arg); in TEST_F() local
[all …]
Dc.cc3557 void rocksdb_slicetransform_destroy(rocksdb_slicetransform_t* st) { in rocksdb_slicetransform_destroy() argument
3558 delete st; in rocksdb_slicetransform_destroy()
/rocksdb-6.9/util/
Dcompression.h706 if (st != Z_OK) { in Zlib_Compress()
716 if (st != Z_OK) { in Zlib_Compress()
732 if (st == Z_STREAM_END) { in Zlib_Compress()
784 int st = variable
786 if (st != Z_OK) {
796 if (st != Z_OK) {
812 switch (st) {
885 if (st != BZ_OK) { in BZip2_Compress()
899 if (st == BZ_STREAM_END) { in BZip2_Compress()
945 if (st != BZ_OK) {
[all …]
/rocksdb-6.9/docs/_posts/
D2014-04-02-the-1st-rocksdb-local-meetup-held-on-march-27-2014.markdown2 title: The 1st RocksDB Local Meetup Held on March 27, 2014
7 - /blog/323/the-1st-rocksdb-local-meetup-held-on-march-27-2014/
10 On Mar 27, 2014, RocksDB team @ Facebook held the 1st RocksDB local meetup in FB HQ (Menlo Park, Ca…
D2017-08-25-flushwal.markdown24 …ne such as InnoDB and MyRocks. The group commit logic in MySQL allows the 1st phase (Prepare) to b…
/rocksdb-6.9/db/db_impl/
Ddb_impl_compaction_flush.cc1145 const Status& st, in NotifyOnCompactionBegin() argument
1168 info.status = st; in NotifyOnCompactionBegin()
1213 (void)st; in NotifyOnCompactionBegin()
1220 ColumnFamilyData* cfd, Compaction* c, const Status& st, in NotifyOnCompactionCompleted() argument
1241 BuildCompactionJobInfo(cfd, c, st, compaction_job_stats, job_id, current, in NotifyOnCompactionCompleted()
1254 (void)st; in NotifyOnCompactionCompleted()
3041 const ColumnFamilyData* cfd, Compaction* c, const Status& st, in BuildCompactionJobInfo() argument
3047 compaction_job_info->status = st; in BuildCompactionJobInfo()
Ddb_impl.h1047 const Status& st,
1051 const Status& st,
1668 const Status& st,
/rocksdb-6.9/utilities/backupable/
Dbackupable_db.cc865 Status st; in CreateNewBackupWithMetadata() local
867 st = db_env_->GetFileSize(src_dirname + fname, &size_bytes); in CreateNewBackupWithMetadata()
890 if (st.ok()) { in CreateNewBackupWithMetadata()
891 st = AddBackupFileWorkItem( in CreateNewBackupWithMetadata()
899 return st; in CreateNewBackupWithMetadata()
/rocksdb-6.9/third-party/gtest-1.8.1/fused-src/gtest/
Dgtest.h3730 inline bool IsDir(const StatStruct& st) {
3731 return (_S_IFDIR & st.st_mode) != 0;
3747 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }