Searched refs:reason (Results 476 - 500 of 1317) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_4/
H A Dshell.js21 testcases[tc].reason += ( testcases[tc].passed ) ? "" : "wrong value ";
40 this.reason = "";
/macosx-10.9.5/WebCore-7537.78.1/Modules/websockets/
H A DThreadableWebSocketChannelClientWrapper.h86 void didClose(unsigned long unhandledBufferedAmount, WebSocketChannelClient::ClosingHandshakeCompletionStatus, unsigned short code, const String& reason);
102 static void didCloseCallback(ScriptExecutionContext*, PassRefPtr<ThreadableWebSocketChannelClientWrapper>, unsigned long unhandledBufferedAmount, WebSocketChannelClient::ClosingHandshakeCompletionStatus, unsigned short code, const String& reason);
H A DWebSocketChannel.h78 virtual void close(int code, const String& reason) OVERRIDE; // Start closing handshake.
79 virtual void fail(const String& reason) OVERRIDE;
136 void startClosingHandshake(int code, const String& reason);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/mac/
H A DCorrectionPanel.mm93 String CorrectionPanel::dismiss(ReasonForDismissingAlternativeText reason)
95 return dismissInternal(reason, true);
98 String CorrectionPanel::dismissInternal(ReasonForDismissingAlternativeText reason, bool dismissingExternally)
104 m_reasonForDismissing = reason;
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/test/
H A Dtestoc.c28 static void ocmaint(int reason, void *data, int status) argument
30 switch (reason) {
/macosx-10.9.5/apr-30/apr/apr/test/
H A Dtestoc.c28 static void ocmaint(int reason, void *data, int status) argument
30 switch (reason) {
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DSecPassword.cpp133 uint32_t reason, tries; local
156 reason = 34; // passphraseUnacceptable = 34 passphrase unacceptable for some other reason
158 reason = 21; // invalidPassphrase = 21 passphrase was wrong
162 reason = 0;
173 AuthorizationItem envRights[6] = { { AGENT_HINT_RETRY_REASON, sizeof(reason), &reason, 0 },
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DSecPassword.cpp133 uint32_t reason, tries; local
156 reason = 34; // passphraseUnacceptable = 34 passphrase unacceptable for some other reason
158 reason = 21; // invalidPassphrase = 21 passphrase was wrong
162 reason = 0;
173 AuthorizationItem envRights[6] = { { AGENT_HINT_RETRY_REASON, sizeof(reason), &reason, 0 },
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DSecPassword.cpp133 uint32_t reason, tries; local
156 reason = 34; // passphraseUnacceptable = 34 passphrase unacceptable for some other reason
158 reason = 21; // invalidPassphrase = 21 passphrase was wrong
162 reason = 0;
173 AuthorizationItem envRights[6] = { { AGENT_HINT_RETRY_REASON, sizeof(reason), &reason, 0 },
/macosx-10.9.5/libauto-185.5/auto_tester/
H A Dcompaction.m97 // scan for the reason.
98 NSString *reason = @"object was pinned.";
101 reason = [NSString stringWithFormat:@"object was pinned, reason = %s", token];
105 [self setTestResult:PASSED message:reason];
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Ddsn_buf.c21 /* VSTRING *reason; /* informal text */
130 /* The informal reason format.
183 dsb->reason = vstring_alloc(100);
198 vstring_free(dsb->reason);
251 vstring_vsprintf(dsb->reason, format, ap);
270 vstring_vsprintf(dsb->reason, format, ap);
290 vstring_vsprintf(dsb->reason, format, ap);
332 DSB_TRUNCATE(dsb->reason);
/macosx-10.9.5/Security-55471.14.18/authd/
H A Dengine.c56 enum Reason reason; member in struct:_engine_s
140 engine->reason = noReason;
264 _evaluate_credential_for_rule(engine_t engine, credential_t cred, rule_t rule, bool ignoreShared, bool sessionOwner, enum Reason * reason) argument
271 if (reason) { *reason = unknownReason; }
278 if (reason) { *reason = unknownReason; }
282 return _evaluate_user_credential_for_rule(engine,cred,rule,ignoreShared,sessionOwner, reason);
287 _evaluate_user_credential_for_rule(engine_t engine, credential_t cred, rule_t rule, bool ignoreShared, bool sessionOwner, enum Reason * reason) argument
304 if (reason) { *reaso
452 enum Reason reason = worldChanged; local
[all...]
/macosx-10.9.5/ipsec-258.100.1/ipsec-tools/racoon/
H A DipsecSessionTracer.c285 ipsecSessionTracerLogStop (ike_session_t *session, int caused_by_failure, const char *reason) argument
297 (reason && reason != ike_session_stopped_by_flush && reason != ike_session_stopped_by_vpn_disconnect)) {
302 if (reason) {
304 snprintf(nat_buf, sizeof(nat_buf), "%s. NAT detected by Me", reason);
307 snprintf(nat_buf, sizeof(nat_buf), "%s. NAT detected by Peer", reason);
310 asl_set(m, "com.apple.message.signature", reason);
313 // reason was NULL; make sure success/failure have different signature
333 ipsecSessionTracerStop (ike_session_t *session, int caused_by_failure, const char *reason) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DDebuggerModel.js308 this._pausedScript(callFrames, this._debuggerPausedDetails.reason, this._debuggerPausedDetails.auxData);
348 * @param {string} reason
351 _pausedScript: function(callFrames, reason, auxData)
353 this._setDebuggerPausedDetails(new WebInspector.DebuggerPausedDetails(this, callFrames, reason, auxData));
597 this._pausedScript(newCallFrames, this._debuggerPausedDetails.reason, this._debuggerPausedDetails.auxData);
624 * @param {string} reason
627 paused: function(callFrames, reason, auxData)
629 this._debuggerModel._pausedScript(callFrames, reason, auxData);
821 * @param {string} reason
824 WebInspector.DebuggerPausedDetails = function(model, callFrames, reason, auxDat
[all...]
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-report/
H A Dreader.cpp145 impl::atf_tps_reader::got_tp_end(const std::string& reason) argument
166 const std::string& reason)
243 std::string reason; local
245 reason = text::trim(p.rest_of_line());
246 if (reason.empty())
248 "Empty reason for failed test program");
252 ATF_PARSER_CALLBACK(p, got_tp_end(reason));
326 std::string reason = text::trim(p.rest_of_line()); local
327 if (reason.empty())
328 throw parse_error(t.lineno(), "Empty reason fo
165 got_tc_end(const std::string& state, const std::string& reason) argument
[all...]
H A Dreader_test.cpp68 got_tp_end(const std::string& reason) argument
70 m_calls.push_back("got_tp_end(" + reason + ")");
80 got_tc_end(const std::string& state, const std::string& reason) argument
82 const std::string r = state + (reason.empty() ? "" : ", " + reason);
182 "tc-end: second-test, skipped, Testing skipped reason\n"
184 "tc-end: third-test, failed, Testing failed reason\n"
198 "tc-end: second-test, skipped, Testing skipped reason\n"
204 "tc-end: third-test, failed, Testing failed reason\n"
214 "got_tc_end(skipped, Testing skipped reason)",
[all...]
/macosx-10.9.5/CommonCrypto-60049/test/test/
H A Dtestmore.h179 void test_bail_out(const char *reason, const char *file, unsigned line);
180 int test_diag(const char *directive, const char *reason,
183 const char *reason, const char *file, unsigned line, const char *fmt, ...);
184 void test_plan_skip_all(const char *reason);
186 void test_skip(const char *reason, int how_many, int unless);
/macosx-10.9.5/Security-55471.14.18/regressions/test/
H A Dtestmore.h188 void test_bail_out(const char *reason, const char *file, unsigned line);
189 int test_diag(const char *directive, const char *reason,
192 const char *reason, const char *file, unsigned line, const char *fmt, ...);
193 void test_plan_skip_all(const char *reason);
195 void test_skip(const char *reason, int how_many, int unless);
/macosx-10.9.5/Security-55471.14.18/utilities/src/
H A Ddebugging.c264 static void __security_simulatecrash_link(CFStringRef reason, uint32_t code) argument
281 __SimulateCrash(getpid(), code, reason); local
290 void __security_simulatecrash(CFStringRef reason, uint32_t code) argument
292 secerror("Simulating crash, reason: %@, code=%08x", reason, code);
293 __security_simulatecrash_link(reason, code);
/macosx-10.9.5/Security-55471.14.18/utilities/utilities/
H A Ddebugging.c264 static void __security_simulatecrash_link(CFStringRef reason, uint32_t code) argument
281 __SimulateCrash(getpid(), code, reason); local
290 void __security_simulatecrash(CFStringRef reason, uint32_t code) argument
292 secerror("Simulating crash, reason: %@, code=%08x", reason, code);
293 __security_simulatecrash_link(reason, code);
/macosx-10.9.5/apache-786.1/httpd/modules/aaa/
H A Dmod_authz_dbm.c151 char *reason = NULL; local
208 reason = apr_psprintf(r->pool,
227 reason = apr_psprintf(r->pool,
258 "Authorization of user %s to access %s failed, reason: %s",
260 reason ? reason : "user is not part of the "
/macosx-10.9.5/postfix-252/postfix/src/smtp/
H A Dsmtp_trouble.c99 /* with the reason why the host is being skipped; final server:
201 msg_info("%s: %s", request->queue_id, STR(why->reason));
290 VSTRING_RESET(why->reason);
292 vstring_strcpy(why->reason, "Protocol error: ");
295 vstring_vsprintf_append(why->reason, format, ap);
382 msg_info("%s: %s", request->queue_id, STR(why->reason));
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/nns/
H A Dnns.tcl213 upvar 1 id id chan chan reason reason
218 log::debug [list LOST @ $sid - $reason]
231 uevent::generate nameserv lost-connection [list reason $reason]
/macosx-10.9.5/apache-786.1/httpd/modules/cache/
H A Dmod_cache.c349 char *reason; local
367 reason = NULL;
494 reason = apr_psprintf(p, "Response status %d", r->status);
498 if (reason) {
503 reason = apr_pstrcat(p, "Broken expires header: ", exps, NULL);
508 reason = "Expires header already expired, not cacheable";
516 reason = "Query string present but no explicit expiration time";
523 reason = "HTTP Status 304 Not Modified";
536 reason = "No Last-Modified, Etag, Expires, Cache-Control:max-age or Cache-Control:s-maxage headers";
540 reason
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Ddirent-test.c77 void fail_test(const char * reason, ...) argument
81 va_start(args, reason);
82 vfprintf(stderr, reason, args);

Completed in 587 milliseconds

<<11121314151617181920>>