Searched refs:reason (Results 26 - 50 of 1404) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/Modules/websockets/
H A DCloseEvent.h48 String reason; member in struct:WebCore::CloseEventInit
58 static PassRefPtr<CloseEvent> create(bool wasClean, unsigned short code, const String& reason) argument
60 return adoptRef(new CloseEvent(wasClean, code, reason));
70 String reason() const { return m_reason; } function in class:WebCore::CloseEvent
83 CloseEvent(bool wasClean, int code, const String& reason) argument
87 , m_reason(reason)
95 , m_reason(initializer.reason)
H A DCloseEvent.idl37 [InitializedByEventConstructor] readonly attribute DOMString reason;
/macosx-10.10/WebCore-7600.1.25/bindings/objc/
H A DExceptionHandlers.mm55 NSString *reason;
57 reason = [[NSString alloc] initWithFormat:@"*** %s: %@ %d", description.name, exceptionName, description.code];
59 reason = [[NSString alloc] initWithFormat:@"*** %@ %d", exceptionName, description.code];
63 NSException *exception = [NSException exceptionWithName:exceptionName reason:reason userInfo:userInfo];
65 [reason release];
/macosx-10.10/emacs-93/emacs/lisp/emacs-lisp/
H A Dunsafep.el120 otherwise result is a reason why FORM is unsafe. UNSAFEP-VARS is a list
127 (reason (unsafep-function fun))
130 ((not reason)
141 (setq reason (unsafep-function (cadr arg))))
144 (setq reason (unsafep arg unsafep-vars)))
146 (setq reason `(unquoted ,arg))))
147 (or reason (unsafep-progn (cddr form))))
171 (setq reason (or (unsafep-variable (car arg) nil)
173 (if reason (throw 'unsafep reason))
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma/Math/
H A D15.8.2.14.js58 testcases[caseno].reason = Math.random();
61 if ( ! ( testcases[caseno].reason >= 0) ) {
65 if ( ! (testcases[caseno].reason < 1) ) {
79 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
/macosx-10.10/tcl-105/tcl_ext/memchan/memchan/win/
H A DdllEntry.c35 DWORD reason, /* Reason this function is being called. */
32 DllEntryPoint( HINSTANCE hInst, DWORD reason, LPVOID reserved) argument
/macosx-10.10/Security-57031.1.35/Security/include/security_cryptkit/
H A Dplatform.c27 void CKRaise(const char *reason) { argument
29 printf("CryptKit fatal error: %s\n", reason);
82 void CKRaise(const char *reason) { argument
84 printf("CryptKit fatal error: %s\n", reason);
110 void CKRaise(const char *reason) { argument
112 printf("CryptKit fatal error: %s\n", reason);
169 void CKRaise(const char *reason) { argument
171 printf("CryptKit fatal error: %s\n", reason);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cryptkit/lib/
H A Dplatform.c27 void CKRaise(const char *reason) { argument
29 printf("CryptKit fatal error: %s\n", reason);
82 void CKRaise(const char *reason) { argument
84 printf("CryptKit fatal error: %s\n", reason);
110 void CKRaise(const char *reason) { argument
112 printf("CryptKit fatal error: %s\n", reason);
169 void CKRaise(const char *reason) { argument
171 printf("CryptKit fatal error: %s\n", reason);
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-c/
H A Dtc.c153 * because the caller needs to clean up the reason object before terminating.
157 const atf_dynstr_t *reason)
162 if (arg == -1 && reason == NULL) {
165 } else if (arg == -1 && reason != NULL) {
167 atf_dynstr_cstring(reason)) <= 0)
169 } else if (arg != -1 && reason != NULL) {
171 arg, atf_dynstr_cstring(reason)) <= 0)
184 errno, "Failed to write results file; result %s, reason %s", result,
185 reason == NULL ? "null" : atf_dynstr_cstring(reason));
156 write_resfile(const int fd, const char *result, const int arg, const atf_dynstr_t *reason) argument
196 create_resfile(const char *resfile, const char *result, const int arg, atf_dynstr_t *reason) argument
227 atf_dynstr_t reason; local
270 expected_failure(struct context *ctx, atf_dynstr_t *reason) argument
279 fail_requirement(struct context *ctx, atf_dynstr_t *reason) argument
294 fail_check(struct context *ctx, atf_dynstr_t *reason) argument
329 skip(struct context *ctx, atf_dynstr_t *reason) argument
354 format_reason_ap(atf_dynstr_t *out_reason, const char *source_file, const size_t source_line, const char *reason, va_list ap) argument
379 format_reason_fmt(atf_dynstr_t *out_reason, const char *source_file, const size_t source_line, const char *reason, ...) argument
400 atf_dynstr_t reason; local
407 atf_dynstr_t reason; local
464 atf_dynstr_t reason; local
497 atf_dynstr_t reason; local
804 atf_dynstr_t reason; local
818 atf_dynstr_t reason; local
832 atf_dynstr_t reason; local
846 atf_dynstr_t reason; local
872 atf_dynstr_t reason; local
908 _atf_tc_expect_fail(struct context *ctx, const char *reason, va_list ap) argument
923 _atf_tc_expect_exit(struct context *ctx, const int exitcode, const char *reason, va_list ap) argument
940 _atf_tc_expect_signal(struct context *ctx, const int signo, const char *reason, va_list ap) argument
957 _atf_tc_expect_death(struct context *ctx, const char *reason, va_list ap) argument
973 _atf_tc_expect_timeout(struct context *ctx, const char *reason, va_list ap) argument
1004 atf_dynstr_t reason; local
1010 atf_dynstr_t reason; local
1151 atf_tc_expect_fail(const char *reason, ...) argument
1163 atf_tc_expect_exit(const int exitcode, const char *reason, ...) argument
1175 atf_tc_expect_signal(const int signo, const char *reason, ...) argument
1187 atf_tc_expect_death(const char *reason, ...) argument
1199 atf_tc_expect_timeout(const char *reason, ...) argument
[all...]
/macosx-10.10/Security-57031.1.35/SecurityTests/regressions/test/
H A Dtestmore.c45 void test_skip(const char *reason, int how_many, int unless) argument
52 test_ok(1, NULL, "skip", reason, __FILE__, __LINE__, NULL);
55 void test_bail_out(const char *reason, const char *file, unsigned line) argument
57 printf("BAIL OUT! (%s at line %u) %s\n", file, line, reason);
62 void test_plan_skip_all(const char *reason) argument
66 test_skip(reason, test_cases - test_num, 0);
149 test_diag(const char *directive, const char *reason, argument
182 const char *reason, const char *file, unsigned line,
196 reason ? " - " : "",
197 reason
181 test_ok(int passed, const char *description, const char *directive, const char *reason, const char *file, unsigned line, const char *fmt, ...) argument
[all...]
/macosx-10.10/apr-32/apr-util/apr-util/ldap/
H A Dapr_ldap_option.c71 result->reason = apr_pstrdup(pool, "LDAP: Could not get an option");
114 result->reason = "LDAP: Verify certificate not yet supported by APR on the "
140 result->reason = "LDAP: SSL/TLS not yet supported by APR on this "
150 result->reason = "LDAP: Could not set verify mode";
163 result->reason = "Unable to set LDAP_OPT_REFERRALS.";
187 result->reason = "Unable to set LDAP_OPT_REFHOPLIMIT.";
199 result->reason = "LDAP: Could not set an option";
243 result->reason = "LDAP: Could not switch SSL on for this "
248 result->reason = "LDAP: STARTTLS is not supported by the "
253 result->reason
[all...]
/macosx-10.10/postfix-255/postfix/src/global/
H A Ddsn.c13 /* const char *reason; /* human-readable text */
21 /* DSN *create(status, action, reason, dtype, dtext, mtype, mname)
24 /* const char *reason;
36 /* DSN *DSN_ASSIGN(dsn, status, action, reason, dtype, dtext,
41 /* const char *reason;
47 /* DSN *DSN_SIMPLE(dsn, status, action, reason)
51 /* const char *reason;
76 /* .IP reason
97 /* Panic: null or empty status or reason.
125 DSN *dsn_create(const char *status, const char *action, const char *reason, argument
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/ecma/ExecutionContexts/
H A D10.1.5-4.js51 var EVAL_STRING = 'if ( Object == null ) { testcases[0].reason += " Object == null" ; }' +
52 'if ( Function == null ) { testcases[0].reason += " Function == null"; }' +
53 'if ( String == null ) { testcases[0].reason += " String == null"; }' +
54 'if ( Array == null ) { testcases[0].reason += " Array == null"; }' +
55 'if ( Number == null ) { testcases[0].reason += " Function == null";}' +
56 'if ( Math == null ) { testcases[0].reason += " Math == null"; }' +
57 'if ( Boolean == null ) { testcases[0].reason += " Boolean == null"; }' +
58 'if ( Date == null ) { testcases[0].reason += " Date == null"; }' +
59 'if ( eval == null ) { testcases[0].reason += " eval == null"; }' +
60 'if ( parseInt == null ) { testcases[0].reason
[all...]
H A D10.1.5-2.js51 var EVAL_STRING = 'if ( Object == null ) { testcases[0].reason += " Object == null" ; }' +
52 'if ( Function == null ) { testcases[0].reason += " Function == null"; }' +
53 'if ( String == null ) { testcases[0].reason += " String == null"; }' +
54 'if ( Array == null ) { testcases[0].reason += " Array == null"; }' +
55 'if ( Number == null ) { testcases[0].reason += " Function == null";}' +
56 'if ( Math == null ) { testcases[0].reason += " Math == null"; }' +
57 'if ( Boolean == null ) { testcases[0].reason += " Boolean == null"; }' +
58 'if ( Date == null ) { testcases[0].reason += " Date == null"; }' +
59 'if ( eval == null ) { testcases[0].reason += " eval == null"; }' +
60 'if ( parseInt == null ) { testcases[0].reason
[all...]
/macosx-10.10/apr-32/apr/apr/misc/unix/
H A Dotherchild.c56 void (*maintenance) (int reason, void *, int status),
104 int reason,
115 (*ocr->maintenance) (reason, ocr->data, status);
122 int reason)
147 (*ocr->maintenance) (reason, ocr->data, -1);
169 (*ocr->maintenance) (reason, ocr->data, -1);
179 APR_DECLARE(void) apr_proc_other_child_refresh_all(int reason) argument
185 apr_proc_other_child_refresh(ocr, reason);
192 void (*maintenance) (int reason, void *, int status),
204 int reason,
55 apr_proc_other_child_register(apr_proc_t *proc, void (*maintenance) (int reason, void *, int status), void *data, apr_file_t *write_fd, apr_pool_t *p) argument
121 apr_proc_other_child_refresh(apr_other_child_rec_t *ocr, int reason) argument
191 apr_proc_other_child_register(apr_proc_t *proc, void (*maintenance) (int reason, void *, int status), void *data, apr_file_t *write_fd, apr_pool_t *p) argument
210 apr_proc_other_child_refresh(apr_other_child_rec_t *ocr, int reason) argument
216 apr_proc_other_child_refresh_all(int reason) argument
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/Array/
H A Dslice.js74 var reason = "";
92 reason = reason + errorMessage;
98 testCase.reason = reason;
116 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
/macosx-10.10/JavaScriptCore-7600.1.17/tests/mozilla/js1_2/String/
H A Dslice.js74 var reason = "";
92 reason = reason + errorMessage;
98 testCase.reason = reason;
116 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
/macosx-10.10/ICU-531.30/icuSources/common/unicode/
H A Ducnv_err.h171 UCNV_RESET = 3, /**< The callback is called with this reason when a
230 * @param reason Defines the reason the callback was invoked
240 UConverterCallbackReason reason,
254 * @param reason Defines the reason the callback was invoked
263 UConverterCallbackReason reason,
280 * @param reason Defines the reason the callback was invoked
291 UConverterCallbackReason reason,
[all...]
/macosx-10.10/ICU-531.30/icuSources/samples/ucnv/
H A Dflagcb.h37 UConverterCallbackReason reason,
55 UConverterCallbackReason reason,
/macosx-10.10/JavaScriptCore-7600.1.17/icu/unicode/
H A Ducnv_err.h171 UCNV_RESET = 3, /**< The callback is called with this reason when a
230 * @param reason Defines the reason the callback was invoked
240 UConverterCallbackReason reason,
254 * @param reason Defines the reason the callback was invoked
263 UConverterCallbackReason reason,
280 * @param reason Defines the reason the callback was invoked
291 UConverterCallbackReason reason,
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/profiler/
H A DProfilerJettisonReason.cpp35 void printInternal(PrintStream& out, JettisonReason reason) argument
37 switch (reason) {
/macosx-10.10/OpenSSL098-52/src/crypto/buffer/
H A Dbuf_err.c58 * only reason strings will be preserved.
69 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_BUF,0,reason)
/macosx-10.10/OpenSSL098-52/src/crypto/comp/
H A Dcomp_err.c58 * only reason strings will be preserved.
69 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_COMP,0,reason)
/macosx-10.10/OpenSSL098-52/src/crypto/
H A Dcpt_err.c58 * only reason strings will be preserved.
69 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_CRYPTO,0,reason)
/macosx-10.10/OpenSSL098-52/src/crypto/ecdh/
H A Dech_err.c58 * only reason strings will be preserved.
69 #define ERR_REASON(reason) ERR_PACK(ERR_LIB_ECDH,0,reason)

Completed in 251 milliseconds

1234567891011>>