Searched refs:nonce_ (Results 1 – 1 of 1) sorted by relevance
267 TraceFlow(const char* label) : label_(label), nonce_(TraceNonce()) { in TraceFlow()268 TraceEventFlowBegin0("flutter", label_, nonce_); in TraceFlow()273 TraceFlow(TraceFlow&& other) : label_(other.label_), nonce_(other.nonce_) { in TraceFlow()274 other.nonce_ = 0; in TraceFlow()278 TraceEventFlowStep0("flutter", label, nonce_); in Step()282 if (nonce_ != 0) {283 TraceEventFlowEnd0("flutter", label == nullptr ? label_ : label, nonce_);284 nonce_ = 0;290 size_t nonce_; variable