Home
last modified time | relevance | path

Searched refs:section_name (Results 1 – 3 of 3) sorted by relevance

/xnu-8020.121.3/libkern/kxld/
H A Dkxld_seg.c274 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-8020.121.3/san/memory/
H A Dubsan.c117 ubsan_json_struct_begin(ubsan_buf_t *ub, const char *section_name, bool is_array) in ubsan_json_struct_begin() argument
123 if (section_name) { in ubsan_json_struct_begin()
124 assert(section_name[0] != '\0'); in ubsan_json_struct_begin()
125 ubsan_json_log(ub, "\"%s\":", section_name); in ubsan_json_struct_begin()
146 ubsan_json_obj_begin(ubsan_buf_t *ub, const char *section_name) in ubsan_json_obj_begin() argument
148 ubsan_json_struct_begin(ub, section_name, false); in ubsan_json_obj_begin()
158 ubsan_json_array_begin(ubsan_buf_t *ub, const char *section_name) in ubsan_json_array_begin() argument
160 ubsan_json_struct_begin(ub, section_name, true); in ubsan_json_array_begin()
/xnu-8020.121.3/tools/lldbmacros/
H A Dmacho.py336section_name = six.ensure_str(section.sectname[:section.sectname.find(b'\x00')])
337 … blocks.append(MapBlock(section_name, section.addr, section.size, section.offset,