Home
last modified time | relevance | path

Searched refs:hex (Results 1 – 16 of 16) sorted by relevance

/rocksdb-6.9/java/src/main/java/org/rocksdb/
DAbstractSlice.java101 public String toString(final boolean hex) { in toString() argument
102 return toString0(getNativeHandle(), hex); in toString()
178 private native String toString0(long handle, boolean hex); in toString0() argument
/rocksdb-6.9/db/
Ddbformat.cc92 std::string ParsedInternalKey::DebugString(bool hex) const { in DebugString()
97 result += user_key.ToString(hex); in DebugString()
102 std::string InternalKey::DebugString(bool hex) const { in DebugString()
106 result = parsed.DebugString(hex); in DebugString()
Dversion_set.h382 std::string DebugString(bool hex = false) const;
634 std::string DebugString(bool hex = false, bool print_stats = false) const;
924 bool verbose, bool hex = false, bool json = false);
Ddbformat.h110 std::string DebugString(bool hex = false) const;
287 std::string DebugString(bool hex = false) const;
Dversion_set.cc3413 std::string Version::DebugString(bool hex, bool print_stats) const { in DebugString() argument
3440 r.append(files[i]->smallest.DebugString(hex)); in DebugString()
3442 r.append(files[i]->largest.DebugString(hex)); in DebugString()
4962 bool verbose, bool hex, bool json) { in DumpManifest() argument
5017 printf("%s\n", edit.DebugString(hex).c_str()); in DumpManifest()
5019 printf("%s\n", edit.DebugJSON(count, hex).c_str()); in DumpManifest()
5148 printf("%s \n", v->DebugString(hex).c_str()); in DumpManifest()
/rocksdb-6.9/table/
Dformat.cc81 std::string BlockHandle::ToString(bool hex) const { in ToString()
84 if (hex) { in ToString()
135 std::string IndexValue::ToString(bool hex, bool have_first_key) const { in ToString() argument
138 if (hex) { in ToString()
Dformat.h57 std::string ToString(bool hex = true) const;
101 std::string ToString(bool hex, bool have_first_key) const;
/rocksdb-6.9/util/
Dslice.cc157 std::string Slice::ToString(bool hex) const { in ToString()
159 if (hex) { in ToString()
Dfilter_bench.cc668 std::cout << " Dry run (" << std::hex << (dry_run_hash & 0xfffff) in RandomQueryTest()
/rocksdb-6.9/java/rocksjni/
Dslice.cc78 jlong handle, jboolean hex) { in Java_org_rocksdb_AbstractSlice_toString0() argument
80 const std::string s = slice->ToString(hex); in Java_org_rocksdb_AbstractSlice_toString0()
/rocksdb-6.9/include/rocksdb/
Dtypes.h40 std::string DebugString(bool hex = false) const;
Dslice.h97 std::string ToString(bool hex = false) const;
/rocksdb-6.9/tools/
Dldb_test.py351 "idump --input_key_hex --from=%s --to=%s" % (hex(ord('a')),
352 hex(ord('b'))),
Dldb_cmd.cc1012 void DumpManifestFile(Options options, std::string file, bool verbose, bool hex, in DumpManifestFile() argument
1028 Status s = versions.DumpManifest(options, file, verbose, hex, json); in DumpManifestFile()
/rocksdb-6.9/third-party/gtest-1.8.1/fused-src/gtest/
Dgtest-all.cc3469 ss << std::hex << std::uppercase << value; in FormatHexInt()
3476 ss << std::setfill('0') << std::setw(2) << std::hex << std::uppercase in FormatByte()
10906 *os << "\\x" << std::hex << std::uppercase in PrintAsCharLiteralTo()
/rocksdb-6.9/
DHISTORY.md601 * DB property "rocksdb.sstables" now prints keys in hex form.