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

/macosx-10.10.1/Security-57031.1.35/Security/sec/SOSCircle/SecureObjectSync/
H A DSOSPeerInfo.c85 CFDictionaryRef gestalt; member in struct:__OpaqueSOSPeerInfo
195 static SOSPeerInfoRef SOSPeerInfoCreate_Internal(CFAllocatorRef allocator, CFDictionaryRef gestalt, SecKeyRef signingKey, CFErrorRef* error, void (^ description_modifier)(CFMutableDictionaryRef description)) { argument
197 pi->gestalt = gestalt;
198 CFRetain(pi->gestalt);
226 sGestaltKey, pi->gestalt,
230 CFStringRef deviceName = CFDictionaryGetValue(pi->gestalt, kPIUserDefinedDeviceName);
231 CFStringRef modelName = CFDictionaryGetValue(pi->gestalt, kPIDeviceModelName);
262 SOSPeerInfoRef SOSPeerInfoCreate(CFAllocatorRef allocator, CFDictionaryRef gestalt, SecKeyRef signingKey, CFErrorRef* error) { argument
263 return SOSPeerInfoCreate_Internal(allocator, gestalt, signingKe
266 SOSPeerInfoCreateCloudIdentity(CFAllocatorRef allocator, CFDictionaryRef gestalt, SecKeyRef signingKey, CFErrorRef* error) argument
[all...]
H A DSOSFullPeerInfo.h41 SOSFullPeerInfoRef SOSFullPeerInfoCreate(CFAllocatorRef allocator, CFDictionaryRef gestalt, SecKeyRef signingKey, CFErrorRef *error);
54 bool SOSFullPeerInfoUpdateGestalt(SOSFullPeerInfoRef peer, CFDictionaryRef gestalt, CFErrorRef* error);
H A DSOSPeerInfo.h54 SOSPeerInfoRef SOSPeerInfoCreate(CFAllocatorRef allocator, CFDictionaryRef gestalt, SecKeyRef signingKey, CFErrorRef* error);
56 SOSPeerInfoRef SOSPeerInfoCreateCloudIdentity(CFAllocatorRef allocator, CFDictionaryRef gestalt, SecKeyRef signingKey, CFErrorRef* error);
59 SOSPeerInfoRef SOSPeerInfoCopyWithGestaltUpdate(CFAllocatorRef allocator, SOSPeerInfoRef toCopy, CFDictionaryRef gestalt, SecKeyRef signingKey, CFErrorRef* error);
114 CFStringRef SOSPeerGestaltGetName(CFDictionaryRef gestalt);
117 CFTypeRef SOSPeerGestaltGetAnswer(CFDictionaryRef gestalt, CFStringRef question);
H A DSOSAccountFullPeerInfo.c115 CFStringRef keyName = CFStringCreateWithFormat(kCFAllocatorDefault, NULL, CFSTR("ID for %@-%@"), SOSPeerGestaltGetName(account->gestalt), name);
120 circle_full_peer_info = SOSFullPeerInfoCreate(kCFAllocatorDefault, account->gestalt, full_key, error);
125 secerror("Can't make FullPeerInfo for %@-%@ (%@) - is AKS ok?", SOSPeerGestaltGetName(account->gestalt), name, error ? (void*)*error : (void*)CFSTR("-"));
153 CFDictionaryRef gestalt = CFDictionaryCreateForCFTypes(kCFAllocatorDefault, local
156 require_action_quiet(gestalt, fail, SecError(errSecAllocate, error, CFSTR("Can't allocate gestalt")));
158 cloud_peer = SOSPeerInfoCreateCloudIdentity(kCFAllocatorDefault, gestalt, cloud_key, error);
182 CFReleaseNull(gestalt);
H A DSOSFullPeerInfo.c90 SOSFullPeerInfoRef SOSFullPeerInfoCreate(CFAllocatorRef allocator, CFDictionaryRef gestalt, SecKeyRef signingKey, CFErrorRef* error) { argument
93 fpi->peer_info = SOSPeerInfoCreate(allocator, gestalt, signingKey, error);
215 bool SOSFullPeerInfoUpdateGestalt(SOSFullPeerInfoRef peer, CFDictionaryRef gestalt, CFErrorRef* error) argument
221 gestalt, device_key, error);
H A DSOSAccount.c45 CFDictionaryRef gestalt,
51 a->gestalt = CFRetainSafe(gestalt);
74 if (CFEqual(new_gestalt, account->gestalt))
85 CFRetainAssign(account->gestalt, new_gestalt);
90 CFDictionaryRef gestalt,
92 SOSAccountRef a = SOSAccountCreateBasic(allocator, gestalt, factory);
108 CFReleaseNull(a->gestalt);
147 // keeping gestalt;
169 return CFStringCreateWithFormat(NULL, NULL, CFSTR("<SOSAccount@%p: Gestalt: %@\n Circles: %@ CircleIDs: %@>"), a, a->gestalt,
44 SOSAccountCreateBasic(CFAllocatorRef allocator, CFDictionaryRef gestalt, SOSDataSourceFactoryRef factory) argument
89 SOSAccountCreate(CFAllocatorRef allocator, CFDictionaryRef gestalt, SOSDataSourceFactoryRef factory) argument
[all...]
H A DSOSAccount.h62 CFDictionaryRef gestalt,
65 CFDictionaryRef gestalt,
173 // MARK: Local device gestalt change.
H A DSOSAccountPersistence.c530 require_quiet(accumulate_size(&sequence_size, der_sizeof_dictionary(account->gestalt, error)), fail);
554 der_encode_dictionary(account->gestalt, error, der,
577 require_quiet(accumulate_size(&sequence_size, der_sizeof_dictionary(account->gestalt, error)), fail);
600 der_encode_dictionary(account->gestalt, error, der,
620 require_quiet(accumulate_size(&sequence_size, der_sizeof_dictionary(account->gestalt, error)), fail);
642 der_encode_dictionary(account->gestalt, error, der,
664 require_quiet(accumulate_size(&sequence_size, der_sizeof_dictionary(account->gestalt, error)), fail);
685 der_encode_dictionary(account->gestalt, error, der,
H A DSOSAccountPriv.h48 CFDictionaryRef gestalt; member in struct:__OpaqueSOSAccount
76 CFDictionaryRef gestalt,
/macosx-10.10.1/Security-57031.1.35/Security/sec/SOSCircle/Regressions/
H A DSOSRegressionUtilities.c304 CFDictionaryRef gestalt = NULL; local
310 gestalt = SOSCreatePeerGestaltFromName(name);
311 require(gestalt, exit);
313 result = SOSPeerInfoCreate(NULL, gestalt, *outSigningKey, error);
316 CFReleaseNull(gestalt);
326 CFDictionaryRef gestalt = NULL; local
332 gestalt = SOSCreatePeerGestaltFromName(name);
333 require(gestalt, exit);
335 result = SOSFullPeerInfoCreate(NULL, gestalt, *outSigningKey, error);
338 CFReleaseNull(gestalt);
[all...]
H A Dsc-kvstool.m100 CFDictionaryRef gestalt = SOSCreatePeerGestaltFromName(CFSTR("Alice"));
102 SOSAccountRef our_account = SOSAccountCreate(kCFAllocatorDefault, gestalt, our_data_source_factory,
/macosx-10.10.1/Security-57031.1.35/Security/sec/securityd/Regressions/
H A DSOSTransportTestTransports.h11 void SOSAccountUpdateTestTransports(SOSAccountRef account, CFDictionaryRef gestalt);
H A DSOSAccountTesting.h44 CFDictionaryRef gestalt,
46 SOSAccountRef a = SOSAccountCreateBasic(allocator, gestalt, factory);
53 CFDictionaryRef gestalt,
55 SOSAccountRef a = SOSAccountCreateBasicTest(allocator, accountName, gestalt, factory);
388 CFDictionaryRef gestalt = SOSCreatePeerGestaltFromName(name); local
390 SOSAccountRef result = SOSAccountCreateTest(kCFAllocatorDefault, name, gestalt, factory);
392 CFReleaseNull(gestalt);
42 SOSAccountCreateBasicTest(CFAllocatorRef allocator, CFStringRef accountName, CFDictionaryRef gestalt, SOSDataSourceFactoryRef factory) argument
51 SOSAccountCreateTest(CFAllocatorRef allocator, CFStringRef accountName, CFDictionaryRef gestalt, SOSDataSourceFactoryRef factory) argument
H A DSOSTransportTestTransports.c43 void SOSAccountUpdateTestTransports(SOSAccountRef account, CFDictionaryRef gestalt){ argument
44 CFStringRef new_name = (CFStringRef)CFDictionaryGetValue(gestalt, kPIUserDefinedDeviceName);
195 // keeping gestalt;
/macosx-10.10.1/Security-57031.1.35/Security/sec/securityd/
H A DSOSCloudCircleServer.c435 CFDictionaryRef gestalt = CFDictionaryCreateForCFTypes(kCFAllocatorDefault, local
444 return gestalt;
451 CFDictionaryRef gestalt = CFDictionaryCreateDeviceGestalt(store, keys, context);
452 if (SOSAccountUpdateGestalt(account, gestalt)) {
455 CFReleaseSafe(gestalt);
467 CFDictionaryRef gestalt = NULL; local
476 gestalt = CFDictionaryCreateDeviceGestalt(store, keys, info);
484 return gestalt;
504 CFDictionaryRef gestalt = CFDictionaryCreateGestaltAndRegisterForUpdate(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), NULL);
506 if (!gestalt) {
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tclae/tclae/generic/
H A DtclAEAddress.c1672 SInt32 gestalt;
1674 err = Gestalt(gestaltPPCToolboxAttr, &gestalt);
1676 && (gestalt & gestaltPPCSupportsOutgoingAppleTalk)) {
1647 SInt32 gestalt; local
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dinform.vim254 syn keyword informAsm contained streamchar streamnum streamstr gestalt
/macosx-10.10.1/tcl-105/tcl_ext/quicktimetcl/quicktimetcl/
H A DMoviePlayer.c471 long gestalt; local
477 if (noErr != Gestalt( gestaltQuickTime, &gestalt )) {

Completed in 300 milliseconds