Searched refs:resultBundle (Results 1 – 4 of 4) sorted by relevance
50 @VisibleForTesting Bundle resultBundle = null; field in PartnerConfigHelper72 return resultBundle != null && !resultBundle.isEmpty(); in isAvailable()305 if (resultBundle == null || resultBundle.isEmpty()) { in getPartnerConfigBundle()313 resultBundle = in getPartnerConfigBundle()338 if (resultBundle == null) { in getResourceEntryFromKey()341 return ResourceEntry.fromBundle(resultBundle.getBundle(resourceName)); in getResourceEntryFromKey()
321 pendingAddFuture.resultBundle.putString(AccountManager.KEY_ACCOUNT_NAME, account.name);370 private final Bundle resultBundle;377 this.resultBundle = new Bundle();386 resultBundle.putString(AccountManager.KEY_ACCOUNT_TYPE, accountType);390 resultBundle.putParcelable(AccountManager.KEY_INTENT, resultIntent);392 resultBundle.putString(AccountManager.KEY_ACCOUNT_NAME, "some_user@gmail.com");395 return resultBundle;
527 Bundle resultBundle = result.getResult(); in addAccount_noActivitySpecified() local529 assertThat((Intent) resultBundle.getParcelable(AccountManager.KEY_INTENT)).isNotNull(); in addAccount_noActivitySpecified()537 Bundle resultBundle = result.getResult(); in addAccount_activitySpecified() local539 assertThat(resultBundle.getString(AccountManager.KEY_ACCOUNT_TYPE)).isEqualTo("google.com"); in addAccount_activitySpecified()540 …assertThat(resultBundle.getString(AccountManager.KEY_ACCOUNT_NAME)).isEqualTo("some_user@gmail.com… in addAccount_activitySpecified()557 Bundle resultBundle = callback.getResult(); in addAccount_shouldCallCallback() local558 assertThat(resultBundle.getString(AccountManager.KEY_ACCOUNT_TYPE)).isEqualTo("google.com"); in addAccount_shouldCallCallback()559 …assertThat(resultBundle.getString(AccountManager.KEY_ACCOUNT_NAME)).isEqualTo("thebomb@google.com"… in addAccount_shouldCallCallback()576 Bundle resultBundle = callback.getResult(); in addAccount_whenSchedulerPaused_shouldCallCallbackAfterSchedulerUnpaused() local577 assertThat(resultBundle.getString(AccountManager.KEY_ACCOUNT_TYPE)).isEqualTo("google.com"); in addAccount_whenSchedulerPaused_shouldCallCallbackAfterSchedulerUnpaused()[all …]
95 public WifiActionListener(String type, int idx, Bundle resultBundle, long startScanERT) { in WifiActionListener() argument98 this.mResults = resultBundle; in WifiActionListener()