Searched refs:failures (Results 1 - 25 of 91) sorted by last modified time

1234

/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/login.tproj/
H A Dlogin.c182 static int failures; variable
275 if (failures)
427 * Note if trying multiple user names; log failures for
431 if (failures && strcmp(olduser, username) != 0) {
432 if (failures > (pwd ? 0 : 1))
557 failures++;
1410 if (failures == 0)
1414 failures, failures > 1 ? "S" : "", hostname);
1417 failures, failure
[all...]
/macosx-10.9.5/system_cmds-597.90.1/login.tproj/
H A Dlogin.c182 static int failures; variable
275 if (failures)
427 * Note if trying multiple user names; log failures for
431 if (failures && strcmp(olduser, username) != 0) {
432 if (failures > (pwd ? 0 : 1))
557 failures++;
1410 if (failures == 0)
1414 failures, failures > 1 ? "S" : "", hostname);
1417 failures, failure
[all...]
/macosx-10.9.5/cups-372.4/cups/cups/
H A Dtesthttp.c221 int failures; /* Number of test failures */ local
262 failures = 0;
282 failures ++;
307 failures ++;
321 failures ++;
347 failures ++;
383 failures ++;
406 failures ++;
470 failures
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/utils/unittest/googletest/
H A Dgtest.cc196 " should catch exceptions and treat them as test failures.");
536 // results. Intercepts only failures from the current thread.
617 << " Actual: " << results.size() << " failures";
3162 // <-- individual assertion failures
3219 int failures = 0; local
3223 if (++failures == 1)
3237 if (failures == 0)
3247 " <testsuite name=\"%s\" tests=\"%d\" failures=\"%d\" "
3269 "<testsuites tests=\"%d\" failures=\"%d\" disabled=\"%d\" "
4175 // We want to preserve failures generate
[all...]
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dauth.c267 authctxt->failures >= options.max_authtries / 2 ||
H A Dauth.h59 int failures; member in struct:Authctxt
213 #define AUTH_FAIL_MSG "Too many authentication failures for %.100s"
H A Dauth1.c288 if (authctxt->failures >= options.max_authtries)
367 if (++authctxt->failures >= options.max_authtries) {
H A Dauth2.c232 debug("attempt %d failures %d", authctxt->attempt, authctxt->failures);
287 if (m != NULL && authctxt->failures < options.max_authtries) {
368 authctxt->failures++;
369 if (authctxt->failures >= options.max_authtries) {
H A Dmonitor.c445 authctxt->failures++;
/macosx-10.9.5/apache-786.1/httpd/modules/aaa/
H A Dmod_authnz_ldap.c360 int failures = 0; local
435 if (failures++ <= 5) {
1150 "Set to 'on' to return failures when user-specific bind fails - defaults to on."),
/macosx-10.9.5/libxml2-26/libxml2/
H A Druntest.c2860 int failures = 0; local
2877 failures++;
2881 failures++;
2887 return(failures);
/macosx-10.9.5/curl-78.94.1/curl/tests/
H A Druntests.pl3306 # once that the client command has run to avoid false test failures.
3310 # run to avoid false test failures.
4506 -t[N] torture (simulate memory alloc failures); N means fail Nth alloc
/macosx-10.9.5/JavaScriptCore-7537.78.1/jit/
H A DJIT.h849 void emitLoadCharacterString(RegisterID src, RegisterID dst, JumpList& failures);
H A DJITInlines.h79 ALWAYS_INLINE void JIT::emitLoadCharacterString(RegisterID src, RegisterID dst, JumpList& failures) argument
81 failures.append(branchPtr(NotEqual, Address(src, JSCell::structureOffset()), TrustedImmPtr(m_vm->stringStructure.get())));
82 failures.append(branch32(NotEqual, MacroAssembler::Address(src, ThunkHelpers::jsStringLengthOffset()), TrustedImm32(1)));
84 failures.append(branchTest32(Zero, dst));
H A DJITPropertyAccess.cpp59 JumpList failures; local
60 failures.append(jit.branchPtr(NotEqual, Address(regT0, JSCell::structureOffset()), TrustedImmPtr(vm->stringStructure.get())));
65 failures.append(jit.branchTest32(Zero, regT0));
68 failures.append(jit.branch32(AboveOrEqual, regT1, regT2));
83 failures.append(jit.branch32(AboveOrEqual, regT0, TrustedImm32(0x100)));
88 failures.link(&jit);
H A DJITPropertyAccess32_64.cpp98 JumpList failures; local
99 failures.append(jit.branchPtr(NotEqual, Address(regT0, JSCell::structureOffset()), TrustedImmPtr(vm->stringStructure.get())));
104 failures.append(jit.branchTest32(Zero, regT0));
107 failures.append(jit.branch32(AboveOrEqual, regT2, regT1));
123 failures.append(jit.branch32(AboveOrEqual, regT0, TrustedImm32(0x100)));
129 failures.link(&jit);
H A DJITArithmetic.cpp379 JumpList failures; local
380 failures.append(emitJumpIfNotImmediateNumber(regT0)); // op1 is not a double
383 failures.append(branchTruncateDoubleToInt32(fpRegT0, regT0));
387 failures.append(branch32(LessThan, regT0, TrustedImm32(0)));
391 failures.link(this);
401 JumpList failures; local
402 failures.append(emitJumpIfNotImmediateNumber(regT0)); // op1 is not a double
405 failures.append(branchTruncateDoubleToInt32(fpRegT0, regT0));
406 failures.append(emitJumpIfNotImmediateInteger(regT1)); // op2 is not an int
409 failures
437 JumpList failures; local
446 JumpList failures; local
[all...]
H A DJITArithmetic32_64.cpp97 JumpList failures; local
98 emitLoadCharacterString(regT0, regT0, failures);
99 addSlowCase(failures);
106 JumpList failures; local
107 emitLoadCharacterString(regT0, regT0, failures);
108 addSlowCase(failures);
253 JumpList failures; local
254 failures.append(branch32(AboveOrEqual, regT1, TrustedImm32(JSValue::LowestTag)));
256 failures.append(branchTruncateDoubleToInt32(fpRegT0, regT0));
263 failures
277 JumpList failures; local
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/
H A DtestRegExp.cpp408 unsigned failures = 0; local
446 failures++;
459 if (failures)
460 printf("%u tests run, %u failures\n", tests, failures);
/macosx-10.9.5/JavaScriptCore-7537.78.1/yarr/
H A DYarrJIT.cpp132 void matchCharacterClassRange(RegisterID character, JumpList& failures, JumpList& matchDest, const CharacterRange* ranges, unsigned count, unsigned* matchIndex, const UChar* matches, unsigned matchCount) argument
147 matchCharacterClassRange(character, failures, matchDest, ranges, which, matchIndex, matches, matchCount);
153 failures.append(jump());
159 matchCharacterClassRange(character, failures, matchDest, ranges, which, matchIndex, matches, matchCount);
160 failures.append(jump());
164 failures.append(branch32(LessThan, character, Imm32((unsigned short)lo)));
214 JumpList failures; local
215 matchCharacterClassRange(character, failures, matchDest, charClass->m_ranges.begin(), charClass->m_ranges.size(), &matchIndex, charClass->m_matches.begin(), charClass->m_matches.size());
219 failures.link(this);
910 JumpList failures; local
1054 JumpList failures; local
[all...]
/macosx-10.9.5/sudo-72/src/
H A Dconfigure1591 --with-badpri syslog priority for failures (def is "alert")
4297 { $as_echo "$as_me:${as_lineno-$LINENO}: checking at which syslog priority to log failures" >&5
4298 $as_echo_n "checking at which syslog priority to log failures... " >&6; }
/macosx-10.9.5/CPANInternal-140/Class-DBI-v3.0.17/lib/Class/
H A DDBI.pm1901 name in the hash. Each trigger is called inside an eval. Any failures
/macosx-10.9.5/CPANInternal-140/Class-Trigger-0.14/lib/Class/
H A DTrigger.pm246 values will be captured by call_trigger, but failures will be ignored.
/macosx-10.9.5/CPANInternal-140/Crypt-SSLeay-0.64/
H A DSSLeay.pm141 custom location. If everything builds OK, but you get failures when during
411 I<Jeff Lavallee> for help with alarms on read failures (CPAN bug #12444).
/macosx-10.9.5/CPANInternal-140/Mail-Sender-0.8.22/
H A DSender.pm3045 You should keep in mind that the way Mail::Sender reports failures depends on the 'on_errors'=>

Completed in 334 milliseconds

1234