Lines Matching refs:notifyList
2151 IOCommand *notifyList = OSDynamicCast(IOCommand, prop); in applyToInterestNotifiers() local
2153 if (notifyList) { in applyToInterestNotifiers()
2157 iterqueue(¬ifyList->fCommandChain, entry) { in applyToInterestNotifiers()
2326 IOCommand * notifyList; in registerInterestForNotifier() local
2328 if (!(notifyList = OSDynamicCast(IOCommand, obj))) { in registerInterestForNotifier()
2329 notifyList = OSTypeAlloc(IOCommand); in registerInterestForNotifier()
2330 if (notifyList) { in registerInterestForNotifier()
2331 notifyList->init(); in registerInterestForNotifier()
2332 bool ok = setProperty( typeOfInterest, notifyList); in registerInterestForNotifier()
2333 notifyList->release(); in registerInterestForNotifier()
2335 notifyList = NULL; in registerInterestForNotifier()
2343 if (notifyList) { in registerInterestForNotifier()
2344 enqueue(¬ifyList->fCommandChain, ¬ify->chain); in registerInterestForNotifier()