Home
last modified time | relevance | path

Searched refs:bundleID (Results 1 – 9 of 9) sorted by relevance

/xnu-11215/libsa/
H A Dbootstrap.cpp509 OSString * bundleID = NULL;// don't release in loadSecurityExtensions() local
531 while ((bundleID = OSDynamicCast(OSString, keyIterator->getNextObject()))) { in loadSecurityExtensions()
532 const char * bundle_id = bundleID->getCStringNoCopy(); in loadSecurityExtensions()
541 theKext = OSDynamicCast(OSKext, extensionsDict->getObject(bundleID)); in loadSecurityExtensions()
550 "Loading security extension %s.", bundleID->getCStringNoCopy()); in loadSecurityExtensions()
551 OSKext::loadKextWithIdentifier(bundleID->getCStringNoCopy(), in loadSecurityExtensions()
612 OSString * bundleID = NULL;// don't release in loadKernelExternalComponents() local
635 while ((bundleID = OSDynamicCast(OSString, keyIterator->getNextObject()))) { in loadKernelExternalComponents()
636 const char * bundle_id = bundleID->getCStringNoCopy(); in loadKernelExternalComponents()
645 theKext = OSDynamicCast(OSKext, extensionsDict->getObject(bundleID)); in loadKernelExternalComponents()
[all …]
/xnu-11215/iokit/DriverKit/
H A DIOUserServer.iig51 OSString * bundleID,
/xnu-11215/iokit/Kernel/
H A DIOCatalogue.cpp898 const char *bundleID = NULL; in terminateDriversForUserspaceReboot() local
900 bundleID = kext->getIdentifierCString(); in terminateDriversForUserspaceReboot()
902 …x [kext %s]\n", service->getName(), service->getRegistryEntryID(), bundleID ? bundleID : "(null)"); in terminateDriversForUserspaceReboot()
H A DIOUserServer.cpp2259 OSString * bundleID, in Create_Impl() argument
2278 if (bundleID) { in Create_Impl()
4611 OSSymbol const* bundleID; in serviceAttach() local
4672 bundleID = OSDynamicCast(OSSymbol, prop); in serviceAttach()
4673 if (bundleID) { in serviceAttach()
4701 OSObject * bundleID; in serviceNewUserClient() local
4794 bundleID = service->copyProperty(gIOModuleIdentifierKey); in serviceNewUserClient()
4796 && bundleID in serviceNewUserClient()
4801 found = object->isEqualTo(bundleID); in serviceNewUserClient()
4809 OSSafeReleaseNULL(bundleID); in serviceNewUserClient()
[all …]
H A DIOServicePM.cpp5601 const char *bundleID = kext->getIdentifierCString(); in ackTimerTick() local
5604 …if (strncmp(bundleID, apple_prefix, strlen(apple_prefix)) == 0 || strncmp(bundleID, kernel_prefix,… in ackTimerTick()
H A DIOService.cpp4816 OSString * bundleID; in startCandidate() local
4827 bundleID = OSDynamicCast(OSString, obj); in startCandidate()
4875 userServer = IOUserServer::launchUserServer(bundleID, sym, serverTag, reuse, &token, serverDUI); in startCandidate()
/xnu-11215/libkern/libkern/c++/
H A DOSKext.h311 OSPtr<const OSSymbol> bundleID; variable
894 …static bool copyUserExecutablePath(const OSSymbol * bundleID, char * pathResult, si…
897 static bool decrementDextLaunchCount(OSString *bundleID);
/xnu-11215/libkern/c++/
H A DOSKext.cpp937 fakeKext->bundleID.get()); in allocAndInitFakeKext()
2694 sKextsByID->setObject(bundleID.get(), this); in registerIdentifier()
2909 sKextsByID->setObject(bundleID.get(), this); in registerIdentifier()
2928 sKextsByID->setObject(bundleID.get(), this); in registerIdentifier()
3026 if (!bundleID) { in setInfoDictionaryAndPath()
3330 bundleID.reset(); in free()
4952 return bundleID.get(); in getIdentifier()
4962 return bundleID->getCStringNoCopy(); in getIdentifierCString()
5664 if (!bundleID) { in decrementDextLaunchCount()
5667 dextIDCS = bundleID->getCStringNoCopy(); in decrementDextLaunchCount()
[all …]
/xnu-11215/iokit/IOKit/
H A DIOUserServer.h190 …static IOUserServer * launchUserServer(OSString * bundleID, const OSSymbol * serverName, OSNumber…