Lines Matching refs:fail_value
526 const DWARFUnit *cu, const dw_attr_t attr, const char *fail_value, in GetAttributeValueAsString() argument
532 return fail_value; in GetAttributeValueAsString()
539 const DWARFUnit *cu, const dw_attr_t attr, uint64_t fail_value, in GetAttributeValueAsUnsigned() argument
545 return fail_value; in GetAttributeValueAsUnsigned()
563 const DWARFUnit *cu, const dw_attr_t attr, uint64_t fail_value, in GetAttributeValueAsAddress() argument
569 return fail_value; in GetAttributeValueAsAddress()
579 const DWARFUnit *cu, dw_addr_t lo_pc, uint64_t fail_value, in GetAttributeHighPC() argument
592 return fail_value; in GetAttributeHighPC()
603 uint64_t fail_value, bool check_specification_or_abstract_origin) const { in GetAttributeAddressRange() argument
604 lo_pc = GetAttributeValueAsAddress(cu, DW_AT_low_pc, fail_value, in GetAttributeAddressRange()
606 if (lo_pc != fail_value) { in GetAttributeAddressRange()
607 hi_pc = GetAttributeHighPC(cu, lo_pc, fail_value, in GetAttributeAddressRange()
609 if (hi_pc != fail_value) in GetAttributeAddressRange()
612 lo_pc = fail_value; in GetAttributeAddressRange()
613 hi_pc = fail_value; in GetAttributeAddressRange()