Home
last modified time | relevance | path

Searched refs:toParcelable (Results 1 – 18 of 18) sorted by relevance

/packages/modules/Connectivity/tests/unit/java/android/net/ipmemorystore/
DParcelableTests.java50 assertEquals(in, new NetworkAttributes(parcelingRoundTrip(in.toParcelable()))); in testNetworkAttributesParceling()
59 assertEquals(in, new NetworkAttributes(parcelingRoundTrip(in.toParcelable()))); in testNetworkAttributesParceling()
69 assertEquals(in, new NetworkAttributes(parcelingRoundTrip(in.toParcelable()))); in testNetworkAttributesParceling()
73 assertEquals(in, new NetworkAttributes(parcelingRoundTrip(in.toParcelable()))); in testNetworkAttributesParceling()
105 new SameL3NetworkResponse(parcelingRoundTrip(in.toParcelable())); in testSameL3NetworkResponseParceling()
125 final NetworkAttributes out = new NetworkAttributes(parcelingRoundTrip(in.toParcelable())); in testIPv6ProvisioningLossQuirkParceling()
/packages/modules/NetworkStack/tests/unit/src/com/android/networkstack/ipmemorystore/
DIpMemoryStoreServiceTest.java381 doLatched(timeoutMessage, latch -> mService.storeNetworkAttributes(l2Key, na.toParcelable(),
526 mService.storeNetworkAttributes(null, na.toParcelable(), onStatus(status -> {
617 mService.findL2Key(na.build().toParcelable(), onL2KeyResponse((status, key) -> {
627 mService.findL2Key(na.build().toParcelable(), onL2KeyResponse((status, key) -> {
639 mService.findL2Key(na.build().toParcelable(), onL2KeyResponse((status, key) -> {
649 mService.findL2Key(na.build().toParcelable(), onL2KeyResponse((status, key) -> {
660 mService.findL2Key(na.build().toParcelable(), onL2KeyResponse((status, key) -> {
670 mService.findL2Key(na.build().toParcelable(), onL2KeyResponse((status, key) -> {
682 mService.findL2Key(na.build().toParcelable(), onL2KeyResponse((status, key) -> {
DRegularMaintenanceJobServiceTest.kt136 listener.onComplete(Status(status).toParcelable()) in <lambda>()
/packages/modules/NetworkStack/tests/unit/src/android/net/dhcp/
DDhcpLeaseTest.kt49 assertParcelEquals(lease, lease.toParcelable()) in testToParcelable()
55 assertParcelEquals(lease, lease.toParcelable()) in testToParcelable_NullFields()
/packages/modules/NetworkStack/src/com/android/networkstack/ipmemorystore/
DIpMemoryStoreService.java146 return new Status(code).toParcelable(); in makeStatus()
319 -1f /* never connected */).toParcelable()); in isSameNetwork()
324 new SameL3NetworkResponse(l2Key1, l2Key2, confidence).toParcelable()); in isSameNetwork()
363 null == attributes ? null : attributes.toParcelable()); in retrieveNetworkAttributes()
/packages/apps/TV/src/com/android/tv/dvr/ui/
DDvrUiHelper.java127 args.putParcelable(DvrHalfSizedDialogFragment.KEY_PROGRAM, program.toParcelable()); in showScheduleDialog()
149 args.putParcelable(DvrHalfSizedDialogFragment.KEY_PROGRAM, program.toParcelable()); in showScheduleConflictDialog()
232 args.putParcelable(DvrHalfSizedDialogFragment.KEY_PROGRAM, program.toParcelable()); in showAlreadyScheduleDialog()
242 args.putParcelable(DvrHalfSizedDialogFragment.KEY_PROGRAM, program.toParcelable()); in showAlreadyRecordedDialog()
539 intent.putExtra(DvrRecordingSettingsActivity.PROGRAM, program.toParcelable()); in startRecordingSettingsActivity()
565 … intent.putExtra(DvrSeriesSettingsActivity.CURRENT_PROGRAM, currentProgram.toParcelable()); in startSeriesSettingsActivityInternal()
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallScreeningServiceFilterTest.java281 csAdapter.onScreeningResponse(CALL_ID, COMPONENT_NAME, allowCallResponse.toParcelable()); in testAllowCall()
318 csAdapter.onScreeningResponse(CALL_ID, COMPONENT_NAME, disallowCallResponse.toParcelable()); in testDisallowCall()
354 csAdapter.onScreeningResponse(CALL_ID, COMPONENT_NAME, silenceCallResponse.toParcelable()); in testSilenceCall()
392 additionalScreeningResponse.toParcelable()); in testScreenCallFurther()
/packages/modules/NetworkStack/common/networkstackclient/src/android/net/
DIpMemoryStoreClient.java92 () -> service.storeNetworkAttributes(l2Key, attributes.toParcelable(), in storeNetworkAttributes()
144 () -> service.findL2Key(attributes.toParcelable(), in findL2Key()
/packages/modules/NetworkStack/common/networkstackclient/src/android/net/ipmemorystore/
DStatus.java50 public StatusParcelable toParcelable() { in toParcelable() method in Status
DSameL3NetworkResponse.java110 public SameL3NetworkResponseParcelable toParcelable() { in toParcelable() method in SameL3NetworkResponse
DNetworkAttributes.java178 public NetworkAttributesParcelable toParcelable() { in toParcelable() method in NetworkAttributes
/packages/apps/TV/src/com/android/tv/data/api/
DProgram.java90 Parcelable toParcelable(); in toParcelable() method
/packages/modules/NetworkStack/src/android/net/dhcp/
DDhcpLease.java171 public DhcpLeaseParcelable toParcelable() { in toParcelable() method in DhcpLease
DDhcpLeaseRepository.java391 leaseParcelables.add(committedLease.toParcelable()); in notifyLeasesChanged()
/packages/modules/Virtualization/java/framework/src/android/system/virtualmachine/
DVirtualMachineCustomImageConfig.java375 android.system.virtualizationservice.DisplayConfig toParcelable() { in toParcelable() method in VirtualMachineCustomImageConfig.DisplayConfig
550 android.system.virtualizationservice.GpuConfig toParcelable() { in toParcelable() method in VirtualMachineCustomImageConfig.GpuConfig
DVirtualMachineConfig.java712 .map(dc -> dc.toParcelable()) in toVsRawConfig()
716 .map(dc -> dc.toParcelable()) in toVsRawConfig()
/packages/apps/TV/src/com/android/tv/data/
DProgramImpl.java955 public Parcelable toParcelable() { in toParcelable() method in ProgramImpl
/packages/apps/TV/src/com/android/tv/
DMainActivity.java1678 intent.putExtra(DetailsActivity.PROGRAM, program.toParcelable()); in onPostExecute()