| 135 | |
| 136 | |
| 137 | bool LldbAdapter::IsELFWithoutDynamicLoader(BinaryView* data) |
| 138 | { |
| 139 | if (!data) |
| 140 | return false; |
| 141 | |
| 142 | auto name = data->GetTypeName(); |
| 143 | if (name != "ELF") |
| 144 | return false; |
| 145 | |
| 146 | auto syms = data->GetSymbolsByName("__elf_interp"); |
| 147 | return syms.empty(); |
| 148 | } |
| 149 | |
| 150 | |
| 151 | bool LldbAdapter::Execute(const std::string& path, const LaunchConfigurations& configs) |
nothing calls this directly
no outgoing calls
no test coverage detected