Searched refs:mReturn (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
H A DAccountServiceProxy.java29 private Object mReturn; field in class:AccountServiceProxy
51 mReturn = mService.getAccountColor(accountId);
55 if (mReturn == null) {
58 return (Integer)mReturn;
68 mReturn = mService.getConfigurationData(accountType);
72 if (mReturn == null) {
75 return (Bundle)mReturn;
85 mReturn = mService.getDeviceId();
89 if (mReturn == null) {
92 return (String)mReturn;
[all...]
H A DEmailServiceProxy.java63 private Object mReturn = null; field in class:EmailServiceProxy
154 mReturn = mService.validate(hostAuthCom);
158 if (mReturn == null) {
163 Bundle bundle = (Bundle) mReturn;
186 mReturn = mService.autoDiscover(userName, password);
190 if (mReturn == null) {
193 Bundle bundle = (Bundle) mReturn;
292 mReturn = mService.searchMessages(accountId, searchParams, destMailboxId);
296 if (mReturn == null) {
299 return (Integer) mReturn;
[all...]
H A DPolicyServiceProxy.java32 private Object mReturn = null; field in class:PolicyServiceProxy
53 mReturn = mService.isActive(arg0);
58 LogUtils.v(TAG, "isActive: " + ((mReturn == null) ? "null" : mReturn));
60 if (mReturn == null) {
66 return (Boolean)mReturn;
92 mReturn = mService.canDisableCamera();
96 if (mReturn == null) {
102 return (Boolean)mReturn;

Completed in 69 milliseconds