Home
last modified time | relevance | path

Searched refs:result (Results 1 – 25 of 1500) sorted by relevance

12345678910>>...60

/packages/apps/Dialer/java/com/android/dialer/smartdial/util/
DSmartDialPrefix.java99 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/DocumentsUI/tests/unit/com/android/documentsui/
DThumbnailCacheTest.java70 Result result = mCache.getThumbnail(URI_1, MID_SIZE); in testMiss() local
72 assertMiss(result); in testMiss()
79 Result result = mCache.getThumbnail(URI_0, MID_SIZE); in testHit_Exact() local
81 assertHitExact(result); in testHit_Exact()
82 assertSame(MIDSIZE_BITMAP, result.getThumbnail()); in testHit_Exact()
89 Result result = mCache.getThumbnail(URI_0, LARGE_SIZE); in testHit_Smaller() local
91 assertHitSmaller(result); in testHit_Smaller()
92 assertSame(MIDSIZE_BITMAP, result.getThumbnail()); in testHit_Smaller()
99 Result result = mCache.getThumbnail(URI_0, SMALL_SIZE); in testHit_Larger() local
101 assertHitLarger(result); in testHit_Larger()
[all …]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DMetadataDbHelper.java486 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/apps/Contacts/src/com/android/contacts/drawer/
DDrawerAdapter.java211 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/DnsResolver/tests/
Dresolv_integration_test.cpp82 struct addrinfo** result);
110 addrinfo* result = nullptr; in safe_getaddrinfo() local
111 if (getaddrinfo(node, service, hints, &result) != 0) { in safe_getaddrinfo()
112 result = nullptr; // Should already be the case, but... in safe_getaddrinfo()
114 return ScopedAddrinfo(result); in safe_getaddrinfo()
120 ScopedAddrinfo result = safe_getaddrinfo(node, service, &hints); in safe_getaddrinfo_time_taken() local
121 return {std::move(result), s.timeTakenUs() / 1000}; in safe_getaddrinfo_time_taken()
377 const hostent* result; in TEST_F() local
378 result = gethostbyname("nonexistent"); in TEST_F()
380 ASSERT_TRUE(result == nullptr); in TEST_F()
[all …]
/packages/apps/Nfc/src/com/android/nfc/handover/
DHandoverDataParser.java370 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/
DStorageAsyncLoaderTest.java103 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testLoadingApps() local
105 assertThat(result.size()).isEqualTo(1); in testLoadingApps()
106 assertThat(result.get(PRIMARY_USER_ID).getGamesSize()).isEqualTo(0L); in testLoadingApps()
107 assertThat(result.get(PRIMARY_USER_ID).getOtherAppsSize()).isEqualTo(2200L); in testLoadingApps()
114 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testGamesAreFiltered() local
116 assertThat(result.size()).isEqualTo(1); in testGamesAreFiltered()
117 assertThat(result.get(PRIMARY_USER_ID).getGamesSize()).isEqualTo(11L); in testGamesAreFiltered()
118 assertThat(result.get(PRIMARY_USER_ID).getOtherAppsSize()).isEqualTo(0L); in testGamesAreFiltered()
127 SparseArray<StorageAsyncLoader.AppsStorageResult> result = mLoader.loadInBackground(); in testLegacyGamesAreFiltered() local
129 assertThat(result.size()).isEqualTo(1); in testLegacyGamesAreFiltered()
[all …]
/packages/apps/Settings/tests/unit/src/com/android/settings/deviceinfo/storage/
DStorageAsyncLoaderTest.java95 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/
DEapMsChapV2SuccessRequestTest.java63 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 …]
DEapMsChapV2FailureRequestTest.java61 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/
DHdHomeRunDiscover.java84 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/apps/QuickSearchBox/src/com/android/quicksearchbox/
DSuggestionData.java223 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/providers/MediaProvider/src/com/android/providers/media/
DMediaDocumentsProvider.java176 private void copyNotificationUri(MatrixCursor result, Cursor cursor) { in copyNotificationUri() argument
177 result.setNotificationUri(getContext().getContentResolver(), cursor.getNotificationUri()); in copyNotificationUri()
468 Bundle result = null; in getDocumentMetadataFromIndex() local
486 result = new Bundle(); in getDocumentMetadataFromIndex()
487 result.putBundle(tagType, metadata); in getDocumentMetadataFromIndex()
488 result.putStringArray( in getDocumentMetadataFromIndex()
495 return result; in getDocumentMetadataFromIndex()
546 final MatrixCursor result = new MatrixCursor(resolveRootProjection(projection)); in queryRoots() local
547 includeImagesRoot(result); in queryRoots()
548 includeVideosRoot(result); in queryRoots()
[all …]
/packages/apps/StorageManager/robotests/src/com/android/storagemanager/automatic/
DDownloadsDeletionTypeTest.java72 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/apps/StorageManager/tests/unit/src/com/android/storagemanager/deletionhelper/
DFetchDownloadsLoaderTest.java42 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/DocumentsUI/tests/unit/com/android/documentsui/picker/
DActionHandlerTest.java276 final Intent result = mActivity.setResult.getLastValue().second; in testPickDocument_SetsCorrectResultAndFinishes_ActionPickCopyDestination() local
277 assertPermission(result, Intent.FLAG_GRANT_READ_URI_PERMISSION, false); in testPickDocument_SetsCorrectResultAndFinishes_ActionPickCopyDestination()
278 assertPermission(result, Intent.FLAG_GRANT_WRITE_URI_PERMISSION, false); in testPickDocument_SetsCorrectResultAndFinishes_ActionPickCopyDestination()
279 assertPermission(result, Intent.FLAG_GRANT_PERSISTABLE_URI_PERMISSION, false); in testPickDocument_SetsCorrectResultAndFinishes_ActionPickCopyDestination()
280 assertPermission(result, Intent.FLAG_GRANT_PREFIX_URI_PERMISSION, false); in testPickDocument_SetsCorrectResultAndFinishes_ActionPickCopyDestination()
281 assertContent(result, TestEnv.FOLDER_2.derivedUri); in testPickDocument_SetsCorrectResultAndFinishes_ActionPickCopyDestination()
304 final Intent result = mActivity.setResult.getLastValue().second; in testPickDocument_SetsCorrectResultAndFinishes_ActionOpenTree() local
305 assertPermission(result, Intent.FLAG_GRANT_READ_URI_PERMISSION, true); in testPickDocument_SetsCorrectResultAndFinishes_ActionOpenTree()
306 assertPermission(result, Intent.FLAG_GRANT_WRITE_URI_PERMISSION, true); in testPickDocument_SetsCorrectResultAndFinishes_ActionOpenTree()
307 assertPermission(result, Intent.FLAG_GRANT_PERSISTABLE_URI_PERMISSION, true); in testPickDocument_SetsCorrectResultAndFinishes_ActionOpenTree()
[all …]
/packages/apps/Calendar/src/com/android/calendar/widget/
DCalendarAppWidgetModel.java124 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/services/Telecomm/tests/src/com/android/server/telecom/tests/
DNewOutgoingCallIntentBroadcasterTest.java140 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/apps/UniversalMediaPlayer/java/com/android/pump/provider/
DKnowledgeGraph.java60 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/
DCachedStorageValuesHelper.java120 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/
DCachedStorageValuesHelper.java120 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/CarrierConfig/src/com/android/carrierconfig/
DDefaultCarrierConfigService.java260 boolean result = true; in checkFilters()
270 result = result && value.equals(id.getMcc()); in checkFilters()
273 result = result && value.equals(id.getMnc()); in checkFilters()
276 result = result && value.equalsIgnoreCase(id.getGid1()); in checkFilters()
279 result = result && value.equalsIgnoreCase(id.getGid2()); in checkFilters()
282 result = result && matchOnSP(value, id); in checkFilters()
285 result = result && matchOnImsi(value, id); in checkFilters()
288 result = result && value.equalsIgnoreCase(Build.DEVICE); in checkFilters()
291 result = result && in checkFilters()
295 result = result && in checkFilters()
[all …]
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/simaka/
DEapSimTypeDataTest.java84 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/apps/Bluetooth/jni/
Dcom_android_bluetooth_hid_device.cpp268 jboolean result = JNI_FALSE; in registerAppNative() local
296 result = JNI_TRUE; in registerAppNative()
306 ALOGV("%s done (%d)", __FUNCTION__, result); in registerAppNative()
308 return result; in registerAppNative()
314 jboolean result = JNI_FALSE; in unregisterAppNative() local
326 result = JNI_TRUE; in unregisterAppNative()
329 ALOGV("%s done (%d)", __FUNCTION__, result); in unregisterAppNative()
331 return result; in unregisterAppNative()
336 jboolean result = JNI_FALSE; in sendReportNative() local
356 result = JNI_TRUE; in sendReportNative()
[all …]
/packages/services/Telecomm/src/com/android/server/telecom/
DNewOutgoingCallIntentBroadcaster.java212 CallDisposition result = new CallDisposition(); in evaluateCall() local
220 result.disconnectCause = DisconnectCause.INVALID_NUMBER; in evaluateCall()
221 return result; in evaluateCall()
232 result.callImmediately = true; in evaluateCall()
233 result.requestRedirection = false; in evaluateCall()
234 result.sendBroadcast = false; in evaluateCall()
235 result.callingAddress = handle; in evaluateCall()
236 return result; in evaluateCall()
239 result.disconnectCause = DisconnectCause.OUTGOING_CANCELED; in evaluateCall()
240 return result; in evaluateCall()
[all …]

12345678910>>...60