(section, outputCount=0)
| 466 | return (indeces, stringList) |
| 467 | |
| 468 | def getSectionData(section, outputCount=0): |
| 469 | # loadAddr = section.addr.GetLoadAddress(getTarget()) |
| 470 | # addr = section.addr |
| 471 | # size = section.size |
| 472 | data = section.data |
| 473 | |
| 474 | # endAddr = loadAddr + size |
| 475 | # addr = section.addr |
| 476 | return formatFromData(data, section, outputCount) |
| 477 | |
| 478 | def getFunctionsFromSection(section, outputCount=0): |
| 479 | target = getTarget() |
nothing calls this directly
no test coverage detected
searching dependent graphs…