/frameworks/base/core/tests/coretests/src/android/os/ |
IdleHandlerTest.java | 77 failure(new RuntimeException( 113 failure(new RuntimeException( 148 failure(new RuntimeException( 184 failure(new RuntimeException(
|
BroadcasterTest.java | 56 failure(); 91 failure(); method 155 failure(); 190 failure(); 226 failure();
|
HandlerTester.java | 55 public void failure() { method in class:HandlerTester
|
/external/chromium/chrome/browser/chromeos/login/ |
login_performer.cc | 60 void LoginPerformer::OnLoginFailure(const LoginFailure& failure) { 62 UMA_HISTOGRAM_ENUMERATION("Login.FailureReason", failure.reason(), 65 DVLOG(1) << "failure.reason " << failure.reason(); 66 DVLOG(1) << "failure.error.state " << failure.error().state(); 68 last_login_failure_ = failure; 72 if (failure.reason() == LoginFailure::NETWORK_AUTH_FAILED && 73 failure.error().state() == GoogleServiceAuthError::CAPTCHA_REQUIRED) { 74 captcha_token_ = failure.error().captcha().token [all...] |
existing_user_controller.cc | 244 void ExistingUserController::OnLoginFailure(const LoginFailure& failure) { 246 std::string error = failure.GetErrorString(); 261 if (failure.reason() == LoginFailure::NETWORK_AUTH_FAILED && 262 failure.error().state() == GoogleServiceAuthError::CAPTCHA_REQUIRED) { 263 if (!failure.error().captcha().image_url.is_empty()) { 265 new CaptchaView(failure.error().captcha().image_url, false); 276 } else if (failure.reason() == LoginFailure::NETWORK_AUTH_FAILED && 277 failure.error().state() == 280 } else if (failure.reason() == LoginFailure::NETWORK_AUTH_FAILED && 281 failure.error().state() = [all...] |
parallel_authenticator_unittest.cc | 172 void ExpectLoginFailure(const LoginFailure& failure) { 173 EXPECT_CALL(consumer_, OnLoginFailure(failure)) 525 LoginFailure failure = LoginFailure::FromNetworkAuthFailure(error); local 526 state_.release()->PresetOnlineLoginStatus(result_, failure); 527 ExpectLoginFailure(failure); 558 LoginFailure failure = LoginFailure::FromNetworkAuthFailure(error); local 559 state_.release()->PresetOnlineLoginStatus(result_, failure); 560 ExpectLoginFailure(failure); 596 LoginFailure failure = LoginFailure::FromNetworkAuthFailure(error); local 597 state_.release()->PresetOnlineLoginStatus(result_, failure); 642 LoginFailure failure = LoginFailure::FromNetworkAuthFailure(error); local 669 LoginFailure failure = local [all...] |
/external/dbus/bus/ |
test-launch-helper.c | 34 die (const char *failure) 36 fprintf (stderr, "Unit test failed: %s\n", failure);
|
test-main.c | 36 die (const char *failure) 38 fprintf (stderr, "Unit test failed: %s\n", failure);
|
/external/emma/core/java12/com/vladium/emma/data/ |
MergeProcessor.java | 128 RuntimeException failure = null; local 304 failure = new EMMARuntimeException (SECURITY_RESTRICTION, new String [] {IAppConstants.APP_NAME}, se); 308 failure = re; 315 if (failure != null) 317 if (Exceptions.unexpectedFailure (failure, EXPECTED_FAILURES)) 320 new Object [] {failure.toString (), IAppConstants.APP_BUG_REPORT_LINK}, 321 failure); 324 throw failure;
|
/external/emma/core/java12/com/vladium/emma/report/ |
ReportProcessor.java | 159 RuntimeException failure = null; local 278 failure = new EMMARuntimeException (SECURITY_RESTRICTION, new String [] {IAppConstants.APP_NAME}, se); 282 failure = re; 289 if (failure != null) 291 if (Exceptions.unexpectedFailure (failure, EXPECTED_FAILURES)) 294 new Object [] {failure.toString (), IAppConstants.APP_BUG_REPORT_LINK}, 295 failure); 298 throw failure;
|
/external/icu4c/test/intltest/ |
dtfmtrtts.h | 76 UBool failure(UErrorCode status, const char* msg); 77 UBool failure(UErrorCode status, const char* msg, const UnicodeString& str);
|
dtfmrgts.cpp | 73 if (failure(status, "SimpleDateFormat::createDateInstance")) { 95 failure(status, "sdf->parse"); 104 failure(status, "sdf->parse"); 227 if (failure(status, "new SimpleDateFormat", TRUE)) { 233 failure(status, "fmt->setTwoDigitStartDate"); 234 if( (fmt->get2DigitYearStart(status) != start) || failure(status, "get2DigitStartDate")) 261 failure(status, "fmt->parse"); 286 if (failure(status, "new SimpleDateFormat", TRUE)) return; 294 if(failure(status, "new SimpleDateFormat")) return; 320 failure(status, "fmt->format") [all...] |
caltztst.h | 28 // Return true if the given status indicates failure. Also has the side effect 30 UBool failure(UErrorCode status, const char* msg, UBool possibleDataError=FALSE);
|
tzregts.h | 55 UBool failure(UErrorCode status, const char* msg);
|
/external/openssh/contrib/redhat/ |
sshd.init | 33 failure $"Configuration file or keys are invalid" 50 $SSHD $OPTIONS && success || failure
|
/external/protobuf/gtest/test/ |
gtest_environment_test.cc | 54 // generate a non-fatal failure, generate a fatal failure, or 61 ADD_FAILURE() << "Expected non-fatal failure in global set-up."; 64 FAIL() << "Expected fatal failure in global set-up."; 71 // Generates a non-fatal failure. 74 ADD_FAILURE() << "Expected non-fatal failure in global tear-down."; 84 // We call this function to set the type of failure SetUp() should 120 // The 'failure' parameter specifies the type of failure that should 122 int RunAllTests(MyEnvironment* env, FailureType failure) { [all...] |
/external/qemu/android/ |
android-device.h | 136 * failure - Zero indicates that connection with the device has been successfuly 137 * established. Non-zero vaule passed in this parameter indicates a failure, 138 * and contains 'errno'-reason for failure. 140 typedef void (*device_connected_cb)(void* opaque, AndroidDevice* ad, int failure); 154 /* Callback routine that is invoked when an I/O failure occurs on a channel. 159 * failure - Contains 'errno' indicating the reason for failure. 161 typedef void (*io_failure_cb)(void* opaque, AndroidDevice* ad, int failure); 187 * on_io_failure - Callback to invoke when an I/O failure occurs on a channel 190 * Initialized android device descriptor on success, or NULL on failure [all...] |
/external/webkit/Source/WebKit/mac/History/ |
WebHistoryItemPrivate.h | 40 - (void)_setLastVisitWasFailure:(BOOL)failure;
|
/libcore/support/src/test/java/tests/support/ |
Support_Exec.java | 92 Throwable failure; local 97 failure = err.length() > 0 101 failure = e; 104 if (failure != null) { 107 error.initCause(failure);
|
/external/chromium/net/base/ |
keygen_handler_mac.cc | 131 goto failure; 139 goto failure; 147 goto failure; 167 goto failure; 173 goto failure; 185 goto failure; 193 failure:
|
/external/openssh/regress/ |
cert-userkey.sh | 286 test_one "host-certificate" failure "-n ${USER} -h" 287 test_one "wrong principals" failure "-n foo" 288 test_one "cert not yet valid" failure "-n ${USER} -V20200101:20300101" 289 test_one "cert expired" failure "-n ${USER} -V19800101:19900101" 291 test_one "wrong source-address" failure "-n ${USER} -Osource-address=10.0.0.0/8" 292 test_one "force-command" failure "-n ${USER} -Oforce-command=false" 296 test_one "empty principals" failure "" TrustedUserCAKeys 306 test_one "AuthorizedPrincipalsFile no principals" failure "" \ 313 test_one "principals key option no principals" failure "" \
|
/libcore/luni/src/test/java/libcore/util/ |
SerializationTester.java | 76 Error failure = new AssertionFailedError(); local 77 failure.initCause(e); 78 throw failure;
|
/external/chromium/third_party/libjingle/source/talk/xmpp/ |
saslmechanism.cc | 52 SaslMechanism::HandleSaslFailure(const XmlElement * failure) {
|
/external/clang/lib/Frontend/ |
FrontendAction.cpp | 166 goto failure; 181 goto failure; 194 goto failure; 199 goto failure; 220 goto failure; 234 goto failure; 244 goto failure; 253 goto failure; 274 goto failure; 279 goto failure; [all...] |
/external/chromium/testing/gtest/test/ |
gtest_environment_test.cc | 58 // generate a non-fatal failure, generate a fatal failure, or 65 ADD_FAILURE() << "Expected non-fatal failure in global set-up."; 68 FAIL() << "Expected fatal failure in global set-up."; 75 // Generates a non-fatal failure. 78 ADD_FAILURE() << "Expected non-fatal failure in global tear-down."; 88 // We call this function to set the type of failure SetUp() should 124 // The 'failure' parameter specifies the type of failure that should 126 int RunAllTests(MyEnvironment* env, FailureType failure) { [all...] |