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

/macosx-10.9.5/CF-855.17/
H A DCFBundle.c3256 CFBundleRef *unloadThese = (CFBundleRef *)CFAllocatorAllocate(kCFAllocatorSystemDefault, sizeof(CFBundleRef) * c, 0); local
3257 CFSetGetValues(_bundlesToUnload, (const void **)unloadThese);
3261 CFBundleUnloadExecutable(unloadThese[i]);
3264 CFAllocatorDeallocate(kCFAllocatorSystemDefault, unloadThese);
3289 CFMutableArrayRef unloadThese = CFArrayCreateMutable(NULL, 0, &kCFTypeArrayCallBacks); local
3290 for (id value in _bundlesToUnload) CFArrayAppendValue(unloadThese, value);
3291 c = CFArrayGetCount(unloadThese);
3296 CFBundleUnloadExecutable((CFBundleRef)CFArrayGetValueAtIndex(unloadThese, i));
3300 CFRelease(unloadThese);

Completed in 115 milliseconds