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

Function Section64

helpers/macho/macho.section.js:74–90  ·  view source on GitHub ↗
(sectname, segname, addr, size, offset, align, reloff, nreloc, flags, reserved1, reserved2, reserved3)

Source from the content-addressed store, hash-verified

72};
73
74var Section64 = function Section64(sectname, segname, addr, size, offset, align, reloff, nreloc, flags, reserved1, reserved2, reserved3) {
75 this.sectname = new Uint8Array(16);
76 this.segname = new Uint8Array(16);
77 this.addr = addr || 0x0000000000000000;
78 this.size = size || 0x0000000000000000;
79 this.offset = offset || 0x00000000;
80 this.align = align || 0x00000000;
81 this.reloff = reloff || 0x00000000;
82 this.nreloc = nreloc || 0x00000000;
83 this.flags = flags || 0x00000000;
84 this.reserved1 = reserved1 || 0x00000000;
85 this.reserved2 = reserved2 || 0x00000000;
86 this.reserved3 = reserved3 || 0x00000000;
87 this.toString = function() {
88 return JSON.stringify(this);
89 };
90};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected