Searched refs:section_name (Results 1 – 3 of 3) sorted by relevance
| /xnu-8019.80.24/san/memory/ ! |
| H A D | ubsan.c | 115 ubsan_json_struct_begin(ubsan_buf_t *ub, const char *section_name, bool is_array) in ubsan_json_struct_begin() argument 121 if (section_name) { in ubsan_json_struct_begin() 122 assert(section_name[0] != '\0'); in ubsan_json_struct_begin() 123 ubsan_json_log(ub, "\"%s\":", section_name); in ubsan_json_struct_begin() 144 ubsan_json_obj_begin(ubsan_buf_t *ub, const char *section_name) in ubsan_json_obj_begin() argument 146 ubsan_json_struct_begin(ub, section_name, false); in ubsan_json_obj_begin() 156 ubsan_json_array_begin(ubsan_buf_t *ub, const char *section_name) in ubsan_json_array_begin() argument 158 ubsan_json_struct_begin(ub, section_name, true); in ubsan_json_array_begin()
|
| /xnu-8019.80.24/libkern/kxld/ ! |
| H A D | kxld_seg.c | 274 KXLDSectionName *section_name = NULL; in reorder_sections() local 300 section_name = kxld_array_get_item(section_order, legacy_start); in reorder_sections() 301 segname = section_name->segname; in reorder_sections() 303 section_name = kxld_array_get_item(section_order, legacy_index); in reorder_sections() 304 if (!streq_safe(segname, section_name->segname, in reorder_sections() 305 sizeof(section_name->segname))) { in reorder_sections() 349 section_name = kxld_array_get_item(section_order, i); in reorder_sections() 358 if (streq_safe(section_name->sectname, sect->sectname, in reorder_sections() 359 sizeof(section_name->sectname))) { in reorder_sections()
|
| /xnu-8019.80.24/tools/lldbmacros/ ! |
| H A D | macho.py | 121 section_name = section.sectname[:section.sectname.find('\x00')] 122 full_section_name= "{}.{}".format(segname, section_name) 233 section_name = section.sectname[:section.sectname.find('\x00')] 234 … blocks.append(MapBlock(section_name, section.addr, section.size, section.offset,
|