Lines Matching defs:bundle
855 CFBundleRef bundle;
859 bundle = NULL;
861 // Create a bundle reference for System.framework.
867 bundle = CFBundleCreate( NULL, url );
869 require_action_quiet( bundle, exit, err = memFullErr );
874 functionPtr = CFBundleGetFunctionPointerForName( bundle, functionName );
877 // Success! Note: The bundle cannot be released because it would invalidate the function ptr.
880 bundle = NULL;
884 if( bundle )
886 CFRelease( bundle );