Searched refs:type_ptr (Results 1 – 9 of 9) sorted by relevance
475 Type *type_ptr = vendor->ResolveTypeUID(uid); in GetTypeByID() local476 if (type_ptr) in GetTypeByID()477 return SBType(type_ptr->shared_from_this()); in GetTypeByID()
254 Type *type_ptr = dwarf->GetDIEToType().lookup(die.GetDIE()); in ParseTypeFromDWARF() local256 if (type_ptr == NULL) { in ParseTypeFromDWARF()1409 type_ptr = dwarf->GetDIEToType()[die.GetDIE()]; in ParseTypeFromDWARF()1410 if (type_ptr && type_ptr != DIE_IS_BEING_PARSED) { in ParseTypeFromDWARF()1411 type_sp = type_ptr->shared_from_this(); in ParseTypeFromDWARF()1576 type_ptr = dwarf->GetDIEToType()[die.GetDIE()]; in ParseTypeFromDWARF()1577 if (type_ptr && type_ptr != DIE_IS_BEING_PARSED) { in ParseTypeFromDWARF()1578 type_sp = type_ptr->shared_from_this(); in ParseTypeFromDWARF()1899 } else if (type_ptr != DIE_IS_BEING_PARSED) { in ParseTypeFromDWARF()1900 type_sp = type_ptr->shared_from_this(); in ParseTypeFromDWARF()
2648 Type *type_ptr = GetDIEToType().lookup(die.GetDIE()); in GetTypeForDIE() local2649 if (type_ptr == NULL) { in GetTypeForDIE()2665 } else if (type_ptr != DIE_IS_BEING_PARSED) { in GetTypeForDIE()2667 type_sp = type_ptr->shared_from_this(); in GetTypeForDIE()
609 count_stars (tree* type_ptr) in count_stars() argument611 tree type = *type_ptr; in count_stars()620 *type_ptr = type; in count_stars()
978 AUXU *type_ptr; /* pointer to munge type info */ member2141 forward_ref->type_ptr = aux_ptr; in add_aux_sym_tir()
675 empirical_type<lldb::addr_t> type_ptr; member688 valid_ptrs = valid_ptrs && type_ptr.isValid() && *type_ptr.get() != 0x0; in ShouldRefresh()1952 addr_t type_ptr = static_cast<lldb::addr_t>(result); in JITTypePointer() local1953 alloc->type_ptr = type_ptr; in JITTypePointer()1965 if (!alloc->type_ptr.isValid() || !alloc->context.isValid()) { in JITTypePacked()1987 *alloc->context.get(), bits, *alloc->type_ptr.get()); in JITTypePacked()
1358 const char *DisassemblerLLVMC::SymbolLookup(uint64_t value, uint64_t *type_ptr, in SymbolLookup() argument1360 if (*type_ptr) { in SymbolLookup()1427 *type_ptr = LLVMDisassembler_ReferenceType_InOut_None; in SymbolLookup()
6333 elf_symbol_type *type_ptr; in swap_out_syms() local6355 type_ptr = elf_symbol_from (abfd, syms[idx]); in swap_out_syms()6364 if (type_ptr == NULL in swap_out_syms()6365 || type_ptr->internal_elf_sym.st_value == 0) in swap_out_syms()6387 sym.st_size = type_ptr ? type_ptr->internal_elf_sym.st_size : 0; in swap_out_syms()6390 && type_ptr != NULL in swap_out_syms()6391 && type_ptr->internal_elf_sym.st_shndx != 0) in swap_out_syms()6396 shndx = type_ptr->internal_elf_sym.st_shndx; in swap_out_syms()6470 if (type_ptr != NULL in swap_out_syms()6473 (&type_ptr->internal_elf_sym, type)); in swap_out_syms()[all …]
9011 * elf.c (swap_out_syms): Check for null type_ptr.