Searched defs:current_log (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/components/metrics/
H A Dmetrics_log_manager.h29 // Makes |log| the current_log. This should only be called if there is not a
34 MetricsLog* current_log() { return current_log_.get(); } function in class:metrics::MetricsLogManager
36 // Closes current_log(), compresses it, and stores the compressed log for
37 // later, leaving current_log() NULL.
73 // Closes and discards |current_log|.
76 // Sets current_log to NULL, but saves the current log for future use with
83 // Restores the previously paused log (if any) to current_log().
H A Dmetrics_service.cc415 if (!log_manager_.current_log())
454 log_manager_.current_log()->RecordHistogramDelta(histogram.histogram_name(),
658 log_manager_.current_log()->RecordUserAction(action);
728 DCHECK(!log_manager_.current_log());
751 if (!log_manager_.current_log())
756 if (log_manager_.current_log()->num_events() > kEventLimit) {
758 log_manager_.current_log()->num_events());
767 MetricsLog* current_log = log_manager_.current_log(); local
768 DCHECK(current_log);
991 MetricsLog* current_log = log_manager_.current_log(); local
1164 const MetricsLog* current_log = log_manager_.current_log(); local
[all...]

Completed in 1730 milliseconds