Home
last modified time | relevance | path

Searched refs:parse (Results 1 – 25 of 795) sorted by relevance

12345678910>>...32

/packages/services/Telephony/tests/src/com/android/services/telephony/
DImsConferenceTest.java94 Uri.parse("tel:6505551212"), in testPropertyPropagation()
96 Uri.parse("sip:6505551212@testims.com"), in testPropertyPropagation()
100 Uri.parse("tel:6505551213"), in testPropertyPropagation()
102 Uri.parse("sip:6505551213@testims.com"), in testPropertyPropagation()
136 Uri.parse("tel:6505551212"), in testSinglePartyEmulation()
138 Uri.parse("sip:6505551212@testims.com"), in testSinglePartyEmulation()
142 Uri.parse("tel:6505551213"), in testSinglePartyEmulation()
144 Uri.parse("sip:6505551213@testims.com"), in testSinglePartyEmulation()
187 Uri.parse("tel:6505551212"), in testDisconnectParticipantViaDisconnectState()
189 Uri.parse("sip:6505551212@testims.com"), in testDisconnectParticipantViaDisconnectState()
[all …]
DConferenceParticipantConnectionTest.java38 assertUrisEqual(Uri.parse("tel:+16505551212"), in testParticipantParseSimpleTel()
39 getParticipantAddress(Uri.parse("tel:6505551212"), "US")); in testParticipantParseSimpleTel()
44 assertUrisEqual(Uri.parse("tel:+16505551212"), in testParticipantParseTelExtended()
45 getParticipantAddress(Uri.parse("tel:6505551212;phone-context=blah"), "US")); in testParticipantParseTelExtended()
50 assertUrisEqual(Uri.parse("tel:+16505551212"), in testParticipantParseSip()
51 getParticipantAddress(Uri.parse("sip:16505551212;phone-context=blah.com@host.com"), in testParticipantParseSip()
57 assertUrisEqual(Uri.parse("tel:+12125551212"), in testParticipantParseSip2()
58 getParticipantAddress(Uri.parse("sip:+1-212-555-1212@something.com;user=phone"), in testParticipantParseSip2()
64 assertUrisEqual(Uri.parse("tel:+819066570660"), in testParticipantParseTelJp()
65 getParticipantAddress(Uri.parse( in testParticipantParseTelJp()
[all …]
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DUriTest.java29 parcelAndUnparcel(Uri.parse("foo:bob%20lee")); in testParcelling()
54 Uri u = Uri.parse("bob:lee").buildUpon().scheme("robert").build(); in testBuildUpon()
87 Uri.parse("foo:bob%20lee").getSchemeSpecificPart()); in testStringUri()
89 Uri.parse("foo:bob%20lee").getEncodedSchemeSpecificPart()); in testStringUri()
92 Uri.parse("foo:/bob%20lee").getEncodedPath()); in testStringUri()
93 assertNull(Uri.parse("foo:bob%20lee").getPath()); in testStringUri()
96 Uri.parse("foo:?bob%20lee").getEncodedQuery()); in testStringUri()
97 assertNull(Uri.parse("foo:bob%20lee").getEncodedQuery()); in testStringUri()
98 assertNull(Uri.parse("foo:bar#?bob%20lee").getQuery()); in testStringUri()
101 Uri.parse("foo:#bob%20lee").getEncodedFragment()); in testStringUri()
[all …]
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/pm/
DVendorServiceInfoTest.java39 VendorServiceInfo.parse(""); in emptyString()
45 VendorServiceInfo.parse(SERVICE_NAME + "#user=system#bind=bind"); in multipleHashTags()
51 VendorServiceInfo.parse(SERVICE_NAME + "#user=system,unknownKey=blah"); in unknownArg()
57 VendorServiceInfo.parse("invalidComponentName"); in invalidComponentName()
62 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME); in testServiceNameWithDefaults()
74 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#bind=start"); in startService()
83 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#bind=bind"); in bindService()
90 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#bind=startForeground"); in startServiceInForeground()
97 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#trigger=asap"); in triggerAsap()
103 VendorServiceInfo info = VendorServiceInfo.parse(SERVICE_NAME + "#trigger=userUnlocked"); in triggerUnlocked()
[all …]
/packages/modules/Connectivity/tests/common/java/android/net/
DCaptivePortalDataTest.kt44 .setUserPortalUrl(Uri.parse("https://portal.example.com/test"))
45 .setVenueInfoUrl(Uri.parse("https://venue.example.com/test"))
62 setUserPortalUrl(Uri.parse("https://tc.example.com/passpoint"), in <lambda>()
64 setVenueInfoUrl(Uri.parse("https://venue.example.com/passpoint"), in <lambda>()
87 assertNotEqualsAfterChange { it.setUserPortalUrl(Uri.parse("https://example.com/")) } in testEquals()
89 assertNotEqualsAfterChange { it.setVenueInfoUrl(Uri.parse("https://example.com/")) } in testEquals()
102 Uri.parse("https://tc.example.com/passpoint")) } in testEquals()
104 Uri.parse("https://tc.example.com/passpoint"), in testEquals()
107 Uri.parse("https://tc.example.com/other"), in testEquals()
110 Uri.parse("https://tc.example.com/passpoint"), in testEquals()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/anqp/
DANQPParser.java62 return VenueNameElement.parse(payload); in parseElement()
64 return RoamingConsortiumElement.parse(payload); in parseElement()
66 return IPAddressTypeAvailabilityElement.parse(payload); in parseElement()
68 return NAIRealmElement.parse(payload); in parseElement()
70 return ThreeGPPNetworkElement.parse(payload); in parseElement()
72 return DomainNameElement.parse(payload); in parseElement()
76 return VenueUrlElement.parse(payload); in parseElement()
95 return HSFriendlyNameElement.parse(payload); in parseHS20Element()
97 return HSWanMetricsElement.parse(payload); in parseHS20Element()
99 return HSConnectionCapabilityElement.parse(payload); in parseHS20Element()
[all …]
/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/parser/
DExtrasProvisioningDataParserTest.java226 private static final Uri TEST_URI = Uri.parse("https://www.google.com/");
289 ProvisioningParams params = mExtrasProvisioningDataParser.parse(intent); in testParse_trustedSourceProvisioningIntent()
340 ProvisioningParams params = mExtrasProvisioningDataParser.parse(intent); in testParse_financedDeviceProvisioningIntent()
370 ProvisioningParams params = mExtrasProvisioningDataParser.parse(intent); in testParse_resumeProvisioningIntent()
394 ProvisioningParams params = mExtrasProvisioningDataParser.parse(intent); in testParse_managedProfileIntent()
430 ProvisioningParams params = mExtrasProvisioningDataParser.parse(intent); in testParse_managedProfileIntent_CompProvisioning()
466 ProvisioningParams params = mExtrasProvisioningDataParser.parse(intent); in testParse_managedProfileIntent_DeviceOwnerWithByodProvisioning()
480 assertThat(mExtrasProvisioningDataParser.parse(buildIntentWithAllLongExtras())) in testParse_shortExtras_sameAsLongExtras()
481 .isEqualTo(mExtrasProvisioningDataParser.parse(buildIntentWithAllShortExtras())); in testParse_shortExtras_sameAsLongExtras()
500 ProvisioningParams params = mExtrasProvisioningDataParser.parse(intent); in testParse_managedDeviceIntent()
[all …]
/packages/modules/Virtualization/authfs/src/
Dmain.rs53 #[structopt(parse(from_os_str))]
61 #[structopt(long, parse(try_from_str = parse_remote_ro_file_option))]
68 #[structopt(long, parse(try_from_str = parse_remote_ro_file_unverified_option))]
75 #[structopt(long, parse(try_from_str = parse_remote_new_rw_file_option))]
79 #[structopt(long, parse(try_from_str = parse_local_file_ro_option))]
83 #[structopt(long, parse(try_from_str = parse_local_ro_file_unverified_ro_option))]
153 ino: strs[0].parse::<Inode>()?, in parse_remote_ro_file_option()
154 remote_id: strs[1].parse::<i32>()?, in parse_remote_ro_file_option()
155 file_size: strs[2].parse::<u64>()?, in parse_remote_ro_file_option()
166 ino: strs[0].parse::<Inode>()?, in parse_remote_ro_file_unverified_option()
[all …]
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
DVenueUrlElementTest.java97 assertTrue(VenueUrlElement.parse(ByteBuffer.allocate(0)).getVenueUrls().isEmpty()); in parseEmptyBuffer()
111 VenueUrlElement.parse(buffer); in parseTruncatedBuffer()
120 VenueUrlElement.parse(buffer); in parseBufferWithEmptyVenueUrl()
129 VenueUrlElement.parse(buffer); in parseBufferWithInvalidVenueUrl()
145 VenueUrlElement.parse(ByteBuffer.wrap(stream.toByteArray())); in parseBufferWithInvalidLength()
155 assertTrue(VenueUrlElement.parse(buffer).getVenueUrls().isEmpty()); in parseBufferWithZeroVenueNumber()
165 assertTrue(VenueUrlElement.parse(buffer).getVenueUrls().isEmpty()); in parseBufferWithZeroVenueNumberAndUrlData()
181 assertEquals(expectedElement, VenueUrlElement.parse(buffer)); in parseBufferWithNegativeVenueNumberAndUrlData()
208 assertEquals(expectedElement, VenueUrlElement.parse(buffer)); in parseBufferWithValidVenueUrls()
226 assertEquals(expectedElement, VenueUrlElement.parse(buffer)); in parseBufferWithValidVenueUrlsAndCapsUrls()
[all …]
DI18NameTest.java95 I18Name.parse(ByteBuffer.allocate(0)); in parseEmptyBuffer()
109 I18Name.parse(buffer); in parseTruncatedBuffer()
121 I18Name.parse(getTestBuffer(data, I18Name.MINIMUM_LENGTH - 1)); in parseBufferWithLengthLessThanMinimum()
133 I18Name actualName = I18Name.parse(getTestBuffer(data, data.length)); in parseBufferWithDefaultTestData()
150 I18Name actualName = I18Name.parse(getTestBuffer(data, data.length)); in parseBufferWithFrenchData()
164 I18Name actualName = I18Name.parse(getTestBuffer(data, data.length)); in parseBufferWithEmptyText()
DVenueNameElementTest.java88 VenueNameElement.parse(ByteBuffer.allocate(0)); in parseEmptyBuffer()
102 VenueNameElement.parse(buffer); in parseTruncatedBuffer()
114 assertTrue(VenueNameElement.parse(buffer).getNames().isEmpty()); in parseBufferWithEmptyVenueName()
132 assertEquals(expectedElement, VenueNameElement.parse(buffer)); in parseBufferWithValidVenueNames()
154 assertEquals(expectedElement, VenueNameElement.parse(buffer)); in parseBufferWithMaxLengthVenueName()
169 VenueNameElement.parse(buffer); in parseBufferWithVenueNameLengthExceedMax()
/packages/modules/NetworkStack/tests/unit/src/android/net/netlink/
DStructNdOptPref64Test.java90 StructNdOptPref64 opt = StructNdOptPref64.parse(ByteBuffer.wrap(rawBytes)); in testParseCannedOption()
98 opt = StructNdOptPref64.parse(ByteBuffer.wrap(rawBytes)); in testParseCannedOption()
107 StructNdOptPref64 opt = StructNdOptPref64.parse(buf); in testParsing()
112 opt = StructNdOptPref64.parse(buf); in testParsing()
117 opt = StructNdOptPref64.parse(buf); in testParsing()
123 opt = StructNdOptPref64.parse(buf); in testParsing()
129 opt = StructNdOptPref64.parse(buf); in testParsing()
134 assertNull(StructNdOptPref64.parse(buf)); in testParsing()
136 assertNull(StructNdOptPref64.parse(buf)); in testParsing()
145 StructNdOptPref64.parse(buf)); in testParsing()
[all …]
/packages/providers/TelephonyProvider/tests/src/com/android/providers/telephony/
DSmsProviderTest.java175 assertEquals(Uri.parse("content://sms/1"), in testInsertUri()
176 mContentResolver.insert(Uri.parse("content://sms"), values)); in testInsertUri()
177 assertEquals(Uri.parse("content://sms/2"), in testInsertUri()
178 mContentResolver.insert(Uri.parse("content://sms"), values)); in testInsertUri()
186 assertEquals(Uri.parse("content://sms/attachments/1"), in testInsertUri()
187 mContentResolver.insert(Uri.parse("content://sms/attachments"), values)); in testInsertUri()
194 assertEquals(Uri.parse("content://sms/raw/1"), in testRawTableInsert()
214 assertEquals(Uri.parse("content://sms/raw/2"), in testRawTableInsert()
216 assertEquals(Uri.parse("content://sms/raw/3"), in testRawTableInsert()
225 assertEquals(Uri.parse("content://sms/raw/1"), in testRawTableDelete()
[all …]
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DNewOutgoingCallIntentBroadcasterTest.java125 Uri handle = Uri.parse("tel:6505551234"); in testSelfManagedCall()
150 Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse(voicemailNumber)); in testVoicemailCall()
157 verify(mCallsManager).placeOutgoingCall(eq(mCall), eq(Uri.parse(voicemailNumber)), in testVoicemailCall()
164 badCallActionHelper(Uri.parse("voicemail:18005551234"), DisconnectCause.OUTGOING_CANCELED); in testVoicemailCallWithBadAction()
170 badCallActionHelper(Uri.parse("tel:6505551234"), DisconnectCause.INVALID_NUMBER); in testTelCallWithBadCallAction()
176 badCallActionHelper(Uri.parse("sip:testuser@testsite.com"), DisconnectCause.INVALID_NUMBER); in testSipCallWithBadCallAction()
192 Uri handle = Uri.parse("tel:6505551234"); in testAlreadyDisconnectedCall()
207 Uri handle = Uri.parse("tel:"); in testNoNumberSupplied()
220 Uri handle = Uri.parse("tel:6505551911"); in testEmergencyCallWithNonDefaultDialer()
254 Uri handle = Uri.parse("tel:6505551911"); in testActionCallEmergencyCall()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/anqp/eap/
DEAPMethod.java56 public static EAPMethod parse(ByteBuffer payload) throws ProtocolException { in parse() method in EAPMethod
90 return ExpandedEAPMethod.parse(payload, length, false); in parseAuthParam()
92 return NonEAPInnerAuth.parse(payload, length); in parseAuthParam()
94 return InnerAuthEAP.parse(payload, length); in parseAuthParam()
96 return ExpandedEAPMethod.parse(payload, length, true); in parseAuthParam()
98 return CredentialType.parse(payload, length, false); in parseAuthParam()
100 return CredentialType.parse(payload, length, true); in parseAuthParam()
102 return VendorSpecificAuth.parse(payload, length); in parseAuthParam()
/packages/services/BuiltInPrintService/src/com/android/bips/discovery/
DManualDiscovery.java43 private static final Uri[] IPP_URIS = {Uri.parse("ipp://host:631/ipp/print"),
44 Uri.parse("ipp://host:80/ipp/print"), Uri.parse("ipp://host:631/ipp/printer"),
45 Uri.parse("ipp://host:631/ipp"), Uri.parse("ipp://host:631/"),
46 Uri.parse("ipps://host:631/ipp/print"), Uri.parse("ipps://host:443/ipp/print"),
47 Uri.parse("ipps://host:10443/ipp/print")};
208 Uri uuid = TextUtils.isEmpty(capabilities.uuid) ? null : Uri.parse(capabilities.uuid); in handleCapabilities()
/packages/services/Car/tests/carservice_test/src/com/android/car/
DCarUxRestrictionsConfigurationXmlParserTest.java56 CarUxRestrictionsConfigurationXmlParser.parse(getContext(), R.xml.car_ux_restrictions_map); in testParsingDefaultConfiguration()
61 CarUxRestrictionsConfiguration config = CarUxRestrictionsConfigurationXmlParser.parse( in testParsingParameters()
72 CarUxRestrictionsConfiguration config = CarUxRestrictionsConfigurationXmlParser.parse( in testParsingNonMovingState()
85 CarUxRestrictionsConfiguration config = CarUxRestrictionsConfigurationXmlParser.parse( in testParsingMovingState_NoSpeedRange()
96 CarUxRestrictionsConfiguration config = CarUxRestrictionsConfigurationXmlParser.parse( in testParsingMovingState_SingleSpeedRange()
107 CarUxRestrictionsConfiguration config = CarUxRestrictionsConfigurationXmlParser.parse( in testParsingMovingState_MultiSpeedRange()
121 CarUxRestrictionsConfiguration config = CarUxRestrictionsConfigurationXmlParser.parse( in testParsingPassengerState()
140 CarUxRestrictionsConfiguration config = CarUxRestrictionsConfigurationXmlParser.parse( in testParsingPassengerMode_ValuesInBaselineAreNotAffected()
163 CarUxRestrictionsConfigurationXmlParser.parse( in testParsingMultipleConfigurations()
181 CarUxRestrictionsConfigurationXmlParser.parse( in testMultipleConfigurationsShareParameters()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/enterprise/
DEnterprisePolicyGuardTest.java55 Uri.parse("content://com.android.contacts/contacts/" + CONTACT_ID + "/photo");
57 .parse("content://com.android.contacts/contacts/" + CONTACT_ID + "/display_photo");
59 Uri.parse("content://com.android.contacts/contacts/filter/" + CONTACT_NAME);
61 .parse("content://com.android.contacts/data/phones/filter/" + CONTACT_NAME);
62 private static final Uri URI_CALLABLES_FILTER = Uri.parse(
65 .parse("content://com.android.contacts/data/emails/filter/" + CONTACT_NAME);
67 Uri.parse("content://com.android.contacts/data/emails/lookup/"
69 private static final Uri URI_PHONE_LOOKUP = Uri.parse(
72 Uri.parse("content://com.android.contacts/directories");
74 Uri.parse("content://com.android.contacts/directories/" + DIRECTORY_ID);
[all …]
/packages/apps/Tag/src/com/android/apps/tag/message/
DNdefMessageParser.java43 public static ParsedNdefMessage parse(NdefMessage message) { in parse() method in NdefMessageParser
55 elements.add(SmartPoster.parse(record)); in getRecords()
57 elements.add(UriRecord.parse(record)); in getRecords()
59 elements.add(TextRecord.parse(record)); in getRecords()
61 elements.add(ImageRecord.parse(record)); in getRecords()
63 elements.add(VCardRecord.parse(record)); in getRecords()
65 elements.add(MimeRecord.parse(record)); in getRecords()
/packages/modules/NetworkStack/common/netlinkclient/src/android/net/netlink/
DNetlinkMessage.java47 public static NetlinkMessage parse(@NonNull ByteBuffer byteBuffer, int nlFamily) { in parse() method in NetlinkMessage
49 final StructNlMsgHdr nlmsghdr = StructNlMsgHdr.parse(byteBuffer); in parse()
107 return (NetlinkMessage) NetlinkErrorMessage.parse(nlmsghdr, byteBuffer); in parseCtlMessage()
124 return (NetlinkMessage) RtNetlinkNeighborMessage.parse(nlmsghdr, byteBuffer); in parseRtMessage()
126 return (NetlinkMessage) NduseroptMessage.parse(nlmsghdr, byteBuffer); in parseRtMessage()
136 return (NetlinkMessage) InetDiagMessage.parse(nlmsghdr, byteBuffer); in parseInetDiagMessage()
149 return (NetlinkMessage) ConntrackMessage.parse(nlmsghdr, byteBuffer); in parseNfMessage()
/packages/apps/Messaging/tests/src/com/android/messaging/ui/
DMultiAttachmentLayoutTest.java81 "image/jpeg", Uri.parse("content://uri1"), 100, 100); in testBindTwoAttachments()
83 "image/jpeg", Uri.parse("content://uri2"), 100, 100); in testBindTwoAttachments()
93 "image/jpeg", Uri.parse("content://uri1"), 100, 100); in testBindFiveAttachments()
95 "image/jpeg", Uri.parse("content://uri2"), 100, 100); in testBindFiveAttachments()
97 "image/jpeg", Uri.parse("content://uri3"), 100, 100); in testBindFiveAttachments()
99 "image/jpeg", Uri.parse("content://uri4"), 100, 100); in testBindFiveAttachments()
101 "image/jpeg", Uri.parse("content://uri5"), 100, 100); in testBindFiveAttachments()
/packages/apps/DocumentsUI/tests/functional/com/android/documentsui/services/
DJobErrorHandlingTest.java38 Uri invalidUri1 = Uri.parse("content://poodles/chuckleberry/ham"); in testRecoversFromInvalidUri()
40 Uri invalidUri2 = Uri.parse("content://poodles/chuckleberry/ham"); in testRecoversFromInvalidUri()
53 Uri invalidUri1 = Uri.parse("content://poodles/chuckleberry/ham"); in testRecordsInvalidUris()
55 Uri invalidUri2 = Uri.parse("content://poodles/chuckleberry/ham"); in testRecordsInvalidUris()
67 Uri invalidUri1 = Uri.parse("content://poodles/chuckleberry/ham"); in testReportsCorrectFailureCount()
69 Uri invalidUri2 = Uri.parse("content://poodles/chuckleberry/ham"); in testReportsCorrectFailureCount()
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/telephony/
DBluetoothInCallServiceTest.java249 when(activeCall.getHandle()).thenReturn(Uri.parse("tel:555-000")); in testListCurrentCallsOneCall()
270 when(silentRingingCall.getHandle()).thenReturn(Uri.parse("tel:555-000")); in testListCurrentCallsSilentRinging()
305 new GatewayInfo(null, null, Uri.parse("tel:555-0000"))); in testConferenceInProgressCDMA()
307 new GatewayInfo(null, null, Uri.parse("tel:555-0001"))); in testConferenceInProgressCDMA()
366 new GatewayInfo(null, null, Uri.parse("tel:555-0000"))); in testListCurrentCallsCdmaHold()
368 new GatewayInfo(null, null, Uri.parse("tel:555-0001"))); in testListCurrentCallsCdmaHold()
414 new GatewayInfo(null, null, Uri.parse("tel:555-0000"))); in testListCurrentCallsCdmaConference()
416 new GatewayInfo(null, null, Uri.parse("tel:555-0001"))); in testListCurrentCallsCdmaConference()
453 new GatewayInfo(null, null, Uri.parse("tel:555-0000"))); in testWaitingCallClccResponse()
496 new GatewayInfo(null, null, Uri.parse("tel:555-0000"))); in testRingingCallClccResponse()
[all …]
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/eap/
DExpandedEAPMethodTest.java48 ExpandedEAPMethod.parse( in parseEmptyBuffer()
60 ExpandedEAPMethod.parse(ByteBuffer.wrap(TEST_DATA_BYTES), in parseBufferWithInvalidLength()
71 ExpandedEAPMethod.parse(ByteBuffer.wrap(TEST_DATA_BYTES, 0, TEST_DATA_BYTES.length - 1), in parseBufferWithTruncatedBuffer()
85 ExpandedEAPMethod actual = ExpandedEAPMethod.parse( in parseBufferForNonInnerEAPMethod()
100 ExpandedEAPMethod actual = ExpandedEAPMethod.parse( in parseBufferForTunneledEAPMethod()
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/avrcpcontroller/
DAvrcpItemTest.java76 Uri uri = Uri.parse("content://somewhere"); in buildAvrcpItem()
77 Uri uri2 = Uri.parse("content://somewhereelse"); in buildAvrcpItem()
435 Uri uri = Uri.parse("content://somewhere"); in updateCoverArtLocation()
436 Uri uri2 = Uri.parse("content://somewhereelse"); in updateCoverArtLocation()
458 Uri uri = Uri.parse("content://somewhere"); in avrcpMediaItem_toMediaMetadata()
495 Uri.parse(metadata.getString(MediaMetadataCompat.METADATA_KEY_DISPLAY_ICON_URI))); in avrcpMediaItem_toMediaMetadata()
497 Uri.parse(metadata.getString(MediaMetadataCompat.METADATA_KEY_ART_URI))); in avrcpMediaItem_toMediaMetadata()
499 Uri.parse(metadata.getString(MediaMetadataCompat.METADATA_KEY_ALBUM_ART_URI))); in avrcpMediaItem_toMediaMetadata()
515 Uri uri = Uri.parse("content://somewhere"); in avrcpFolderItem_toMediaMetadata()
547 Uri.parse(metadata.getString(MediaMetadataCompat.METADATA_KEY_DISPLAY_ICON_URI))); in avrcpFolderItem_toMediaMetadata()
[all …]

12345678910>>...32