(command_name: str)
| 62 | return any(x in command_name for x in ['Create', 'Allocate', 'Enumerate', 'RegisterDeviceEvent', 'RegisterDisplayEvent', 'AcquirePerformanceConfigurationINTEL']) |
| 63 | |
| 64 | def destroyObject(command_name: str): |
| 65 | return any(x in command_name for x in ['Destroy', 'Free', 'ReleasePerformanceConfigurationINTEL']) |
| 66 | |
| 67 | class PlatformGuardHelper(): |
| 68 | """Used to elide platform guards together, so redundant #endif then #ifdefs are removed |
no outgoing calls
no test coverage detected