• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/kext_tools-326.95.1/

Lines Matching refs:theKext

111 static Boolean _isNewerVersionInArray(OSKextRef theKext, CFArrayRef theArray);
1878 OSKextRef theKext = OSKextGetKextWithIdentifier(kextID);
1883 if (!theKext) {
1900 if (kextMatchesFilter(context->toolArgs, theKext,
1903 RANGE_ALL(context->kextArray), theKext))
1905 CFArrayAppendValue(context->kextArray, theKext);
1964 OSKextRef theKext = (OSKextRef)CFArrayGetValueAtIndex(
1967 if (!kextMatchesFilter(toolArgs, theKext, requiredFlags)) {
1971 if (!CFURLGetFileSystemRepresentation(OSKextGetURL(theKext),
1991 if (!CFArrayContainsValue(firstPassArray, RANGE_ALL(firstPassArray), theKext)) {
1992 CFArrayAppendValue(firstPassArray, theKext);
2007 OSKextRef theKext = (OSKextRef)CFArrayGetValueAtIndex(
2010 if (!kextMatchesFilter(toolArgs, theKext, requiredFlags)) {
2014 if (!CFURLGetFileSystemRepresentation(OSKextGetURL(theKext),
2034 if (!CFArrayContainsValue(firstPassArray, RANGE_ALL(firstPassArray), theKext)) {
2035 CFArrayAppendValue(firstPassArray, theKext);
2052 OSKextRef theKext = (OSKextRef)CFArrayGetValueAtIndex(
2055 if (!CFURLGetFileSystemRepresentation(OSKextGetURL(theKext),
2063 if (!OSKextSupportsArchitecture(theKext, arch)) {
2071 if (!OSKextIsValid(theKext)) {
2078 OSKextLogDiagnostics(theKext, kOSKextDiagnosticsFlagAll);
2083 if (!toolArgs->skipAuthentication && !OSKextIsAuthentic(theKext)) {
2089 OSKextLogDiagnostics(theKext, kOSKextDiagnosticsFlagAll);
2094 if (OSKextIsInExcludeList(theKext, true)) {
2097 addKextToAlertDict(&sExcludedKextAlertDict, theKext);
2098 messageTraceExcludedKext(theKext);
2104 OSKextLogDiagnostics(theKext, kOSKextDiagnosticsFlagAll);
2109 if (!OSKextResolveDependencies(theKext)) {
2116 OSKextLogDiagnostics(theKext, kOSKextDiagnosticsFlagAll);
2121 && (sigResult = checkKextSignature(theKext, true)) != 0 ) {
2126 if (_isNewerVersionInArray(theKext, firstPassArray)) {
2130 Boolean inLibExtFolder = isInLibraryExtensionsFolder(theKext);
2132 addKextToAlertDict(&sNoLoadKextAlertDict, theKext);
2135 addKextToAlertDict(&sRevokedKextAlertDict, theKext);
2139 addKextToAlertDict(&sUnsignedKextAlertDict, theKext);
2143 addKextToAlertDict(&sInvalidSignedKextAlertDict, theKext);
2156 OSKextLogDiagnostics(theKext, kOSKextDiagnosticsFlagAll);
2161 myKextPath = copyKextPath(theKext);
2171 if (!CFArrayContainsValue(kextArray, RANGE_ALL(kextArray), theKext)) {
2172 CFArrayAppendValue(kextArray, theKext);
2191 OSKextRef theKext,
2200 theBundleID = OSKextGetIdentifier(theKext);
2202 theKext,
2325 OSKextRef theKext,
2333 result = (requiredFlags && OSKextMatchesRequiredFlags(theKext, requiredFlags)) ||
2334 CFArrayContainsValue(toolArgs->loadedKexts, RANGE_ALL(toolArgs->loadedKexts), theKext);
2336 result = OSKextMatchesRequiredFlags(theKext, requiredFlags);