Home
last modified time | relevance | path

Searched refs:RecordCursor (Results 1 – 25 of 28) sorted by relevance

12

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/perfetto/src/trace_processor/importers/fuchsia/
H A Dfuchsia_trace_utils.cc92 size_t RecordCursor::WordIndex() { in WordIndex()
96 void RecordCursor::SetWordIndex(size_t index) { in SetWordIndex()
100 bool RecordCursor::ReadTimestamp(uint64_t ticks_per_second, int64_t* ts_out) { in ReadTimestamp()
113 bool RecordCursor::ReadInlineString(uint32_t string_ref_or_len, in ReadInlineString()
129 bool RecordCursor::ReadInlineThread(ThreadInfo* thread_out) { in ReadInlineThread()
141 bool RecordCursor::ReadInt64(int64_t* out) { in ReadInt64()
152 bool RecordCursor::ReadUint64(uint64_t* out) { in ReadUint64()
163 bool RecordCursor::ReadDouble(double* out) { in ReadDouble()
176 bool RecordCursor::ReadWords(size_t num_words, const uint8_t** data_out) { in ReadWords()
H A Dfuchsia_trace_utils.h196 class RecordCursor {
198 RecordCursor(const uint8_t* begin, size_t length) in RecordCursor() function
H A Dfuchsia_trace_parser.cc80 fuchsia_trace_utils::RecordCursor cursor( in ParseTracePacket()
H A Dfuchsia_trace_tokenizer.cc190 fuchsia_trace_utils::RecordCursor cursor(tbv.data(), tbv.length()); in ParseRecord()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/perfetto/src/trace_processor/importers/fuchsia/
H A Dfuchsia_trace_utils.cc92 size_t RecordCursor::WordIndex() { in WordIndex()
96 void RecordCursor::SetWordIndex(size_t index) { in SetWordIndex()
100 bool RecordCursor::ReadTimestamp(uint64_t ticks_per_second, int64_t* ts_out) { in ReadTimestamp()
113 bool RecordCursor::ReadInlineString(uint32_t string_ref_or_len, in ReadInlineString()
129 bool RecordCursor::ReadInlineThread(ThreadInfo* thread_out) { in ReadInlineThread()
141 bool RecordCursor::ReadInt64(int64_t* out) { in ReadInt64()
152 bool RecordCursor::ReadUint64(uint64_t* out) { in ReadUint64()
163 bool RecordCursor::ReadDouble(double* out) { in ReadDouble()
176 bool RecordCursor::ReadWords(size_t num_words, const uint8_t** data_out) { in ReadWords()
H A Dfuchsia_trace_utils.h196 class RecordCursor {
198 RecordCursor(const uint8_t* begin, size_t length) in RecordCursor() function
H A Dfuchsia_trace_parser.cc76 fuchsia_trace_utils::RecordCursor cursor( in ParseTracePacket()
H A Dfuchsia_trace_tokenizer.cc190 fuchsia_trace_utils::RecordCursor cursor(tbv.data(), tbv.length()); in ParseRecord()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/storage/
H A Drecord_store.h148 class RecordCursor {
150 virtual ~RecordCursor() = default;
243 class SeekableRecordCursor : public RecordCursor {
487 virtual std::unique_ptr<RecordCursor> getCursorForRepair(OperationContext* opCtx) const { in getCursorForRepair()
502 virtual std::unique_ptr<RecordCursor> getRandomCursor(OperationContext* opCtx) const { in getRandomCursor()
510 virtual std::vector<std::unique_ptr<RecordCursor>> getManyCursors( in getManyCursors()
512 std::vector<std::unique_ptr<RecordCursor>> out(1); in getManyCursors()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/exec/
H A Dmulti_iterator.h54 void addIterator(std::unique_ptr<RecordCursor> it);
86 std::vector<std::unique_ptr<RecordCursor>> _iterators;
H A Doplogstart.h44 class RecordCursor; variable
119 std::vector<std::unique_ptr<RecordCursor>> _subIterators;
H A Didhack.h43 class RecordCursor; variable
H A Dmulti_iterator.cpp56 void MultiIteratorStage::addIterator(unique_ptr<RecordCursor> it) { in addIterator()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/storage/wiredtiger/
H A Dwiredtiger_record_store.h179 std::unique_ptr<RecordCursor> getRandomCursor(OperationContext* opCtx) const final;
181 virtual std::unique_ptr<RecordCursor> getRandomCursorWithOptions(
184 std::vector<std::unique_ptr<RecordCursor>> getManyCursors(OperationContext* opCtx) const final;
381 virtual std::unique_ptr<RecordCursor> getRandomCursorWithOptions(
400 virtual std::unique_ptr<RecordCursor> getRandomCursorWithOptions(
H A Dwiredtiger_record_store.cpp470 class WiredTigerRecordStore::RandomCursor final : public RecordCursor {
1353 std::unique_ptr<RecordCursor> WiredTigerRecordStore::getRandomCursor( in getRandomCursor()
1359 std::vector<std::unique_ptr<RecordCursor>> WiredTigerRecordStore::getManyCursors( in getManyCursors()
1361 std::vector<std::unique_ptr<RecordCursor>> cursors(1); in getManyCursors()
1933 std::unique_ptr<RecordCursor> StandardWiredTigerRecordStore::getRandomCursorWithOptions( in getRandomCursorWithOptions()
1984 std::unique_ptr<RecordCursor> PrefixedWiredTigerRecordStore::getRandomCursorWithOptions( in getRandomCursorWithOptions()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/storage/mmap_v1/
H A Drecord_store_v1_repair_iterator.h45 class RecordStoreV1RepairCursor final : public RecordCursor {
H A Drecord_store_v1_simple.h61 std::vector<std::unique_ptr<RecordCursor>> getManyCursors(OperationContext* opCtx) const final;
H A Drecord_store_v1_base.h218 virtual std::unique_ptr<RecordCursor> getCursorForRepair(OperationContext* opCtx) const;
329 class RecordStoreV1Base::IntraExtentIterator final : public RecordCursor {
H A Drecord_store_v1_capped.h71 std::vector<std::unique_ptr<RecordCursor>> getManyCursors(OperationContext* opCtx) const final;
H A Drecord_store_v1_simple.cpp246 vector<std::unique_ptr<RecordCursor>> SimpleRecordStoreV1::getManyCursors( in getManyCursors()
248 vector<std::unique_ptr<RecordCursor>> cursors; in getManyCursors()
H A Drecord_store_v1_capped.cpp596 vector<std::unique_ptr<RecordCursor>> CappedRecordStoreV1::getManyCursors( in getManyCursors()
598 vector<std::unique_ptr<RecordCursor>> cursors; in getManyCursors()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/catalog/
H A Dcollection.h74 class RecordCursor; variable
220 virtual std::vector<std::unique_ptr<RecordCursor>> getManyCursors(
440 inline std::vector<std::unique_ptr<RecordCursor>> getManyCursors( in getManyCursors()
H A Dcollection_mock.h129 std::vector<std::unique_ptr<RecordCursor>> getManyCursors(OperationContext* opCtx) const { in getManyCursors()
H A Dcollection_impl.h133 std::vector<std::unique_ptr<RecordCursor>> getManyCursors(OperationContext* opCtx) const final;
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/commands/
H A Dparallel_collection_scan.cpp126 std::vector<std::unique_ptr<RecordCursor>> iterators; in run()

12