| 114 | } |
| 115 | |
| 116 | size_t CallTraceStorage::usedMemory() { |
| 117 | return _used_memory + _allocator.usedMemory(); |
| 118 | } |
| 119 | |
| 120 | void CallTraceStorage::collectTraces(std::map<u32, CallTrace*>& map) { |
| 121 | for (LongHashTable* table = _current_table; table != NULL; table = table->prev()) { |
no outgoing calls
no test coverage detected