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

/macosx-10.9.5/Security-55471.14.18/utilities/src/
H A Dder_plist_internal.c16 void SecCFDERCreateError(CFIndex errorCode, CFStringRef descriptionString, CFErrorRef previousError, CFErrorRef *newError) { argument
17 SecCFCreateError(errorCode, sSecDERErrorDomain, descriptionString, previousError, newError);
H A DSecCFError.c19 CFErrorRef previousError = *error; local
23 SecCFCreateErrorWithFormatAndArguments(code, kSecKernDomain, previousError, error, NULL, format, args);
35 CFErrorRef previousError = *error; local
41 SecCFCreateErrorWithFormat(code, kSecErrnoDomain, previousError, error, NULL, CFSTR("%@: [%d] %s"), message, errnum, strerror(errnum));
52 CFErrorRef previousError = *error; local
56 SecCFCreateErrorWithFormatAndArguments(code, kSecErrorDomain, previousError, error, NULL, format, args);
64 CFErrorRef previousError, CFErrorRef *newError)
68 SecCFCreateErrorWithFormat(errorCode, domain, previousError, newError, NULL, descriptionString);
72 void SecCFCreateErrorWithFormat(CFIndex errorCode, CFStringRef domain, CFErrorRef previousError, CFErrorRef *newError, argument
78 SecCFCreateErrorWithFormatAndArguments(errorCode, domain, previousError, newErro
63 SecCFCreateError(CFIndex errorCode, CFStringRef domain, CFStringRef descriptionString, CFErrorRef previousError, CFErrorRef *newError) argument
83 SecCFCreateErrorWithFormatAndArguments(CFIndex errorCode, CFStringRef domain, CFErrorRef previousError, CFErrorRef *newError, CFDictionaryRef formatoptions, CFStringRef format, va_list args) argument
[all...]
H A DSecCFError.h34 CFErrorRef previousError, CFErrorRef *newError);
36 void SecCFCreateErrorWithFormat(CFIndex errorCode, CFStringRef domain, CFErrorRef previousError, CFErrorRef *newError,
42 CFErrorRef previousError, CFErrorRef *newError,
H A Dder_plist_internal.h14 void SecCFDERCreateError(CFIndex errorCode, CFStringRef descriptionString, CFErrorRef previousError, CFErrorRef *newError);
H A DSecDb.c71 CFErrorRef previousError = *error; local
75 SecCFCreateErrorWithFormatAndArguments(code, kSecDbErrorDomain, previousError, error, NULL, format, args);
/macosx-10.9.5/Security-55471.14.18/utilities/utilities/
H A Dder_plist_internal.c16 void SecCFDERCreateError(CFIndex errorCode, CFStringRef descriptionString, CFErrorRef previousError, CFErrorRef *newError) { argument
17 SecCFCreateError(errorCode, sSecDERErrorDomain, descriptionString, previousError, newError);
H A DSecCFError.c19 CFErrorRef previousError = *error; local
23 SecCFCreateErrorWithFormatAndArguments(code, kSecKernDomain, previousError, error, NULL, format, args);
35 CFErrorRef previousError = *error; local
41 SecCFCreateErrorWithFormat(code, kSecErrnoDomain, previousError, error, NULL, CFSTR("%@: [%d] %s"), message, errnum, strerror(errnum));
52 CFErrorRef previousError = *error; local
56 SecCFCreateErrorWithFormatAndArguments(code, kSecErrorDomain, previousError, error, NULL, format, args);
64 CFErrorRef previousError, CFErrorRef *newError)
68 SecCFCreateErrorWithFormat(errorCode, domain, previousError, newError, NULL, descriptionString);
72 void SecCFCreateErrorWithFormat(CFIndex errorCode, CFStringRef domain, CFErrorRef previousError, CFErrorRef *newError, argument
78 SecCFCreateErrorWithFormatAndArguments(errorCode, domain, previousError, newErro
63 SecCFCreateError(CFIndex errorCode, CFStringRef domain, CFStringRef descriptionString, CFErrorRef previousError, CFErrorRef *newError) argument
83 SecCFCreateErrorWithFormatAndArguments(CFIndex errorCode, CFStringRef domain, CFErrorRef previousError, CFErrorRef *newError, CFDictionaryRef formatoptions, CFStringRef format, va_list args) argument
[all...]
H A DSecCFError.h34 CFErrorRef previousError, CFErrorRef *newError);
36 void SecCFCreateErrorWithFormat(CFIndex errorCode, CFStringRef domain, CFErrorRef previousError, CFErrorRef *newError,
42 CFErrorRef previousError, CFErrorRef *newError,
H A Dder_plist_internal.h14 void SecCFDERCreateError(CFIndex errorCode, CFStringRef descriptionString, CFErrorRef previousError, CFErrorRef *newError);
H A DSecDb.c71 CFErrorRef previousError = *error; local
75 SecCFCreateErrorWithFormatAndArguments(code, kSecDbErrorDomain, previousError, error, NULL, format, args);
/macosx-10.9.5/Security-55471.14.18/sec/SOSCircle/SecureObjectSync/
H A DSOSInternal.h51 bool SOSCreateError(CFIndex errorCode, CFStringRef descriptionString, CFErrorRef previousError, CFErrorRef *newError);
53 bool SOSCreateErrorWithFormat(CFIndex errorCode, CFErrorRef previousError, CFErrorRef *newError,
57 bool SOSCreateErrorWithFormatAndArguments(CFIndex errorCode, CFErrorRef previousError, CFErrorRef *newError,
H A DSOSInternal.c33 bool SOSCreateError(CFIndex errorCode, CFStringRef descriptionString, CFErrorRef previousError, CFErrorRef *newError) { argument
34 SOSCreateErrorWithFormat(errorCode, previousError, newError, NULL, CFSTR("%@"), descriptionString);
38 bool SOSCreateErrorWithFormat(CFIndex errorCode, CFErrorRef previousError, CFErrorRef *newError, argument
42 bool res = SOSCreateErrorWithFormatAndArguments(errorCode, previousError, newError, formatOptions, format, va);
47 bool SOSCreateErrorWithFormatAndArguments(CFIndex errorCode, CFErrorRef previousError, CFErrorRef *newError, argument
50 SecCFCreateErrorWithFormatAndArguments(errorCode, kSOSErrorDomain, previousError, newError, formatOptions, format, args);
H A DSOSEngine.c88 static bool SOSEngineCreateError(CFIndex errorCode, CFStringRef descriptionString, CFErrorRef previousError, CFErrorRef *newError) { argument
89 SecCFCreateError(errorCode, descriptionString, sErrorDomain, previousError, newError);
/macosx-10.9.5/Security-55471.14.18/sec/Security/
H A DSecOTRUtils.c27 void SecOTRCreateError(enum SecOTRError family, CFIndex errorCode, CFStringRef descriptionString, CFErrorRef previousError, CFErrorRef *newError) { argument
30 const void* values[2] = {descriptionString, previousError};
31 *newError = CFErrorCreateWithUserInfoKeysAndValues(kCFAllocatorDefault, (family == secOTRErrorLocal) ? sLocalErrorDomain : kCFErrorDomainOSStatus, errorCode, keys, values, (previousError != NULL) ? 2 : 1);
33 CFReleaseSafe(previousError);
H A DSecOTRIdentityPriv.h103 void SecOTRCreateError(enum SecOTRError family, CFIndex errorCode, CFStringRef descriptionString, CFErrorRef previousError, CFErrorRef *newError);
/macosx-10.9.5/Security-55471.14.18/sec/Security/Regressions/otr/
H A Dotr-00-identity.c27 CFErrorRef previousError = (CFErrorRef)CFDictionaryGetValue(tempDictionary, kCFErrorUnderlyingErrorKey); local
28 if (previousError != NULL) {
29 RegressionsLogError(previousError);
H A Dotr-30-negotiation.c24 CFErrorRef previousError = (CFErrorRef)CFDictionaryGetValue(tempDictionary, kCFErrorUnderlyingErrorKey); local
25 if (previousError != NULL) {
26 SecMPLogError(previousError);

Completed in 108 milliseconds