Searched refs:mach_base (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/os/bsd/vm/
H A Ddecoder_machO.cpp52 int buflen, int *offset, const void *mach_base) {
54 mach_find_command((struct mach_header_64 *)mach_base, LC_SYMTAB);
56 DEBUG_ONLY(tty->print_cr("no symtab in mach file at 0x%lx", mach_base));
66 uint32_t addr_relative = (uintptr_t) mach_base - (uintptr_t) addr; // offset we seek in the symtab
67 void * symtab_addr = (void*) ((uintptr_t) mach_base + off);
97 char * symname = mach_find_in_stringtable((char*) ((uintptr_t)mach_base + stroff), strsize, found_strx);
106 void* MachODecoder::mach_find_command(struct mach_header_64 * mach_base, uint32_t command_wanted) { argument
109 struct load_command *pos = (struct load_command *) mach_base + sizeof(struct mach_header_64);
110 for (uint32_t i = 0; i < mach_base->ncmds; i++) {
51 decode(address addr, char *buf, int buflen, int *offset, const void *mach_base) argument
H A Ddecoder_machO.hpp51 void * mach_find_command(struct mach_header_64 * mach_base, uint32_t command_wanted);

Completed in 257 milliseconds