--------------------------------------------------------------
| 160 | } |
| 161 | //-------------------------------------------------------------- |
| 162 | debugSymbol_t *debugSymbolPage_t::getSymbol( const std::string &name ) |
| 163 | { |
| 164 | auto it = symNameMap.find( name ); |
| 165 | return it != symNameMap.end() ? it->second : nullptr; |
| 166 | } |
| 167 | //-------------------------------------------------------------- |
| 168 | int debugSymbolPage_t::deleteSymbolAtOffset( int ofs ) |
| 169 | { |
no outgoing calls
no test coverage detected