Searched refs:error (Results 101 - 125 of 5641) sorted by relevance

1234567891011>>

/macosx-10.10.1/Security-57031.1.35/Security/include/security_keychain/
H A DCertificateValues.h50 CFDictionaryRef copyFieldValues(CFArrayRef keys, CFErrorRef *error);
51 CFDataRef copySerialNumber(CFErrorRef *error);
52 CFDataRef copyNormalizedIssuerContent(CFErrorRef *error);
53 CFDataRef copyNormalizedSubjectContent(CFErrorRef *error);
54 CFDataRef copyIssuerSequence(CFErrorRef *error);
55 CFDataRef copySubjectSequence(CFErrorRef *error);
56 bool isValid(CFAbsoluteTime verifyTime, CFErrorRef *error);
57 CFAbsoluteTime notValidBefore(CFErrorRef *error);
58 CFAbsoluteTime notValidAfter(CFErrorRef *error);
62 SecCertificateRefP getSecCertificateRefP(CFErrorRef *error);
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DCertificateValues.h50 CFDictionaryRef copyFieldValues(CFArrayRef keys, CFErrorRef *error);
51 CFDataRef copySerialNumber(CFErrorRef *error);
52 CFDataRef copyNormalizedIssuerContent(CFErrorRef *error);
53 CFDataRef copyNormalizedSubjectContent(CFErrorRef *error);
54 CFDataRef copyIssuerSequence(CFErrorRef *error);
55 CFDataRef copySubjectSequence(CFErrorRef *error);
56 bool isValid(CFAbsoluteTime verifyTime, CFErrorRef *error);
57 CFAbsoluteTime notValidBefore(CFErrorRef *error);
58 CFAbsoluteTime notValidAfter(CFErrorRef *error);
62 SecCertificateRefP getSecCertificateRefP(CFErrorRef *error);
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/lib/
H A DCertificateValues.h50 CFDictionaryRef copyFieldValues(CFArrayRef keys, CFErrorRef *error);
51 CFDataRef copySerialNumber(CFErrorRef *error);
52 CFDataRef copyNormalizedIssuerContent(CFErrorRef *error);
53 CFDataRef copyNormalizedSubjectContent(CFErrorRef *error);
54 CFDataRef copyIssuerSequence(CFErrorRef *error);
55 CFDataRef copySubjectSequence(CFErrorRef *error);
56 bool isValid(CFAbsoluteTime verifyTime, CFErrorRef *error);
57 CFAbsoluteTime notValidBefore(CFErrorRef *error);
58 CFAbsoluteTime notValidAfter(CFErrorRef *error);
62 SecCertificateRefP getSecCertificateRefP(CFErrorRef *error);
[all...]
/macosx-10.10.1/smb-759.0/lib/
H A Dlibtest.c66 #define MAX_SID_PRINTBUFFER 256 /* Used to print out the sid in case of an error */
233 int error = ENOMEM; local
249 error = SMBNetFsCreateURL(urlParms, &url);
254 if (error) {
255 errno = error;
273 int error = 0; local
290 error = errno;
296 error = SMBNetFsMount(inConnection, mount_url, mountPoint, mountOptions, &mountInfo, setNetworkAccountSID, NULL);
299 error = ENOMEM;
302 if (error) {
385 int error; local
428 int error; local
558 int error; local
607 int error = 0; local
715 int error; local
759 int error = 0; local
814 int error = 0; local
908 int error = 0; local
1032 int error = 0; local
1093 int ii, error = 0; local
1138 int error = 0; local
1217 int error = 0; local
1276 int error = 0; local
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/sec/ipc/
H A Dsecurityd_client.h176 bool (*sec_item_add)(CFDictionaryRef attributes, CFArrayRef accessGroups, CFTypeRef *result, CFErrorRef* error);
177 bool (*sec_item_copy_matching)(CFDictionaryRef query, CFArrayRef accessGroups, CFTypeRef *result, CFErrorRef* error);
178 bool (*sec_item_update)(CFDictionaryRef query, CFDictionaryRef attributesToUpdate, CFArrayRef accessGroups, CFErrorRef* error);
179 bool (*sec_item_delete)(CFDictionaryRef query, CFArrayRef accessGroups, CFErrorRef* error);
180 bool (*sec_add_shared_web_credential)(CFDictionaryRef attributes, const audit_token_t *clientAuditToken, CFStringRef appID, CFArrayRef accessGroups, CFTypeRef *result, CFErrorRef *error);
181 bool (*sec_copy_shared_web_credential)(CFDictionaryRef query, const audit_token_t *clientAuditToken, CFStringRef appID, CFArrayRef accessGroups, CFTypeRef *result, CFErrorRef *error);
182 SecTrustStoreRef (*sec_trust_store_for_domain)(CFStringRef domainName, CFErrorRef* error); // TODO: remove, has no msg id
183 bool (*sec_trust_store_contains)(SecTrustStoreRef ts, CFDataRef digest, bool *contains, CFErrorRef* error);
184 bool (*sec_trust_store_set_trust_settings)(SecTrustStoreRef ts, SecCertificateRef certificate, CFTypeRef trustSettingsDictOrArray, CFErrorRef* error);
185 bool (*sec_trust_store_remove_certificate)(SecTrustStoreRef ts, CFDataRef digest, CFErrorRef* error);
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTool/
H A Ddisplay_error_code.c41 CSSM_RETURN error; local
46 if (strcmp("error", argv[ix])==0)
49 error = strtoul(argv[ix], NULL, 0);
50 printf("Error: 0x%08X %d %s\n", error, error, cssmErrorString(error));
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/efl/
H A Dewk_error.h55 * Query type for this error.
57 * @param error error object to query.
59 * @return the error type, that may be @c NULL. This pointer is
65 EAPI Ewk_Error_Type ewk_error_type_get(const Ewk_Error *error);
68 * Query failing URL for this error.
72 * @param error error object to query.
80 EAPI const char *ewk_error_url_get(const Ewk_Error *error);
83 * Query HTTP error cod
[all...]
H A Dewk_error.cpp68 Ewk_Error_Type ewk_error_type_get(const Ewk_Error* error) argument
70 EINA_SAFETY_ON_NULL_RETURN_VAL(error, EWK_ERROR_TYPE_NONE);
72 WKRetainPtr<WKStringRef> wkErrorDomain = error->domain();
88 const char* ewk_error_url_get(const Ewk_Error* error) argument
90 EINA_SAFETY_ON_NULL_RETURN_VAL(error, nullptr);
92 return error->url();
95 int ewk_error_code_get(const Ewk_Error* error) argument
97 EINA_SAFETY_ON_NULL_RETURN_VAL(error, 0);
99 return error->errorCode();
102 const char* ewk_error_description_get(const Ewk_Error* error) argument
109 ewk_error_cancellation_get(const Ewk_Error* error) argument
[all...]
/macosx-10.10.1/postfix-255/postfix/src/dns/
H A Ddns_strerror.c5 /* name service lookup error code to string
12 /* dns_strerror() maps a name service lookup error to printable string.
40 * Mapping from error code to printable string. The herror() routine does
44 unsigned error; member in struct:dns_error_map
51 NO_RECOVERY, "Non-recoverable error",
55 /* dns_strerror - map resolver error code to printable string */
57 const char *dns_strerror(unsigned error) argument
63 if (dns_error_map[i].error == error)
66 unknown = vstring_alloc(sizeof("Unknown error XXXXX
[all...]
/macosx-10.10.1/xnu-2782.1.97/osfmk/kperf/
H A Dkperfbsd.c104 int error = 0; local
109 error = SYSCTL_IN( req, inputs, 2*sizeof(inputs[0]) );
110 if(error)
111 return (error);
120 error = kperf_timer_set_period( timer, inputs[1] );
121 if( error )
122 return error;
125 error = kperf_timer_get_period(timer, &retval);
126 if(error)
127 return (error);
140 int error = 0; local
178 int error = 0; local
215 int error = 0; local
252 int error = 0; local
298 int error = 0; local
321 int error = 0; local
339 int error = 0; local
357 int error = 0; local
375 int error = 0; local
395 int error = 0; local
416 int error = 0; local
436 int error = 0; local
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/sec/securityd/Regressions/
H A Dsecd-52-account-changed.c52 CFErrorRef error = NULL; local
62 ok(SOSAccountAssertUserCredentials(bob_account, cfaccount, cfpassword, &error), "Credential setting (%@)", error); local
74 ok(SOSAccountAssertUserCredentials(alice_account, cfaccount, cfpassword, &error), "Credential setting (%@)", error); local
75 CFReleaseNull(error);
76 ok(SOSAccountAssertUserCredentials(carol_account, cfaccount, cfpassword, &error), "Credential setting (%@)", error); local
77 CFReleaseNull(error);
82 ok(SOSAccountResetToOffering(alice_account, &error), "Rese local
87 ok(SOSAccountJoinCircles(bob_account, &error), "Bob Applies (%@)", error); local
93 ok(SOSAccountJoinCircles(carol_account, &error), "Carol Applies (%@)", error); local
102 ok(applicants && CFArrayGetCount(applicants) == 2, "See two applicants %@ (%@)", applicants, error); local
103 ok(SOSAccountAcceptApplicants(alice_account, applicants, &error), "Alice accepts (%@)", error); local
127 ok(SOSAccountAssertUserCredentials(alice_account, cfaccount2, cfpassword2, &error), "Credential setting (%@)", error); local
135 ok(SOSAccountAssertUserCredentials(bob_account, cfaccount2, cfpassword2, &error), "Credential setting (%@)", error); local
138 ok(SOSAccountAssertUserCredentials(carol_account, cfaccount2, cfpassword2, &error), "Credential setting (%@)", error); local
149 ok(SOSAccountResetToOffering(alice_account, &error), "Reset to offering (%@)", error); local
159 ok(SOSAccountJoinCircles(bob_account, &error), "Bob Applies (%@)", error); local
164 ok(SOSAccountJoinCircles(carol_account, &error), "Carol Applies (%@)", error); local
174 ok(applicants && CFArrayGetCount(applicants) == 2, "See two applicants %@ (%@)", applicants, error); local
175 ok(SOSAccountAcceptApplicants(alice_account, applicants, &error), "Alice accepts (%@)", error); local
[all...]
H A Dsecd-61-account-leave-not-in-kansas-anymore.c54 CFErrorRef error = NULL;
57 if(active) peers = SOSAccountCopyActivePeers(account, &error);
58 else peers = SOSAccountCopyPeers(account, &error);
60 CFReleaseNull(error);
73 CFErrorRef error = NULL; local
74 CFArrayRef applicants = SOSAccountCopyApplicants(account, &error);
78 is(CFArrayGetCount(applicants), count, "See applicants %@ (%@)", applicants, error);
80 ok(retval = SOSAccountAcceptApplicants(account, applicants, &error), "Account accepts (%@)", error);
82 CFReleaseNull(error);
90 CFErrorRef error = NULL; local
101 ok(SOSAccountAssertUserCredentials(bob_account, cfaccount, cfpassword, &error), "Credential setting (%@)", error); local
106 ok(SOSAccountAssertUserCredentials(alice_account, cfaccount, cfpassword, &error), "Credential setting (%@)", error); local
109 ok(SOSAccountAssertUserCredentials(carole_account, cfaccount, cfpassword, &error), "Credential setting (%@)", error); local
112 ok(SOSAccountAssertUserCredentials(david_account, cfaccount, cfpassword, &error), "Credential setting (%@)", error); local
115 ok(SOSAccountResetToOffering(alice_account, &error), "Reset to offering (%@)", error); local
121 ok(SOSAccountJoinCircles(bob_account, &error), "Bob Applies (%@)", error); local
137 ok(SOSAccountJoinCircles(carole_account, &error), "Carole Applies (%@)", error); local
148 ok(peers && CFArrayGetCount(peers) == 3, "See three peers %@ (%@)", peers, error); local
153 ok(SOSAccountLeaveCircles(alice_account, &error), "Alice Leaves (%@)", error); local
159 ok(SOSAccountJoinCircles(david_account, &error), "David Applies (%@)", error); local
173 is(SOSAccountIsInCircles(carole_account, &error), kSOSCCInCircle, "Carole still in Circle (%@)", error); local
175 is(SOSAccountIsInCircles(david_account, &error), kSOSCCInCircle, "David still in Circle (%@)", error); local
177 is(SOSAccountIsInCircles(bob_account, &error), kSOSCCNotInCircle, "Bob is not in Circle (%@)", error); local
181 is(SOSAccountIsInCircles(alice_account, &error), kSOSCCNotInCircle, "Alice is not in Circle (%@)", error); local
[all...]
H A Dsecd-55-account-incompatibility.c58 CFErrorRef error = NULL; local
71 ok(SOSAccountAssertUserCredentials(bob_account, cfaccount, cfpassword, &error), "Credential setting (%@)", error); local
77 ok(SOSAccountAssertUserCredentials(alice_account, cfaccount, cfpassword, &error), "Credential setting (%@)", error); local
78 CFReleaseNull(error);
79 ok(SOSAccountTryUserCredentials(alice_account, cfaccount, cfpassword, &error), "Credential trying (%@)", error); local
80 CFReleaseNull(error);
83 ok(!SOSAccountTryUserCredentials(alice_account, cfaccount, cfwrong_password, &error), "Credentia
[all...]
H A Dsecd-59-account-cleanup.c57 CFErrorRef error = NULL; local
68 ok(SOSAccountAssertUserCredentials(bob_account, cfaccount, cfpassword, &error), "Credential setting (%@)", error); local
73 ok(SOSAccountAssertUserCredentials(alice_account, cfaccount, cfpassword, &error), "Credential setting (%@)", error); local
74 CFReleaseNull(error);
76 ok(SOSAccountAssertUserCredentials(carole_account, cfaccount, cfpassword, &error), "Credential setting (%@)", error); local
77 CFReleaseNull(error);
78 ok(SOSAccountResetToOffering(alice_account, &error), "Rese local
83 ok(SOSAccountJoinCircles(bob_account, &error), "Bob Applies (%@)", error); local
91 ok(applicants && CFArrayGetCount(applicants) == 1, "See one applicant %@ (%@)", applicants, error); local
92 ok(SOSAccountAcceptApplicants(alice_account, applicants, &error), "Alice accepts (%@)", error); local
102 ok(peers && CFArrayGetCount(peers) == 2, "See two peers %@ (%@)", peers, error); local
108 ok(SOSAccountLeaveCircles(alice_account, &error), "Alice Leaves (%@)", error); local
123 ok(SOSAccountJoinCircles(carole_account, &error), "Carole Applies (%@)", error); local
132 ok(applicants && CFArrayGetCount(applicants) == 1, "See one applicant %@ (%@)", applicants, error); local
133 ok(SOSAccountAcceptApplicants(bob_account, applicants, &error), "Bob accepts Carole (%@)", error); local
[all...]
/macosx-10.10.1/apache-793/httpd/docs/conf/extra/
H A Dhttpd-multilang-errordoc.conf.in2 # The configuration below implements multi-language error documents through
8 # We use Alias to redirect any /error/HTTP_<error>.html.var response to
9 # our collection of by-error message multi-language collections. We use
13 # default HTTP_<error>.html.var files by adding the line:
15 # Alias /error/include/ "/your/include/path/"
23 Alias /error/ "@exp_errordir@/"
35 ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
36 ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
37 ErrorDocument 403 /error/HTTP_FORBIDDE
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/sec/SOSCircle/SecureObjectSync/
H A DSOSFullPeerInfo.h41 SOSFullPeerInfoRef SOSFullPeerInfoCreate(CFAllocatorRef allocator, CFDictionaryRef gestalt, SecKeyRef signingKey, CFErrorRef *error);
43 SOSFullPeerInfoRef SOSFullPeerInfoCreateCloudIdentity(CFAllocatorRef allocator, SOSPeerInfoRef peer, CFErrorRef* error);
46 SecKeyRef SOSFullPeerInfoCopyDeviceKey(SOSFullPeerInfoRef fullPeer, CFErrorRef* error);
48 bool SOSFullPeerInfoPurgePersistentKey(SOSFullPeerInfoRef peer, CFErrorRef* error);
50 SOSPeerInfoRef SOSFullPeerInfoPromoteToRetiredAndCopy(SOSFullPeerInfoRef peer, CFErrorRef *error);
52 bool SOSFullPeerInfoValidate(SOSFullPeerInfoRef peer, CFErrorRef* error);
54 bool SOSFullPeerInfoUpdateGestalt(SOSFullPeerInfoRef peer, CFDictionaryRef gestalt, CFErrorRef* error);
56 bool SOSFullPeerInfoPromoteToApplication(SOSFullPeerInfoRef fpi, SecKeyRef user_key, CFErrorRef *error);
58 bool SOSFullPeerInfoUpgradeSignatures(SOSFullPeerInfoRef fpi, SecKeyRef user_key, CFErrorRef *error);
63 SOSFullPeerInfoRef SOSFullPeerInfoCreateFromDER(CFAllocatorRef allocator, CFErrorRef* error,
[all...]
H A DSOSAccount.h73 CFErrorRef* error,
78 CFErrorRef* error,
83 CFErrorRef* error);
85 size_t SOSAccountGetDEREncodedSize(SOSAccountRef cir, CFErrorRef *error);
86 uint8_t* SOSAccountEncodeToDER(SOSAccountRef cir, CFErrorRef* error, const uint8_t* der, uint8_t* der_end);
87 size_t SOSAccountGetDEREncodedSize_V3(SOSAccountRef cir, CFErrorRef *error);
88 uint8_t* SOSAccountEncodeToDER_V3(SOSAccountRef cir, CFErrorRef* error, const uint8_t* der, uint8_t* der_end);
89 CFDataRef SOSAccountCopyEncodedData(SOSAccountRef circle, CFAllocatorRef allocator, CFErrorRef *error);
92 CFStringRef SOSAccountGetDeviceID(SOSAccountRef account, CFErrorRef *error);
99 SOSPeerInfoRef SOSAccountGetMyPeerInCircle(SOSAccountRef account, SOSCircleRef circle, CFErrorRef* error);
203 typedef bool (^SOSAccountSendBlock)(CFStringRef key, CFDataRef message, CFErrorRef *error); variable
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/sec/Security/
H A DSecuritydXPC.h31 bool SecXPCDictionarySetData(xpc_object_t message, const char *key, CFDataRef data, CFErrorRef *error);
32 bool SecXPCDictionarySetDataOptional(xpc_object_t message, const char *key, CFDataRef data, CFErrorRef *error);
34 bool SecXPCDictionarySetPList(xpc_object_t message, const char *key, CFTypeRef object, CFErrorRef *error);
35 bool SecXPCDictionarySetPListOptional(xpc_object_t message, const char *key, CFTypeRef object, CFErrorRef *error);
37 bool SecXPCDictionarySetString(xpc_object_t message, const char *key, CFStringRef string, CFErrorRef *error);
39 CFTypeRef SecXPCDictionaryCopyPList(xpc_object_t message, const char *key, CFErrorRef *error);
40 bool SecXPCDictionaryCopyPListOptional(xpc_object_t message, const char *key, CFTypeRef *pobject, CFErrorRef *error);
42 CFArrayRef SecXPCDictionaryCopyArray(xpc_object_t message, const char *key, CFErrorRef *error);
43 bool SecXPCDictionaryCopyArrayOptional(xpc_object_t message, const char *key, CFArrayRef *parray, CFErrorRef *error);
45 CFDataRef SecXPCDictionaryCopyData(xpc_object_t message, const char *key, CFErrorRef *error);
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/sec/SOSCircle/Regressions/
H A Dsc-70-engine.c45 CFErrorRef error = NULL; local
52 SOSPeerSendBlock sendBlock = ^bool (CFDataRef message, CFErrorRef *error) {
88 ok(peer = SOSPeerCreateSimple(peer_id, kSOSPeerVersion, &error),
89 "create peer: %@", error);
90 CFReleaseNull(error);
97 ok(engine = SOSEngineCreate(ds, &error), "create engine: %@", error);
98 CFReleaseNull(error);
110 ok(false == SOSEngineHandleMessage(engine, peer, message, &error),
111 "handle empty message: %@", error);
193 CFErrorRef error = NULL; local
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/sec/securityd/
H A DSecTrustStoreServer.h38 SecTrustStoreRef SecTrustStoreForDomainName(CFStringRef domainName, CFErrorRef *error);
42 CFTypeRef trustSettingsDictOrArray, CFErrorRef *error);
44 bool SecTrustStoreRemoveCertificateWithDigest(SecTrustStoreRef ts, CFDataRef digest, CFErrorRef *error);
46 bool _SecTrustStoreRemoveAll(SecTrustStoreRef ts, CFErrorRef *error);
49 SecCertificateRef certificate, CFErrorRef *error);
51 bool SecTrustStoreContainsCertificateWithDigest(SecTrustStoreRef source, CFDataRef digest, bool *contains, CFErrorRef *error);
/macosx-10.10.1/ipsec-286.1.1/ipsec-tools/racoon/
H A Dfsm.c99 int error = 0; local
111 error = ident_i2recv(iph1, msg);
115 error = ident_i4recv(iph1, msg);
119 error = ident_i6recv(iph1, msg);
123 error = ident_r1recv(iph1, msg);
124 if (error) {
131 error = ident_r3recv(iph1, msg);
135 error = ident_r5recv(iph1, msg);
139 error = agg_r1recv(iph1, msg);
140 if (error) {
196 int error = 0; local
266 int error = 0; local
357 int error = 0; local
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tclx/tclx/tests/
H A Dtryeval.test61 error "error should not execute"
76 error "error should not execute"
97 test try_eval-3.1 {try_eval error result} {
100 error "try_eval error 3.1" errorInfo-error-3.1 errorCode-error-3.1
102 error "con
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dkern_csr.c90 int error = 0; local
101 error = copyin(uap->useraddr, &mask, sizeof(csr_config_t));
103 if (error)
104 return error;
106 error = csr_check(mask);
115 error = csr_get_active_config(&config);
117 error = csr_get_pending_config(&config);
119 if (error)
120 return error;
122 error
168 int error = csr_get_active_config(&config); local
[all...]
/macosx-10.10.1/kext_tools-384.1.4/
H A Dkextfind_report.h50 QEQueryError * error);
58 QEQueryError * error);
64 QEQueryError * error);
70 QEQueryError * error);
78 QEQueryError * error);
84 QEQueryError * error);
92 QEQueryError * error);
98 QEQueryError * error);
104 QEQueryError * error);
112 QEQueryError * error);
[all...]
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dstrtonum.c39 int error = 0; local
53 error = INVALID;
57 error = INVALID;
59 error = TOOSMALL;
61 error = TOOLARGE;
64 *errstrp = ev[error].errstr;
65 errno = ev[error].err;
66 if (error)

Completed in 344 milliseconds

1234567891011>>