Searched refs:error (Results 126 - 150 of 5859) sorted by relevance

1234567891011>>

/macosx-10.9.5/Security-55471.14.18/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.9.5/ipsec-258.100.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.9.5/tcl-102/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.9.5/Security-55471.14.18/sec/SOSCircle/Regressions/
H A Dsc-70-engine.c28 CFErrorRef error = NULL; local
35 SOSPeerSendBlock sendBlock = ^bool (CFDataRef message, CFErrorRef *error) {
71 ok(peer = SOSPeerCreateSimple(peer_id, kSOSPeerVersion, &error, sendBlock),
72 "create peer: %@", error);
73 CFReleaseNull(error);
80 ok(engine = SOSEngineCreate(ds, &error), "create engine: %@", error);
81 CFReleaseNull(error);
93 ok(false == SOSEngineHandleMessage(engine, peer, message, &error),
94 "handle empty message: %@", error);
174 CFErrorRef error = NULL; local
[all...]
/macosx-10.9.5/kext_tools-326.95.1/
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.9.5/OpenSSH-186/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)
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_utilities/
H A Dcssmerrors.h38 // A CSSM-originated error condition, represented by a CSSM_RETURN value.
39 // This can represent both a convertible base error, or a module-specific
40 // error condition.
46 const CSSM_RETURN error; member in class:Security::CssmError
51 static CSSM_RETURN merge(CSSM_RETURN error, CSSM_RETURN base);
53 static void check(CSSM_RETURN error) { if (error != CSSM_OK) throwMe(error); } argument
54 static void throwMe(CSSM_RETURN error) __attribute__((noreturn));
59 static CSSM_RETURN cssmError(CSSM_RETURN error, CSSM_RETUR
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_utilities/lib/
H A Dcssmerrors.h38 // A CSSM-originated error condition, represented by a CSSM_RETURN value.
39 // This can represent both a convertible base error, or a module-specific
40 // error condition.
46 const CSSM_RETURN error; member in class:Security::CssmError
51 static CSSM_RETURN merge(CSSM_RETURN error, CSSM_RETURN base);
53 static void check(CSSM_RETURN error) { if (error != CSSM_OK) throwMe(error); } argument
54 static void throwMe(CSSM_RETURN error) __attribute__((noreturn));
59 static CSSM_RETURN cssmError(CSSM_RETURN error, CSSM_RETUR
[all...]
/macosx-10.9.5/Security-55471.14.18/utilities/src/
H A Dder_plist.c36 CFPropertyListRef* pl, CFErrorRef *error,
47 return der_decode_null(allocator, mutability, (CFNullRef*)pl, error, der, der_end);
49 return der_decode_boolean(allocator, mutability, (CFBooleanRef*)pl, error, der, der_end);
51 return der_decode_data(allocator, mutability, (CFDataRef*)pl, error, der, der_end);
53 return der_decode_date(allocator, mutability, (CFDateRef*)pl, error, der, der_end);
55 return der_decode_array(allocator, mutability, (CFArrayRef*)pl, error, der, der_end);
57 return der_decode_string(allocator, mutability, (CFStringRef*)pl, error, der, der_end);
59 return der_decode_number(allocator, mutability, (CFNumberRef*)pl, error, der, der_end);
61 return der_decode_dictionary(allocator, mutability, (CFDictionaryRef*)pl, error, der, der_end);
63 SecCFDERCreateError(kSecDERErrorUnsupportedDERType, CFSTR("Unsupported DER Type"), NULL, error);
35 der_decode_plist(CFAllocatorRef allocator, CFOptionFlags mutability, CFPropertyListRef* pl, CFErrorRef *error, const uint8_t* der, const uint8_t *der_end) argument
69 der_sizeof_plist(CFPropertyListRef pl, CFErrorRef *error) argument
101 der_encode_plist(CFPropertyListRef pl, CFErrorRef *error, const uint8_t *der, uint8_t *der_end) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/utilities/utilities/
H A Dder_plist.c36 CFPropertyListRef* pl, CFErrorRef *error,
47 return der_decode_null(allocator, mutability, (CFNullRef*)pl, error, der, der_end);
49 return der_decode_boolean(allocator, mutability, (CFBooleanRef*)pl, error, der, der_end);
51 return der_decode_data(allocator, mutability, (CFDataRef*)pl, error, der, der_end);
53 return der_decode_date(allocator, mutability, (CFDateRef*)pl, error, der, der_end);
55 return der_decode_array(allocator, mutability, (CFArrayRef*)pl, error, der, der_end);
57 return der_decode_string(allocator, mutability, (CFStringRef*)pl, error, der, der_end);
59 return der_decode_number(allocator, mutability, (CFNumberRef*)pl, error, der, der_end);
61 return der_decode_dictionary(allocator, mutability, (CFDictionaryRef*)pl, error, der, der_end);
63 SecCFDERCreateError(kSecDERErrorUnsupportedDERType, CFSTR("Unsupported DER Type"), NULL, error);
35 der_decode_plist(CFAllocatorRef allocator, CFOptionFlags mutability, CFPropertyListRef* pl, CFErrorRef *error, const uint8_t* der, const uint8_t *der_end) argument
69 der_sizeof_plist(CFPropertyListRef pl, CFErrorRef *error) argument
101 der_encode_plist(CFPropertyListRef pl, CFErrorRef *error, const uint8_t *der, uint8_t *der_end) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/webdatabase/
H A DSQLStatementErrorCallback.idl32 [Custom] boolean handleEvent(SQLTransaction transaction, SQLError error);
/macosx-10.9.5/dtrace-118.1/libdwarf/
H A Dpro_error.h39 /* Handle error passing in the name of the Dwarf_P_Debug
42 The error argument to dwarf_error is hard coded here as 'error'
45 _dwarf_p_error(dbg,error,errval); return(retval);
51 void _dwarf_p_error(Dwarf_P_Debug dbg, Dwarf_Error * error,
H A Dpro_types.h44 Dwarf_Error * error);
H A Ddwarf_error.h38 void _dwarf_error(Dwarf_Debug dbg, Dwarf_Error * error,
/macosx-10.9.5/ksh-20/ksh/src/lib/libdll/
H A Ddlllib.h24 #include <error.h>
30 int error; member in struct:Dllstate_s
/macosx-10.9.5/xnu-2422.115.4/bsd/machine/
H A Dlimits.h8 #error architecture not supported
/macosx-10.9.5/xnu-2422.115.4/osfmk/machine/
H A Dcpu_capabilities.h37 #error architecture not supported
44 #error architecture not supported
/macosx-10.9.5/xnu-2422.115.4/security/
H A Dmac_port.c133 int error; local
136 error = MAC_INTERNALIZE(cred, label, string);
138 return (error);
145 int error; local
148 error = MAC_EXTERNALIZE(cred, label, elements, outbuf, outbuflen);
150 return (error);
157 int error; local
161 return (error);
167 int error; local
171 return (error);
177 int error; local
187 int error; local
197 int error; local
207 int error; local
217 int error; local
227 int error; local
237 int error; local
247 int error; local
257 int error; local
267 int error; local
277 int error; local
[all...]
/macosx-10.9.5/Security-55471.14.18/sec/SOSCircle/SecureObjectSync/
H A DSOSCloudCircle.c70 SOSCCStatus SOSCCThisDeviceIsInCircle(CFErrorRef *error) argument
76 do_if_registered(soscc_ThisDeviceIsInCircle, error);
78 xpc_object_t message = securityd_create_message(kSecXPCOpDeviceInCircle, error);
80 xpc_object_t response = securityd_message_with_reply_sync(message, error);
89 if (response && securityd_message_no_error(response, error))
92 SecCFCreateErrorWithFormat(0, sSecXPCErrorDomain, NULL, error, NULL, CFSTR("Remote error occurred/no info: %s"), desc);
107 static CFStringRef simple_cfstring_error_request(enum SecXPCOperation op, CFErrorRef* error) argument
112 securityd_send_sync_and_do(op, error, NULL, ^bool(xpc_object_t response, __unused CFErrorRef *error) {
124 simple_bool_error_request(enum SecXPCOperation op, CFErrorRef* error) argument
136 simple_int_error_request(enum SecXPCOperation op, CFErrorRef* error) argument
151 array_of_info_error_request(enum SecXPCOperation op, CFErrorRef* error) argument
167 info_array_to_bool_error_request(enum SecXPCOperation op, CFArrayRef peer_infos, CFErrorRef* error) argument
184 uint64_t_to_bool_error_request(enum SecXPCOperation op, uint64_t number, CFErrorRef* error) argument
201 SOSCCRequestToJoinCircle(CFErrorRef* error) argument
211 SOSCCRequestToJoinCircleAfterRestore(CFErrorRef* error) argument
221 SOSCCResetToOffering(CFErrorRef* error) argument
231 SOSCCResetToEmpty(CFErrorRef* error) argument
241 SOSCCRemoveThisDeviceFromCircle(CFErrorRef* error) argument
251 SOSCCBailFromCircle_BestEffort(uint64_t limit_in_seconds, CFErrorRef* error) argument
262 SOSCCCopyPeerPeerInfo(CFErrorRef* error) argument
272 SOSCCCopyConcurringPeerPeerInfo(CFErrorRef* error) argument
282 SOSCCCopyApplicantPeerInfo(CFErrorRef* error) argument
292 SOSCCAcceptApplicants(CFArrayRef applicants, CFErrorRef* error) argument
302 SOSCCRejectApplicants(CFArrayRef applicants, CFErrorRef *error) argument
312 label_and_password_to_bool_error_request(enum SecXPCOperation op, CFStringRef user_label, CFDataRef user_password, CFErrorRef* error) argument
332 SOSCCRegisterUserCredentials(CFStringRef user_label, CFDataRef user_password, CFErrorRef* error) argument
337 SOSCCSetUserCredentials(CFStringRef user_label, CFDataRef user_password, CFErrorRef* error) argument
347 SOSCCTryUserCredentials(CFStringRef user_label, CFDataRef user_password, CFErrorRef* error) argument
358 SOSCCCanAuthenticate(CFErrorRef* error) argument
367 SOSCCPurgeUserCredentials(CFErrorRef* error) argument
376 SOSCCGetLastDepartureReason(CFErrorRef *error) argument
385 SOSCCCopyIncompatibilityInfo(CFErrorRef* error) argument
394 SOSCCProcessSyncWithAllPeers(CFErrorRef* error) argument
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_pkcs12/
H A Dpkcsoids.h26 #error obsolete
/macosx-10.9.5/Security-55471.14.18/libsecurity_pkcs12/lib/
H A Dpkcsoids.h26 #error obsolete
/macosx-10.9.5/WebKit2-7537.78.2/Shared/API/c/efl/
H A DWKBaseEfl.h24 #error "Please #include \"WKBase.h\" instead of this file directly."
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/
H A Datf-c.h33 #include <atf-c/error.h>
/macosx-10.9.5/iodbc-42.5/iodbc/iodbcinst/
H A Diodbc_error.h80 /* Definition of the error code array */
90 #define PUSH_ERROR(error) \
93 ierror[++numerrors] = (error); \
97 #define POP_ERROR(error) \
101 (error) = ierror[numerrors--]; \
/macosx-10.9.5/ksh-20/ksh/src/lib/libcmd/
H A Dsync.c45 "[+>0?Option/operand syntax error.]"
62 error(2, "%s", opt_info.arg);
65 error(ERROR_usage(2), "%s", opt_info.arg);
72 error(ERROR_usage(2), "%s", optusage(NiL));
76 error(ERROR_usage(2), "failed -- the native system does not provide a sync(2) call");

Completed in 149 milliseconds

1234567891011>>