Home
last modified time | relevance | path

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

/aosp_15_r20/external/tensorflow/tensorflow/tsl/platform/default/
H A Dlogging.cc94 std::queue<TFLogEntry> log_entry_queue_; member in tensorflow::internal::__anon81f52f100111::TFLogSinks
121 while (!log_entry_queue_.empty()) { in Add()
123 SendToSink(*sink, log_entry_queue_.front()); in Add()
125 log_entry_queue_.pop(); in Add()
149 while (log_entry_queue_.size() >= kMaxLogEntryQueueSize) { in Send()
150 log_entry_queue_.pop(); in Send()
152 log_entry_queue_.push(entry); in Send()
157 while (!log_entry_queue_.empty()) { in Send()
159 SendToSink(*sink, log_entry_queue_.front()); in Send()
161 log_entry_queue_.pop(); in Send()