/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/ |
D | LogFields.java | 25 private final int uriType; field in LogFields 43 int apiType, int uriType, int taskType, boolean callerIsSyncAdapter, long startNanos) { in LogFields() argument 45 this.uriType = uriType; in LogFields() 56 return uriType; in getUriType() 89 private int uriType; field in LogFields.Builder 111 public Builder setUriType(int uriType) { in setUriType() argument 112 this.uriType = uriType; in setUriType() 153 new LogFields(apiType, uriType, taskType, callerIsSyncAdapter, startNanos); in build()
|
/packages/apps/Dialer/java/com/android/dialer/phonelookup/database/ |
D | PhoneLookupHistoryContentProvider.java | 100 @UriType int uriType = uriType(uri); in query() local 101 switch (uriType) { in query() 137 @UriType int uriType = uriType(uri); in insert() local 138 switch (uriType) { in insert() 184 @UriType int uriType = uriType(uri); in delete() local 185 switch (uriType) { in delete() 231 @UriType int uriType = uriType(uri); in update() local 232 switch (uriType) { in update() 286 @UriType int uriType = uriType(operation.getUri()); in applyBatch() local 287 switch (uriType) { in applyBatch() [all …]
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
D | AccessChecker.java | 88 public static boolean hasAccessToCollection(LocalCallingIdentity callingIdentity, int uriType, in hasAccessToCollection() argument 90 switch (uriType) { in hasAccessToCollection() 134 "Unknown or unsupported type: " + uriType); in hasAccessToCollection() 149 int uriType, boolean forWrite) { in hasUserSelectedAccess() argument 156 switch (uriType) { in hasUserSelectedAccess() 183 @NonNull LocalCallingIdentity callingIdentity, int uriType) { in getWhereForUserSelectedAccess() argument 184 switch (uriType) { in getWhereForUserSelectedAccess() 205 "Unknown or unsupported type: " + uriType); in getWhereForUserSelectedAccess() 218 @NonNull LocalCallingIdentity callingIdentity, int uriType) { in getWhereForLatestSelection() argument 219 switch (uriType) { in getWhereForLatestSelection() [all …]
|
D | MediaProvider.java | 2846 int uriType = matchUri(uri, isCallingPackageAllowedHidden()); in getWhereClauseForMatchableVisibleFromFilePath() local 2847 if (hasAccessToCollection(mCallingIdentity.get(), uriType, /* forWrite */ true)) { in getWhereClauseForMatchableVisibleFromFilePath() 2853 uriType, /* forWrite */ true, Bundle.EMPTY); in getWhereClauseForMatchableVisibleFromFilePath() 6278 @NonNull Uri uri, int uriType, @NonNull Bundle extras, @NonNull String volumeName) { 6293 if (hasAccessToCollection(mCallingIdentity.get(), uriType, forWrite)) { 6302 && hasUserSelectedAccess(mCallingIdentity.get(), uriType, forWrite)) { 6312 options.add(getWhereForLatestSelection(mCallingIdentity.get(), uriType)); 6315 options.add(getWhereForUserSelectedAccess(mCallingIdentity.get(), uriType)); 6318 options.add(getWhereForConstrainedAccess(mCallingIdentity.get(), uriType, forWrite, 6328 options.add(getWhereForConstrainedAccess(mCallingIdentity.get(), uriType, forWrite,
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | VoicemailContentProvider.java | 293 private UriData(Uri uri, VoicemailUriType uriType, String id, String sourcePackage) { in UriData() argument 294 mUriType = uriType; in UriData() 343 VoicemailUriType uriType = createUriMatcher().match(uri); in createUriData() local 344 switch (uriType) { in createUriData() 347 return new UriData(uri, uriType, null, sourcePackage); in createUriData() 350 return new UriData(uri, uriType, segments.get(1), sourcePackage); in createUriData()
|
/packages/apps/Settings/src/com/android/settings/network/apn/ |
D | ApnStatus.kt | 108 val uriType = arguments.getString(URI_TYPE) ?: return null in getApnDataInit() constant 115 var apnDataInit = when (uriType) { in getApnDataInit() 121 if (uriType == INSERT_URL) { in getApnDataInit()
|
D | ApnEditPageProvider.kt | 100 uriType: String, in <lambda>() 103 ): String = "${name}/$uriType/${ in <lambda>()
|
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/adselection/ |
D | AdSelectionConfigValidatorTest.java | 127 String uriType, AdTechIdentifier seller, Uri decisionLogicUri) { in generateInconsistentSellerAndDecisionLogicUriMessage() argument 132 uriType, in generateInconsistentSellerAndDecisionLogicUriMessage()
|
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
D | TelephonyProvider.java | 5129 int uriType = URL_UNKNOWN; in updateSynchronized() local 5279 uriType = URL_SIMINFO_USING_SUBID; in updateSynchronized() 5284 uriType = URL_SIMINFO; in updateSynchronized() 5290 uriType = URL_SIMINFO_SUW_RESTORE; in updateSynchronized() 5317 switch (uriType) { in updateSynchronized()
|