Home
last modified time | relevance | path

Searched refs:TimestampedEntry (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Bluetooth/system/gd/common/
Dcircular_buffer.h64 struct TimestampedEntry { struct
70 class TimestampedCircularBuffer : public CircularBuffer<TimestampedEntry<T>> { argument
77 std::vector<TimestampedEntry<T>> Pull() const;
78 std::vector<TimestampedEntry<T>> Drain();
117 : CircularBuffer<TimestampedEntry<T>>(size), timestamper_(std::move(timestamper)) {} in TimestampedCircularBuffer()
121 TimestampedEntry<T> timestamped_entry{timestamper_->GetTimestamp(), item}; in Push()
122 bluetooth::common::CircularBuffer<TimestampedEntry<T>>::Push(timestamped_entry); in Push()
126 std::vector<struct bluetooth::common::TimestampedEntry<T>>
128 return bluetooth::common::CircularBuffer<TimestampedEntry<T>>::Pull(); in Pull()
132 std::vector<struct bluetooth::common::TimestampedEntry<T>>
[all …]
/packages/modules/Bluetooth/system/bta/dm/
Dbta_dm_gatt_client.h62 std::vector<bluetooth::common::TimestampedEntry<std::string>> PullCopyOfGattHistory();
Dbta_dm_gatt_client.cc121 std::vector<bluetooth::common::TimestampedEntry<std::string>> PullCopyOfGattHistory() { in PullCopyOfGattHistory()
/packages/modules/Bluetooth/system/stack/btm/
Dbtm_main.cc103 using Record = common::TimestampedEntry<std::string>;
/packages/modules/Bluetooth/system/bta/le_audio/
Dle_audio_log_history.cc63 using Record = bluetooth::common::TimestampedEntry<std::string>;
/packages/modules/Bluetooth/system/stack/test/btm/
Dstack_btm_sec_test.cc271 std::vector<common::TimestampedEntry<std::string>> history = btm_cb.history_->Pull(); in TEST_F()