Lines Matching refs:common
26 namespace common {
85 bluetooth::common::CircularBuffer<T>::CircularBuffer(size_t size) : size_(size) {} in CircularBuffer()
88 void bluetooth::common::CircularBuffer<T>::Push(const T item) { in Push()
97 std::vector<T> bluetooth::common::CircularBuffer<T>::Pull() const { in Pull()
103 std::vector<T> bluetooth::common::CircularBuffer<T>::Drain() { in Drain()
111 bluetooth::common::TimestampedCircularBuffer<T>::TimestampedCircularBuffer( in TimestampedCircularBuffer()
116 void bluetooth::common::TimestampedCircularBuffer<T>::Push(const T item) { in Push()
118 bluetooth::common::CircularBuffer<TimestampedEntry<T>>::Push(timestamped_entry); in Push()
122 std::vector<struct bluetooth::common::TimestampedEntry<T>> bluetooth::common::TimestampedCircularBu… in Pull()
124 return bluetooth::common::CircularBuffer<TimestampedEntry<T>>::Pull(); in Pull()
128 std::vector<struct bluetooth::common::TimestampedEntry<T>> bluetooth::common::TimestampedCircularBu… in Drain()
129 return bluetooth::common::CircularBuffer<TimestampedEntry<T>>::Drain(); in Drain()