/packages/apps/Dialer/java/com/android/dialer/smartdial/util/ |
D | SmartDialPrefix.java | 99 final ArrayList<String> result = new ArrayList<>(); in parseToIndexTokens() local 114 result.add(currentIndexToken.toString()); in parseToIndexTokens() 122 result.add(currentIndexToken.toString()); in parseToIndexTokens() 124 return result; in parseToIndexTokens() 135 final ArrayList<String> result = new ArrayList<>(); in generateNamePrefixes() local 150 result.add(fullNameToken.toString()); in generateNamePrefixes() 162 final int recursiveNameStart = result.size(); in generateNamePrefixes() 163 int recursiveNameEnd = result.size(); in generateNamePrefixes() 172 result.add(initial + fullNames.get(j)); in generateNamePrefixes() 175 result.add(initial + result.get(j)); in generateNamePrefixes() [all …]
|
/packages/services/Car/cpp/watchdog/server/src/ |
D | OveruseConfigurationXmlHelper.cpp | 115 if (const auto result = readExactlyOneElement(kTagComponentType, rootElement); result.ok()) { in readComponentType() local 116 componentTypeElement = *result; in readComponentType() 118 return Error() << "Failed to read tag '" << kTagComponentType << "': " << result.error(); in readComponentType() 270 if (const auto result = readExactlyOneElement(kTagComponentLevelThresholds, rootElement); in readComponentLevelThresholds() local 271 result.ok()) { in readComponentLevelThresholds() 272 componentLevelThresholdElement = *result; in readComponentLevelThresholds() 275 << "': " << result.error(); in readComponentLevelThresholds() 279 if (const auto result = readPerStateBytes(componentLevelThresholdElement); result.ok()) { in readComponentLevelThresholds() local 280 thresholds.perStateWriteBytes = *result; in readComponentLevelThresholds() 283 << thresholds.name << "': " << result.error(); in readComponentLevelThresholds() [all …]
|
D | ServiceManager.cpp | 49 if (const auto result = startProcessAnrMonitor(looper); !result.ok()) { in startServices() local 50 return result; in startServices() 52 if (const auto result = startPerfService(); !result.ok()) { in startServices() local 53 return result; in startServices() 56 if (const auto result = sWatchdogServiceHelper->init(sWatchdogProcessService); !result.ok()) { in startServices() local 57 return Error() << "Failed to initialize watchdog service helper: " << result.error(); in startServices() 59 if (const auto result = packageInfoResolver->initWatchdogServiceHelper(sWatchdogServiceHelper); in startServices() local 60 !result.ok()) { in startServices() 61 return Error() << "Failed to initialize package name resolver: " << result.error(); in startServices() 88 if (const auto result = service->start(); !result.ok()) { in startProcessAnrMonitor() local [all …]
|
D | WatchdogPerfService.cpp | 159 if (const auto result = processor->init(); !result.ok()) { in registerDataProcessor() local 161 << result.error().message(); in registerDataProcessor() 243 if (int result = pthread_setname_np(pthread_self(), "WatchdogPerfSvc"); result != 0) { in start() local 244 ALOGE("Failed to set %s thread name: %d", kServiceName, result); in start() 460 const auto& result = parseSecondsFlag(args, i + 1); in onCustomCollection() local 461 if (!result.ok()) { in onCustomCollection() 463 << "Failed to parse " << kIntervalFlag << ": " << result.error(); in onCustomCollection() 465 interval = std::chrono::duration_cast<std::chrono::nanoseconds>(*result); in onCustomCollection() 470 const auto& result = parseSecondsFlag(args, i + 1); in onCustomCollection() local 471 if (!result.ok()) { in onCustomCollection() [all …]
|
/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/ |
D | TetheringServiceTest.java | 138 void runTetheringCall(TestTetheringResult result) throws Exception; in runTetheringCall() argument 180 private void runTether(final TestTetheringResult result) throws Exception { in runTether() argument 181 mTetheringConnector.tether(TEST_IFACE_NAME, TEST_CALLER_PKG, TEST_ATTRIBUTION_TAG, result); in runTether() 183 verify(mTethering).tether(TEST_IFACE_NAME, IpServer.STATE_TETHERED, result); in runTether() 188 runAsNoPermission((result) -> { in testTether() argument 190 result); in testTether() 192 result.assertResult(TETHER_ERROR_NO_CHANGE_TETHERING_PERMISSION); in testTether() 196 runAsTetherPrivileged((result) -> { in testTether() argument 197 runTether(result); in testTether() 201 runAsWriteSettings((result) -> { in testTether() argument [all …]
|
/packages/modules/Bluetooth/system/stack/avdt/ |
D | avdt_api.cc | 159 tAVDT_RESULT result = AVDT_SUCCESS; in AVDT_CreateStream() local 165 result = AVDT_BAD_PARAMS; in AVDT_CreateStream() 176 result = AVDT_NO_RESOURCES; in AVDT_CreateStream() 183 return static_cast<uint16_t>(result); in AVDT_CreateStream() 201 uint16_t result = AVDT_SUCCESS; in AVDT_RemoveStream() local 209 result = AVDT_BAD_HANDLE; in AVDT_RemoveStream() 215 if (result != AVDT_SUCCESS) { in AVDT_RemoveStream() 216 AVDT_TRACE_ERROR("%s: result=%d avdt_handle=%d", __func__, result, handle); in AVDT_RemoveStream() 219 return result; in AVDT_RemoveStream() 252 uint16_t result = AVDT_SUCCESS; in AVDT_DiscoverReq() local [all …]
|
/packages/services/Telephony/tests/src/com/android/services/telephony/rcs/validator/ |
D | OutgoingTransportStateValidatorTest.java | 66 ValidationResult result = validator.validate(testMessage); in testVerifyMessageInOpenCloseState() local 67 assertFalse(result.isValidated); in testVerifyMessageInOpenCloseState() 69 result.restrictedReason); in testVerifyMessageInOpenCloseState() 73 result = validator.validate(testMessage); in testVerifyMessageInOpenCloseState() 74 assertTrue(result.isValidated); in testVerifyMessageInOpenCloseState() 77 result = validator.validate(testMessage); in testVerifyMessageInOpenCloseState() 78 assertFalse(result.isValidated); in testVerifyMessageInOpenCloseState() 80 result.restrictedReason); in testVerifyMessageInOpenCloseState() 107 ValidationResult result = validator.validate(generate200OkResponse("callId4")); in testVerifyMessageRestricted() local 108 assertTrue(result.isValidated); in testVerifyMessageRestricted() [all …]
|
/packages/apps/Settings/tests/unit/src/com/android/settings/network/helper/ |
D | QuerySimSlotIndexTest.java | 68 List<Integer> result = SelectableSubscriptions.atomicToList(mActiveSimSlotIndex.get()); in allSimSlotIndexCall_nullInput_getNoneNullEmptyList() local 70 assertThat(result.size()).isEqualTo(0); in allSimSlotIndexCall_nullInput_getNoneNullEmptyList() 80 List<Integer> result = SelectableSubscriptions.atomicToList(mActiveSimSlotIndex.get()); in allSimSlotIndexCall_oneSimAndActivePsim_getList() local 82 assertThat(result.size()).isEqualTo(1); in allSimSlotIndexCall_oneSimAndActivePsim_getList() 83 assertThat(result.get(0)).isEqualTo(0); in allSimSlotIndexCall_oneSimAndActivePsim_getList() 93 List<Integer> result = SelectableSubscriptions.atomicToList(mActiveSimSlotIndex.get()); in allSimSlotIndexCall_oneSimAndActiveEsim_getList() local 95 assertThat(result.size()).isEqualTo(1); in allSimSlotIndexCall_oneSimAndActiveEsim_getList() 96 assertThat(result.get(0)).isEqualTo(1); in allSimSlotIndexCall_oneSimAndActiveEsim_getList() 106 List<Integer> result = SelectableSubscriptions.atomicToList(mActiveSimSlotIndex.get()); in allSimSlotIndexCall_twoSimsAndActivePsimActiveEsim_getList() local 108 assertThat(result.size()).isEqualTo(2); in allSimSlotIndexCall_twoSimsAndActivePsimActiveEsim_getList() [all …]
|
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/ |
D | ThumbnailCacheTest.java | 74 Result result = mCache.getThumbnail(URI_1, USER_ID_0, MID_SIZE); in testMiss() local 76 assertMiss(result); in testMiss() 82 Result result = mCache.getThumbnail(URI_0, USER_ID_1, MID_SIZE); in testMiss_DifferentUser() local 83 assertMiss(result); in testMiss_DifferentUser() 90 Result result = mCache.getThumbnail(URI_0, USER_ID_0, MID_SIZE); in testHit_Exact() local 92 assertHitExact(result); in testHit_Exact() 93 assertSame(MIDSIZE_BITMAP, result.getThumbnail()); in testHit_Exact() 100 Result result = mCache.getThumbnail(URI_0, USER_ID_0, LARGE_SIZE); in testHit_Smaller() local 102 assertHitSmaller(result); in testHit_Smaller() 103 assertSame(MIDSIZE_BITMAP, result.getThumbnail()); in testHit_Smaller() [all …]
|
/packages/apps/Car/RotaryController/tests/unit/src/com/android/car/rotary/ |
D | TreeTraverserTest.java | 122 AccessibilityNodeInfo result = mTreeTraverser.findNodeOrAncestor(mNode0, in testFindNodeOrAncestor() local 124 assertThat(result).isEqualTo(mNode0); in testFindNodeOrAncestor() 125 Utils.recycleNode(result); in testFindNodeOrAncestor() 128 result = mTreeTraverser.findNodeOrAncestor(mNode1, /* stopPredicate= */ null, in testFindNodeOrAncestor() 130 assertThat(result).isEqualTo(mNode0); in testFindNodeOrAncestor() 131 Utils.recycleNode(result); in testFindNodeOrAncestor() 134 result = mTreeTraverser.findNodeOrAncestor(mNode2, /* stopPredicate= */ null, in testFindNodeOrAncestor() 136 assertThat(result).isEqualTo(mNode0); in testFindNodeOrAncestor() 137 Utils.recycleNode(result); in testFindNodeOrAncestor() 140 result = mTreeTraverser.findNodeOrAncestor(mNode2, /* stopPredicate= */ null, in testFindNodeOrAncestor() [all …]
|
/packages/modules/Bluetooth/system/bta/ag/ |
D | bta_ag_cmd.cc | 208 const tBTA_AG_RESULT* result = bta_ag_result_by_code(code); in bta_ag_send_result() local 209 if (result == nullptr) { in bta_ag_send_result() 222 strlcpy(p, result->result_string, sizeof(buf) - 2); in bta_ag_send_result() 236 p += strlen(result->result_string); in bta_ag_send_result() 239 if (result->arg_type == BTA_AG_RES_FMT_INT) { in bta_ag_send_result() 241 } else if (result->arg_type == BTA_AG_RES_FMT_STR) { in bta_ag_send_result() 549 void bta_ag_send_call_inds(tBTA_AG_SCB* p_scb, tBTA_AG_RES result) { in bta_ag_send_call_inds() argument 553 size_t callsetup = bta_ag_indicator_by_result_code(result); in bta_ag_send_call_inds() 555 if (result == BTA_AG_END_CALL_RES) { in bta_ag_send_call_inds() 557 } else if (result == BTA_AG_IN_CALL_CONN_RES || in bta_ag_send_call_inds() [all …]
|
/packages/modules/Wifi/service/java/com/android/server/wifi/p2p/ |
D | SupplicantP2pIfaceHalHidlImpl.java | 678 SupplicantResult<String> result = new SupplicantResult("getName()"); in getName() 683 result.setResult(status, name); in getName() 689 return result.getResult(); in getName() 709 SupplicantResult<Void> result = new SupplicantResult("registerCallback()"); in registerCallback() 711 result.setResult(mISupplicantP2pIface.registerCallback(receiver)); in registerCallback() 716 return result.isSuccess(); in registerCallback() 740 SupplicantResultV1_4<Void> result = in registerCallbackV1_4() 743 result.setResult(ifaceV14.registerCallback_1_4(receiver)); in registerCallbackV1_4() 748 return result.isSuccess(); in registerCallbackV1_4() 768 SupplicantResult<Void> result = new SupplicantResult("find(" + timeout + ")"); in find() local [all …]
|
/packages/modules/Bluetooth/tools/pdl/src/ |
D | lint.rs | 140 fn insert(&mut self, field: &'d Field, result: &mut LintDiagnostics) { in insert() 144 result.push( in insert() 164 result.push( in insert() 180 result.push( in insert() 200 .map(|prev| result.err_redeclared(id, "field", loc, prev.loc())), in insert() 204 result.push( in insert() 226 result: &mut LintDiagnostics, in inherit() 232 lint_constraint(scope, parent, constraint, result); in inherit() 235 result.push( in inherit() 264 result: &mut LintDiagnostics, in inline() [all …]
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
D | MetadataDbHelper.java | 486 final ContentValues result = new ContentValues(COLUMN_COUNT); in makeContentValues() local 487 result.put(PENDINGID_COLUMN, pendingId); in makeContentValues() 488 result.put(TYPE_COLUMN, type); in makeContentValues() 489 result.put(WORDLISTID_COLUMN, wordlistId); in makeContentValues() 490 result.put(STATUS_COLUMN, status); in makeContentValues() 491 result.put(LOCALE_COLUMN, locale); in makeContentValues() 492 result.put(DESCRIPTION_COLUMN, description); in makeContentValues() 493 result.put(LOCAL_FILENAME_COLUMN, filename); in makeContentValues() 494 result.put(REMOTE_FILENAME_COLUMN, url); in makeContentValues() 495 result.put(DATE_COLUMN, date); in makeContentValues() [all …]
|
/packages/modules/Bluetooth/system/service/test/ |
D | parcelable_unittest.cc | 61 bool result = in TEST() local 63 EXPECT_TRUE(result); in TEST() 68 bool result = in TEST() local 71 EXPECT_TRUE(result); in TEST() 83 bool result = in TEST() local 86 EXPECT_TRUE(result); in TEST() 109 bool result = in TEST() local 111 EXPECT_TRUE(result); in TEST() 113 result = TestData<ScanSettings, android::bluetooth::ScanSettings>(settings0); in TEST() 114 EXPECT_TRUE(result); in TEST() [all …]
|
/packages/modules/Wifi/service/java/com/android/server/wifi/util/ |
D | Matrix.java | 115 public Matrix plus(Matrix that, Matrix result) { in plus() argument 116 if (!(this.n == that.n && this.m == that.m && this.n == result.n && this.m == result.m)) { in plus() 120 result.mem[i] = this.mem[i] + that.mem[i]; in plus() 122 return result; in plus() 144 public Matrix minus(Matrix that, Matrix result) { in minus() argument 145 if (!(this.n == that.n && this.m == that.m && this.n == result.n && this.m == result.m)) { in minus() 149 result.mem[i] = this.mem[i] - that.mem[i]; in minus() 151 return result; in minus() 172 public Matrix times(double scalar, Matrix result) { in times() argument 173 if (!(this.n == result.n && this.m == result.m)) { in times() [all …]
|
/packages/modules/Bluetooth/system/stack/test/rfcomm/ |
D | stack_rfcomm_test_utils.cc | 66 std::vector<uint8_t> result; in CreateMccPnFrame() local 67 result.push_back(static_cast<uint8_t>(dlci & 0b00111111)); in CreateMccPnFrame() 68 result.push_back(static_cast<uint8_t>((cl_bits << 4) | (i_bits & 0x0F))); in CreateMccPnFrame() 69 result.push_back(static_cast<uint8_t>(priority & 0b00111111)); in CreateMccPnFrame() 70 result.push_back(timer_value); in CreateMccPnFrame() 71 result.push_back(static_cast<uint8_t>(rfcomm_mtu)); in CreateMccPnFrame() 72 result.push_back(static_cast<uint8_t>(rfcomm_mtu >> 8)); in CreateMccPnFrame() 73 result.push_back(max_num_retransmission); in CreateMccPnFrame() 74 result.push_back(static_cast<uint8_t>(err_recovery_window_k & 0b111)); in CreateMccPnFrame() 75 return result; in CreateMccPnFrame() [all …]
|
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/crypto/ |
D | TlsSessionTunnelTest.java | 43 TlsResult result = mTlsSession.processOutgoingData(SAMPLE_APPLICATION_TLS_MESSAGE); in testEncryptMessage_success() local 45 assertEquals(TLS_STATUS_SUCCESS, result.status); in testEncryptMessage_success() 46 assertArrayEquals(SAMPLE_PACKET_TLS_MESSAGE, result.data); in testEncryptMessage_success() 60 TlsResult result = mTlsSession.processOutgoingData(SAMPLE_APPLICATION_TLS_MESSAGE); in testEncryptMessage_failure() local 62 assertEquals(TLS_STATUS_CLOSED, result.status); in testEncryptMessage_failure() 63 assertArrayEquals(SAMPLE_PACKET_TLS_MESSAGE, result.data); in testEncryptMessage_failure() 78 TlsResult result = mTlsSession.processOutgoingData(SAMPLE_APPLICATION_TLS_MESSAGE); in testEncryptMessage_overflow() local 80 assertEquals(TLS_STATUS_CLOSED, result.status); in testEncryptMessage_overflow() 81 assertArrayEquals(SAMPLE_PACKET_TLS_MESSAGE, result.data); in testEncryptMessage_overflow() 96 TlsResult result = mTlsSession.processOutgoingData(SAMPLE_APPLICATION_TLS_MESSAGE); in testEncryptMessage_underflow() local [all …]
|
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/ |
D | AnimationDynamicColorsHelper.java | 151 HomogenousBiMap<ColorItem> result = new HomogenousBiMap<>(); in buildLightToDarkColorsBiMap() local 152 result.put( in buildLightToDarkColorsBiMap() 155 result.put( in buildLightToDarkColorsBiMap() 158 result.put( in buildLightToDarkColorsBiMap() 161 result.put( in buildLightToDarkColorsBiMap() 164 result.put( in buildLightToDarkColorsBiMap() 167 result.put( in buildLightToDarkColorsBiMap() 170 result.put( in buildLightToDarkColorsBiMap() 173 result.put( in buildLightToDarkColorsBiMap() 176 result.put( in buildLightToDarkColorsBiMap() [all …]
|
/packages/apps/Contacts/src/com/android/contacts/drawer/ |
D | DrawerAdapter.java | 211 private View getBaseItemView(@LayoutRes int layoutResID, View result,ViewGroup parent) { in getBaseItemView() argument 212 if (result == null) { in getBaseItemView() 213 result = mInflater.inflate(layoutResID, parent, false); in getBaseItemView() 215 return result; in getBaseItemView() 218 private View getPrimaryItemView(PrimaryItem item, View result, ViewGroup parent) { in getPrimaryItemView() argument 219 if (result == null) { in getPrimaryItemView() 220 result = mInflater.inflate(R.layout.drawer_primary_item, parent, false); in getPrimaryItemView() 222 final TextView titleView = (TextView) result.findViewById(R.id.title); in getPrimaryItemView() 224 final ImageView iconView = (ImageView) result.findViewById(R.id.icon); in getPrimaryItemView() 226 final TextView newBadge = (TextView) result.findViewById(R.id.assistant_new_badge); in getPrimaryItemView() [all …]
|
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/ike3gpp/ |
D | Ike3gppExtensionExchangeTest.java | 95 List<IkePayload> result = in testGetRequestPayloadsInEapIkeAuthServerAuthenticatedAndNetworkRequested() local 98 assertEquals(1, result.size()); in testGetRequestPayloadsInEapIkeAuthServerAuthenticatedAndNetworkRequested() 100 IkeNotifyPayload deviceIdentity = (IkeNotifyPayload) result.get(0); in testGetRequestPayloadsInEapIkeAuthServerAuthenticatedAndNetworkRequested() 110 List<IkePayload> result = in testGetRequestPayloadsInEapIkeAuthServerNotAuthenticatedAndNetworkRequested() local 113 assertTrue(result.isEmpty()); in testGetRequestPayloadsInEapIkeAuthServerNotAuthenticatedAndNetworkRequested() 119 List<IkePayload> result = in testGetRequestPayloadsInEapIkeAuthServerAuthenticatedAndNotRequestedByNetwork() local 122 assertTrue(result.isEmpty()); in testGetRequestPayloadsInEapIkeAuthServerAuthenticatedAndNotRequestedByNetwork() 129 List<IkePayload> result = in testGetRequestPayloadsInEapIkeAuthNotConfigured() local 132 assertTrue(result.isEmpty()); in testGetRequestPayloadsInEapIkeAuthNotConfigured() 137 List<IkePayload> result = in testGetRequestPayloadsIkeAuth() local [all …]
|
/packages/services/Car/packages/ScriptExecutor/tests/unit/src/com/android/car/scriptexecutortest/unit/ |
D | JniUtilsTestHelper.cpp | 44 bool result = false; in hasValidNumberArray() local 46 result = false; in hasValidNumberArray() 52 result = false; in hasValidNumberArray() 68 result = is_equal; in hasValidNumberArray() 72 return result; in hasValidNumberArray() 86 bool result = false; in hasValidBooleanArray() local 88 result = false; in hasValidBooleanArray() 94 result = false; in hasValidBooleanArray() 106 result = is_equal; in hasValidBooleanArray() 110 return result; in hasValidBooleanArray() [all …]
|
/packages/services/Car/tests/carservice_unit_test/src/android/car/admin/ |
D | CreateUserResultTest.java | 32 CreateUserResult result = new CreateUserResult(null); in testNullConstructor() local 33 assertThat(result.isSuccess()).isFalse(); in testNullConstructor() 34 assertThat(result.getStatus()).isEqualTo(RemoveUserResult.STATUS_FAILURE_GENERIC); in testNullConstructor() 35 assertThat(result.getUserHandle()).isNull(); in testNullConstructor() 42 CreateUserResult result = new CreateUserResult( in testSuccess() local 45 assertThat(result.isSuccess()).isTrue(); in testSuccess() 46 assertThat(result.getStatus()).isEqualTo(RemoveUserResult.STATUS_SUCCESS); in testSuccess() 47 assertThat(result.getUserHandle().getIdentifier()).isEqualTo(100); in testSuccess() 52 CreateUserResult result = new CreateUserResult( in testFailure_nullUserInfo() local 55 assertThat(result.isSuccess()).isFalse(); in testFailure_nullUserInfo() [all …]
|
/packages/apps/ImsServiceEntitlement/src/com/android/imsserviceentitlement/ |
D | WfcActivationController.java | 127 mImsEntitlementApi, result -> handleInitialEntitlementStatus(result)); in evaluateEntitlementStatus() 144 mImsEntitlementApi, result -> handleReevaluationEntitlementStatus(result)); in reevaluateEntitlementStatus() 149 void onEntitlementResult(EntitlementResult result); in onEntitlementResult() argument 217 private void handleInitialEntitlementStatus(@Nullable EntitlementResult result) { in handleInitialEntitlementStatus() argument 218 Log.d(TAG, "Initial entitlement result: " + result); in handleInitialEntitlementStatus() 219 if (result == null) { in handleInitialEntitlementStatus() 225 handleEntitlementStatusForActivation(result); in handleInitialEntitlementStatus() 227 handleEntitlementStatusForUpdating(result); in handleInitialEntitlementStatus() 232 private void handleEntitlementStatusForActivation(EntitlementResult result) { in handleEntitlementStatusForActivation() argument 233 Ts43VowifiStatus vowifiStatus = result.getVowifiStatus(); in handleEntitlementStatusForActivation() [all …]
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/user/ |
D | CarUserManagerUnitTest.java | 250 UserSwitchResult result = getResult(future); in testSwitchUser_success() local 251 assertThat(result.getStatus()).isEqualTo(UserSwitchResult.STATUS_SUCCESSFUL); in testSwitchUser_success() 252 assertThat(result.getErrorMessage()).isNull(); in testSwitchUser_success() 263 UserSwitchResult result = getResult(future); in testSwitchUser_remoteException() local 264 assertThat(result.getStatus()).isEqualTo(UserSwitchResult.STATUS_HAL_INTERNAL_FAILURE); in testSwitchUser_remoteException() 265 assertThat(result.getErrorMessage()).isNull(); in testSwitchUser_remoteException() 275 UserSwitchResult result = getResult(future); in testSwitchUser_runtimeException() local 276 assertThat(result.getStatus()).isEqualTo(UserSwitchResult.STATUS_HAL_INTERNAL_FAILURE); in testSwitchUser_runtimeException() 277 assertThat(result.getErrorMessage()).isNull(); in testSwitchUser_runtimeException() 287 UserSwitchResult result = getResult(future); in testLogoutUser_success() local [all …]
|