MCPcopy Create free account
hub / github.com/ThatGuySam/doesitarm / SymtabCommand

Function SymtabCommand

helpers/macho/macho.symtab.js:1–11  ·  view source on GitHub ↗
(cmd, cmdsize, symoff, nsyms, stroff, strsize)

Source from the content-addressed store, hash-verified

1var SymtabCommand = function SymtabCommand(cmd, cmdsize, symoff, nsyms, stroff, strsize) {
2 this.cmd = cmd || 0x00000000;
3 this.cmdsize = cmdsize || 0x00000000;
4 this.symoff = symoff || 0x00000000;
5 this.nsyms = nsyms || 0x00000000;
6 this.stroff = stroff || 0x00000000;
7 this.strsize = strsize || 0x00000000;
8 this.toString = function() {
9 return JSON.stringify(this);
10 };
11};
12
13var DySymtabCommand = function DySymtabCommand(cmd,
14 cmdsize,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected