Home
last modified time | relevance | path

Searched refs:wrapped (Results 1 – 25 of 43) sorted by relevance

12

/packages/providers/MediaProvider/photopicker/src/com/android/photopicker/features/preview/video/
DRemoteSurfaceController.kt33 class RemoteSurfaceController(private val wrapped: ICloudMediaSurfaceController) : constant in com.android.photopicker.features.preview.RemoteSurfaceController
65 wrapped.onSurfaceCreated(surfaceId, surface, mediaId) in onSurfaceCreated()
72 wrapped.onSurfaceChanged(surfaceId, format, width, height) in onSurfaceChanged()
79 wrapped.onSurfaceDestroyed(surfaceId) in onSurfaceDestroyed()
88 wrapped.onMediaPlay(surfaceId) in onMediaPlay()
92 wrapped.onMediaPause(surfaceId) in onMediaPause()
96 wrapped.onMediaSeekTo(surfaceId, timestampMillis) in onMediaSeekTo()
100 wrapped.onConfigChange(bundle) in onConfigChange()
104 wrapped.onDestroy() in onDestroy()
108 wrapped.onPlayerCreate() in onPlayerCreate()
[all …]
/packages/providers/MediaProvider/src/com/android/providers/media/util/
DCachedSupplier.java22 private final Supplier<T> wrapped; field in CachedSupplier
25 public CachedSupplier(Supplier<T> wrapped) { in CachedSupplier() argument
26 this.wrapped = wrapped; in CachedSupplier()
32 cache = wrapped.get(); in get()
DXmpDataParser.java260 public ByteCountingInputStream(InputStream wrapped) { in ByteCountingInputStream() argument
261 mWrapped = wrapped; in ByteCountingInputStream()
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/data/
DLoadAndFreezeLifeData.kt32 private val wrapped: SmartUpdateMediatorLiveData<T> in <lambda>() constant in com.android.permissioncontroller.permission.data.LoadAndFreezeLifeData
36 addSource(wrapped) { v -> in <lambda>()
37 if (wrapped.isInitialized) { in <lambda>()
40 if (!wrapped.isStale) { in <lambda>()
43 removeSource(wrapped) in <lambda>()
/packages/apps/Contacts/tests/src/com/android/contacts/tests/
DStringableCursor.java34 final Cursor wrapped = getWrappedCursor(); in toString() local
36 if (wrapped.getCount() == 0) { in toString()
40 return DatabaseUtils.dumpCursorToString(wrapped); in toString()
/packages/modules/Connectivity/staticlibs/testutils/devicetests/com/android/testutils/
DDevSdkIgnoreRunner.kt63 private class RunnerWrapper<T>(private val wrapped: T) : constant in com.android.testutils.DevSdkIgnoreRunner.RunnerWrapper
64 Runner(), Filterable by wrapped, Sortable by wrapped
66 override fun getDescription(): Description = wrapped.description in getDescription()
67 override fun run(notifier: RunNotifier?) = wrapped.run(notifier) in getDescription()
/packages/modules/IntentResolver/tests/shared/src/com/android/intentresolver/
DTestContentPreviewViewModel.kt55 val wrapped = factory.create(modelClass, extras) as BasePreviewViewModel in wrap() constant
57 wrapped, in wrap()
58 imageLoader ?: wrapped.imageLoader, in wrap()
DMockitoKotlinHelpers.kt218 private val wrapped: ArgumentCaptor<T> = ArgumentCaptor.forClass(clazz) in anyArray() constant
219 fun capture(): T = wrapped.capture() in anyArray()
221 get() = wrapped.value in anyArray()
223 get() = wrapped.allValues in anyArray()
/packages/services/BuiltInPrintService/src/com/android/bips/discovery/
DDelayedDiscovery.java48 public DelayedDiscovery(Discovery wrapped, int startDelay, int findDelay) { in DelayedDiscovery() argument
49 super(wrapped.getPrintService()); in DelayedDiscovery()
50 mChild = wrapped; in DelayedDiscovery()
/packages/modules/Bluetooth/framework/java/android/bluetooth/le/
DBluetoothLeAdvertiser.java177 AdvertisingSetCallback wrapped = wrapOldCallback(callback, settings); in startAdvertising() local
178 mLegacyAdvertisers.put(callback, wrapped); in startAdvertising()
187 wrapped); in startAdvertising() local
575 IAdvertisingSetCallback wrapped = wrap(callback, handler);
576 if (mCallbackWrappers.putIfAbsent(callback, wrapped) != null) {
591 wrapped,
616 IAdvertisingSetCallback wrapped = mCallbackWrappers.remove(callback);
617 if (wrapped == null) {
627 gatt.stopAdvertisingSet(wrapped, mAttributionSource);
DPeriodicAdvertisingManager.java156 IPeriodicAdvertisingCallback wrapped = wrap(callback, handler); in registerSync() local
157 mCallbackWrappers.put(callback, wrapped); in registerSync()
160 gatt.registerSync(scanResult, skip, timeout, wrapped, mAttributionSource); in registerSync()
/packages/apps/Settings/src/com/android/settings/widget/
DInvertedChartAxis.java29 public InvertedChartAxis(ChartAxis wrapped) { in InvertedChartAxis() argument
30 mWrapped = wrapped; in InvertedChartAxis()
/packages/services/Car/tests/BugReportApp/libs/
Dgoogle-api-client-android-1.30.2.jar ... .google.android.gms.auth.GoogleAuthException wrapped public com.google.android.gms.auth ...
/packages/modules/Bluetooth/system/main/
DAndroid.bp59 "libcom.android.sysprop.bluetooth.wrapped",
152 "libcom.android.sysprop.bluetooth.wrapped",
220 "libcom.android.sysprop.bluetooth.wrapped",
304 "libcom.android.sysprop.bluetooth.wrapped",
/packages/modules/Bluetooth/system/btif/
DAndroid.bp246 "libcom.android.sysprop.bluetooth.wrapped",
330 "libcom.android.sysprop.bluetooth.wrapped",
529 "libcom.android.sysprop.bluetooth.wrapped",
632 "libcom.android.sysprop.bluetooth.wrapped",
754 "libcom.android.sysprop.bluetooth.wrapped",
/packages/modules/Bluetooth/system/gd/
DAndroid.bp185 "libcom.android.sysprop.bluetooth.wrapped",
329 "libcom.android.sysprop.bluetooth.wrapped",
501 "libcom.android.sysprop.bluetooth.wrapped",
650 "libcom.android.sysprop.bluetooth.wrapped",
/packages/modules/Bluetooth/sysprop/
DAndroid.bp25 name: "libcom.android.sysprop.bluetooth.wrapped",
/packages/modules/Bluetooth/system/bta/
DAndroid.bp155 "libcom.android.sysprop.bluetooth.wrapped",
223 "libcom.android.sysprop.bluetooth.wrapped",
325 "libcom.android.sysprop.bluetooth.wrapped",
405 "libcom.android.sysprop.bluetooth.wrapped",
510 "libcom.android.sysprop.bluetooth.wrapped",
1342 "libcom.android.sysprop.bluetooth.wrapped",
1414 "libcom.android.sysprop.bluetooth.wrapped",
/packages/modules/IntentResolver/java/src/com/android/intentresolver/contentpreview/payloadtoggle/ui/composable/
DComposeIconComposable.kt37 is AdaptiveIcon -> Image(icon.wrapped, modifier, colorFilter = colorFilter) in Image()
/packages/modules/IntentResolver/java/src/com/android/intentresolver/icon/
DComposeIcon.kt33 @JvmInline value class AdaptiveIcon(val wrapped: ComposeIcon) : ComposeIcon in <lambda>()
/packages/modules/Bluetooth/system/profile/avrcp/
DAndroid.bp34 "libcom.android.sysprop.bluetooth.wrapped",
/packages/services/Car/cpp/telemetry/proto/
DCarData.proto37 // wrapped in
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/bass_client/
DBaseData.java443 ByteBuffer wrapped = ByteBuffer.wrap(location); in getCodecParamString() local
444 int audioLocation = wrapped.getInt(); in getCodecParamString()
/packages/modules/Bluetooth/system/test/suite/
DAndroid.bp91 "libcom.android.sysprop.bluetooth.wrapped",
/packages/modules/Virtualization/apex/
Dsign_virt_apex.py63 def wrapped(): function
67 task = executor.submit(wrapped)

12