pub unsafe extern "C-unwind" fn IORegistryEntryIDMatching(
entry_id: u64,
) -> Option<CFRetained<CFMutableDictionary>>Expand description
Create a matching dictionary that specifies an IOService match based on a registry entry ID.
This function creates a matching dictionary that will match a registered, active IOService found with the given registry entry ID. The entry ID for a registry entry is returned by IORegistryEntryGetRegistryEntryID().
Parameter entryID: The registry entry ID to be found.
Returns: The matching dictionary created, is returned on success, or zero on failure. The dictionary is commonly passed to IOServiceGetMatchingServices or IOServiceAddNotification which will consume a reference, otherwise it should be released with CFRelease by the caller.