MCPcopy Create free account
hub / github.com/clienthax/Ps3GhidraScripts / applyStructArray

Method applyStructArray

ghidra_scripts/Ps3ElfUtils.java:146–150  ·  view source on GitHub ↗
(StructureDataType struct, int amount, Address address)

Source from the content-addressed store, hash-verified

144 }
145
146 public void applyStructArray(StructureDataType struct, int amount, Address address) throws Exception {
147 script.clearListing(address, address.add(((long) struct.getLength() *amount)-1));
148 script.createData(address, new ArrayDataType(struct, amount, 1));
149 script.createLabel(address, struct.getName(), true);
150 }
151
152 public void applyDataForce(DataType data, String name, Address address) throws Exception {
153 script.clearListing(address, address.add((data.getLength())-1));

Callers 2

createImportStubsMethod · 0.80
createExportEntsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected