OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:read_options
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/leveldatabase/src/issues/
issue200_test.cc
33
ReadOptions
read_options
;
local
34
Iterator *iter = db->NewIterator(
read_options
);
/external/chromium_org/google_apis/gcm/engine/
gcm_store_impl.cc
462
leveldb::ReadOptions
read_options
;
local
475
s = db_->Get(
read_options
,
547
leveldb::ReadOptions
read_options
;
local
548
read_options
.verify_checksums = true;
549
scoped_ptr<leveldb::Iterator> iter(db_->NewIterator(
read_options
));
623
leveldb::ReadOptions
read_options
;
local
624
read_options
.verify_checksums = true;
627
leveldb::Status s = db_->Get(
read_options
, MakeSlice(kDeviceAIDKey), &result);
634
s = db_->Get(
read_options
, MakeSlice(kDeviceTokenKey), &result);
657
leveldb::ReadOptions
read_options
;
local
684
leveldb::ReadOptions
read_options
;
local
706
leveldb::ReadOptions
read_options
;
local
739
leveldb::ReadOptions
read_options
;
local
769
leveldb::ReadOptions
read_options
;
local
796
leveldb::ReadOptions
read_options
;
local
[
all
...]
/external/openfst/src/script/
fst-class.cc
55
FstReadOptions
read_options
(fname, &hdr);
65
<< hdr.ArcType() << "\" : " <<
read_options
.source;
69
return reader(in,
read_options
);
/external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_database.cc
375
leveldb::ReadOptions
read_options
;
376
read_options
.verify_checksums = true; // TODO(jsbell): Disable this if the
378
read_options
.snapshot = snapshot ? snapshot->snapshot_ : 0;
380
const leveldb::Status s = db_->Get(
read_options
, MakeSlice(key), value);
411
leveldb::ReadOptions
read_options
;
412
read_options
.verify_checksums = true; // TODO(jsbell): Disable this if the
414
read_options
.snapshot = snapshot ? snapshot->snapshot_ : 0;
416
scoped_ptr<leveldb::Iterator> i(db_->NewIterator(
read_options
));
/external/clang/docs/tools/
dump_format_style.py
69
def
read_options
(header):
function
133
options =
read_options
(open(FORMAT_STYLE_FILE))
Completed in 1154 milliseconds