OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:syncAuthority
(Results
1 - 3
of
3
) sorted by null
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
TurnAutoSyncOnDialog.java
38
private static final String SYNC_AUTHORITY = "
syncAuthority
";
60
String
syncAuthority
) {
64
args.putString(SYNC_AUTHORITY,
syncAuthority
);
72
final String
syncAuthority
= getArguments().getString(SYNC_AUTHORITY);
88
// Note it's possible for
syncAuthority
to be empty on the
92
final String authority = TextUtils.isEmpty(
syncAuthority
) ?
93
sDefaultSyncAuthority :
syncAuthority
;
ConversationSyncDisabledTipView.java
80
mAccount.getAccountManagerAccount(), mAccount.
syncAuthority
);
102
if (mAccount == null || mAccount.
syncAuthority
== null) {
142
if (!TextUtils.isEmpty(account.
syncAuthority
) &&
143
!ContentResolver.getSyncAutomatically(acct, account.
syncAuthority
)) {
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
Account.java
226
public final String
syncAuthority
;
295
json.put(AccountColumns.SYNC_AUTHORITY,
syncAuthority
);
429
syncAuthority
= json.optString(AccountColumns.SYNC_AUTHORITY);
506
syncAuthority
= cursor.getString(
508
if (TextUtils.isEmpty(
syncAuthority
)) {
510
LogUtils.e(LOG_TAG, "Unexpected empty
syncAuthority
from cursor");
626
syncAuthority
= in.readString();
627
if (TextUtils.isEmpty(
syncAuthority
)) {
628
LogUtils.e(LOG_TAG, "Unexpected empty
syncAuthority
from Parcel");
675
dest.writeString(
syncAuthority
);
[
all
...]
Completed in 544 milliseconds