Lines Matching refs:pszSection
4675 const char *pszSection = pDbgInfo->u.Dwarf.pszSection;
4676 if (!pszSection || !*pszSection)
4684 if (!strncmp(pszSection, RT_STR_TUPLE(".debug_"))) /* ELF */
4685 pszSection += sizeof(".debug_") - 1;
4686 else if (!strncmp(pszSection, RT_STR_TUPLE("__debug_"))) /* Mach-O */
4687 pszSection += sizeof("__debug_") - 1;
4688 else if (!strcmp(pszSection, ".WATCOM_references"))
4690 else if ( !strcmp(pszSection, "__apple_types")
4691 || !strcmp(pszSection, "__apple_namespac")
4692 || !strcmp(pszSection, "__apple_objc")
4693 || !strcmp(pszSection, "__apple_names"))
4696 AssertMsgFailedReturn(("%s\n", pszSection), VINF_SUCCESS /*ignore*/);
4703 #define ELSE_IF_STRCMP_SET(a_Name) else if (!strcmp(pszSection, #a_Name)) enmSect = krtDbgModDwarfSect_ ## a_Name
4720 AssertMsgFailed(("%s\n", pszSection));
4728 AssertMsgReturn(!pThis->aSections[enmSect].fPresent, ("duplicate %s\n", pszSection), VINF_SUCCESS /*ignore*/);