Searched refs:CFMutableSetRef (Results 1 - 25 of 69) sorted by relevance

123

/macosx-10.10.1/configd-699.1.5/configd.tproj/
H A Dconfigd.h56 extern CFMutableSetRef _plugins_allowed; /* bundle identifiers to allow when loading */
57 extern CFMutableSetRef _plugins_exclude; /* bundle identifiers to exclude from loading */
58 extern CFMutableSetRef _plugins_verbose; /* bundle identifiers to enable verbose logging */
H A D_SCD.h83 extern CFMutableSetRef changedKeys;
84 extern CFMutableSetRef deferredRemovals;
85 extern CFMutableSetRef removedSessionKeys;
86 extern CFMutableSetRef needsNotification;
H A D_SCD.c48 __private_extern__ CFMutableSetRef changedKeys = NULL;
50 __private_extern__ CFMutableSetRef deferredRemovals = NULL;
52 __private_extern__ CFMutableSetRef removedSessionKeys = NULL;
54 __private_extern__ CFMutableSetRef needsNotification = NULL;
H A Dconfigd.m69 CFMutableSetRef _plugins_allowed = NULL; /* bundle identifiers to allow when loading */
72 CFMutableSetRef _plugins_exclude = NULL; /* bundle identifiers to exclude from loading */
75 CFMutableSetRef _plugins_verbose = NULL; /* bundle identifiers to enable verbose logging */
/macosx-10.10.1/Heimdal-398.1.2/lib/heimcred/
H A Dkerberos.m46 CFMutableSetRef set = CFSetCreateMutable(NULL, 0, &kCFTypeSetCallBacks);
/macosx-10.10.1/IOFireWireFamily-456/IOFireWireLib.CFPlugInProj/
H A DIOFireWireLibNuDCLPool.h71 CFMutableSetRef saveBag,
77 CFMutableSetRef saveBag,
81 CFMutableSetRef saveBag = NULL ) ;
83 CFMutableSetRef saveBag,
124 static NuDCLSendPacketRef S_AllocateSendPacket( IOFireWireLibNuDCLPoolRef self, CFMutableSetRef saveBag, UInt32 numRanges, IOVirtualRange* ranges ) ;
125 static NuDCLSendPacketRef S_AllocateSendPacket_v( IOFireWireLibNuDCLPoolRef self, CFMutableSetRef saveBag, IOVirtualRange* firstRange, ... ) ;
127 static NuDCLReceivePacketRef S_AllocateReceivePacket( IOFireWireLibNuDCLPoolRef self, CFMutableSetRef saveBag, UInt8 headerBytes, UInt32 numBuffers, IOVirtualRange* buffers ) ;
128 static NuDCLReceivePacketRef S_AllocateReceivePacket_v( IOFireWireLibNuDCLPoolRef self, CFMutableSetRef saveBag, UInt8 headerBytes, IOVirtualRange* firstRange, ... ) ;
H A DIOFireWireLibNuDCLPool.cpp103 NuDCLPool::AppendDCL( CFMutableSetRef saveBag, NuDCL * dcl )
120 NuDCLPool::AllocateSendPacket ( CFMutableSetRef saveSet, UInt32 numBuffers, IOVirtualRange* buffers )
129 NuDCLPool::AllocateSkipCycle ( CFMutableSetRef saveSet )
136 NuDCLPool::AllocateReceivePacket ( CFMutableSetRef saveBag, UInt8 headerBytes, UInt32 numRanges, IOVirtualRange* ranges )
335 NuDCLPoolCOM::S_AllocateSendPacket( IOFireWireLibNuDCLPoolRef self, CFMutableSetRef saveBag, UInt32 numBuffers, IOVirtualRange* buffers )
341 NuDCLPoolCOM::S_AllocateSendPacket_v( IOFireWireLibNuDCLPoolRef self, CFMutableSetRef saveBag, IOVirtualRange* firstRange, ... )
383 NuDCLPoolCOM::S_AllocateReceivePacket( IOFireWireLibNuDCLPoolRef self, CFMutableSetRef saveBag, UInt8 headerBytes, UInt32 numBuffers, IOVirtualRange* buffers )
389 NuDCLPoolCOM::S_AllocateReceivePacket_v( IOFireWireLibNuDCLPoolRef self, CFMutableSetRef saveBag, UInt8 headerBytes, IOVirtualRange* firstRange, ... )
H A DIOFireWireLibIsoch.h656 @param saveBag The allocated DCL can be added to a CFBag for easily setting DCL update lists. Pass a CFMutableSetRef to add the allocated
662 NuDCLSendPacketRef (*AllocateSendPacket)( IOFireWireLibNuDCLPoolRef self, CFMutableSetRef saveBag, UInt32 numBuffers, IOVirtualRange* buffers ) ;
668 @param saveBag The allocated DCL can be added to a CFBag for easily setting DCL update lists. Pass a CFMutableSetRef to add the allocated
672 NuDCLSendPacketRef (*AllocateSendPacket_v)( IOFireWireLibNuDCLPoolRef self, CFMutableSetRef saveBag, IOVirtualRange* firstRange, ... ) ;
692 @param saveBag The allocated DCL can be added to a CFBag for easily setting DCL update lists. Pass a CFMutableSetRef to add the allocated
698 NuDCLReceivePacketRef (*AllocateReceivePacket)( IOFireWireLibNuDCLPoolRef self, CFMutableSetRef saveBag, UInt8 headerBytes, UInt32 numBuffers, IOVirtualRange* buffers ) ;
704 @param saveBag The allocated DCL can be added to a CFBag for easily setting DCL update lists. Pass a CFMutableSetRef to add the allocated
709 NuDCLReceivePacketRef (*AllocateReceivePacket_v)( IOFireWireLibNuDCLPoolRef self, CFMutableSetRef saveBag, UInt8 headerBytes, IOVirtualRange* firstRange, ... ) ;
H A DIOFireWireLibNuDCL.h61 typedef void * CFMutableSetRef ; typedef
104 CFMutableSetRef set ; // In user space contains update set
/macosx-10.10.1/Security-57031.1.35/Security/sec/SOSCircle/SecureObjectSync/
H A DSOSPeerInfoCollections.h36 CFMutableSetRef CFSetCreateMutableForSOSPeerInfosByID(CFAllocatorRef allocator);
55 CFMutableSetRef SOSPeerInfoSetCreateFromArrayDER(CFAllocatorRef allocator, const CFSetCallBacks *callbacks, CFErrorRef* error,
H A DSOSAccountUpdate.c14 CFMutableSetRef additions = CFSetCreateMutableCopy(kCFAllocatorDefault, 0, new_members);
15 CFMutableSetRef removals = CFSetCreateMutableCopy(kCFAllocatorDefault, 0, old_members);
65 CFMutableSetRef old_members = SOSCircleCopyPeers(oldCircle, kCFAllocatorDefault);
66 CFMutableSetRef new_members = SOSCircleCopyPeers(newCircle, kCFAllocatorDefault);
68 CFMutableSetRef old_applicants = SOSCircleCopyApplicants(oldCircle, kCFAllocatorDefault);
69 CFMutableSetRef new_applicants = SOSCircleCopyApplicants(newCircle, kCFAllocatorDefault);
H A DSOSPeerInfoCollections.c73 CFMutableSetRef CFSetCreateMutableForSOSPeerInfosByID(CFAllocatorRef allocator)
168 CFMutableSetRef SOSPeerInfoSetCreateFromArrayDER(CFAllocatorRef allocator, const CFSetCallBacks *callbacks, CFErrorRef* error,
170 CFMutableSetRef result = NULL;
H A DSOSCircle.h66 CFMutableSetRef SOSCircleCopyApplicants(SOSCircleRef c, CFAllocatorRef allocator);
82 CFMutableSetRef SOSCircleCopyPeers(SOSCircleRef circle, CFAllocatorRef allocator);
H A DSOSCircle.c68 CFMutableSetRef peers;
69 CFMutableSetRef applicants;
70 CFMutableSetRef rejected_applicants;
100 static CFMutableSetRef CFSetOfPeerInfoDeepCopy(CFAllocatorRef allocator, CFSetRef peerInfoSet)
102 __block CFMutableSetRef result = CFSetCreateMutableForSOSPeerInfosByID(allocator);
210 static bool SOSCircleDigestSet(const struct ccdigest_info *di, CFMutableSetRef set, void *hash_result, CFErrorRef *error)
321 static void CFSetRemoveAllPassing(CFMutableSetRef set, bool (^test)(const void *) ){
336 CFMutableSetRef applicants = SOSCircleCopyApplicants(circle, NULL);
865 CFMutableSetRef SOSCircleCopyApplicants(SOSCircleRef circle, CFAllocatorRef allocator) {
1205 CFMutableSetRef SOSCircleCopyPeer
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_transform/lib/
H A Dmisc.c87 CFMutableSetRef ca = (CFMutableSetRef)CFDictionaryGetValue(t2ca, t);
132 CFMutableSetRef ca = (CFMutableSetRef)CFDictionaryGetValue(t2ca, name);
H A DTransform.h97 CFMutableSetRef mAttributes;
144 CFErrorRef TraverseTransform(CFMutableSetRef visited, TransformOperation t);
/macosx-10.10.1/kext_tools-384.1.4/
H A Dkclist_main.h57 CFMutableSetRef kextIDs;
H A Dkcgen_main.h154 CFMutableSetRef kextIDs; // -b; must release
155 CFMutableSetRef optionalKextIDs; // -optional-bundle-id; must release
H A Dkext_tools_util.h125 Boolean createCFMutableSet(CFMutableSetRef * setOut,
/macosx-10.10.1/PowerManagement-494.1.2/pmconfigd/
H A DExternalMedia.c47 static CFMutableSetRef gExternalMediaSet = NULL;
/macosx-10.10.1/Security-57031.1.35/Security/authd/
H A Dsession.c12 CFMutableSetRef credentials;
13 CFMutableSetRef processes;
H A Dauthtoken.c50 CFMutableSetRef processes;
58 CFMutableSetRef credentials;
59 CFMutableSetRef authorized_rights;
/macosx-10.10.1/Security-57031.1.35/Security/utilities/src/
H A Ddebugging.c124 static CFMutableSetRef CopyScopesFromScopeList(CFStringRef scopes) {
125 CFMutableSetRef resultSet = CFSetCreateMutableForCFTypes(kCFAllocatorDefault);
300 CFMutableSetRef scopesToUse = CopyScopesFromScopeList(scopeList);
/macosx-10.10.1/Security-57031.1.35/Security/utilities/utilities/
H A Ddebugging.c124 static CFMutableSetRef CopyScopesFromScopeList(CFStringRef scopes) {
125 CFMutableSetRef resultSet = CFSetCreateMutableForCFTypes(kCFAllocatorDefault);
300 CFMutableSetRef scopesToUse = CopyScopesFromScopeList(scopeList);
/macosx-10.10.1/configd-699.1.5/SystemConfiguration.fproj/
H A DSCNetworkConfigurationInternal.h388 CFMutableSetRef set);
396 CFMutableSetRef set);

Completed in 190 milliseconds

123