/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/apps/Car/RotaryController/tests/unit/src/com/android/car/rotary/ |
D | TreeTraverserTest.java | 106 AccessibilityNodeInfo result = mTreeTraverser.findNodeOrAncestor(mNode0, in testFindNodeOrAncestor() local 108 assertThat(result).isEqualTo(mNode0); in testFindNodeOrAncestor() 109 Utils.recycleNode(result); in testFindNodeOrAncestor() 112 result = mTreeTraverser.findNodeOrAncestor(mNode1, /* stopPredicate= */ null, in testFindNodeOrAncestor() 114 assertThat(result).isEqualTo(mNode0); in testFindNodeOrAncestor() 115 Utils.recycleNode(result); in testFindNodeOrAncestor() 118 result = mTreeTraverser.findNodeOrAncestor(mNode2, /* stopPredicate= */ null, in testFindNodeOrAncestor() 120 assertThat(result).isEqualTo(mNode0); in testFindNodeOrAncestor() 121 Utils.recycleNode(result); in testFindNodeOrAncestor() 124 result = mTreeTraverser.findNodeOrAncestor(mNode2, /* stopPredicate= */ null, in testFindNodeOrAncestor() [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/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/DnsResolver/tests/ |
D | resolv_integration_test.cpp | 80 struct addrinfo** result); 104 addrinfo* result = nullptr; in safe_getaddrinfo() local 105 if (getaddrinfo(node, service, hints, &result) != 0) { in safe_getaddrinfo() 106 result = nullptr; // Should already be the case, but... in safe_getaddrinfo() 108 return ScopedAddrinfo(result); in safe_getaddrinfo() 114 ScopedAddrinfo result = safe_getaddrinfo(node, service, &hints); in safe_getaddrinfo_time_taken() local 115 return {std::move(result), s.timeTakenUs() / 1000}; in safe_getaddrinfo_time_taken() 320 const hostent* result; in TEST_F() local 321 result = gethostbyname("nonexistent"); in TEST_F() 323 ASSERT_TRUE(result == nullptr); in TEST_F() [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/services/Car/tests/carservice_unit_test/src/com/android/car/user/ |
D | CarUserManagerUnitTest.java | 178 UserSwitchResult result = getResult(future); in testSwitchUser_success() local 179 assertThat(result.getStatus()).isEqualTo(UserSwitchResult.STATUS_SUCCESSFUL); in testSwitchUser_success() 180 assertThat(result.getErrorMessage()).isEqualTo("D'OH!"); in testSwitchUser_success() 191 UserSwitchResult result = getResult(future); in testSwitchUser_noUserSwitchability() local 192 assertThat(result.getStatus()).isEqualTo(UserSwitchResult.STATUS_NOT_SWITCHABLE); in testSwitchUser_noUserSwitchability() 193 assertThat(result.getErrorMessage()).isNull(); in testSwitchUser_noUserSwitchability() 204 UserSwitchResult result = getResult(future); in testSwitchUser_remoteException() local 205 assertThat(result.getStatus()).isEqualTo(UserSwitchResult.STATUS_HAL_INTERNAL_FAILURE); in testSwitchUser_remoteException() 206 assertThat(result.getErrorMessage()).isNull(); in testSwitchUser_remoteException() 215 UserRemovalResult result = mMgr.removeUser(11); in testRemoveUser_success() local [all …]
|
/packages/apps/Nfc/src/com/android/nfc/handover/ |
D | HandoverDataParser.java | 370 BluetoothHandoverData result = new BluetoothHandoverData(); in parseNokia() local 371 result.valid = false; in parseNokia() 377 result.device = mBluetoothAdapter.getRemoteDevice(address); in parseNokia() 378 result.valid = true; in parseNokia() 383 result.name = new String(nameBytes, StandardCharsets.UTF_8); in parseNokia() 389 if (result.valid && result.name == null) result.name = ""; in parseNokia() 390 return result; in parseNokia() 394 BluetoothHandoverData result = new BluetoothHandoverData(); in parseBtOob() local 395 result.valid = false; in parseBtOob() 400 result.device = mBluetoothAdapter.getRemoteDevice(address); in parseBtOob() [all …]
|
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/storage/ |
D | StorageAsyncLoaderTest.java | 105 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testLoadingApps() local 107 assertThat(result.size()).isEqualTo(1); in testLoadingApps() 108 assertThat(result.get(PRIMARY_USER_ID).getGamesSize()).isEqualTo(0L); in testLoadingApps() 109 assertThat(result.get(PRIMARY_USER_ID).getOtherAppsSize()).isEqualTo(2200L); in testLoadingApps() 116 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testGamesAreFiltered() local 118 assertThat(result.size()).isEqualTo(1); in testGamesAreFiltered() 119 assertThat(result.get(PRIMARY_USER_ID).getGamesSize()).isEqualTo(11L); in testGamesAreFiltered() 120 assertThat(result.get(PRIMARY_USER_ID).getOtherAppsSize()).isEqualTo(0L); in testGamesAreFiltered() 129 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testLegacyGamesAreFiltered() local 131 assertThat(result.size()).isEqualTo(1); in testLegacyGamesAreFiltered() [all …]
|
/packages/apps/Settings/tests/unit/src/com/android/settings/deviceinfo/storage/ |
D | StorageAsyncLoaderTest.java | 95 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testLoadingApps() local 97 assertThat(result.size()).isEqualTo(1); in testLoadingApps() 98 assertThat(result.get(PRIMARY_USER_ID).gamesSize).isEqualTo(0L); in testLoadingApps() 99 assertThat(result.get(PRIMARY_USER_ID).otherAppsSize).isEqualTo(1111L); in testLoadingApps() 106 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testGamesAreFiltered() local 108 assertThat(result.size()).isEqualTo(1); in testGamesAreFiltered() 109 assertThat(result.get(PRIMARY_USER_ID).gamesSize).isEqualTo(11L); in testGamesAreFiltered() 110 assertThat(result.get(PRIMARY_USER_ID).otherAppsSize).isEqualTo(0); in testGamesAreFiltered() 119 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testLegacyGamesAreFiltered() local 121 assertThat(result.size()).isEqualTo(1); in testLegacyGamesAreFiltered() [all …]
|
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/mschapv2/ |
D | EapMsChapV2SuccessRequestTest.java | 63 DecodeResult<EapMsChapV2SuccessRequest> result = in testDecodeSuccessRequest() local 65 assertTrue(result.isSuccessfulDecode()); in testDecodeSuccessRequest() 67 EapMsChapV2SuccessRequest successRequest = result.eapTypeData; in testDecodeSuccessRequest() 77 DecodeResult<EapMsChapV2SuccessRequest> result = in testDecodeSuccessRequestEmptyMessage() local 80 assertTrue(result.isSuccessfulDecode()); in testDecodeSuccessRequestEmptyMessage() 82 EapMsChapV2SuccessRequest successRequest = result.eapTypeData; in testDecodeSuccessRequestEmptyMessage() 92 DecodeResult<EapMsChapV2SuccessRequest> result = in testDecodeSuccessRequestMissingMessage() local 95 assertTrue(result.isSuccessfulDecode()); in testDecodeSuccessRequestMissingMessage() 97 EapMsChapV2SuccessRequest successRequest = result.eapTypeData; in testDecodeSuccessRequestMissingMessage() 107 DecodeResult<EapMsChapV2SuccessRequest> result = in testDecodeSuccessRequestMissingMessageWithSpace() local [all …]
|
D | EapMsChapV2FailureRequestTest.java | 61 DecodeResult<EapMsChapV2FailureRequest> result = in testDecodeFailureRequest() local 63 assertTrue(result.isSuccessfulDecode()); in testDecodeFailureRequest() 65 EapMsChapV2FailureRequest failureRequest = result.eapTypeData; in testDecodeFailureRequest() 78 DecodeResult<EapMsChapV2FailureRequest> result = in testDecodeFailureRequestMissingMessage() local 81 assertTrue(result.isSuccessfulDecode()); in testDecodeFailureRequestMissingMessage() 83 EapMsChapV2FailureRequest failureRequest = result.eapTypeData; in testDecodeFailureRequestMissingMessage() 96 DecodeResult<EapMsChapV2FailureRequest> result = in testDecodeFailureRequestMissingMessageWithSpace() local 99 assertTrue(result.isSuccessfulDecode()); in testDecodeFailureRequestMissingMessageWithSpace() 101 EapMsChapV2FailureRequest failureRequest = result.eapTypeData; in testDecodeFailureRequestMissingMessageWithSpace() 116 DecodeResult<EapMsChapV2FailureRequest> result = in testDecodeFailureRequestInvalidErrorCode() local [all …]
|
/packages/apps/TV/tuner/src/com/android/tv/tuner/hdhomerun/ |
D | HdHomeRunDiscover.java | 84 HdHomeRunDiscoverDevice result = new HdHomeRunDiscoverDevice(); in findDevices() local 85 if (!receive(result)) { in findDevices() 90 && deviceType != result.mDeviceType) { in findDevices() 94 && deviceId != result.mDeviceId) { in findDevices() 101 if (resultList.contains(result)) { in findDevices() 105 resultList.add(result); in findDevices() 173 List<LocalIpInfo> result = new ArrayList<>(); in getLocalIpInfo() local 186 result.add(localIpInfo); in getLocalIpInfo() 187 if (result.size() >= maxCount) { in getLocalIpInfo() 188 return result; in getLocalIpInfo() [all …]
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
D | MediaDocumentsProvider.java | 484 Bundle result = null; in getDocumentMetadataFromIndex() local 502 result = new Bundle(); in getDocumentMetadataFromIndex() 503 result.putBundle(tagType, metadata); in getDocumentMetadataFromIndex() 504 result.putStringArray( in getDocumentMetadataFromIndex() 511 return result; in getDocumentMetadataFromIndex() 564 final MatrixCursor result = new MatrixCursor(resolveRootProjection(projection)); in queryRoots() local 569 includeImagesRoot(result); in queryRoots() 570 includeVideosRoot(result); in queryRoots() 571 includeAudioRoot(result); in queryRoots() 572 includeDocumentsRoot(result); in queryRoots() [all …]
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
D | SuggestionData.java | 223 int result = 1; in hashCode() local 224 result = prime * result + ((mFormat == null) ? 0 : mFormat.hashCode()); in hashCode() 225 result = prime * result + ((mIcon1 == null) ? 0 : mIcon1.hashCode()); in hashCode() 226 result = prime * result + ((mIcon2 == null) ? 0 : mIcon2.hashCode()); in hashCode() 227 result = prime * result + ((mIntentAction == null) ? 0 : mIntentAction.hashCode()); in hashCode() 228 result = prime * result + ((mIntentData == null) ? 0 : mIntentData.hashCode()); in hashCode() 229 result = prime * result + ((mIntentExtraData == null) ? 0 : mIntentExtraData.hashCode()); in hashCode() 230 result = prime * result + ((mLogType == null) ? 0 : mLogType.hashCode()); in hashCode() 231 result = prime * result + ((mShortcutId == null) ? 0 : mShortcutId.hashCode()); in hashCode() 232 result = prime * result + ((mSource == null) ? 0 : mSource.hashCode()); in hashCode() [all …]
|
/packages/apps/StorageManager/tests/unit/src/com/android/storagemanager/deletionhelper/ |
D | FetchDownloadsLoaderTest.java | 42 DownloadsResult result = in testEmptyDirectory() local 44 assertNotNull(result); in testEmptyDirectory() 45 assertEquals(0, result.totalSize); in testEmptyDirectory() 46 assertEquals(0, result.files.size()); in testEmptyDirectory() 54 DownloadsResult result = in testFilesInDirectory() local 56 assertNotNull(result); in testFilesInDirectory() 57 assertEquals(0, result.totalSize); in testFilesInDirectory() 58 assertEquals(2, result.files.size()); in testFilesInDirectory() 68 DownloadsResult result = in testNestedDirectories() local 70 assertNotNull(result); in testNestedDirectories() [all …]
|
/packages/apps/StorageManager/robotests/src/com/android/storagemanager/automatic/ |
D | DownloadsDeletionTypeTest.java | 72 DownloadsResult result = new DownloadsResult(); in testFetchDownloads() local 73 result.files.add(temp); in testFetchDownloads() 74 result.files.add(temp2); in testFetchDownloads() 76 mDeletion.onLoadFinished(null, result); in testFetchDownloads() 86 DownloadsResult result = new DownloadsResult(); in testSetChecked() local 87 result.files.add(temp); in testSetChecked() 89 mDeletion.onLoadFinished(null, result); in testSetChecked() 107 DownloadsResult result = new DownloadsResult(); in testUncheckedFilesDoNotCountForSize() local 108 result.files.add(temp); in testUncheckedFilesDoNotCountForSize() 110 mDeletion.onLoadFinished(null, result); in testUncheckedFilesDoNotCountForSize() [all …]
|
/packages/services/Mms/src/com/android/mms/service/ |
D | MmsRequest.java | 152 int result = SmsManager.MMS_ERROR_UNSPECIFIED; in execute() local 159 result = SmsManager.MMS_ERROR_CONFIGURATION_ERROR; in execute() 162 result = SmsManager.MMS_ERROR_IO_ERROR; in execute() 187 result = Activity.RESULT_OK; in execute() 195 result = SmsManager.MMS_ERROR_INVALID_APN; in execute() 199 result = SmsManager.MMS_ERROR_UNABLE_CONNECT_MMS; in execute() 203 result = SmsManager.MMS_ERROR_HTTP_FAILURE; in execute() 208 result = SmsManager.MMS_ERROR_UNSPECIFIED; in execute() 217 processResult(context, result, response, httpStatusCode); in execute() 228 public void processResult(Context context, int result, byte[] response, int httpStatusCode) { in processResult() argument [all …]
|
/packages/apps/UniversalMediaPlayer/java/com/android/pump/provider/ |
D | KnowledgeGraph.java | 60 JSONObject result = getResultFromKG(artist.getName(), "Person", "MusicGroup"); in populateArtist() local 62 String imageUrl = getImageUrl(result); in populateArtist() 66 String detailedDescription = getDetailedDescription(result); in populateArtist() 81 JSONObject result = getResultFromKG(album.getTitle(), "MusicAlbum"); in populateAlbum() local 84 String imageUrl = getImageUrl(result); in populateAlbum() 88 String detailedDescription = getDetailedDescription(result); in populateAlbum() 98 JSONObject result = getResultFromKG(movie.getTitle(), "Movie"); in populateMovie() local 100 String imageUrl = getImageUrl(result); in populateMovie() 104 String detailedDescription = getDetailedDescription(result); in populateMovie() 114 JSONObject result = getResultFromKG(series.getTitle(), "TVSeries"); in populateSeries() local [all …]
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/deviceinfo/storage/ |
D | CachedStorageValuesHelper.java | 120 final StorageAsyncLoader.AppsStorageResult result = in getCachedAppsStorageResult() local 122 result.gamesSize = gamesSize; in getCachedAppsStorageResult() 123 result.musicAppsSize = musicAppsSize; in getCachedAppsStorageResult() 124 result.videoAppsSize = videoAppsSize; in getCachedAppsStorageResult() 125 result.photosAppsSize = photoAppSize; in getCachedAppsStorageResult() 126 result.otherAppsSize = otherAppsSize; in getCachedAppsStorageResult() 127 result.cacheSize = cacheSize; in getCachedAppsStorageResult() 128 result.externalStats = externalStats; in getCachedAppsStorageResult() 130 resultArray.append(mUserId, result); in getCachedAppsStorageResult() 135 PrivateStorageInfo storageInfo, StorageAsyncLoader.AppsStorageResult result) { in cacheResult() argument [all …]
|
/packages/apps/Settings/src/com/android/settings/deviceinfo/storage/ |
D | CachedStorageValuesHelper.java | 120 final StorageAsyncLoader.AppsStorageResult result = in getCachedAppsStorageResult() local 122 result.gamesSize = gamesSize; in getCachedAppsStorageResult() 123 result.musicAppsSize = musicAppsSize; in getCachedAppsStorageResult() 124 result.videoAppsSize = videoAppsSize; in getCachedAppsStorageResult() 125 result.photosAppsSize = photoAppSize; in getCachedAppsStorageResult() 126 result.otherAppsSize = otherAppsSize; in getCachedAppsStorageResult() 127 result.cacheSize = cacheSize; in getCachedAppsStorageResult() 128 result.externalStats = externalStats; in getCachedAppsStorageResult() 130 resultArray.append(mUserId, result); in getCachedAppsStorageResult() 135 PrivateStorageInfo storageInfo, StorageAsyncLoader.AppsStorageResult result) { in cacheResult() argument [all …]
|
/packages/apps/Calendar/src/com/android/calendar/widget/ |
D | CalendarAppWidgetModel.java | 124 int result = 1; in hashCode() local 125 result = prime * result + (allDay ? 1231 : 1237); in hashCode() 126 result = prime * result + (int) (id ^ (id >>> 32)); in hashCode() 127 result = prime * result + (int) (end ^ (end >>> 32)); in hashCode() 128 result = prime * result + (int) (start ^ (start >>> 32)); in hashCode() 129 result = prime * result + ((title == null) ? 0 : title.hashCode()); in hashCode() 130 result = prime * result + visibTitle; in hashCode() 131 result = prime * result + visibWhen; in hashCode() 132 result = prime * result + visibWhere; in hashCode() 133 result = prime * result + ((when == null) ? 0 : when.hashCode()); in hashCode() [all …]
|
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/simaka/ |
D | EapSimTypeDataTest.java | 84 DecodeResult<EapSimTypeData> result = mEapSimTypeDataDecoder.decode(EAP_SIM_START_SUBTYPE); in testDecode() local 86 assertTrue(result.isSuccessfulDecode()); in testDecode() 87 EapSimTypeData eapSimTypeData = result.eapTypeData; in testDecode() 104 DecodeResult<EapSimTypeData> result = mEapSimTypeDataDecoder.decode(null); in testDecodeNullTypeData() local 105 assertFalse(result.isSuccessfulDecode()); in testDecodeNullTypeData() 106 assertEquals(UNABLE_TO_PROCESS_CODE, result.atClientErrorCode.errorCode); in testDecodeNullTypeData() 111 DecodeResult<EapSimTypeData> result = mEapSimTypeDataDecoder.decode(INVALID_SUBTYPE); in testDecodeInvalidSubtype() local 112 assertFalse(result.isSuccessfulDecode()); in testDecodeInvalidSubtype() 113 assertEquals(UNABLE_TO_PROCESS_CODE, result.atClientErrorCode.errorCode); in testDecodeInvalidSubtype() 118 DecodeResult<EapSimTypeData> result = in testDecodeInvalidAtRand() local [all …]
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | NewOutgoingCallIntentBroadcasterTest.java | 140 int result = processIntent(intent, true).disconnectCause; in testNullHandle() local 141 assertEquals(DisconnectCause.INVALID_NUMBER, result); in testNullHandle() 182 int result = processIntent(intent, true).disconnectCause; in badCallActionHelper() local 184 assertEquals(expectedCode, result); in badCallActionHelper() 195 ReceiverIntentPair result = regularCallTestHelper(callIntent, null); in testAlreadyDisconnectedCall() local 197 result.receiver.setResultData( in testAlreadyDisconnectedCall() 198 result.intent.getStringExtra(Intent.EXTRA_PHONE_NUMBER)); in testAlreadyDisconnectedCall() 200 result.receiver.onReceive(mContext, result.intent); in testAlreadyDisconnectedCall() 210 int result = processIntent(intent, true).disconnectCause; in testNoNumberSupplied() local 212 assertEquals(DisconnectCause.NO_PHONE_NUMBER_SUPPLIED, result); in testNoNumberSupplied() [all …]
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | NewOutgoingCallIntentBroadcaster.java | 213 CallDisposition result = new CallDisposition(); in evaluateCall() local 221 result.disconnectCause = DisconnectCause.INVALID_NUMBER; in evaluateCall() 222 return result; in evaluateCall() 233 result.callImmediately = true; in evaluateCall() 234 result.requestRedirection = false; in evaluateCall() 235 result.sendBroadcast = false; in evaluateCall() 236 result.callingAddress = handle; in evaluateCall() 237 return result; in evaluateCall() 240 result.disconnectCause = DisconnectCause.OUTGOING_CANCELED; in evaluateCall() 241 return result; in evaluateCall() [all …]
|