Home | History | Annotate | Download | only in trace_event

Lines Matching refs:generation

221   int generation() const { return generation_; }
250 generation_(trace_log->generation()) {
324 // Return the chunk to the buffer only if the generation matches.
328 // find the generation mismatch and delete this buffer soon.
389 !CheckGeneration(thread_local_event_buffer->generation())) {
874 int gen = generation();
940 void TraceLog::FinishFlush(int generation, bool discard_events) {
945 if (!CheckGeneration(generation))
996 void TraceLog::FlushCurrentThread(int generation, bool discard_events) {
999 if (!CheckGeneration(generation) || !flush_task_runner_) {
1009 if (!CheckGeneration(generation) || !flush_task_runner_ ||
1014 FROM_HERE, Bind(&TraceLog::FinishFlush, Unretained(this), generation,
1018 void TraceLog::OnFlushTimeout(int generation, bool discard_events) {
1021 if (!CheckGeneration(generation) || !flush_task_runner_) {
1037 FinishFlush(generation, discard_events);