OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:syncAuthority
(Results
1 - 2
of
2
) 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
;
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
Account.java
220
public final String
syncAuthority
;
267
json.put(AccountColumns.SYNC_AUTHORITY,
syncAuthority
);
368
syncAuthority
= json.optString(AccountColumns.SYNC_AUTHORITY);
440
syncAuthority
= cursor.getString(
442
if (TextUtils.isEmpty(
syncAuthority
)) {
443
LogUtils.e(LOG_TAG, "Unexpected empty
syncAuthority
from cursor");
533
syncAuthority
= in.readString();
534
if (TextUtils.isEmpty(
syncAuthority
)) {
535
LogUtils.e(LOG_TAG, "Unexpected empty
syncAuthority
from Parcel");
578
dest.writeString(
syncAuthority
);
[
all
...]
Completed in 486 milliseconds