| 380 | |
| 381 | |
| 382 | void hx::Telemetry::push_callstack_ids_into(std::vector<int> *list) |
| 383 | { |
| 384 | int size = stack->getDepth(); |
| 385 | for (int i = 0; i < size; i++) { |
| 386 | const char *fullName = stack->getFullNameAtDepth(i); |
| 387 | list->push_back(GetNameIdx(fullName)); |
| 388 | } |
| 389 | } |
| 390 | |
| 391 | int hx::Telemetry::GetNameIdx(const char *fullName) { |
| 392 | int idx = nameMap[fullName]; |
nothing calls this directly
no test coverage detected