OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetLengthPrefixedSlice
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/leveldatabase/src/db/
memtable.cc
14
static Slice
GetLengthPrefixedSlice
(const char* data) {
36
Slice a =
GetLengthPrefixedSlice
(aptr);
37
Slice b =
GetLengthPrefixedSlice
(bptr);
61
virtual Slice key() const { return
GetLengthPrefixedSlice
(iter_.key()); }
63
Slice key_slice =
GetLengthPrefixedSlice
(iter_.key());
64
return
GetLengthPrefixedSlice
(key_slice.data() + key_slice.size());
132
Slice v =
GetLengthPrefixedSlice
(key_ptr + key_length);
write_batch.cc
57
if (
GetLengthPrefixedSlice
(&input, &key) &&
58
GetLengthPrefixedSlice
(&input, &value)) {
65
if (
GetLengthPrefixedSlice
(&input, &key)) {
version_edit.cc
90
if (
GetLengthPrefixedSlice
(input, &str)) {
125
if (
GetLengthPrefixedSlice
(&input, &str)) {
/external/chromium_org/third_party/leveldatabase/src/util/
coding_test.cc
181
ASSERT_TRUE(
GetLengthPrefixedSlice
(&input, &v));
183
ASSERT_TRUE(
GetLengthPrefixedSlice
(&input, &v));
185
ASSERT_TRUE(
GetLengthPrefixedSlice
(&input, &v));
187
ASSERT_TRUE(
GetLengthPrefixedSlice
(&input, &v));
coding.h
32
extern bool
GetLengthPrefixedSlice
(Slice* input, Slice* result);
coding.cc
172
const char*
GetLengthPrefixedSlice
(const char* p, const char* limit,
182
bool
GetLengthPrefixedSlice
(Slice* input, Slice* result) {
Completed in 40 milliseconds