Home
last modified time | relevance | path

Searched refs:history_ (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Bluetooth/system/bta/le_audio/
Dle_audio_log_history.cc68 ~LeAudioLogHistoryImpl(void) { history_.reset(); } in ~LeAudioLogHistoryImpl()
71 history_ = std::make_shared<TimestampedStringCircularBuffer>( in LeAudioLogHistoryImpl()
73 log::assert_that(history_ != nullptr, "assert failed: history_ != nullptr"); in LeAudioLogHistoryImpl()
74 history_->Push(std::string("Initialized le_audio history")); in LeAudioLogHistoryImpl()
81 if (history_ == nullptr) { in Dump()
84 std::vector<Record> history = history_->Pull(); in Dump()
112 if (history_ == nullptr) { in add_logs_history_common()
118 history_->Push("%-*s GID %-3d %-*s: %-22s %s", kMaxLogHistoryTagLength, in add_logs_history_common()
125 std::shared_ptr<TimestampedStringCircularBuffer> history_{nullptr}; member in LeAudioLogHistoryImpl
/packages/modules/Bluetooth/system/stack/btm/
Dbtm_int_types.h161 std::shared_ptr<TimestampedStringCircularBuffer> history_{nullptr};
191 history_ = std::make_shared<TimestampedStringCircularBuffer>( in Init()
193 bluetooth::log::assert_that(history_ != nullptr, in Init()
195 history_->Push(std::string("Initialized btm history")); in Init()
199 history_.reset(); in Free()
Dbtm_main.cc70 if (btm_cb.history_ == nullptr) { in btm_log_history()
76 btm_cb.history_->Push( in btm_log_history()
/packages/modules/Bluetooth/system/stack/test/btm/
Dstack_btm_sec_test.cc286 btm_cb.history_ = std::make_shared<TimestampedStringCircularBuffer>( in TEST_F()
300 btm_cb.history_->Pull(); in TEST_F()
/packages/modules/Bluetooth/system/main/shim/
Dacl.cc1337 if (btm_cb.history_ != nullptr) { in DumpsysBtm()
1338 std::vector<Record> history = btm_cb.history_->Pull(); in DumpsysBtm()