Home | History | Annotate | Download | only in quipper

Lines Matching refs:callchain

462                               RepeatedField<uint64>* callchain,
464 if (!callchain) {
471 callchain is empty, there is no work to do.
472 if (callchain->empty()) return true;
475 parsed_event->callchain.resize(callchain->size());
477 for (int i = 0; i < callchain->size(); ++i) {
478 uint64_t entry = callchain->Get(i);
479 // When a callchain context entry is found, do not attempt to symbolize it.
485 callchain->Set(i, ip);
491 &parsed_event->callchain[num_entries_mapped++])) {
494 callchain->Set(i, mapped_addr);
497 // Not all the entries were mapped. Trim |parsed_event->callchain| to
499 parsed_event->callchain.resize(num_entries_mapped);