| 1322 | } |
| 1323 | |
| 1324 | remote_addr_t |
| 1325 | AbstractProcessManager::findInterpreterStateFromElfData() const |
| 1326 | { |
| 1327 | remote_addr_t pyruntime = findPyRuntimeFromElfData(); |
| 1328 | if (!pyruntime) { |
| 1329 | return 0; |
| 1330 | } |
| 1331 | return findInterpreterStateFromPyRuntime(pyruntime); |
| 1332 | } |
| 1333 | |
| 1334 | remote_addr_t |
| 1335 | AbstractProcessManager::findInterpreterStateFromDebugOffsets() const |
nothing calls this directly
no outgoing calls
no test coverage detected