Searched refs:moduleName (Results 1 - 3 of 3) sorted by relevance

/xnu-2782.1.97/iokit/IOKit/
H A DIOCatalogue.h131 @param moduleName Name of the module.
134 bool isModuleLoaded( OSString * moduleName ) const;
139 @param moduleName Name of the module.
142 bool isModuleLoaded( const char * moduleName ) const;
176 @param moduleName Name of the module which is used to determine which driver instances to terminate and unload.
179 IOReturn terminateDriversForModule( OSString * moduleName, bool unload = true);
184 @param moduleName Name of the module which is used to determine which driver instances to terminate and unload.
187 IOReturn terminateDriversForModule( const char * moduleName, bool unload = true);
231 @param moduleName An OSString containing the name of the module to unload.
233 IOReturn unloadModule( OSString * moduleName ) cons
[all...]
/xnu-2782.1.97/iokit/Kernel/
H A DIOCatalogue.cpp456 bool IOCatalogue::isModuleLoaded(OSString * moduleName) const
458 return isModuleLoaded(moduleName->getCStringNoCopy());
461 bool IOCatalogue::isModuleLoaded(const char * moduleName) const
464 ret = OSKext::loadKextWithIdentifier(moduleName);
477 OSString * moduleName = NULL; local
493 moduleName = OSDynamicCast(OSString, driver->getObject(gIOModuleIdentifierKey));
494 if ( moduleName )
495 return isModuleLoaded(moduleName);
507 void IOCatalogue::moduleHasLoaded(OSString * moduleName) argument
512 dict->setObject(gIOModuleIdentifierKey, moduleName);
520 moduleHasLoaded(const char * moduleName) argument
630 terminateDriversForModule( OSString * moduleName, bool unload) argument
688 terminateDriversForModule( const char * moduleName, bool unload) argument
[all...]
/xnu-2782.1.97/libsa/
H A Dbootstrap.cpp841 OSString * moduleName = NULL; // do not release local
853 moduleName = OSDynamicCast(OSString,
855 if (!moduleName) {
863 moduleName->getCStringNoCopy());
889 personality->setObject(kCFBundleIdentifierKey, moduleName);

Completed in 31 milliseconds