OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:auth_error
(Results
1 - 25
of
30
) sorted by null
1
2
/external/chromium/chrome/browser/sync/
sync_ui_util.cc
35
void GetStatusLabelsForAuthError(const AuthError&
auth_error
,
40
if (
auth_error
.state() == AuthError::INVALID_GAIA_CREDENTIALS ||
41
auth_error
.state() == AuthError::ACCOUNT_DELETED ||
42
auth_error
.state() == AuthError::ACCOUNT_DISABLED) {
51
} else if (
auth_error
.state() == AuthError::SERVICE_UNAVAILABLE) {
55
} else if (
auth_error
.state() == AuthError::CONNECTION_FAILED) {
103
const AuthError&
auth_error
= service->GetAuthError();
local
112
DCHECK_EQ(
auth_error
.state(), AuthError::NONE);
137
} else if (
auth_error
.state() != AuthError::NONE) {
139
GetStatusLabelsForAuthError(
auth_error
, service
150
const AuthError&
auth_error
= service->GetAuthError();
local
[
all
...]
js_sync_manager_observer.h
35
virtual void OnAuthError(const GoogleServiceAuthError&
auth_error
);
js_sync_manager_observer.cc
60
const GoogleServiceAuthError&
auth_error
) {
62
return_args.Append(
auth_error
.ToValue());
/external/chromium/chrome/common/net/gaia/
gaia_authenticator.cc
29
GaiaAuthenticator::AuthResults::AuthResults() :
auth_error
(None) {}
105
results.
auth_error
, this };
122
results->
auth_error
= ConnectionUnavailable;
177
results->
auth_error
= ConnectionUnavailable;
194
results->
auth_error
= Unknown;
340
results->
auth_error
= BadAuthentication;
342
results->
auth_error
= NotVerified;
344
results->
auth_error
= TermsNotAgreed;
346
results->
auth_error
= Unknown;
348
results->
auth_error
= AccountDeleted
[
all
...]
gaia_authenticator.h
149
enum AuthenticationError
auth_error
;
member in struct:gaia::GaiaAuthenticator::AuthResults
228
inline enum AuthenticationError
auth_error
() const {
function in class:gaia::GaiaAuthenticator
230
return auth_results_.
auth_error
;
/external/chromium_org/chrome/browser/sync/
sync_ui_util.cc
156
AuthError
auth_error
=
local
159
if (
auth_error
.state() != AuthError::NONE) {
219
AuthError
auth_error
=
local
231
} else if (
auth_error
.state() != AuthError::NONE &&
232
auth_error
.state() != AuthError::TWO_FACTOR) {
sync_ui_util_unittest.cc
58
GoogleServiceAuthError
auth_error
(error_state);
59
EXPECT_CALL(*service, GetAuthError()).WillRepeatedly(ReturnRef(
auth_error
));
113
GoogleServiceAuthError
auth_error
(
115
EXPECT_CALL(service, GetAuthError()).WillRepeatedly(ReturnRef(
auth_error
));
sync_global_error_unittest.cc
109
GoogleServiceAuthError
auth_error
(error_state);
110
EXPECT_CALL(*service, GetAuthError()).WillRepeatedly(ReturnRef(
auth_error
));
profile_sync_service.cc
1228
const GoogleServiceAuthError
auth_error
=
local
[
all
...]
/external/chromium_org/chrome/browser/chromeos/login/
online_attempt_unittest.cc
203
GoogleServiceAuthError
auth_error
=
local
208
RunFailureTest(
auth_error
);
/external/chromium/chrome/browser/chromeos/login/
online_attempt_unittest.cc
257
GoogleServiceAuthError
auth_error
=
local
262
RunFailureTest(
auth_error
);
google_authenticator_unittest.cc
416
GoogleServiceAuthError
auth_error
=
local
422
LoginFailure failure = LoginFailure::FromNetworkAuthFailure(
auth_error
);
431
auth->OnClientLoginFailure(
auth_error
);
436
GoogleServiceAuthError
auth_error
(
452
auth->OnClientLoginFailure(
auth_error
);
login_performer.cc
342
DVLOG(1) << "
auth_error
: " << last_login_failure_.error().state();
407
DVLOG(1) << "
auth_error
: " << last_login_failure_.error().state();
/external/chromium_org/sync/protocol/
sync_enums.proto
22
AUTH_ERROR
= 1; // Auth error. Note this gets generated even during
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationListFooterView.java
135
case UIProvider.LastSyncResult.
AUTH_ERROR
:
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpc/
rpc_msg.h
79
AUTH_ERROR
=1
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpc/
rpc_msg.h
79
AUTH_ERROR
=1
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpc/
rpc_msg.h
79
AUTH_ERROR
=1
/external/chromium_org/chrome/browser/managed_mode/
managed_user_service.h
199
const GoogleServiceAuthError&
auth_error
,
managed_user_service.cc
620
const GoogleServiceAuthError&
auth_error
,
622
if (
auth_error
.state() == GoogleServiceAuthError::NONE) {
632
callback.Run(
auth_error
);
/packages/apps/Email/src/com/android/email/service/
PopImapSyncAdapterService.java
158
UIProvider.LastSyncResult.
AUTH_ERROR
);
/external/chromium/chrome/browser/sync/glue/
sync_backend_host.cc
[
all
...]
sync_backend_host.h
279
virtual void OnAuthError(const GoogleServiceAuthError&
auth_error
);
/frameworks/base/docs/html/google/gcm/
gcm.jd
517
<td>There was an error authenticating the sender account. <a href="#
auth_error
">Troubleshoot</a></td>
[
all
...]
/packages/apps/Exchange/src/com/android/exchange/eas/
EasOperation.java
[
all
...]
Completed in 512 milliseconds
1
2