Searched refs:target_type (Results 1 – 5 of 5) sorted by relevance
| /xnu-11215/tools/lldbmacros/core/ |
| H A D | cvalue.py | 523 def cast(obj, target_type): argument 530 dest_type = target_type 531 if isinstance(target_type, str): 532 dest_type = gettype(target_type) 533 elif type(target_type) is value: 534 dest_type = target_type.GetSBValue().GetType() 543 def containerof(obj, target_type, field_name): argument 551 addr = int(obj) - getfieldoffset(target_type, field_name) 558 def gettype(target_type, target=None): argument 573 name = str(target_type).strip() [all …]
|
| /xnu-11215/tools/lldbmacros/ |
| H A D | utils.py | 126 def GetType(target_type): argument 135 return gettype(target_type) 138 def Cast(obj, target_type): argument 145 return cast(obj, target_type) 147 def ContainerOf(obj, target_type, field_name): argument 155 return containerof(obj, target_type, field_name)
|
| H A D | ioreg.py | 20 def CastIOKitClass(obj, target_type): argument 31 if isinstance(target_type, str): 32 target_type = gettype(target_type) 33 return value(v.Cast(target_type))
|
| /xnu-11215/libkern/kxld/ |
| H A D | kxld_reloc.c | 342 reloc->target_type = KXLD_TARGET_LOOKUP; in kxld_reloc_create_macho() 351 reloc->target_type = KXLD_TARGET_SECTNUM; in kxld_reloc_create_macho() 354 reloc->target_type = KXLD_TARGET_SYMBOLNUM; in kxld_reloc_create_macho() 498 switch (reloc->target_type) { in kxld_reloc_get_symbol() 813 require_action(reloc->target_type == KXLD_TARGET_SYMBOLNUM, in kxld_reloc_update_symindex() 897 switch (reloc->target_type) { in calculate_targets() 1103 switch (reloc->target_type) { in export_macho_for_array()
|
| H A D | kxld_reloc.h | 80 u_int target_type:3; member
|