1 line
13 KiB
JavaScript
Raw Permalink Normal View History

2019-09-06 15:57:44 -07:00
initSidebarItems({"constant":[["LC_CODE_SIGNATURE",""],["LC_DATA_IN_CODE",""],["LC_DYLD_ENVIRONMENT",""],["LC_DYLD_INFO",""],["LC_DYLD_INFO_ONLY",""],["LC_DYLIB_CODE_SIGN_DRS",""],["LC_DYSYMTAB",""],["LC_ENCRYPTION_INFO",""],["LC_ENCRYPTION_INFO_64",""],["LC_FUNCTION_STARTS",""],["LC_FVMFILE",""],["LC_IDENT",""],["LC_IDFVMLIB",""],["LC_ID_DYLIB",""],["LC_ID_DYLINKER",""],["LC_LAZY_LOAD_DYLIB",""],["LC_LINKER_OPTIMIZATION_HINT",""],["LC_LINKER_OPTION",""],["LC_LOADFVMLIB",""],["LC_LOAD_DYLIB",""],["LC_LOAD_DYLINKER",""],["LC_LOAD_UPWARD_DYLIB",""],["LC_LOAD_WEAK_DYLIB",""],["LC_MAIN",""],["LC_PREBIND_CKSUM",""],["LC_PREBOUND_DYLIB",""],["LC_PREPAGE",""],["LC_REEXPORT_DYLIB",""],["LC_REQ_DYLD",""],["LC_ROUTINES",""],["LC_ROUTINES_64",""],["LC_RPATH",""],["LC_SEGMENT",""],["LC_SEGMENT_64",""],["LC_SEGMENT_SPLIT_INFO",""],["LC_SOURCE_VERSION",""],["LC_SUB_CLIENT",""],["LC_SUB_FRAMEWORK",""],["LC_SUB_LIBRARY",""],["LC_SUB_UMBRELLA",""],["LC_SYMSEG",""],["LC_SYMTAB",""],["LC_THREAD",""],["LC_TWOLEVEL_HINTS",""],["LC_UNIXTHREAD",""],["LC_UUID",""],["LC_VERSION_MIN_IPHONEOS",""],["LC_VERSION_MIN_MACOSX",""],["SIZEOF_DYLIB",""],["SIZEOF_DYLIB_COMMAND",""],["SIZEOF_DYLIB_INFO_COMMAND",""],["SIZEOF_DYLINKER_COMMAND",""],["SIZEOF_DYSYMTAB_COMMAND",""],["SIZEOF_ENCRYPTION_INFO_COMMAND_32",""],["SIZEOF_ENCRYPTION_INFO_COMMAND_64",""],["SIZEOF_ENTRY_POINT_COMMAND",""],["SIZEOF_FVMFILE_COMMAND",""],["SIZEOF_FVMLIB",""],["SIZEOF_FVMLIB_COMMAND",""],["SIZEOF_IDENT_COMMAND",""],["SIZEOF_LC_STR",""],["SIZEOF_LINKEDIT_DATA_COMMAND",""],["SIZEOF_LINKER_OPTION_COMMAND",""],["SIZEOF_LOAD_COMMAND",""],["SIZEOF_PREBOUND_DYLIB_COMMAND",""],["SIZEOF_RPATH_COMMAND",""],["SIZEOF_SECTION_32",""],["SIZEOF_SECTION_64",""],["SIZEOF_SEGMENT_COMMAND_32",""],["SIZEOF_SEGMENT_COMMAND_64",""],["SIZEOF_SUB_CLIENT_COMMAND",""],["SIZEOF_SUB_FRAMEWORK_COMMAND",""],["SIZEOF_SUB_LIBRARY_COMMAND",""],["SIZEOF_SUB_UMBRELLA_COMMAND",""],["SIZEOF_SYMSEG_COMMAND",""],["SIZEOF_SYMTAB_COMMAND",""],["SIZEOF_UUID_COMMAND",""],["SIZEOF_VERSION_MIN_COMMAND",""]],"enum":[["CommandVariant","The various load commands as a cast-free variant/enum"]],"fn":[["cmd_to_str",""]],"struct":[["DataInCodeEntry","The LC_DATA_IN_CODE load commands uses a linkedit_data_command to point to an array of data_in_code_entry entries. Each entry describes a range of data in a code section."],["DyldInfoCommand",""],["Dylib","A dynamically linked shared library (fipub constype == MH_DYLIB in the mach header) contains a dylib_command (cmd == LC_ID_DYLIB) to identify the library. An object that uses a dynamically linked shared library also contains a dylib_command (cmd == LC_LOAD_DYLIB, LC_LOAD_WEAK_DYLIB, or LC_REEXPORT_DYLIB) for each library it uses."],["DylibCommand",""],["DylibModule","a module table entry"],["DylibModule64","a 64-bit module table entry"],["DylibReference","The entries in the reference symbol table are used when loading the module (both by the static and dynamic link editors) and if the module is unloaded or replaced. Therefore all external symbols (defined and undefined) are listed in the module's reference table. The flags describe the type of reference that is being made. The constants for the flags are defined in <mach-o/nlist.h> as they are also used for symbol table entries."],["DylibTableOfContents","a table of contents entry"],["DylinkerCommand","The name of the dynamic linker"],["DysymtabCommand","This is the second set of the symbolic information which is used to support the data structures for the dynamically link editor."],["EncryptionInfoCommand32","The encryption_info_command contains the file offset and size of an of an encrypted segment."],["EncryptionInfoCommand64","The encryption_info_command_64 contains the file offset and size of an of an encrypted segment (for use in x86_64 targets)."],["EntryPointCommand","The entry_point_command is a replacement for thread_command. It is used for main executables to specify the location (file offset) of main(). If -stack_size was used at link time, the stacksize field will contain the stack size need for the main thread.