Lines Matching refs:getCharacteristics
47 if (getCharacteristics() & COFF::IMAGE_SCN_CNT_INITIALIZED_DATA) in printSwitchToSection()
49 if (getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA) in printSwitchToSection()
51 if (getCharacteristics() & COFF::IMAGE_SCN_MEM_EXECUTE) in printSwitchToSection()
53 if (getCharacteristics() & COFF::IMAGE_SCN_MEM_WRITE) in printSwitchToSection()
55 else if (getCharacteristics() & COFF::IMAGE_SCN_MEM_READ) in printSwitchToSection()
59 if (getCharacteristics() & COFF::IMAGE_SCN_LNK_REMOVE) in printSwitchToSection()
61 if (getCharacteristics() & COFF::IMAGE_SCN_MEM_SHARED) in printSwitchToSection()
63 if ((getCharacteristics() & COFF::IMAGE_SCN_MEM_DISCARDABLE) && in printSwitchToSection()
66 if (getCharacteristics() & COFF::IMAGE_SCN_LNK_INFO) in printSwitchToSection()
70 if (getCharacteristics() & COFF::IMAGE_SCN_LNK_COMDAT) { in printSwitchToSection()
112 return getCharacteristics() & COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA; in isVirtualSection()