├── .github └── workflows │ ├── publish.yml │ └── style.yml ├── .gitignore ├── .isort.cfg ├── .mypy.ini ├── .pydocstyle ├── .pylintrc ├── LICENSE ├── README.md ├── STRUCTURES.md ├── binder-trace-after-config.png ├── binder-trace-before-config.png ├── binder-trace.gif ├── binder-trace.png ├── binder_trace ├── .gitignore ├── binder_trace │ ├── __init__.py │ ├── __main__.py │ ├── config.json │ ├── constants.py │ ├── generator.py │ ├── js │ │ └── interceptbinder.js │ ├── loggers.py │ ├── override_IBulkCursor.py │ ├── override_IContentProvider.py │ ├── overrides.py │ ├── parcel.py │ ├── parsedParcel.py │ ├── parseerror.py │ ├── parsing.py │ ├── structs │ │ ├── android-10.0.0_r47 │ │ │ ├── android │ │ │ │ ├── IGraphicBufferSource.struct │ │ │ │ ├── IOMXBufferSource.struct │ │ │ │ ├── IOMXNode.struct │ │ │ │ ├── accessibilityservice │ │ │ │ │ ├── IAccessibilityServiceClient.struct │ │ │ │ │ └── IAccessibilityServiceConnection.struct │ │ │ │ ├── accounts │ │ │ │ │ ├── AuthenticatorDescription.struct │ │ │ │ │ ├── IAccountAuthenticator.struct │ │ │ │ │ ├── IAccountAuthenticatorResponse.struct │ │ │ │ │ ├── IAccountManager.struct │ │ │ │ │ └── IAccountManagerResponse.struct │ │ │ │ ├── aidl │ │ │ │ │ ├── loggable │ │ │ │ │ │ ├── ILoggableInterface.struct │ │ │ │ │ │ └── ILoggableInterfaceNdk.struct │ │ │ │ │ └── tests │ │ │ │ │ │ ├── INamedCallback.struct │ │ │ │ │ │ └── StructuredParcelable.struct │ │ │ │ ├── apex │ │ │ │ │ ├── ApexInfo.struct │ │ │ │ │ ├── ApexInfoList.struct │ │ │ │ │ ├── ApexSessionInfo.struct │ │ │ │ │ └── IApexService.struct │ │ │ │ ├── app │ │ │ │ │ ├── AutomaticZenRule.struct │ │ │ │ │ ├── IActivityController.struct │ │ │ │ │ ├── IActivityManager.struct │ │ │ │ │ ├── IActivityPendingResult.struct │ │ │ │ │ ├── IActivityTaskManager.struct │ │ │ │ │ ├── IAlarmCompleteListener.struct │ │ │ │ │ ├── IAlarmListener.struct │ │ │ │ │ ├── IAlarmManager.struct │ │ │ │ │ ├── IAppTask.struct │ │ │ │ │ ├── IApplicationThread.struct │ │ │ │ │ ├── IAssistDataReceiver.struct │ │ │ │ │ ├── IBackupAgent.struct │ │ │ │ │ ├── IEphemeralResolver.struct │ │ │ │ │ ├── IInstantAppResolver.struct │ │ │ │ │ ├── IInstrumentationWatcher.struct │ │ │ │ │ ├── INotificationManager.struct │ │ │ │ │ ├── IProcessObserver.struct │ │ │ │ │ ├── IRequestFinishCallback.struct │ │ │ │ │ ├── ISearchManager.struct │ │ │ │ │ ├── ISearchManagerCallback.struct │ │ │ │ │ ├── IServiceConnection.struct │ │ │ │ │ ├── IStopUserCallback.struct │ │ │ │ │ ├── ITaskStackListener.struct │ │ │ │ │ ├── ITransientNotification.struct │ │ │ │ │ ├── IUiAutomationConnection.struct │ │ │ │ │ ├── IUiModeManager.struct │ │ │ │ │ ├── IUidObserver.struct │ │ │ │ │ ├── IUriGrantsManager.struct │ │ │ │ │ ├── IUserSwitchObserver.struct │ │ │ │ │ ├── IWallpaperManager.struct │ │ │ │ │ ├── IWallpaperManagerCallback.struct │ │ │ │ │ ├── NotificationChannel.struct │ │ │ │ │ ├── PendingIntent.struct │ │ │ │ │ ├── ProfilerInfo.struct │ │ │ │ │ ├── Vr2dDisplayProperties.struct │ │ │ │ │ ├── WaitResult.struct │ │ │ │ │ ├── WallpaperInfo.struct │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── IDeviceAdminService.struct │ │ │ │ │ │ ├── IDevicePolicyManager.struct │ │ │ │ │ │ ├── NetworkEvent.struct │ │ │ │ │ │ ├── PasswordMetrics.struct │ │ │ │ │ │ ├── StartInstallingUpdateCallback.struct │ │ │ │ │ │ └── SystemUpdateInfo.struct │ │ │ │ │ ├── assist │ │ │ │ │ │ ├── AssistContent.struct │ │ │ │ │ │ └── AssistStructure.struct │ │ │ │ │ ├── backup │ │ │ │ │ │ ├── BackupProgress.struct │ │ │ │ │ │ ├── IBackupCallback.struct │ │ │ │ │ │ ├── IBackupManager.struct │ │ │ │ │ │ ├── IBackupManagerMonitor.struct │ │ │ │ │ │ ├── IBackupObserver.struct │ │ │ │ │ │ ├── IFullBackupRestoreObserver.struct │ │ │ │ │ │ ├── IRestoreObserver.struct │ │ │ │ │ │ ├── IRestoreSession.struct │ │ │ │ │ │ ├── ISelectBackupTransportCallback.struct │ │ │ │ │ │ ├── RestoreDescription.struct │ │ │ │ │ │ └── RestoreSet.struct │ │ │ │ │ ├── contentsuggestions │ │ │ │ │ │ ├── ContentClassification.struct │ │ │ │ │ │ ├── ContentSelection.struct │ │ │ │ │ │ ├── IClassificationsCallback.struct │ │ │ │ │ │ ├── IContentSuggestionsManager.struct │ │ │ │ │ │ └── ISelectionsCallback.struct │ │ │ │ │ ├── job │ │ │ │ │ │ ├── IJobCallback.struct │ │ │ │ │ │ ├── IJobScheduler.struct │ │ │ │ │ │ ├── IJobService.struct │ │ │ │ │ │ └── JobWorkItem.struct │ │ │ │ │ ├── prediction │ │ │ │ │ │ ├── AppPredictionContext.struct │ │ │ │ │ │ ├── AppPredictionSessionId.struct │ │ │ │ │ │ ├── AppTargetEvent.struct │ │ │ │ │ │ ├── IPredictionCallback.struct │ │ │ │ │ │ └── IPredictionManager.struct │ │ │ │ │ ├── role │ │ │ │ │ │ ├── IOnRoleHoldersChangedListener.struct │ │ │ │ │ │ ├── IRoleController.struct │ │ │ │ │ │ └── IRoleManager.struct │ │ │ │ │ ├── slice │ │ │ │ │ │ ├── ISliceListener.struct │ │ │ │ │ │ ├── ISliceManager.struct │ │ │ │ │ │ └── SliceSpec.struct │ │ │ │ │ ├── stubs │ │ │ │ │ │ └── ISecondary.struct │ │ │ │ │ ├── timedetector │ │ │ │ │ │ └── ITimeDetectorService.struct │ │ │ │ │ ├── timezone │ │ │ │ │ │ ├── ICallback.struct │ │ │ │ │ │ └── IRulesManager.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── IStrongAuthTracker.struct │ │ │ │ │ │ ├── ITrustListener.struct │ │ │ │ │ │ └── ITrustManager.struct │ │ │ │ │ └── usage │ │ │ │ │ │ ├── ExternalStorageStats.struct │ │ │ │ │ │ ├── ICacheQuotaService.struct │ │ │ │ │ │ ├── IStorageStatsManager.struct │ │ │ │ │ │ ├── IUsageStatsManager.struct │ │ │ │ │ │ └── StorageStats.struct │ │ │ │ ├── ashmemd │ │ │ │ │ └── IAshmemDeviceService.struct │ │ │ │ ├── bluetooth │ │ │ │ │ ├── BluetoothAudioConfig.struct │ │ │ │ │ ├── BluetoothCodecConfig.struct │ │ │ │ │ ├── BluetoothDevice.struct │ │ │ │ │ ├── BluetoothGattDescriptor.struct │ │ │ │ │ ├── BluetoothGattIncludedService.struct │ │ │ │ │ ├── BluetoothHidDeviceAppQosSettings.struct │ │ │ │ │ ├── BluetoothHidDeviceAppSdpSettings.struct │ │ │ │ │ ├── IBluetooth.struct │ │ │ │ │ ├── IBluetoothA2dp.struct │ │ │ │ │ ├── IBluetoothA2dpSink.struct │ │ │ │ │ ├── IBluetoothA2dpSinkCallback.struct │ │ │ │ │ ├── IBluetoothA2dpSource.struct │ │ │ │ │ ├── IBluetoothA2dpSourceCallback.struct │ │ │ │ │ ├── IBluetoothAvrcpControl.struct │ │ │ │ │ ├── IBluetoothAvrcpControlCallback.struct │ │ │ │ │ ├── IBluetoothAvrcpController.struct │ │ │ │ │ ├── IBluetoothAvrcpTarget.struct │ │ │ │ │ ├── IBluetoothAvrcpTargetCallback.struct │ │ │ │ │ ├── IBluetoothCallback.struct │ │ │ │ │ ├── IBluetoothGatt.struct │ │ │ │ │ ├── IBluetoothGattCallback.struct │ │ │ │ │ ├── IBluetoothGattClient.struct │ │ │ │ │ ├── IBluetoothGattClientCallback.struct │ │ │ │ │ ├── IBluetoothGattServer.struct │ │ │ │ │ ├── IBluetoothGattServerCallback.struct │ │ │ │ │ ├── IBluetoothHeadset.struct │ │ │ │ │ ├── IBluetoothHeadsetClient.struct │ │ │ │ │ ├── IBluetoothHeadsetPhone.struct │ │ │ │ │ ├── IBluetoothHearingAid.struct │ │ │ │ │ ├── IBluetoothHidDevice.struct │ │ │ │ │ ├── IBluetoothHidDeviceCallback.struct │ │ │ │ │ ├── IBluetoothHidHost.struct │ │ │ │ │ ├── IBluetoothLeAdvertiser.struct │ │ │ │ │ ├── IBluetoothLeAdvertiserCallback.struct │ │ │ │ │ ├── IBluetoothLeScanner.struct │ │ │ │ │ ├── IBluetoothLeScannerCallback.struct │ │ │ │ │ ├── IBluetoothLowEnergy.struct │ │ │ │ │ ├── IBluetoothLowEnergyCallback.struct │ │ │ │ │ ├── IBluetoothManager.struct │ │ │ │ │ ├── IBluetoothManagerCallback.struct │ │ │ │ │ ├── IBluetoothMap.struct │ │ │ │ │ ├── IBluetoothMapClient.struct │ │ │ │ │ ├── IBluetoothMetadataListener.struct │ │ │ │ │ ├── IBluetoothPan.struct │ │ │ │ │ ├── IBluetoothPbap.struct │ │ │ │ │ ├── IBluetoothPbapClient.struct │ │ │ │ │ ├── IBluetoothProfileServiceConnection.struct │ │ │ │ │ ├── IBluetoothSap.struct │ │ │ │ │ ├── IBluetoothSocketManager.struct │ │ │ │ │ ├── IBluetoothStateChangeCallback.struct │ │ │ │ │ └── le │ │ │ │ │ │ ├── AdvertisingSetParameters.struct │ │ │ │ │ │ ├── IAdvertisingSetCallback.struct │ │ │ │ │ │ ├── IPeriodicAdvertisingCallback.struct │ │ │ │ │ │ ├── IScannerCallback.struct │ │ │ │ │ │ ├── PeriodicAdvertisingParameters.struct │ │ │ │ │ │ └── ScanSettings.struct │ │ │ │ ├── brillo │ │ │ │ │ └── IUpdateEngine.struct │ │ │ │ ├── car │ │ │ │ │ ├── IAppFocus.struct │ │ │ │ │ ├── IAppFocusListener.struct │ │ │ │ │ ├── IAppFocusOwnershipCallback.struct │ │ │ │ │ ├── ICar.struct │ │ │ │ │ ├── ICarBluetooth.struct │ │ │ │ │ ├── ICarBluetoothUserService.struct │ │ │ │ │ ├── ICarBugreportCallback.struct │ │ │ │ │ ├── ICarBugreportService.struct │ │ │ │ │ ├── ICarConnectionListener.struct │ │ │ │ │ ├── ICarInfo.struct │ │ │ │ │ ├── ICarProjection.struct │ │ │ │ │ ├── ICarProjectionKeyEventHandler.struct │ │ │ │ │ ├── ICarProjectionStatusListener.struct │ │ │ │ │ ├── ICarUserService.struct │ │ │ │ │ ├── ILocationManagerProxy.struct │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── IInstrumentClusterManagerCallback.struct │ │ │ │ │ │ ├── IInstrumentClusterManagerService.struct │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ ├── IInstrumentCluster.struct │ │ │ │ │ │ │ └── IInstrumentClusterNavigation.struct │ │ │ │ │ ├── content │ │ │ │ │ │ └── pm │ │ │ │ │ │ │ ├── ICarAppBlockingPolicy.struct │ │ │ │ │ │ │ ├── ICarAppBlockingPolicySetter.struct │ │ │ │ │ │ │ └── ICarPackageManager.struct │ │ │ │ │ ├── diagnostic │ │ │ │ │ │ ├── ICarDiagnostic.struct │ │ │ │ │ │ └── ICarDiagnosticEventListener.struct │ │ │ │ │ ├── drivingstate │ │ │ │ │ │ ├── CarDrivingStateEvent.struct │ │ │ │ │ │ ├── CarUxRestrictions.struct │ │ │ │ │ │ ├── CarUxRestrictionsConfiguration.struct │ │ │ │ │ │ ├── ICarDrivingState.struct │ │ │ │ │ │ ├── ICarDrivingStateChangeListener.struct │ │ │ │ │ │ ├── ICarUxRestrictionsChangeListener.struct │ │ │ │ │ │ └── ICarUxRestrictionsManager.struct │ │ │ │ │ ├── hardware │ │ │ │ │ │ ├── CarSensorConfig.struct │ │ │ │ │ │ ├── CarSensorEvent.struct │ │ │ │ │ │ ├── ICarSensor.struct │ │ │ │ │ │ ├── ICarSensorEventListener.struct │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── ICarPower.struct │ │ │ │ │ │ │ └── ICarPowerStateListener.struct │ │ │ │ │ │ └── property │ │ │ │ │ │ │ ├── ICarProperty.struct │ │ │ │ │ │ │ └── ICarPropertyEventListener.struct │ │ │ │ │ ├── input │ │ │ │ │ │ └── ICarInputListener.struct │ │ │ │ │ ├── media │ │ │ │ │ │ ├── CarAudioPatchHandle.struct │ │ │ │ │ │ ├── ICarAudio.struct │ │ │ │ │ │ ├── ICarMedia.struct │ │ │ │ │ │ ├── ICarMediaSourceListener.struct │ │ │ │ │ │ └── ICarVolumeCallback.struct │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── ICarConfigurationManager.struct │ │ │ │ │ │ └── SpeedBumpConfiguration.struct │ │ │ │ │ ├── storagemonitoring │ │ │ │ │ │ ├── ICarStorageMonitoring.struct │ │ │ │ │ │ ├── IIoStatsListener.struct │ │ │ │ │ │ └── IoStatsEntry.struct │ │ │ │ │ ├── test │ │ │ │ │ │ └── ICarTest.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── ICarTrustAgentBleCallback.struct │ │ │ │ │ │ ├── ICarTrustAgentEnrollment.struct │ │ │ │ │ │ ├── ICarTrustAgentEnrollmentCallback.struct │ │ │ │ │ │ └── TrustedDeviceInfo.struct │ │ │ │ │ └── vms │ │ │ │ │ │ ├── IVmsPublisherClient.struct │ │ │ │ │ │ ├── IVmsPublisherService.struct │ │ │ │ │ │ ├── IVmsSubscriberClient.struct │ │ │ │ │ │ └── IVmsSubscriberService.struct │ │ │ │ ├── companion │ │ │ │ │ ├── ICompanionDeviceDiscoveryService.struct │ │ │ │ │ ├── ICompanionDeviceDiscoveryServiceCallback.struct │ │ │ │ │ ├── ICompanionDeviceManager.struct │ │ │ │ │ └── IFindDeviceCallback.struct │ │ │ │ ├── content │ │ │ │ │ ├── AutofillOptions.struct │ │ │ │ │ ├── ClipDescription.struct │ │ │ │ │ ├── ComponentName.struct │ │ │ │ │ ├── ContentCaptureOptions.struct │ │ │ │ │ ├── IClipboard.struct │ │ │ │ │ ├── IContentService.struct │ │ │ │ │ ├── ICrossUserContentService.struct │ │ │ │ │ ├── IIntentReceiver.struct │ │ │ │ │ ├── IIntentSender.struct │ │ │ │ │ ├── IOnPrimaryClipChangedListener.struct │ │ │ │ │ ├── IRestrictionsManager.struct │ │ │ │ │ ├── ISyncAdapter.struct │ │ │ │ │ ├── ISyncAdapterUnsyncableAccountCallback.struct │ │ │ │ │ ├── ISyncContext.struct │ │ │ │ │ ├── ISyncServiceAdapter.struct │ │ │ │ │ ├── ISyncStatusObserver.struct │ │ │ │ │ ├── IntentSender.struct │ │ │ │ │ ├── PeriodicSync.struct │ │ │ │ │ ├── SyncAdapterType.struct │ │ │ │ │ ├── SyncStatusInfo.struct │ │ │ │ │ ├── om │ │ │ │ │ │ ├── IOverlayManager.struct │ │ │ │ │ │ └── OverlayInfo.struct │ │ │ │ │ ├── pm │ │ │ │ │ │ ├── ChangedPackages.struct │ │ │ │ │ │ ├── ConfigurationInfo.struct │ │ │ │ │ │ ├── ICrossProfileApps.struct │ │ │ │ │ │ ├── IDexModuleRegisterCallback.struct │ │ │ │ │ │ ├── ILauncherApps.struct │ │ │ │ │ │ ├── IOnAppsChangedListener.struct │ │ │ │ │ │ ├── IOnPermissionsChangeListener.struct │ │ │ │ │ │ ├── IOtaDexopt.struct │ │ │ │ │ │ ├── IPackageDataObserver.struct │ │ │ │ │ │ ├── IPackageDeleteObserver.struct │ │ │ │ │ │ ├── IPackageDeleteObserver2.struct │ │ │ │ │ │ ├── IPackageInstallObserver2.struct │ │ │ │ │ │ ├── IPackageInstaller.struct │ │ │ │ │ │ ├── IPackageInstallerCallback.struct │ │ │ │ │ │ ├── IPackageInstallerSession.struct │ │ │ │ │ │ ├── IPackageManager.struct │ │ │ │ │ │ ├── IPackageManagerNative.struct │ │ │ │ │ │ ├── IPackageMoveObserver.struct │ │ │ │ │ │ ├── IPackageStatsObserver.struct │ │ │ │ │ │ ├── IPinItemRequest.struct │ │ │ │ │ │ ├── IShortcutService.struct │ │ │ │ │ │ ├── InstrumentationInfo.struct │ │ │ │ │ │ ├── ModuleInfo.struct │ │ │ │ │ │ ├── PackageInfoLite.struct │ │ │ │ │ │ ├── PackageStats.struct │ │ │ │ │ │ ├── PermissionGroupInfo.struct │ │ │ │ │ │ ├── PermissionInfo.struct │ │ │ │ │ │ ├── ResolveInfo.struct │ │ │ │ │ │ ├── ServiceInfo.struct │ │ │ │ │ │ ├── SuspendDialogInfo.struct │ │ │ │ │ │ ├── UserInfo.struct │ │ │ │ │ │ ├── VerifierDeviceIdentity.struct │ │ │ │ │ │ ├── VersionedPackage.struct │ │ │ │ │ │ ├── dex │ │ │ │ │ │ │ ├── IArtManager.struct │ │ │ │ │ │ │ └── ISnapshotRuntimeProfileCallback.struct │ │ │ │ │ │ └── permission │ │ │ │ │ │ │ └── IRuntimePermissionPresenter.struct │ │ │ │ │ ├── res │ │ │ │ │ │ ├── CompatibilityInfo.struct │ │ │ │ │ │ └── ObbInfo.struct │ │ │ │ │ └── rollback │ │ │ │ │ │ └── IRollbackManager.struct │ │ │ │ ├── database │ │ │ │ │ └── IContentObserver.struct │ │ │ │ ├── debug │ │ │ │ │ ├── IAdbManager.struct │ │ │ │ │ └── IAdbTransport.struct │ │ │ │ ├── dvr │ │ │ │ │ ├── IVirtualTouchpadService.struct │ │ │ │ │ ├── IVrComposer.struct │ │ │ │ │ └── IVrComposerCallback.struct │ │ │ │ ├── graphics │ │ │ │ │ └── Insets.struct │ │ │ │ ├── gsi │ │ │ │ │ ├── GsiInstallParams.struct │ │ │ │ │ ├── GsiProgress.struct │ │ │ │ │ └── IGsiService.struct │ │ │ │ ├── hardware │ │ │ │ │ ├── ICamera.struct │ │ │ │ │ ├── ICameraClient.struct │ │ │ │ │ ├── ICameraService.struct │ │ │ │ │ ├── ICameraServiceListener.struct │ │ │ │ │ ├── ICameraServiceProxy.struct │ │ │ │ │ ├── IConsumerIrService.struct │ │ │ │ │ ├── ISensorPrivacyListener.struct │ │ │ │ │ ├── ISensorPrivacyManager.struct │ │ │ │ │ ├── ISerialManager.struct │ │ │ │ │ ├── biometrics │ │ │ │ │ │ ├── IBiometricConfirmDeviceCredentialCallback.struct │ │ │ │ │ │ ├── IBiometricEnabledOnKeyguardCallback.struct │ │ │ │ │ │ ├── IBiometricService.struct │ │ │ │ │ │ ├── IBiometricServiceLockoutResetCallback.struct │ │ │ │ │ │ ├── IBiometricServiceReceiver.struct │ │ │ │ │ │ └── IBiometricServiceReceiverInternal.struct │ │ │ │ │ ├── camera2 │ │ │ │ │ │ ├── ICameraDeviceCallbacks.struct │ │ │ │ │ │ ├── ICameraDeviceUser.struct │ │ │ │ │ │ └── params │ │ │ │ │ │ │ ├── VendorTagDescriptor.struct │ │ │ │ │ │ │ └── VendorTagDescriptorCache.struct │ │ │ │ │ ├── citadel │ │ │ │ │ │ └── ICitadeld.struct │ │ │ │ │ ├── display │ │ │ │ │ │ ├── Curve.struct │ │ │ │ │ │ ├── IColorDisplayManager.struct │ │ │ │ │ │ ├── IDisplayManager.struct │ │ │ │ │ │ ├── IDisplayManagerCallback.struct │ │ │ │ │ │ ├── IVirtualDisplayCallback.struct │ │ │ │ │ │ └── Time.struct │ │ │ │ │ ├── face │ │ │ │ │ │ ├── Face.struct │ │ │ │ │ │ ├── IFaceService.struct │ │ │ │ │ │ └── IFaceServiceReceiver.struct │ │ │ │ │ ├── fingerprint │ │ │ │ │ │ ├── Fingerprint.struct │ │ │ │ │ │ ├── IFingerprintClientActiveCallback.struct │ │ │ │ │ │ ├── IFingerprintService.struct │ │ │ │ │ │ └── IFingerprintServiceReceiver.struct │ │ │ │ │ ├── hdmi │ │ │ │ │ │ ├── HdmiDeviceInfo.struct │ │ │ │ │ │ ├── HdmiHotplugEvent.struct │ │ │ │ │ │ ├── HdmiPortInfo.struct │ │ │ │ │ │ ├── IHdmiControlCallback.struct │ │ │ │ │ │ ├── IHdmiControlService.struct │ │ │ │ │ │ ├── IHdmiDeviceEventListener.struct │ │ │ │ │ │ ├── IHdmiHotplugEventListener.struct │ │ │ │ │ │ ├── IHdmiInputChangeListener.struct │ │ │ │ │ │ ├── IHdmiMhlVendorCommandListener.struct │ │ │ │ │ │ ├── IHdmiRecordListener.struct │ │ │ │ │ │ ├── IHdmiSystemAudioModeChangeListener.struct │ │ │ │ │ │ └── IHdmiVendorCommandListener.struct │ │ │ │ │ ├── input │ │ │ │ │ │ ├── IInputDevicesChangedListener.struct │ │ │ │ │ │ ├── IInputManager.struct │ │ │ │ │ │ ├── ITabletModeChangedListener.struct │ │ │ │ │ │ ├── InputDeviceIdentifier.struct │ │ │ │ │ │ ├── KeyboardLayout.struct │ │ │ │ │ │ └── TouchCalibration.struct │ │ │ │ │ ├── iris │ │ │ │ │ │ └── IIrisService.struct │ │ │ │ │ ├── location │ │ │ │ │ │ ├── ContextHubMessage.struct │ │ │ │ │ │ ├── IActivityRecognitionHardware.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareClient.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareSink.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareWatcher.struct │ │ │ │ │ │ ├── IContextHubCallback.struct │ │ │ │ │ │ ├── IContextHubClient.struct │ │ │ │ │ │ ├── IContextHubClientCallback.struct │ │ │ │ │ │ ├── IContextHubService.struct │ │ │ │ │ │ ├── IContextHubTransactionCallback.struct │ │ │ │ │ │ ├── IGeofenceHardware.struct │ │ │ │ │ │ ├── IGeofenceHardwareCallback.struct │ │ │ │ │ │ ├── IGeofenceHardwareMonitorCallback.struct │ │ │ │ │ │ ├── NanoApp.struct │ │ │ │ │ │ ├── NanoAppBinary.struct │ │ │ │ │ │ ├── NanoAppFilter.struct │ │ │ │ │ │ ├── NanoAppInstanceInfo.struct │ │ │ │ │ │ ├── NanoAppMessage.struct │ │ │ │ │ │ └── NanoAppState.struct │ │ │ │ │ ├── radio │ │ │ │ │ │ ├── IAnnouncementListener.struct │ │ │ │ │ │ ├── ICloseHandle.struct │ │ │ │ │ │ ├── IRadioService.struct │ │ │ │ │ │ ├── ITuner.struct │ │ │ │ │ │ └── ITunerCallback.struct │ │ │ │ │ ├── soundtrigger │ │ │ │ │ │ └── IRecognitionStatusCallback.struct │ │ │ │ │ └── usb │ │ │ │ │ │ ├── IUsbManager.struct │ │ │ │ │ │ ├── IUsbSerialReader.struct │ │ │ │ │ │ ├── ParcelableUsbPort.struct │ │ │ │ │ │ └── UsbPortStatus.struct │ │ │ │ ├── location │ │ │ │ │ ├── Country.struct │ │ │ │ │ ├── Criteria.struct │ │ │ │ │ ├── GeocoderParams.struct │ │ │ │ │ ├── Geofence.struct │ │ │ │ │ ├── IBatchedLocationCallback.struct │ │ │ │ │ ├── ICountryDetector.struct │ │ │ │ │ ├── ICountryListener.struct │ │ │ │ │ ├── IFusedGeofenceHardware.struct │ │ │ │ │ ├── IGeocodeProvider.struct │ │ │ │ │ ├── IGeofenceProvider.struct │ │ │ │ │ ├── IGnssMeasurementsListener.struct │ │ │ │ │ ├── IGnssNavigationMessageListener.struct │ │ │ │ │ ├── IGnssStatusListener.struct │ │ │ │ │ ├── IGpsGeofenceHardware.struct │ │ │ │ │ ├── ILocationListener.struct │ │ │ │ │ ├── ILocationManager.struct │ │ │ │ │ ├── INetInitiatedListener.struct │ │ │ │ │ └── LocationTime.struct │ │ │ │ ├── lpdump │ │ │ │ │ └── ILpdump.struct │ │ │ │ ├── media │ │ │ │ │ ├── AudioRoutesInfo.struct │ │ │ │ │ ├── IAudioFocusDispatcher.struct │ │ │ │ │ ├── IAudioRecord.struct │ │ │ │ │ ├── IAudioRoutesObserver.struct │ │ │ │ │ ├── IAudioServerStateDispatcher.struct │ │ │ │ │ ├── IAudioService.struct │ │ │ │ │ ├── IMediaController2.struct │ │ │ │ │ ├── IMediaHTTPConnection.struct │ │ │ │ │ ├── IMediaHTTPService.struct │ │ │ │ │ ├── IMediaResourceMonitor.struct │ │ │ │ │ ├── IMediaRouterClient.struct │ │ │ │ │ ├── IMediaRouterService.struct │ │ │ │ │ ├── IMediaScannerListener.struct │ │ │ │ │ ├── IMediaScannerService.struct │ │ │ │ │ ├── IMediaSession2.struct │ │ │ │ │ ├── IMediaSession2Service.struct │ │ │ │ │ ├── IPlaybackConfigDispatcher.struct │ │ │ │ │ ├── IPlayer.struct │ │ │ │ │ ├── IRecordingConfigDispatcher.struct │ │ │ │ │ ├── IRemoteDisplayCallback.struct │ │ │ │ │ ├── IRemoteDisplayProvider.struct │ │ │ │ │ ├── IRemoteVolumeController.struct │ │ │ │ │ ├── IRemoteVolumeObserver.struct │ │ │ │ │ ├── IRingtonePlayer.struct │ │ │ │ │ ├── IVolumeController.struct │ │ │ │ │ ├── MediaMetadata.struct │ │ │ │ │ ├── PlaybackParams.struct │ │ │ │ │ ├── Rating.struct │ │ │ │ │ ├── Session2Command.struct │ │ │ │ │ ├── VolumePolicy.struct │ │ │ │ │ ├── audiopolicy │ │ │ │ │ │ ├── AudioProductStrategy.struct │ │ │ │ │ │ └── IAudioPolicyCallback.struct │ │ │ │ │ ├── eco │ │ │ │ │ │ ├── IECOService.struct │ │ │ │ │ │ ├── IECOServiceInfoListener.struct │ │ │ │ │ │ ├── IECOServiceStatsProvider.struct │ │ │ │ │ │ └── IECOSession.struct │ │ │ │ │ ├── midi │ │ │ │ │ │ ├── IBluetoothMidiService.struct │ │ │ │ │ │ ├── IMidiDeviceListener.struct │ │ │ │ │ │ ├── IMidiDeviceOpenCallback.struct │ │ │ │ │ │ ├── IMidiDeviceServer.struct │ │ │ │ │ │ ├── IMidiManager.struct │ │ │ │ │ │ └── MidiDeviceInfo.struct │ │ │ │ │ ├── projection │ │ │ │ │ │ ├── IMediaProjection.struct │ │ │ │ │ │ ├── IMediaProjectionCallback.struct │ │ │ │ │ │ ├── IMediaProjectionManager.struct │ │ │ │ │ │ ├── IMediaProjectionWatcherCallback.struct │ │ │ │ │ │ └── MediaProjectionInfo.struct │ │ │ │ │ ├── session │ │ │ │ │ │ ├── IActiveSessionsListener.struct │ │ │ │ │ │ ├── ICallback.struct │ │ │ │ │ │ ├── IOnMediaKeyListener.struct │ │ │ │ │ │ ├── IOnVolumeKeyLongPressListener.struct │ │ │ │ │ │ ├── ISession.struct │ │ │ │ │ │ ├── ISession2TokensListener.struct │ │ │ │ │ │ ├── ISessionCallback.struct │ │ │ │ │ │ ├── ISessionController.struct │ │ │ │ │ │ ├── ISessionControllerCallback.struct │ │ │ │ │ │ └── ISessionManager.struct │ │ │ │ │ ├── soundtrigger │ │ │ │ │ │ ├── ISoundTriggerDetectionService.struct │ │ │ │ │ │ └── ISoundTriggerDetectionServiceClient.struct │ │ │ │ │ └── tv │ │ │ │ │ │ ├── DvbDeviceInfo.struct │ │ │ │ │ │ ├── ITvInputClient.struct │ │ │ │ │ │ ├── ITvInputHardware.struct │ │ │ │ │ │ ├── ITvInputHardwareCallback.struct │ │ │ │ │ │ ├── ITvInputManager.struct │ │ │ │ │ │ ├── ITvInputManagerCallback.struct │ │ │ │ │ │ ├── ITvInputService.struct │ │ │ │ │ │ ├── ITvInputServiceCallback.struct │ │ │ │ │ │ ├── ITvInputSession.struct │ │ │ │ │ │ ├── ITvInputSessionCallback.struct │ │ │ │ │ │ ├── ITvRemoteProvider.struct │ │ │ │ │ │ ├── ITvRemoteServiceInput.struct │ │ │ │ │ │ ├── TvContentRatingSystemInfo.struct │ │ │ │ │ │ ├── TvInputInfo.struct │ │ │ │ │ │ └── TvTrackInfo.struct │ │ │ │ ├── net │ │ │ │ │ ├── ConnectivityMetricsEvent.struct │ │ │ │ │ ├── DataUsageRequest.struct │ │ │ │ │ ├── DhcpInfo.struct │ │ │ │ │ ├── DhcpResultsParcelable.struct │ │ │ │ │ ├── ICaptivePortal.struct │ │ │ │ │ ├── IConnectivityManager.struct │ │ │ │ │ ├── IDnsResolver.struct │ │ │ │ │ ├── IEthernetManager.struct │ │ │ │ │ ├── IEthernetServiceListener.struct │ │ │ │ │ ├── IIpConnectivityMetrics.struct │ │ │ │ │ ├── IIpMemoryStore.struct │ │ │ │ │ ├── IIpMemoryStoreCallbacks.struct │ │ │ │ │ ├── IIpSecService.struct │ │ │ │ │ ├── INetd.struct │ │ │ │ │ ├── INetdEventCallback.struct │ │ │ │ │ ├── INetdUnsolicitedEventListener.struct │ │ │ │ │ ├── INetworkManagementEventObserver.struct │ │ │ │ │ ├── INetworkMonitor.struct │ │ │ │ │ ├── INetworkMonitorCallbacks.struct │ │ │ │ │ ├── INetworkPolicyListener.struct │ │ │ │ │ ├── INetworkPolicyManager.struct │ │ │ │ │ ├── INetworkRecommendationProvider.struct │ │ │ │ │ ├── INetworkScoreCache.struct │ │ │ │ │ ├── INetworkScoreService.struct │ │ │ │ │ ├── INetworkStackConnector.struct │ │ │ │ │ ├── INetworkStackStatusCallback.struct │ │ │ │ │ ├── INetworkStatsService.struct │ │ │ │ │ ├── INetworkStatsSession.struct │ │ │ │ │ ├── ISocketKeepaliveCallback.struct │ │ │ │ │ ├── ITestNetworkManager.struct │ │ │ │ │ ├── ITetheringEventCallback.struct │ │ │ │ │ ├── ITetheringStatsProvider.struct │ │ │ │ │ ├── InitialConfigurationParcelable.struct │ │ │ │ │ ├── InterfaceConfigurationParcel.struct │ │ │ │ │ ├── IpPrefix.struct │ │ │ │ │ ├── IpSecSpiResponse.struct │ │ │ │ │ ├── IpSecTransformResponse.struct │ │ │ │ │ ├── IpSecTunnelInterfaceResponse.struct │ │ │ │ │ ├── NattKeepalivePacketDataParcelable.struct │ │ │ │ │ ├── Network.struct │ │ │ │ │ ├── NetworkCapabilities.struct │ │ │ │ │ ├── NetworkKey.struct │ │ │ │ │ ├── NetworkMisc.struct │ │ │ │ │ ├── NetworkPolicy.struct │ │ │ │ │ ├── NetworkQuotaInfo.struct │ │ │ │ │ ├── NetworkScorerAppData.struct │ │ │ │ │ ├── NetworkState.struct │ │ │ │ │ ├── NetworkStats.struct │ │ │ │ │ ├── NetworkTemplate.struct │ │ │ │ │ ├── PrivateDnsConfigParcel.struct │ │ │ │ │ ├── ProvisioningConfigurationParcelable.struct │ │ │ │ │ ├── ProxyInfo.struct │ │ │ │ │ ├── ResolverParamsParcel.struct │ │ │ │ │ ├── RouteInfo.struct │ │ │ │ │ ├── RssiCurve.struct │ │ │ │ │ ├── ScoredNetwork.struct │ │ │ │ │ ├── TcpKeepalivePacketDataParcelable.struct │ │ │ │ │ ├── TetherStatsParcel.struct │ │ │ │ │ ├── UidRange.struct │ │ │ │ │ ├── UidRangeParcel.struct │ │ │ │ │ ├── Uri.struct │ │ │ │ │ ├── apf │ │ │ │ │ │ └── ApfCapabilities.struct │ │ │ │ │ ├── dhcp │ │ │ │ │ │ ├── DhcpServingParamsParcel.struct │ │ │ │ │ │ ├── IDhcpServer.struct │ │ │ │ │ │ └── IDhcpServerCallbacks.struct │ │ │ │ │ ├── ip │ │ │ │ │ │ ├── IIpClient.struct │ │ │ │ │ │ └── IIpClientCallbacks.struct │ │ │ │ │ ├── ipmemorystore │ │ │ │ │ │ ├── Blob.struct │ │ │ │ │ │ ├── IOnBlobRetrievedListener.struct │ │ │ │ │ │ ├── IOnL2KeyResponseListener.struct │ │ │ │ │ │ ├── IOnNetworkAttributesRetrievedListener.struct │ │ │ │ │ │ ├── IOnSameL3NetworkResponseListener.struct │ │ │ │ │ │ ├── IOnStatusListener.struct │ │ │ │ │ │ ├── NetworkAttributesParcelable.struct │ │ │ │ │ │ ├── SameL3NetworkResponseParcelable.struct │ │ │ │ │ │ └── StatusParcelable.struct │ │ │ │ │ ├── lowpan │ │ │ │ │ │ ├── ILowpanEnergyScanCallback.struct │ │ │ │ │ │ ├── ILowpanInterface.struct │ │ │ │ │ │ ├── ILowpanInterfaceListener.struct │ │ │ │ │ │ ├── ILowpanManager.struct │ │ │ │ │ │ ├── ILowpanManagerListener.struct │ │ │ │ │ │ ├── ILowpanNetScanCallback.struct │ │ │ │ │ │ ├── LowpanChannelInfo.struct │ │ │ │ │ │ └── LowpanCredential.struct │ │ │ │ │ ├── metrics │ │ │ │ │ │ └── INetdEventListener.struct │ │ │ │ │ ├── nsd │ │ │ │ │ │ └── INsdManager.struct │ │ │ │ │ ├── sip │ │ │ │ │ │ ├── ISipService.struct │ │ │ │ │ │ ├── ISipSession.struct │ │ │ │ │ │ ├── ISipSessionListener.struct │ │ │ │ │ │ └── SipProfile.struct │ │ │ │ │ └── wifi │ │ │ │ │ │ ├── IApInterface.struct │ │ │ │ │ │ ├── IApInterfaceEventCallback.struct │ │ │ │ │ │ ├── IClientInterface.struct │ │ │ │ │ │ ├── IDppCallback.struct │ │ │ │ │ │ ├── IInterfaceEventCallback.struct │ │ │ │ │ │ ├── INetworkRequestMatchCallback.struct │ │ │ │ │ │ ├── INetworkRequestUserSelectionCallback.struct │ │ │ │ │ │ ├── IOnWifiUsabilityStatsListener.struct │ │ │ │ │ │ ├── IPnoScanEvent.struct │ │ │ │ │ │ ├── IScanEvent.struct │ │ │ │ │ │ ├── ISendMgmtFrameEvent.struct │ │ │ │ │ │ ├── ISoftApCallback.struct │ │ │ │ │ │ ├── ITrafficStateCallback.struct │ │ │ │ │ │ ├── IWifiManager.struct │ │ │ │ │ │ ├── IWifiScanner.struct │ │ │ │ │ │ ├── IWifiScannerImpl.struct │ │ │ │ │ │ ├── IWificond.struct │ │ │ │ │ │ ├── WifiActivityEnergyInfo.struct │ │ │ │ │ │ ├── WifiNetworkSuggestion.struct │ │ │ │ │ │ ├── WifiUsabilityStatsEntry.struct │ │ │ │ │ │ ├── aware │ │ │ │ │ │ ├── ConfigRequest.struct │ │ │ │ │ │ ├── IWifiAwareDiscoverySessionCallback.struct │ │ │ │ │ │ ├── IWifiAwareEventCallback.struct │ │ │ │ │ │ ├── IWifiAwareMacAddressProvider.struct │ │ │ │ │ │ ├── IWifiAwareManager.struct │ │ │ │ │ │ ├── PublishConfig.struct │ │ │ │ │ │ └── SubscribeConfig.struct │ │ │ │ │ │ ├── hotspot2 │ │ │ │ │ │ └── IProvisioningCallback.struct │ │ │ │ │ │ ├── p2p │ │ │ │ │ │ └── IWifiP2pManager.struct │ │ │ │ │ │ └── rtt │ │ │ │ │ │ ├── IRttCallback.struct │ │ │ │ │ │ ├── IWifiRttManager.struct │ │ │ │ │ │ └── RangingRequest.struct │ │ │ │ ├── nfc │ │ │ │ │ ├── IAppCallback.struct │ │ │ │ │ ├── INfcAdapter.struct │ │ │ │ │ ├── INfcAdapterExtras.struct │ │ │ │ │ ├── INfcCardEmulation.struct │ │ │ │ │ ├── INfcDta.struct │ │ │ │ │ ├── INfcFCardEmulation.struct │ │ │ │ │ ├── INfcTag.struct │ │ │ │ │ ├── INfcUnlockHandler.struct │ │ │ │ │ ├── ITagRemovedCallback.struct │ │ │ │ │ ├── TechListParcel.struct │ │ │ │ │ ├── TransceiveResult.struct │ │ │ │ │ └── cardemulation │ │ │ │ │ │ └── NfcFServiceInfo.struct │ │ │ │ ├── os │ │ │ │ │ ├── Bundle.struct │ │ │ │ │ ├── CoolingDevice.struct │ │ │ │ │ ├── IAidlTest.struct │ │ │ │ │ ├── IBatteryPropertiesRegistrar.struct │ │ │ │ │ ├── IBinderThreadPriorityService.struct │ │ │ │ │ ├── IBinderWorkSourceNestedService.struct │ │ │ │ │ ├── IBinderWorkSourceService.struct │ │ │ │ │ ├── ICancellationSignal.struct │ │ │ │ │ ├── IDeviceIdentifiersPolicyService.struct │ │ │ │ │ ├── IDeviceIdleController.struct │ │ │ │ │ ├── IDumpstate.struct │ │ │ │ │ ├── IDumpstateListener.struct │ │ │ │ │ ├── IDumpstateToken.struct │ │ │ │ │ ├── IExternalVibrationController.struct │ │ │ │ │ ├── IExternalVibratorService.struct │ │ │ │ │ ├── IHardwarePropertiesManager.struct │ │ │ │ │ ├── IIdmap2.struct │ │ │ │ │ ├── IIncidentAuthListener.struct │ │ │ │ │ ├── IIncidentCompanion.struct │ │ │ │ │ ├── IIncidentManager.struct │ │ │ │ │ ├── IIncidentReportStatusListener.struct │ │ │ │ │ ├── IInstalld.struct │ │ │ │ │ ├── IMaintenanceActivityListener.struct │ │ │ │ │ ├── IMessenger.struct │ │ │ │ │ ├── INetworkActivityListener.struct │ │ │ │ │ ├── INetworkManagementService.struct │ │ │ │ │ ├── IPerfProfd.struct │ │ │ │ │ ├── IPermissionController.struct │ │ │ │ │ ├── IPowerManager.struct │ │ │ │ │ ├── IProcessInfoService.struct │ │ │ │ │ ├── IProgressListener.struct │ │ │ │ │ ├── IRecoverySystem.struct │ │ │ │ │ ├── IRecoverySystemProgressListener.struct │ │ │ │ │ ├── IRemoteCallback.struct │ │ │ │ │ ├── ISchedulingPolicyService.struct │ │ │ │ │ ├── ISomeService.struct │ │ │ │ │ ├── IStatsCompanionService.struct │ │ │ │ │ ├── IStatsManager.struct │ │ │ │ │ ├── IStatsPullerCallback.struct │ │ │ │ │ ├── IStoraged.struct │ │ │ │ │ ├── ISystemUpdateManager.struct │ │ │ │ │ ├── IThermalEventListener.struct │ │ │ │ │ ├── IThermalService.struct │ │ │ │ │ ├── IThermalStatusListener.struct │ │ │ │ │ ├── IUpdateEngine.struct │ │ │ │ │ ├── IUpdateEngineCallback.struct │ │ │ │ │ ├── IUpdateLock.struct │ │ │ │ │ ├── IUserManager.struct │ │ │ │ │ ├── IVibratorService.struct │ │ │ │ │ ├── IVold.struct │ │ │ │ │ ├── IVoldListener.struct │ │ │ │ │ ├── IVoldTaskListener.struct │ │ │ │ │ ├── Messenger.struct │ │ │ │ │ ├── ParcelFileDescriptor.struct │ │ │ │ │ ├── ParcelUuid.struct │ │ │ │ │ ├── PersistableBundle.struct │ │ │ │ │ ├── PowerSaveState.struct │ │ │ │ │ ├── SharedMemory.struct │ │ │ │ │ ├── Temperature.struct │ │ │ │ │ ├── UserHandle.struct │ │ │ │ │ ├── connectivity │ │ │ │ │ │ ├── CellularBatteryStats.struct │ │ │ │ │ │ ├── GpsBatteryStats.struct │ │ │ │ │ │ └── WifiBatteryStats.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── ExceptionalParcelable.struct │ │ │ │ │ │ ├── IEmptyService.struct │ │ │ │ │ │ ├── IParcelExceptionService.struct │ │ │ │ │ │ ├── IParcelFileDescriptorPeer.struct │ │ │ │ │ │ ├── ISeccompIsolatedService.struct │ │ │ │ │ │ ├── ISecondary.struct │ │ │ │ │ │ └── ISharedMemoryService.struct │ │ │ │ │ ├── image │ │ │ │ │ │ └── IDynamicSystemService.struct │ │ │ │ │ ├── storage │ │ │ │ │ │ ├── DiskInfo.struct │ │ │ │ │ │ ├── IObbActionListener.struct │ │ │ │ │ │ ├── IStorageEventListener.struct │ │ │ │ │ │ ├── IStorageManager.struct │ │ │ │ │ │ ├── IStorageShutdownObserver.struct │ │ │ │ │ │ ├── VolumeInfo.struct │ │ │ │ │ │ └── VolumeRecord.struct │ │ │ │ │ └── storaged │ │ │ │ │ │ └── IStoragedPrivate.struct │ │ │ │ ├── permission │ │ │ │ │ └── IPermissionController.struct │ │ │ │ ├── pixel │ │ │ │ │ └── perfstatsd │ │ │ │ │ │ └── IPerfstatsdPrivate.struct │ │ │ │ ├── print │ │ │ │ │ ├── ILayoutResultCallback.struct │ │ │ │ │ ├── IPrintDocumentAdapter.struct │ │ │ │ │ ├── IPrintDocumentAdapterObserver.struct │ │ │ │ │ ├── IPrintJobStateChangeListener.struct │ │ │ │ │ ├── IPrintManager.struct │ │ │ │ │ ├── IPrintServicesChangeListener.struct │ │ │ │ │ ├── IPrintSpooler.struct │ │ │ │ │ ├── IPrintSpoolerCallbacks.struct │ │ │ │ │ ├── IPrintSpoolerClient.struct │ │ │ │ │ ├── IPrinterDiscoveryObserver.struct │ │ │ │ │ ├── IWriteResultCallback.struct │ │ │ │ │ ├── PageRange.struct │ │ │ │ │ ├── PrintAttributes.struct │ │ │ │ │ └── PrintJobInfo.struct │ │ │ │ ├── printservice │ │ │ │ │ ├── IPrintService.struct │ │ │ │ │ ├── IPrintServiceClient.struct │ │ │ │ │ ├── PrintServiceInfo.struct │ │ │ │ │ └── recommendation │ │ │ │ │ │ ├── IRecommendationService.struct │ │ │ │ │ │ ├── IRecommendationServiceCallbacks.struct │ │ │ │ │ │ ├── IRecommendationsChangeListener.struct │ │ │ │ │ │ └── RecommendationInfo.struct │ │ │ │ ├── se │ │ │ │ │ └── omapi │ │ │ │ │ │ ├── ISecureElementChannel.struct │ │ │ │ │ │ ├── ISecureElementListener.struct │ │ │ │ │ │ ├── ISecureElementReader.struct │ │ │ │ │ │ ├── ISecureElementService.struct │ │ │ │ │ │ └── ISecureElementSession.struct │ │ │ │ ├── security │ │ │ │ │ ├── IConfirmationPromptCallback.struct │ │ │ │ │ ├── IKeyChainAliasCallback.struct │ │ │ │ │ ├── IKeyChainService.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── IIsolatedService.struct │ │ │ │ │ │ └── activity │ │ │ │ │ │ │ └── ISecureRandomService.struct │ │ │ │ │ ├── keymaster │ │ │ │ │ │ ├── ExportResult.struct │ │ │ │ │ │ ├── IKeyAttestationApplicationIdProvider.struct │ │ │ │ │ │ ├── KeymasterBlob.struct │ │ │ │ │ │ └── OperationResult.struct │ │ │ │ │ └── keystore │ │ │ │ │ │ ├── IKeystoreCertificateChainCallback.struct │ │ │ │ │ │ ├── IKeystoreExportKeyCallback.struct │ │ │ │ │ │ ├── IKeystoreKeyCharacteristicsCallback.struct │ │ │ │ │ │ ├── IKeystoreOperationResultCallback.struct │ │ │ │ │ │ ├── IKeystoreResponseCallback.struct │ │ │ │ │ │ ├── IKeystoreService.struct │ │ │ │ │ │ ├── KeystoreResponse.struct │ │ │ │ │ │ └── recovery │ │ │ │ │ │ ├── RecoveryCertPath.struct │ │ │ │ │ │ └── WrappedApplicationKey.struct │ │ │ │ ├── service │ │ │ │ │ ├── appprediction │ │ │ │ │ │ └── IPredictionService.struct │ │ │ │ │ ├── attention │ │ │ │ │ │ ├── IAttentionCallback.struct │ │ │ │ │ │ └── IAttentionService.struct │ │ │ │ │ ├── autofill │ │ │ │ │ │ ├── IAutoFillService.struct │ │ │ │ │ │ ├── IAutofillFieldClassificationService.struct │ │ │ │ │ │ ├── IFillCallback.struct │ │ │ │ │ │ ├── ISaveCallback.struct │ │ │ │ │ │ └── augmented │ │ │ │ │ │ │ ├── IAugmentedAutofillService.struct │ │ │ │ │ │ │ └── IFillCallback.struct │ │ │ │ │ ├── carrier │ │ │ │ │ │ ├── ICarrierMessagingCallback.struct │ │ │ │ │ │ ├── ICarrierMessagingClientService.struct │ │ │ │ │ │ ├── ICarrierMessagingService.struct │ │ │ │ │ │ ├── ICarrierService.struct │ │ │ │ │ │ └── MessagePdu.struct │ │ │ │ │ ├── chooser │ │ │ │ │ │ ├── ChooserTarget.struct │ │ │ │ │ │ ├── IChooserTargetResult.struct │ │ │ │ │ │ └── IChooserTargetService.struct │ │ │ │ │ ├── contentcapture │ │ │ │ │ │ ├── ActivityEvent.struct │ │ │ │ │ │ ├── FlushMetrics.struct │ │ │ │ │ │ ├── IContentCaptureService.struct │ │ │ │ │ │ ├── IContentCaptureServiceCallback.struct │ │ │ │ │ │ └── SnapshotData.struct │ │ │ │ │ ├── contentsuggestions │ │ │ │ │ │ └── IContentSuggestionsService.struct │ │ │ │ │ ├── dreams │ │ │ │ │ │ ├── IDreamManager.struct │ │ │ │ │ │ └── IDreamService.struct │ │ │ │ │ ├── euicc │ │ │ │ │ │ ├── DownloadSubscriptionResult.struct │ │ │ │ │ │ ├── IDeleteSubscriptionCallback.struct │ │ │ │ │ │ ├── IDownloadSubscriptionCallback.struct │ │ │ │ │ │ ├── IEraseSubscriptionsCallback.struct │ │ │ │ │ │ ├── IEuiccService.struct │ │ │ │ │ │ ├── IGetDefaultDownloadableSubscriptionListCallback.struct │ │ │ │ │ │ ├── IGetDownloadableSubscriptionMetadataCallback.struct │ │ │ │ │ │ ├── IGetEidCallback.struct │ │ │ │ │ │ ├── IGetEuiccInfoCallback.struct │ │ │ │ │ │ ├── IGetEuiccProfileInfoListCallback.struct │ │ │ │ │ │ ├── IGetOtaStatusCallback.struct │ │ │ │ │ │ ├── IOtaStatusChangedCallback.struct │ │ │ │ │ │ ├── IRetainSubscriptionsForFactoryResetCallback.struct │ │ │ │ │ │ ├── ISwitchToSubscriptionCallback.struct │ │ │ │ │ │ └── IUpdateSubscriptionNicknameCallback.struct │ │ │ │ │ ├── gatekeeper │ │ │ │ │ │ └── IGateKeeperService.struct │ │ │ │ │ ├── media │ │ │ │ │ │ ├── IMediaBrowserService.struct │ │ │ │ │ │ └── IMediaBrowserServiceCallbacks.struct │ │ │ │ │ ├── notification │ │ │ │ │ │ ├── Adjustment.struct │ │ │ │ │ │ ├── Condition.struct │ │ │ │ │ │ ├── IConditionListener.struct │ │ │ │ │ │ ├── IConditionProvider.struct │ │ │ │ │ │ ├── INotificationListener.struct │ │ │ │ │ │ ├── IStatusBarNotificationHolder.struct │ │ │ │ │ │ └── NotificationStats.struct │ │ │ │ │ ├── oemlock │ │ │ │ │ │ └── IOemLockService.struct │ │ │ │ │ ├── persistentdata │ │ │ │ │ │ └── IPersistentDataBlockService.struct │ │ │ │ │ ├── quicksettings │ │ │ │ │ │ ├── IQSService.struct │ │ │ │ │ │ └── IQSTileService.struct │ │ │ │ │ ├── resolver │ │ │ │ │ │ ├── IResolverRankerResult.struct │ │ │ │ │ │ ├── IResolverRankerService.struct │ │ │ │ │ │ └── ResolverTarget.struct │ │ │ │ │ ├── settings │ │ │ │ │ │ └── suggestions │ │ │ │ │ │ │ └── ISuggestionService.struct │ │ │ │ │ ├── sms │ │ │ │ │ │ └── IFinancialSmsService.struct │ │ │ │ │ ├── textclassifier │ │ │ │ │ │ ├── ITextClassifierCallback.struct │ │ │ │ │ │ └── ITextClassifierService.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── ITrustAgentService.struct │ │ │ │ │ │ └── ITrustAgentServiceCallback.struct │ │ │ │ │ ├── voice │ │ │ │ │ │ ├── IVoiceInteractionService.struct │ │ │ │ │ │ ├── IVoiceInteractionSession.struct │ │ │ │ │ │ └── IVoiceInteractionSessionService.struct │ │ │ │ │ ├── vr │ │ │ │ │ │ ├── IPersistentVrStateCallbacks.struct │ │ │ │ │ │ ├── IVrListener.struct │ │ │ │ │ │ ├── IVrManager.struct │ │ │ │ │ │ └── IVrStateCallbacks.struct │ │ │ │ │ ├── wallpaper │ │ │ │ │ │ ├── IWallpaperConnection.struct │ │ │ │ │ │ ├── IWallpaperEngine.struct │ │ │ │ │ │ └── IWallpaperService.struct │ │ │ │ │ └── watchdog │ │ │ │ │ │ └── IExplicitHealthCheckService.struct │ │ │ │ ├── speech │ │ │ │ │ ├── IRecognitionListener.struct │ │ │ │ │ ├── IRecognitionService.struct │ │ │ │ │ └── tts │ │ │ │ │ │ ├── ITextToSpeechCallback.struct │ │ │ │ │ │ └── ITextToSpeechService.struct │ │ │ │ ├── system │ │ │ │ │ └── suspend │ │ │ │ │ │ ├── ISuspendCallback.struct │ │ │ │ │ │ └── ISuspendControlService.struct │ │ │ │ ├── telecom │ │ │ │ │ ├── DisconnectCause.struct │ │ │ │ │ ├── VideoProfile.struct │ │ │ │ │ └── cts │ │ │ │ │ │ ├── redirectiontestapp │ │ │ │ │ │ └── ICtsCallRedirectionServiceController.struct │ │ │ │ │ │ ├── screeningtestapp │ │ │ │ │ │ └── ICallScreeningControl.struct │ │ │ │ │ │ └── thirdptyincallservice │ │ │ │ │ │ └── ICtsThirdPartyInCallServiceControl.struct │ │ │ │ ├── telephony │ │ │ │ │ ├── CallQuality.struct │ │ │ │ │ ├── CellInfo.struct │ │ │ │ │ ├── DataConnectionRealTimeInfo.struct │ │ │ │ │ ├── ICellInfoCallback.struct │ │ │ │ │ ├── IFinancialSmsCallback.struct │ │ │ │ │ ├── INetworkService.struct │ │ │ │ │ ├── INetworkServiceCallback.struct │ │ │ │ │ ├── IccOpenLogicalChannelResponse.struct │ │ │ │ │ ├── ModemActivityInfo.struct │ │ │ │ │ ├── NeighboringCellInfo.struct │ │ │ │ │ ├── PhoneNumberRange.struct │ │ │ │ │ ├── PhysicalChannelConfig.struct │ │ │ │ │ ├── PreciseCallState.struct │ │ │ │ │ ├── PreciseDataConnectionState.struct │ │ │ │ │ ├── ServiceState.struct │ │ │ │ │ ├── SubscriptionPlan.struct │ │ │ │ │ ├── TelephonyHistogram.struct │ │ │ │ │ ├── UiccCardInfo.struct │ │ │ │ │ ├── UiccSlotInfo.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── embmstestapp │ │ │ │ │ │ │ ├── ICtsDownloadMiddlewareControl.struct │ │ │ │ │ │ │ ├── ICtsGroupCallMiddlewareControl.struct │ │ │ │ │ │ │ └── ICtsStreamingMiddlewareControl.struct │ │ │ │ │ │ └── locationaccessingapp │ │ │ │ │ │ │ └── ICtsLocationAccessControl.struct │ │ │ │ │ ├── data │ │ │ │ │ │ ├── DataProfile.struct │ │ │ │ │ │ ├── IDataService.struct │ │ │ │ │ │ ├── IDataServiceCallback.struct │ │ │ │ │ │ ├── IQualifiedNetworksService.struct │ │ │ │ │ │ └── IQualifiedNetworksServiceCallback.struct │ │ │ │ │ ├── emergency │ │ │ │ │ │ └── EmergencyNumber.struct │ │ │ │ │ ├── euicc │ │ │ │ │ │ ├── EuiccInfo.struct │ │ │ │ │ │ └── EuiccNotification.struct │ │ │ │ │ ├── ims │ │ │ │ │ │ ├── ImsReasonInfo.struct │ │ │ │ │ │ ├── ImsSuppServiceNotification.struct │ │ │ │ │ │ ├── RcsEventQueryParams.struct │ │ │ │ │ │ ├── RcsIncomingMessageCreationParams.struct │ │ │ │ │ │ ├── RcsMessageQueryParams.struct │ │ │ │ │ │ ├── RcsMessageSnippet.struct │ │ │ │ │ │ ├── RcsOutgoingMessageCreationParams.struct │ │ │ │ │ │ ├── RcsParticipantQueryParams.struct │ │ │ │ │ │ ├── RcsQueryContinuationToken.struct │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ ├── IImsCallSessionListener.struct │ │ │ │ │ │ │ ├── IImsCapabilityCallback.struct │ │ │ │ │ │ │ ├── IImsConfig.struct │ │ │ │ │ │ │ ├── IImsConfigCallback.struct │ │ │ │ │ │ │ ├── IImsMmTelFeature.struct │ │ │ │ │ │ │ ├── IImsMmTelListener.struct │ │ │ │ │ │ │ ├── IImsRcsFeature.struct │ │ │ │ │ │ │ ├── IImsRegistration.struct │ │ │ │ │ │ │ ├── IImsRegistrationCallback.struct │ │ │ │ │ │ │ ├── IImsServiceController.struct │ │ │ │ │ │ │ ├── IImsServiceControllerListener.struct │ │ │ │ │ │ │ ├── IImsSmsListener.struct │ │ │ │ │ │ │ └── IRcs.struct │ │ │ │ │ │ ├── feature │ │ │ │ │ │ │ └── CapabilityChangeRequest.struct │ │ │ │ │ │ └── stub │ │ │ │ │ │ │ └── ImsFeatureConfiguration.struct │ │ │ │ │ └── mbms │ │ │ │ │ │ ├── FileInfo.struct │ │ │ │ │ │ ├── IDownloadProgressListener.struct │ │ │ │ │ │ ├── IDownloadStatusListener.struct │ │ │ │ │ │ ├── IGroupCallCallback.struct │ │ │ │ │ │ ├── IMbmsDownloadSessionCallback.struct │ │ │ │ │ │ ├── IMbmsGroupCallSessionCallback.struct │ │ │ │ │ │ ├── IMbmsStreamingSessionCallback.struct │ │ │ │ │ │ ├── IStreamingServiceCallback.struct │ │ │ │ │ │ ├── StreamingServiceInfo.struct │ │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── IMbmsDownloadService.struct │ │ │ │ │ │ ├── IMbmsGroupCallService.struct │ │ │ │ │ │ └── IMbmsStreamingService.struct │ │ │ │ ├── tests │ │ │ │ │ └── binder │ │ │ │ │ │ └── IBenchmark.struct │ │ │ │ ├── util │ │ │ │ │ ├── IRemoteMemoryIntArray.struct │ │ │ │ │ └── MemoryIntArray.struct │ │ │ │ ├── vendor │ │ │ │ │ └── powerstats │ │ │ │ │ │ ├── IPixelPowerStatsCallback.struct │ │ │ │ │ │ ├── IPixelPowerStatsProvider.struct │ │ │ │ │ │ └── StateResidencyData.struct │ │ │ │ ├── view │ │ │ │ │ ├── AppTransitionAnimationSpec.struct │ │ │ │ │ ├── IAppTransitionAnimationSpecsFuture.struct │ │ │ │ │ ├── IApplicationToken.struct │ │ │ │ │ ├── IDisplayFoldListener.struct │ │ │ │ │ ├── IDockedStackListener.struct │ │ │ │ │ ├── IGraphicsStats.struct │ │ │ │ │ ├── IGraphicsStatsCallback.struct │ │ │ │ │ ├── IInputFilter.struct │ │ │ │ │ ├── IInputFilterHost.struct │ │ │ │ │ ├── IInputMonitorHost.struct │ │ │ │ │ ├── IOnKeyguardExitResult.struct │ │ │ │ │ ├── IPinnedStackController.struct │ │ │ │ │ ├── IPinnedStackListener.struct │ │ │ │ │ ├── IRecentsAnimationController.struct │ │ │ │ │ ├── IRecentsAnimationRunner.struct │ │ │ │ │ ├── IRemoteAnimationFinishedCallback.struct │ │ │ │ │ ├── IRemoteAnimationRunner.struct │ │ │ │ │ ├── IRotationWatcher.struct │ │ │ │ │ ├── ISystemGestureExclusionListener.struct │ │ │ │ │ ├── IWallpaperVisibilityListener.struct │ │ │ │ │ ├── IWindow.struct │ │ │ │ │ ├── IWindowFocusObserver.struct │ │ │ │ │ ├── IWindowId.struct │ │ │ │ │ ├── IWindowManager.struct │ │ │ │ │ ├── IWindowSession.struct │ │ │ │ │ ├── IWindowSessionCallback.struct │ │ │ │ │ ├── InsetsSourceControl.struct │ │ │ │ │ ├── KeyEvent.struct │ │ │ │ │ ├── RemoteAnimationTarget.struct │ │ │ │ │ ├── WindowAnimationFrameStats.struct │ │ │ │ │ ├── WindowContentFrameStats.struct │ │ │ │ │ ├── accessibility │ │ │ │ │ │ ├── IAccessibilityInteractionConnection.struct │ │ │ │ │ │ ├── IAccessibilityInteractionConnectionCallback.struct │ │ │ │ │ │ ├── IAccessibilityManager.struct │ │ │ │ │ │ └── IAccessibilityManagerClient.struct │ │ │ │ │ ├── autofill │ │ │ │ │ │ ├── AutofillId.struct │ │ │ │ │ │ ├── AutofillValue.struct │ │ │ │ │ │ ├── IAugmentedAutofillManagerClient.struct │ │ │ │ │ │ ├── IAutoFillManager.struct │ │ │ │ │ │ ├── IAutoFillManagerClient.struct │ │ │ │ │ │ └── IAutofillWindowPresenter.struct │ │ │ │ │ ├── contentcapture │ │ │ │ │ │ ├── ContentCaptureCondition.struct │ │ │ │ │ │ ├── DataRemovalRequest.struct │ │ │ │ │ │ ├── IContentCaptureDirectManager.struct │ │ │ │ │ │ └── IContentCaptureManager.struct │ │ │ │ │ ├── inputmethod │ │ │ │ │ │ ├── CompletionInfo.struct │ │ │ │ │ │ ├── CorrectionInfo.struct │ │ │ │ │ │ ├── EditorInfo.struct │ │ │ │ │ │ ├── ExtractedText.struct │ │ │ │ │ │ ├── ExtractedTextRequest.struct │ │ │ │ │ │ ├── InputBinding.struct │ │ │ │ │ │ ├── InputMethodSubtype.struct │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── IWindowFocusStealer.struct │ │ │ │ │ ├── textclassifier │ │ │ │ │ │ ├── SelectionEvent.struct │ │ │ │ │ │ └── TextClassificationContext.struct │ │ │ │ │ └── textservice │ │ │ │ │ │ ├── SuggestionsInfo.struct │ │ │ │ │ │ └── TextInfo.struct │ │ │ │ └── webkit │ │ │ │ │ └── IWebViewUpdateService.struct │ │ │ ├── another_package │ │ │ │ └── IFaz.struct │ │ │ ├── classPaths.txt │ │ │ ├── com │ │ │ │ ├── android │ │ │ │ │ ├── bips │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ └── SizeD.struct │ │ │ │ │ │ └── render │ │ │ │ │ │ │ └── IPdfRender.struct │ │ │ │ │ ├── car │ │ │ │ │ │ ├── keventreader │ │ │ │ │ │ │ ├── IEventCallback.struct │ │ │ │ │ │ │ ├── IEventProvider.struct │ │ │ │ │ │ │ └── KeypressEvent.struct │ │ │ │ │ │ ├── procfsinspector │ │ │ │ │ │ │ ├── IProcfsInspector.struct │ │ │ │ │ │ │ └── ProcessInfo.struct │ │ │ │ │ │ ├── radio │ │ │ │ │ │ │ ├── bands │ │ │ │ │ │ │ │ └── ProgramType.struct │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ ├── IRadioAppCallback.struct │ │ │ │ │ │ │ │ ├── IRadioAppService.struct │ │ │ │ │ │ │ │ └── ITuneCallback.struct │ │ │ │ │ │ └── setupwizardlib │ │ │ │ │ │ │ └── IInitialLockSetupService.struct │ │ │ │ │ ├── compatibility │ │ │ │ │ │ └── common │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── devicepolicy │ │ │ │ │ │ │ └── provisioning │ │ │ │ │ │ │ └── IBooleanCallback.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── IBinderPermissionTestService.struct │ │ │ │ │ │ ├── comp │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ ├── deviceowner │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ └── hostside │ │ │ │ │ │ │ │ ├── IMyService.struct │ │ │ │ │ │ │ │ ├── INetworkCallback.struct │ │ │ │ │ │ │ │ ├── INetworkStateObserver.struct │ │ │ │ │ │ │ │ └── IRemoteSocketFactory.struct │ │ │ │ │ │ └── verifier │ │ │ │ │ │ │ ├── managedprovisioning │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ │ └── projection │ │ │ │ │ │ │ └── IProjectionService.struct │ │ │ │ │ ├── development │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ ├── dialer │ │ │ │ │ │ └── simulator │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── ISimulatorService.struct │ │ │ │ │ ├── emailcommon │ │ │ │ │ │ ├── provider │ │ │ │ │ │ │ └── Policy.struct │ │ │ │ │ │ └── service │ │ │ │ │ │ │ ├── HostAuthCompat.struct │ │ │ │ │ │ │ ├── IAccountService.struct │ │ │ │ │ │ │ ├── IEmailService.struct │ │ │ │ │ │ │ ├── IEmailServiceCallback.struct │ │ │ │ │ │ │ └── IPolicyService.struct │ │ │ │ │ ├── frameworks │ │ │ │ │ │ ├── coretests │ │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ │ ├── IBinderProxyCountingService.struct │ │ │ │ │ │ │ │ ├── IBpcCallbackObserver.struct │ │ │ │ │ │ │ │ ├── IBpcTestAppCmdService.struct │ │ │ │ │ │ │ │ ├── IBpcTestServiceCmdService.struct │ │ │ │ │ │ │ │ ├── ICmdCallback.struct │ │ │ │ │ │ │ │ ├── ICmdReceiver.struct │ │ │ │ │ │ │ │ └── ITestRemoteCallback.struct │ │ │ │ │ │ └── perftests │ │ │ │ │ │ │ └── am │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── ITimeReceiverCallback.struct │ │ │ │ │ ├── ims │ │ │ │ │ │ ├── IRcsPresenceListener.struct │ │ │ │ │ │ ├── ImsConfigListener.struct │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── IImsCallSession.struct │ │ │ │ │ │ │ ├── IImsCallSessionListener.struct │ │ │ │ │ │ │ ├── IImsConfig.struct │ │ │ │ │ │ │ ├── IImsEcbm.struct │ │ │ │ │ │ │ ├── IImsEcbmListener.struct │ │ │ │ │ │ │ ├── IImsExternalCallStateListener.struct │ │ │ │ │ │ │ ├── IImsFeatureStatusCallback.struct │ │ │ │ │ │ │ ├── IImsMMTelFeature.struct │ │ │ │ │ │ │ ├── IImsMultiEndpoint.struct │ │ │ │ │ │ │ ├── IImsRcsFeature.struct │ │ │ │ │ │ │ ├── IImsRegistrationListener.struct │ │ │ │ │ │ │ ├── IImsService.struct │ │ │ │ │ │ │ ├── IImsServiceController.struct │ │ │ │ │ │ │ ├── IImsServiceFeatureCallback.struct │ │ │ │ │ │ │ ├── IImsStreamMediaSession.struct │ │ │ │ │ │ │ ├── IImsUt.struct │ │ │ │ │ │ │ ├── IImsUtListener.struct │ │ │ │ │ │ │ ├── IImsVideoCallCallback.struct │ │ │ │ │ │ │ ├── IImsVideoCallProvider.struct │ │ │ │ │ │ │ ├── IRcsPresence.struct │ │ │ │ │ │ │ ├── IRcsService.struct │ │ │ │ │ │ │ └── uce │ │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ ├── IOptionsListener.struct │ │ │ │ │ │ │ └── IOptionsService.struct │ │ │ │ │ │ │ ├── presence │ │ │ │ │ │ │ ├── IPresenceListener.struct │ │ │ │ │ │ │ └── IPresenceService.struct │ │ │ │ │ │ │ └── uceservice │ │ │ │ │ │ │ ├── IUceListener.struct │ │ │ │ │ │ │ └── IUceService.struct │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── IAppOpsActiveCallback.struct │ │ │ │ │ │ │ ├── IAppOpsCallback.struct │ │ │ │ │ │ │ ├── IAppOpsNotedCallback.struct │ │ │ │ │ │ │ ├── IAppOpsService.struct │ │ │ │ │ │ │ ├── IBatteryStats.struct │ │ │ │ │ │ │ ├── IMediaContainerService.struct │ │ │ │ │ │ │ ├── ISoundTriggerService.struct │ │ │ │ │ │ │ ├── IVoiceActionCheckCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractionManagerService.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSessionListener.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSessionShowCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractor.struct │ │ │ │ │ │ │ ├── IVoiceInteractorCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractorRequest.struct │ │ │ │ │ │ │ └── procstats │ │ │ │ │ │ │ │ └── IProcessStats.struct │ │ │ │ │ │ ├── appwidget │ │ │ │ │ │ │ ├── IAppWidgetHost.struct │ │ │ │ │ │ │ └── IAppWidgetService.struct │ │ │ │ │ │ ├── backup │ │ │ │ │ │ │ ├── IBackupTransport.struct │ │ │ │ │ │ │ └── IObbBackupService.struct │ │ │ │ │ │ ├── car │ │ │ │ │ │ │ └── ICarServiceHelper.struct │ │ │ │ │ │ ├── inputmethod │ │ │ │ │ │ │ ├── IInputContentUriToken.struct │ │ │ │ │ │ │ ├── IInputMethodPrivilegedOperations.struct │ │ │ │ │ │ │ ├── IMultiClientInputMethod.struct │ │ │ │ │ │ │ ├── IMultiClientInputMethodPrivilegedOperations.struct │ │ │ │ │ │ │ └── IMultiClientInputMethodSession.struct │ │ │ │ │ │ ├── location │ │ │ │ │ │ │ ├── ILocationProvider.struct │ │ │ │ │ │ │ ├── ILocationProviderManager.struct │ │ │ │ │ │ │ └── ProviderProperties.struct │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ ├── INetworkWatchlistManager.struct │ │ │ │ │ │ │ ├── IOemNetd.struct │ │ │ │ │ │ │ ├── IOemNetdUnsolicitedEventListener.struct │ │ │ │ │ │ │ ├── LegacyVpnInfo.struct │ │ │ │ │ │ │ ├── VpnInfo.struct │ │ │ │ │ │ │ └── VpnProfile.struct │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ ├── AppFuseMount.struct │ │ │ │ │ │ │ ├── IDropBoxManagerService.struct │ │ │ │ │ │ │ ├── IParcelFileDescriptorFactory.struct │ │ │ │ │ │ │ ├── IResultReceiver.struct │ │ │ │ │ │ │ └── IShellCallback.struct │ │ │ │ │ │ ├── policy │ │ │ │ │ │ │ ├── IKeyguardDismissCallback.struct │ │ │ │ │ │ │ ├── IKeyguardDrawnCallback.struct │ │ │ │ │ │ │ ├── IKeyguardExitCallback.struct │ │ │ │ │ │ │ ├── IKeyguardService.struct │ │ │ │ │ │ │ ├── IKeyguardStateCallback.struct │ │ │ │ │ │ │ └── IShortcutService.struct │ │ │ │ │ │ ├── statusbar │ │ │ │ │ │ │ ├── IStatusBar.struct │ │ │ │ │ │ │ └── IStatusBarService.struct │ │ │ │ │ │ ├── telecom │ │ │ │ │ │ │ ├── ICallRedirectionAdapter.struct │ │ │ │ │ │ │ ├── ICallRedirectionService.struct │ │ │ │ │ │ │ ├── ICallScreeningAdapter.struct │ │ │ │ │ │ │ ├── ICallScreeningService.struct │ │ │ │ │ │ │ ├── IConnectionService.struct │ │ │ │ │ │ │ ├── IConnectionServiceAdapter.struct │ │ │ │ │ │ │ ├── IInCallAdapter.struct │ │ │ │ │ │ │ ├── IInCallService.struct │ │ │ │ │ │ │ ├── IPhoneAccountSuggestionCallback.struct │ │ │ │ │ │ │ ├── IPhoneAccountSuggestionService.struct │ │ │ │ │ │ │ ├── ITelecomService.struct │ │ │ │ │ │ │ ├── IVideoCallback.struct │ │ │ │ │ │ │ ├── IVideoProvider.struct │ │ │ │ │ │ │ └── RemoteServiceCallback.struct │ │ │ │ │ │ ├── telephony │ │ │ │ │ │ │ ├── IApnSourceService.struct │ │ │ │ │ │ │ ├── ICarrierConfigLoader.struct │ │ │ │ │ │ │ ├── IIccPhoneBook.struct │ │ │ │ │ │ │ ├── IIntegerConsumer.struct │ │ │ │ │ │ │ ├── IMms.struct │ │ │ │ │ │ │ ├── INumberVerificationCallback.struct │ │ │ │ │ │ │ ├── IOnSubscriptionsChangedListener.struct │ │ │ │ │ │ │ ├── IOns.struct │ │ │ │ │ │ │ ├── IPhoneStateListener.struct │ │ │ │ │ │ │ ├── IPhoneSubInfo.struct │ │ │ │ │ │ │ ├── ISetOpportunisticDataCallback.struct │ │ │ │ │ │ │ ├── ISms.struct │ │ │ │ │ │ │ ├── ISub.struct │ │ │ │ │ │ │ ├── ITelephony.struct │ │ │ │ │ │ │ ├── ITelephonyRegistry.struct │ │ │ │ │ │ │ ├── IUpdateAvailableNetworksCallback.struct │ │ │ │ │ │ │ ├── IWapPushManager.struct │ │ │ │ │ │ │ ├── OperatorInfo.struct │ │ │ │ │ │ │ ├── SmsRawData.struct │ │ │ │ │ │ │ ├── euicc │ │ │ │ │ │ │ │ ├── IAuthenticateServerCallback.struct │ │ │ │ │ │ │ │ ├── ICancelSessionCallback.struct │ │ │ │ │ │ │ │ ├── IDeleteProfileCallback.struct │ │ │ │ │ │ │ │ ├── IDisableProfileCallback.struct │ │ │ │ │ │ │ │ ├── IEuiccCardController.struct │ │ │ │ │ │ │ │ ├── IEuiccController.struct │ │ │ │ │ │ │ │ ├── IGetAllProfilesCallback.struct │ │ │ │ │ │ │ │ ├── IGetDefaultSmdpAddressCallback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccChallengeCallback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccInfo1Callback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccInfo2Callback.struct │ │ │ │ │ │ │ │ ├── IGetProfileCallback.struct │ │ │ │ │ │ │ │ ├── IGetRulesAuthTableCallback.struct │ │ │ │ │ │ │ │ ├── IGetSmdsAddressCallback.struct │ │ │ │ │ │ │ │ ├── IListNotificationsCallback.struct │ │ │ │ │ │ │ │ ├── ILoadBoundProfilePackageCallback.struct │ │ │ │ │ │ │ │ ├── IPrepareDownloadCallback.struct │ │ │ │ │ │ │ │ ├── IRemoveNotificationFromListCallback.struct │ │ │ │ │ │ │ │ ├── IResetMemoryCallback.struct │ │ │ │ │ │ │ │ ├── IRetrieveNotificationCallback.struct │ │ │ │ │ │ │ │ ├── IRetrieveNotificationListCallback.struct │ │ │ │ │ │ │ │ ├── ISetDefaultSmdpAddressCallback.struct │ │ │ │ │ │ │ │ ├── ISetNicknameCallback.struct │ │ │ │ │ │ │ │ └── ISwitchToProfileCallback.struct │ │ │ │ │ │ │ └── uicc │ │ │ │ │ │ │ │ └── AdnRecord.struct │ │ │ │ │ │ ├── textservice │ │ │ │ │ │ │ ├── ISpellCheckerService.struct │ │ │ │ │ │ │ ├── ISpellCheckerServiceCallback.struct │ │ │ │ │ │ │ ├── ISpellCheckerSession.struct │ │ │ │ │ │ │ ├── ISpellCheckerSessionListener.struct │ │ │ │ │ │ │ ├── ITextServicesManager.struct │ │ │ │ │ │ │ └── ITextServicesSessionListener.struct │ │ │ │ │ │ ├── view │ │ │ │ │ │ │ ├── IDragAndDropPermissions.struct │ │ │ │ │ │ │ ├── IInputContext.struct │ │ │ │ │ │ │ ├── IInputContextCallback.struct │ │ │ │ │ │ │ ├── IInputMethod.struct │ │ │ │ │ │ │ ├── IInputMethodClient.struct │ │ │ │ │ │ │ ├── IInputMethodManager.struct │ │ │ │ │ │ │ ├── IInputMethodSession.struct │ │ │ │ │ │ │ └── IInputSessionCallback.struct │ │ │ │ │ │ └── widget │ │ │ │ │ │ │ ├── ICheckCredentialProgressCallback.struct │ │ │ │ │ │ │ ├── ILockSettings.struct │ │ │ │ │ │ │ └── IRemoteViewsFactory.struct │ │ │ │ │ ├── keychain │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ └── IKeyChainServiceTestSupport.struct │ │ │ │ │ ├── net │ │ │ │ │ │ ├── IProxyCallback.struct │ │ │ │ │ │ ├── IProxyPortListener.struct │ │ │ │ │ │ └── IProxyService.struct │ │ │ │ │ ├── onemedia │ │ │ │ │ │ ├── IPlayerCallback.struct │ │ │ │ │ │ ├── IPlayerService.struct │ │ │ │ │ │ └── playback │ │ │ │ │ │ │ └── IRequestCallback.struct │ │ │ │ │ ├── phone │ │ │ │ │ │ ├── INetworkQueryService.struct │ │ │ │ │ │ └── INetworkQueryServiceCallback.struct │ │ │ │ │ ├── printspooler │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ ├── IPdfEditor.struct │ │ │ │ │ │ │ └── IPdfRenderer.struct │ │ │ │ │ ├── providers │ │ │ │ │ │ └── media │ │ │ │ │ │ │ └── IMtpService.struct │ │ │ │ │ ├── servicestests │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ ├── ICmdReceiverService.struct │ │ │ │ │ │ │ └── INetworkStateObserver.struct │ │ │ │ │ ├── smspush │ │ │ │ │ │ └── unitTests │ │ │ │ │ │ │ └── IDataVerify.struct │ │ │ │ │ ├── systemui │ │ │ │ │ │ ├── recents │ │ │ │ │ │ │ ├── IRecentsNonSystemUserCallbacks.struct │ │ │ │ │ │ │ └── IRecentsSystemUserCallbacks.struct │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ └── recents │ │ │ │ │ │ │ ├── IOverviewProxy.struct │ │ │ │ │ │ │ └── ISystemUiProxy.struct │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ │ └── basicprojectwithaidl │ │ │ │ │ │ │ └── ITest.struct │ │ │ │ │ └── tv │ │ │ │ │ │ ├── settings │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── IActivityTransitionBitmapProvider.struct │ │ │ │ │ │ └── testing │ │ │ │ │ │ └── testinput │ │ │ │ │ │ └── ITestInputControl.struct │ │ │ │ ├── example │ │ │ │ │ └── android │ │ │ │ │ │ └── apis │ │ │ │ │ │ └── app │ │ │ │ │ │ ├── IRemoteService.struct │ │ │ │ │ │ ├── IRemoteServiceCallback.struct │ │ │ │ │ │ └── ISecondary.struct │ │ │ │ ├── google │ │ │ │ │ └── android │ │ │ │ │ │ ├── setupcompat │ │ │ │ │ │ └── ISetupCompatService.struct │ │ │ │ │ │ └── startop │ │ │ │ │ │ └── iorap │ │ │ │ │ │ ├── ActivityInfo.struct │ │ │ │ │ │ ├── AppIntentEvent.struct │ │ │ │ │ │ ├── AppLaunchEvent.struct │ │ │ │ │ │ ├── IIorap.struct │ │ │ │ │ │ ├── ITaskListener.struct │ │ │ │ │ │ ├── PackageEvent.struct │ │ │ │ │ │ ├── RequestId.struct │ │ │ │ │ │ ├── SystemServiceEvent.struct │ │ │ │ │ │ ├── SystemServiceUserEvent.struct │ │ │ │ │ │ └── TaskResult.struct │ │ │ │ └── mediatek │ │ │ │ │ └── tunerservice │ │ │ │ │ └── IMtkTuner.struct │ │ │ ├── org │ │ │ │ └── codeaurora │ │ │ │ │ ├── ims │ │ │ │ │ └── internal │ │ │ │ │ │ ├── IQtiImsExt.struct │ │ │ │ │ │ └── IQtiImsExtListener.struct │ │ │ │ │ └── internal │ │ │ │ │ └── IExtTelephony.struct │ │ │ ├── other_package │ │ │ │ └── IBaz.struct │ │ │ ├── some_package │ │ │ │ ├── IBar.struct │ │ │ │ ├── IFoo.struct │ │ │ │ ├── Thing.struct │ │ │ │ └── sub_package │ │ │ │ │ ├── IFoo.struct │ │ │ │ │ └── SubThing.struct │ │ │ ├── test │ │ │ │ └── ParcelableTest.struct │ │ │ └── test_package │ │ │ │ ├── Bar.struct │ │ │ │ ├── Foo.struct │ │ │ │ ├── IBaz.struct │ │ │ │ ├── IEmpty.struct │ │ │ │ ├── ITest.struct │ │ │ │ └── RegularPolygon.struct │ │ ├── android-11.0.0_r48 │ │ │ ├── android │ │ │ │ ├── IDataSource.struct │ │ │ │ ├── IGraphicBufferSource.struct │ │ │ │ ├── IMediaExtractor.struct │ │ │ │ ├── IMediaExtractorService.struct │ │ │ │ ├── IOMXBufferSource.struct │ │ │ │ ├── IOMXNode.struct │ │ │ │ ├── accessibilityservice │ │ │ │ │ ├── AccessibilityGestureEvent.struct │ │ │ │ │ ├── IAccessibilityServiceClient.struct │ │ │ │ │ └── IAccessibilityServiceConnection.struct │ │ │ │ ├── accounts │ │ │ │ │ ├── AuthenticatorDescription.struct │ │ │ │ │ ├── IAccountAuthenticator.struct │ │ │ │ │ ├── IAccountAuthenticatorResponse.struct │ │ │ │ │ ├── IAccountManager.struct │ │ │ │ │ └── IAccountManagerResponse.struct │ │ │ │ ├── aidl │ │ │ │ │ ├── loggable │ │ │ │ │ │ └── ILoggableInterface.struct │ │ │ │ │ └── tests │ │ │ │ │ │ ├── INamedCallback.struct │ │ │ │ │ │ ├── StructuredParcelable.struct │ │ │ │ │ │ ├── generic │ │ │ │ │ │ └── Baz.struct │ │ │ │ │ │ └── map │ │ │ │ │ │ ├── Bar.struct │ │ │ │ │ │ ├── Foo.struct │ │ │ │ │ │ └── IEmpty.struct │ │ │ │ ├── apex │ │ │ │ │ ├── ApexInfo.struct │ │ │ │ │ ├── ApexInfoList.struct │ │ │ │ │ ├── ApexSessionInfo.struct │ │ │ │ │ ├── ApexSessionParams.struct │ │ │ │ │ └── IApexService.struct │ │ │ │ ├── app │ │ │ │ │ ├── AutomaticZenRule.struct │ │ │ │ │ ├── IActivityController.struct │ │ │ │ │ ├── IActivityManager.struct │ │ │ │ │ ├── IActivityPendingResult.struct │ │ │ │ │ ├── IActivityTaskManager.struct │ │ │ │ │ ├── IAlarmCompleteListener.struct │ │ │ │ │ ├── IAlarmListener.struct │ │ │ │ │ ├── IAlarmManager.struct │ │ │ │ │ ├── IAppTask.struct │ │ │ │ │ ├── IAppTraceRetriever.struct │ │ │ │ │ ├── IApplicationThread.struct │ │ │ │ │ ├── IAssistDataReceiver.struct │ │ │ │ │ ├── IBackupAgent.struct │ │ │ │ │ ├── IEphemeralResolver.struct │ │ │ │ │ ├── IInstantAppResolver.struct │ │ │ │ │ ├── IInstrumentationWatcher.struct │ │ │ │ │ ├── INotificationManager.struct │ │ │ │ │ ├── IProcessObserver.struct │ │ │ │ │ ├── IRequestFinishCallback.struct │ │ │ │ │ ├── ISearchManager.struct │ │ │ │ │ ├── ISearchManagerCallback.struct │ │ │ │ │ ├── IServiceConnection.struct │ │ │ │ │ ├── IStopUserCallback.struct │ │ │ │ │ ├── ITaskStackListener.struct │ │ │ │ │ ├── ITransientNotification.struct │ │ │ │ │ ├── ITransientNotificationCallback.struct │ │ │ │ │ ├── IUiAutomationConnection.struct │ │ │ │ │ ├── IUiModeManager.struct │ │ │ │ │ ├── IUidObserver.struct │ │ │ │ │ ├── IUriGrantsManager.struct │ │ │ │ │ ├── IUserSwitchObserver.struct │ │ │ │ │ ├── IWallpaperManager.struct │ │ │ │ │ ├── IWallpaperManagerCallback.struct │ │ │ │ │ ├── IWindowToken.struct │ │ │ │ │ ├── NotificationChannel.struct │ │ │ │ │ ├── PendingIntent.struct │ │ │ │ │ ├── ProfilerInfo.struct │ │ │ │ │ ├── RemoteAction.struct │ │ │ │ │ ├── Vr2dDisplayProperties.struct │ │ │ │ │ ├── WaitResult.struct │ │ │ │ │ ├── WallpaperInfo.struct │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── IDeviceAdminService.struct │ │ │ │ │ │ ├── IDevicePolicyManager.struct │ │ │ │ │ │ ├── IKeyguardCallback.struct │ │ │ │ │ │ ├── IKeyguardClient.struct │ │ │ │ │ │ ├── NetworkEvent.struct │ │ │ │ │ │ ├── PasswordMetrics.struct │ │ │ │ │ │ ├── StartInstallingUpdateCallback.struct │ │ │ │ │ │ └── SystemUpdateInfo.struct │ │ │ │ │ ├── appops │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ ├── IAppOpsForegroundControlService.struct │ │ │ │ │ │ │ ├── IAppOpsUserClient.struct │ │ │ │ │ │ │ └── IAppOpsUserService.struct │ │ │ │ │ ├── assist │ │ │ │ │ │ ├── AssistContent.struct │ │ │ │ │ │ └── AssistStructure.struct │ │ │ │ │ ├── backup │ │ │ │ │ │ ├── BackupProgress.struct │ │ │ │ │ │ ├── IBackupCallback.struct │ │ │ │ │ │ ├── IBackupManager.struct │ │ │ │ │ │ ├── IBackupManagerMonitor.struct │ │ │ │ │ │ ├── IBackupObserver.struct │ │ │ │ │ │ ├── IFullBackupRestoreObserver.struct │ │ │ │ │ │ ├── IRestoreObserver.struct │ │ │ │ │ │ ├── IRestoreSession.struct │ │ │ │ │ │ ├── ISelectBackupTransportCallback.struct │ │ │ │ │ │ ├── RestoreDescription.struct │ │ │ │ │ │ └── RestoreSet.struct │ │ │ │ │ ├── blob │ │ │ │ │ │ ├── BlobHandle.struct │ │ │ │ │ │ ├── BlobInfo.struct │ │ │ │ │ │ ├── IBlobCommitCallback.struct │ │ │ │ │ │ ├── IBlobStoreManager.struct │ │ │ │ │ │ ├── IBlobStoreSession.struct │ │ │ │ │ │ └── LeaseInfo.struct │ │ │ │ │ ├── contentsuggestions │ │ │ │ │ │ ├── ContentClassification.struct │ │ │ │ │ │ ├── ContentSelection.struct │ │ │ │ │ │ ├── IClassificationsCallback.struct │ │ │ │ │ │ ├── IContentSuggestionsManager.struct │ │ │ │ │ │ └── ISelectionsCallback.struct │ │ │ │ │ ├── job │ │ │ │ │ │ ├── IJobCallback.struct │ │ │ │ │ │ ├── IJobScheduler.struct │ │ │ │ │ │ ├── IJobService.struct │ │ │ │ │ │ └── JobWorkItem.struct │ │ │ │ │ ├── prediction │ │ │ │ │ │ ├── AppPredictionContext.struct │ │ │ │ │ │ ├── AppPredictionSessionId.struct │ │ │ │ │ │ ├── AppTargetEvent.struct │ │ │ │ │ │ ├── IPredictionCallback.struct │ │ │ │ │ │ └── IPredictionManager.struct │ │ │ │ │ ├── role │ │ │ │ │ │ ├── IOnRoleHoldersChangedListener.struct │ │ │ │ │ │ ├── IRoleController.struct │ │ │ │ │ │ └── IRoleManager.struct │ │ │ │ │ ├── slice │ │ │ │ │ │ ├── ISliceListener.struct │ │ │ │ │ │ ├── ISliceManager.struct │ │ │ │ │ │ └── SliceSpec.struct │ │ │ │ │ ├── stubs │ │ │ │ │ │ └── ISecondary.struct │ │ │ │ │ ├── timedetector │ │ │ │ │ │ └── ITimeDetectorService.struct │ │ │ │ │ ├── timezone │ │ │ │ │ │ ├── ICallback.struct │ │ │ │ │ │ └── IRulesManager.struct │ │ │ │ │ ├── timezonedetector │ │ │ │ │ │ └── ITimeZoneDetectorService.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── IStrongAuthTracker.struct │ │ │ │ │ │ ├── ITrustListener.struct │ │ │ │ │ │ └── ITrustManager.struct │ │ │ │ │ └── usage │ │ │ │ │ │ ├── ExternalStorageStats.struct │ │ │ │ │ │ ├── ICacheQuotaService.struct │ │ │ │ │ │ ├── IStorageStatsManager.struct │ │ │ │ │ │ ├── IUsageStatsManager.struct │ │ │ │ │ │ ├── StorageStats.struct │ │ │ │ │ │ └── cts │ │ │ │ │ │ └── ITestReceiver.struct │ │ │ │ ├── appsecurity │ │ │ │ │ └── cts │ │ │ │ │ │ └── keyrotationtest │ │ │ │ │ │ └── service │ │ │ │ │ │ └── ISignatureQueryService.struct │ │ │ │ ├── automotive │ │ │ │ │ ├── computepipe │ │ │ │ │ │ ├── registry │ │ │ │ │ │ │ ├── IClientInfo.struct │ │ │ │ │ │ │ ├── IPipeQuery.struct │ │ │ │ │ │ │ └── IPipeRegistration.struct │ │ │ │ │ │ └── runner │ │ │ │ │ │ │ ├── IPipeDebugger.struct │ │ │ │ │ │ │ ├── IPipeRunner.struct │ │ │ │ │ │ │ ├── IPipeStateCallback.struct │ │ │ │ │ │ │ ├── IPipeStream.struct │ │ │ │ │ │ │ ├── PacketDescriptor.struct │ │ │ │ │ │ │ ├── PipeDescriptor.struct │ │ │ │ │ │ │ ├── PipeInputConfig.struct │ │ │ │ │ │ │ ├── PipeInputConfigCameraDesc.struct │ │ │ │ │ │ │ ├── PipeInputConfigImageFileDesc.struct │ │ │ │ │ │ │ ├── PipeInputConfigInputSourceDesc.struct │ │ │ │ │ │ │ ├── PipeInputConfigVideoFileDesc.struct │ │ │ │ │ │ │ ├── PipeOffloadConfig.struct │ │ │ │ │ │ │ ├── PipeOffloadConfigOffloadDesc.struct │ │ │ │ │ │ │ ├── PipeOutputConfig.struct │ │ │ │ │ │ │ ├── PipeOutputConfigOutputDesc.struct │ │ │ │ │ │ │ ├── PipeTerminationConfig.struct │ │ │ │ │ │ │ ├── PipeTerminationConfigTerminationDesc.struct │ │ │ │ │ │ │ └── ProfilingData.struct │ │ │ │ │ └── watchdog │ │ │ │ │ │ ├── ICarWatchdog.struct │ │ │ │ │ │ ├── ICarWatchdogClient.struct │ │ │ │ │ │ └── ICarWatchdogMonitor.struct │ │ │ │ ├── bluetooth │ │ │ │ │ ├── BluetoothAudioConfig.struct │ │ │ │ │ ├── BluetoothCodecConfig.struct │ │ │ │ │ ├── BluetoothDevice.struct │ │ │ │ │ ├── BluetoothGattDescriptor.struct │ │ │ │ │ ├── BluetoothGattIncludedService.struct │ │ │ │ │ ├── BluetoothHidDeviceAppQosSettings.struct │ │ │ │ │ ├── BluetoothHidDeviceAppSdpSettings.struct │ │ │ │ │ ├── IBluetooth.struct │ │ │ │ │ ├── IBluetoothA2dp.struct │ │ │ │ │ ├── IBluetoothA2dpSink.struct │ │ │ │ │ ├── IBluetoothA2dpSinkCallback.struct │ │ │ │ │ ├── IBluetoothA2dpSource.struct │ │ │ │ │ ├── IBluetoothA2dpSourceCallback.struct │ │ │ │ │ ├── IBluetoothAvrcpControl.struct │ │ │ │ │ ├── IBluetoothAvrcpControlCallback.struct │ │ │ │ │ ├── IBluetoothAvrcpController.struct │ │ │ │ │ ├── IBluetoothAvrcpTarget.struct │ │ │ │ │ ├── IBluetoothAvrcpTargetCallback.struct │ │ │ │ │ ├── IBluetoothCallback.struct │ │ │ │ │ ├── IBluetoothGatt.struct │ │ │ │ │ ├── IBluetoothGattCallback.struct │ │ │ │ │ ├── IBluetoothGattClient.struct │ │ │ │ │ ├── IBluetoothGattClientCallback.struct │ │ │ │ │ ├── IBluetoothGattServer.struct │ │ │ │ │ ├── IBluetoothGattServerCallback.struct │ │ │ │ │ ├── IBluetoothHeadset.struct │ │ │ │ │ ├── IBluetoothHeadsetClient.struct │ │ │ │ │ ├── IBluetoothHeadsetPhone.struct │ │ │ │ │ ├── IBluetoothHearingAid.struct │ │ │ │ │ ├── IBluetoothHidDevice.struct │ │ │ │ │ ├── IBluetoothHidDeviceCallback.struct │ │ │ │ │ ├── IBluetoothHidHost.struct │ │ │ │ │ ├── IBluetoothLeAdvertiser.struct │ │ │ │ │ ├── IBluetoothLeAdvertiserCallback.struct │ │ │ │ │ ├── IBluetoothLeScanner.struct │ │ │ │ │ ├── IBluetoothLeScannerCallback.struct │ │ │ │ │ ├── IBluetoothLowEnergy.struct │ │ │ │ │ ├── IBluetoothLowEnergyCallback.struct │ │ │ │ │ ├── IBluetoothManager.struct │ │ │ │ │ ├── IBluetoothManagerCallback.struct │ │ │ │ │ ├── IBluetoothMap.struct │ │ │ │ │ ├── IBluetoothMapClient.struct │ │ │ │ │ ├── IBluetoothMetadataListener.struct │ │ │ │ │ ├── IBluetoothPan.struct │ │ │ │ │ ├── IBluetoothPbap.struct │ │ │ │ │ ├── IBluetoothPbapClient.struct │ │ │ │ │ ├── IBluetoothProfileServiceConnection.struct │ │ │ │ │ ├── IBluetoothSap.struct │ │ │ │ │ ├── IBluetoothSocketManager.struct │ │ │ │ │ ├── IBluetoothStateChangeCallback.struct │ │ │ │ │ └── le │ │ │ │ │ │ ├── AdvertisingSetParameters.struct │ │ │ │ │ │ ├── IAdvertisingSetCallback.struct │ │ │ │ │ │ ├── IPeriodicAdvertisingCallback.struct │ │ │ │ │ │ ├── IScannerCallback.struct │ │ │ │ │ │ ├── PeriodicAdvertisingParameters.struct │ │ │ │ │ │ └── ScanSettings.struct │ │ │ │ ├── brillo │ │ │ │ │ └── IUpdateEngine.struct │ │ │ │ ├── car │ │ │ │ │ ├── IAppFocus.struct │ │ │ │ │ ├── IAppFocusListener.struct │ │ │ │ │ ├── IAppFocusOwnershipCallback.struct │ │ │ │ │ ├── ICar.struct │ │ │ │ │ ├── ICarBluetooth.struct │ │ │ │ │ ├── ICarBluetoothUserService.struct │ │ │ │ │ ├── ICarBugreportCallback.struct │ │ │ │ │ ├── ICarBugreportService.struct │ │ │ │ │ ├── ICarConnectionListener.struct │ │ │ │ │ ├── ICarInfo.struct │ │ │ │ │ ├── ICarOccupantZone.struct │ │ │ │ │ ├── ICarOccupantZoneCallback.struct │ │ │ │ │ ├── ICarProjection.struct │ │ │ │ │ ├── ICarProjectionKeyEventHandler.struct │ │ │ │ │ ├── ICarProjectionStatusListener.struct │ │ │ │ │ ├── ICarUserService.struct │ │ │ │ │ ├── IExperimentalCar.struct │ │ │ │ │ ├── IExperimentalCarHelper.struct │ │ │ │ │ ├── ILocationManagerProxy.struct │ │ │ │ │ ├── IPerUserCarService.struct │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── IInstrumentClusterManagerCallback.struct │ │ │ │ │ │ ├── IInstrumentClusterManagerService.struct │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ ├── IInstrumentCluster.struct │ │ │ │ │ │ │ ├── IInstrumentClusterHelper.struct │ │ │ │ │ │ │ └── IInstrumentClusterNavigation.struct │ │ │ │ │ ├── content │ │ │ │ │ │ └── pm │ │ │ │ │ │ │ ├── ICarAppBlockingPolicy.struct │ │ │ │ │ │ │ ├── ICarAppBlockingPolicySetter.struct │ │ │ │ │ │ │ └── ICarPackageManager.struct │ │ │ │ │ ├── diagnostic │ │ │ │ │ │ ├── ICarDiagnostic.struct │ │ │ │ │ │ └── ICarDiagnosticEventListener.struct │ │ │ │ │ ├── drivingstate │ │ │ │ │ │ ├── CarDrivingStateEvent.struct │ │ │ │ │ │ ├── CarUxRestrictions.struct │ │ │ │ │ │ ├── ICarDrivingState.struct │ │ │ │ │ │ ├── ICarDrivingStateChangeListener.struct │ │ │ │ │ │ ├── ICarUxRestrictionsChangeListener.struct │ │ │ │ │ │ └── ICarUxRestrictionsManager.struct │ │ │ │ │ ├── experimental │ │ │ │ │ │ ├── DriverAwarenessEvent.struct │ │ │ │ │ │ ├── DriverAwarenessSupplierConfig.struct │ │ │ │ │ │ ├── DriverDistractionChangeEvent.struct │ │ │ │ │ │ ├── IDriverAwarenessSupplier.struct │ │ │ │ │ │ ├── IDriverAwarenessSupplierCallback.struct │ │ │ │ │ │ ├── IDriverDistractionChangeListener.struct │ │ │ │ │ │ ├── IDriverDistractionManager.struct │ │ │ │ │ │ └── ITestDemoExperimental.struct │ │ │ │ │ ├── hardware │ │ │ │ │ │ ├── CarSensorConfig.struct │ │ │ │ │ │ ├── CarSensorEvent.struct │ │ │ │ │ │ ├── ICarSensor.struct │ │ │ │ │ │ ├── ICarSensorEventListener.struct │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── ICarPower.struct │ │ │ │ │ │ │ └── ICarPowerStateListener.struct │ │ │ │ │ │ └── property │ │ │ │ │ │ │ ├── ICarProperty.struct │ │ │ │ │ │ │ └── ICarPropertyEventListener.struct │ │ │ │ │ ├── input │ │ │ │ │ │ ├── ICarInput.struct │ │ │ │ │ │ ├── ICarInputCallback.struct │ │ │ │ │ │ └── ICarInputListener.struct │ │ │ │ │ ├── media │ │ │ │ │ │ ├── CarAudioPatchHandle.struct │ │ │ │ │ │ ├── ICarAudio.struct │ │ │ │ │ │ ├── ICarMedia.struct │ │ │ │ │ │ ├── ICarMediaSourceListener.struct │ │ │ │ │ │ └── ICarVolumeCallback.struct │ │ │ │ │ ├── occupantawareness │ │ │ │ │ │ ├── IOccupantAwarenessEventCallback.struct │ │ │ │ │ │ ├── IOccupantAwarenessManager.struct │ │ │ │ │ │ └── SystemStatusEvent.struct │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── ICarConfigurationManager.struct │ │ │ │ │ │ └── SpeedBumpConfiguration.struct │ │ │ │ │ ├── storagemonitoring │ │ │ │ │ │ ├── ICarStorageMonitoring.struct │ │ │ │ │ │ ├── IIoStatsListener.struct │ │ │ │ │ │ └── IoStatsEntry.struct │ │ │ │ │ ├── test │ │ │ │ │ │ └── ICarTest.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── ICarTrustAgentBleCallback.struct │ │ │ │ │ │ ├── ICarTrustAgentEnrollment.struct │ │ │ │ │ │ ├── ICarTrustAgentEnrollmentCallback.struct │ │ │ │ │ │ └── TrustedDeviceInfo.struct │ │ │ │ │ ├── user │ │ │ │ │ │ ├── IUserNotice.struct │ │ │ │ │ │ ├── IUserNoticeUI.struct │ │ │ │ │ │ ├── UserIdentificationAssociationResponse.struct │ │ │ │ │ │ └── UserRemovalResult.struct │ │ │ │ │ ├── vms │ │ │ │ │ │ ├── IVmsBrokerService.struct │ │ │ │ │ │ ├── IVmsClientCallback.struct │ │ │ │ │ │ ├── VmsLayer.struct │ │ │ │ │ │ └── VmsProviderInfo.struct │ │ │ │ │ └── watchdog │ │ │ │ │ │ ├── ICarWatchdogService.struct │ │ │ │ │ │ └── ICarWatchdogServiceCallback.struct │ │ │ │ ├── companion │ │ │ │ │ ├── ICompanionDeviceDiscoveryService.struct │ │ │ │ │ ├── ICompanionDeviceManager.struct │ │ │ │ │ └── IFindDeviceCallback.struct │ │ │ │ ├── content │ │ │ │ │ ├── ClipDescription.struct │ │ │ │ │ ├── ComponentName.struct │ │ │ │ │ ├── ContentCaptureOptions.struct │ │ │ │ │ ├── IClipboard.struct │ │ │ │ │ ├── IContentService.struct │ │ │ │ │ ├── ICrossUserContentService.struct │ │ │ │ │ ├── IIntentReceiver.struct │ │ │ │ │ ├── IIntentSender.struct │ │ │ │ │ ├── IOnPrimaryClipChangedListener.struct │ │ │ │ │ ├── IRestrictionsManager.struct │ │ │ │ │ ├── ISyncAdapter.struct │ │ │ │ │ ├── ISyncAdapterUnsyncableAccountCallback.struct │ │ │ │ │ ├── ISyncContext.struct │ │ │ │ │ ├── ISyncServiceAdapter.struct │ │ │ │ │ ├── ISyncStatusObserver.struct │ │ │ │ │ ├── IntentSender.struct │ │ │ │ │ ├── LocusId.struct │ │ │ │ │ ├── PeriodicSync.struct │ │ │ │ │ ├── SyncAdapterType.struct │ │ │ │ │ ├── SyncStatusInfo.struct │ │ │ │ │ ├── integrity │ │ │ │ │ │ └── IAppIntegrityManager.struct │ │ │ │ │ ├── om │ │ │ │ │ │ ├── IOverlayManager.struct │ │ │ │ │ │ └── OverlayInfo.struct │ │ │ │ │ ├── pm │ │ │ │ │ │ ├── ChangedPackages.struct │ │ │ │ │ │ ├── ConfigurationInfo.struct │ │ │ │ │ │ ├── DataLoaderParamsParcel.struct │ │ │ │ │ │ ├── FileSystemControlParcel.struct │ │ │ │ │ │ ├── ICrossProfileApps.struct │ │ │ │ │ │ ├── IDataLoader.struct │ │ │ │ │ │ ├── IDataLoaderManager.struct │ │ │ │ │ │ ├── IDataLoaderStatusListener.struct │ │ │ │ │ │ ├── IDexModuleRegisterCallback.struct │ │ │ │ │ │ ├── ILauncherApps.struct │ │ │ │ │ │ ├── IOnAppsChangedListener.struct │ │ │ │ │ │ ├── IOtaDexopt.struct │ │ │ │ │ │ ├── IPackageChangeObserver.struct │ │ │ │ │ │ ├── IPackageDataObserver.struct │ │ │ │ │ │ ├── IPackageDeleteObserver.struct │ │ │ │ │ │ ├── IPackageDeleteObserver2.struct │ │ │ │ │ │ ├── IPackageInstallObserver2.struct │ │ │ │ │ │ ├── IPackageInstaller.struct │ │ │ │ │ │ ├── IPackageInstallerCallback.struct │ │ │ │ │ │ ├── IPackageInstallerSession.struct │ │ │ │ │ │ ├── IPackageInstallerSessionFileSystemConnector.struct │ │ │ │ │ │ ├── IPackageManager.struct │ │ │ │ │ │ ├── IPackageManagerNative.struct │ │ │ │ │ │ ├── IPackageMoveObserver.struct │ │ │ │ │ │ ├── IPackageStatsObserver.struct │ │ │ │ │ │ ├── IPinItemRequest.struct │ │ │ │ │ │ ├── IShortcutChangeCallback.struct │ │ │ │ │ │ ├── IShortcutService.struct │ │ │ │ │ │ ├── InstallationFileParcel.struct │ │ │ │ │ │ ├── InstrumentationInfo.struct │ │ │ │ │ │ ├── ModuleInfo.struct │ │ │ │ │ │ ├── PackageChangeEvent.struct │ │ │ │ │ │ ├── PackageInfoLite.struct │ │ │ │ │ │ ├── PackageStats.struct │ │ │ │ │ │ ├── PermissionGroupInfo.struct │ │ │ │ │ │ ├── PermissionInfo.struct │ │ │ │ │ │ ├── ResolveInfo.struct │ │ │ │ │ │ ├── ServiceInfo.struct │ │ │ │ │ │ ├── SuspendDialogInfo.struct │ │ │ │ │ │ ├── UserInfo.struct │ │ │ │ │ │ ├── VerifierDeviceIdentity.struct │ │ │ │ │ │ ├── VersionedPackage.struct │ │ │ │ │ │ ├── dex │ │ │ │ │ │ │ ├── IArtManager.struct │ │ │ │ │ │ │ └── ISnapshotRuntimeProfileCallback.struct │ │ │ │ │ │ └── permission │ │ │ │ │ │ │ └── IRuntimePermissionPresenter.struct │ │ │ │ │ ├── res │ │ │ │ │ │ ├── CompatibilityInfo.struct │ │ │ │ │ │ └── ObbInfo.struct │ │ │ │ │ └── rollback │ │ │ │ │ │ └── IRollbackManager.struct │ │ │ │ ├── database │ │ │ │ │ └── IContentObserver.struct │ │ │ │ ├── debug │ │ │ │ │ ├── IAdbManager.struct │ │ │ │ │ └── IAdbTransport.struct │ │ │ │ ├── dvr │ │ │ │ │ ├── IVirtualTouchpadService.struct │ │ │ │ │ ├── IVrComposer.struct │ │ │ │ │ └── IVrComposerCallback.struct │ │ │ │ ├── graphics │ │ │ │ │ └── Insets.struct │ │ │ │ ├── gsi │ │ │ │ │ ├── AvbPublicKey.struct │ │ │ │ │ ├── GsiProgress.struct │ │ │ │ │ ├── IGsiService.struct │ │ │ │ │ ├── IGsiServiceCallback.struct │ │ │ │ │ ├── IImageService.struct │ │ │ │ │ ├── IProgressCallback.struct │ │ │ │ │ └── MappedImage.struct │ │ │ │ ├── hardware │ │ │ │ │ ├── ICamera.struct │ │ │ │ │ ├── ICameraClient.struct │ │ │ │ │ ├── ICameraService.struct │ │ │ │ │ ├── ICameraServiceListener.struct │ │ │ │ │ ├── ICameraServiceProxy.struct │ │ │ │ │ ├── IConsumerIrService.struct │ │ │ │ │ ├── ISensorPrivacyListener.struct │ │ │ │ │ ├── ISensorPrivacyManager.struct │ │ │ │ │ ├── ISerialManager.struct │ │ │ │ │ ├── automotive │ │ │ │ │ │ └── occupant_awareness │ │ │ │ │ │ │ ├── DriverMonitoringDetection.struct │ │ │ │ │ │ │ ├── GazeDetection.struct │ │ │ │ │ │ │ ├── IOccupantAwareness.struct │ │ │ │ │ │ │ ├── IOccupantAwarenessClientCallback.struct │ │ │ │ │ │ │ ├── OccupantDetection.struct │ │ │ │ │ │ │ ├── OccupantDetections.struct │ │ │ │ │ │ │ └── PresenceDetection.struct │ │ │ │ │ ├── biometrics │ │ │ │ │ │ ├── IAuthService.struct │ │ │ │ │ │ ├── IBiometricAuthenticator.struct │ │ │ │ │ │ ├── IBiometricEnabledOnKeyguardCallback.struct │ │ │ │ │ │ ├── IBiometricService.struct │ │ │ │ │ │ ├── IBiometricServiceLockoutResetCallback.struct │ │ │ │ │ │ ├── IBiometricServiceReceiver.struct │ │ │ │ │ │ └── IBiometricServiceReceiverInternal.struct │ │ │ │ │ ├── camera2 │ │ │ │ │ │ ├── ICameraDeviceCallbacks.struct │ │ │ │ │ │ ├── ICameraDeviceUser.struct │ │ │ │ │ │ ├── ICameraOfflineSession.struct │ │ │ │ │ │ └── params │ │ │ │ │ │ │ ├── VendorTagDescriptor.struct │ │ │ │ │ │ │ └── VendorTagDescriptorCache.struct │ │ │ │ │ ├── common │ │ │ │ │ │ └── NativeHandle.struct │ │ │ │ │ ├── display │ │ │ │ │ │ ├── Curve.struct │ │ │ │ │ │ ├── IColorDisplayManager.struct │ │ │ │ │ │ ├── IDisplayManager.struct │ │ │ │ │ │ ├── IDisplayManagerCallback.struct │ │ │ │ │ │ ├── IVirtualDisplayCallback.struct │ │ │ │ │ │ └── Time.struct │ │ │ │ │ ├── face │ │ │ │ │ │ ├── Face.struct │ │ │ │ │ │ ├── IFaceService.struct │ │ │ │ │ │ └── IFaceServiceReceiver.struct │ │ │ │ │ ├── fingerprint │ │ │ │ │ │ ├── Fingerprint.struct │ │ │ │ │ │ ├── IFingerprintClientActiveCallback.struct │ │ │ │ │ │ ├── IFingerprintService.struct │ │ │ │ │ │ └── IFingerprintServiceReceiver.struct │ │ │ │ │ ├── graphics │ │ │ │ │ │ └── common │ │ │ │ │ │ │ ├── Cta861_3.struct │ │ │ │ │ │ │ ├── ExtendableType.struct │ │ │ │ │ │ │ ├── HardwareBuffer.struct │ │ │ │ │ │ │ ├── HardwareBufferDescription.struct │ │ │ │ │ │ │ ├── PlaneLayout.struct │ │ │ │ │ │ │ ├── PlaneLayoutComponent.struct │ │ │ │ │ │ │ ├── Rect.struct │ │ │ │ │ │ │ ├── Smpte2086.struct │ │ │ │ │ │ │ └── XyColor.struct │ │ │ │ │ ├── hdmi │ │ │ │ │ │ ├── HdmiDeviceInfo.struct │ │ │ │ │ │ ├── HdmiHotplugEvent.struct │ │ │ │ │ │ ├── HdmiPortInfo.struct │ │ │ │ │ │ ├── IHdmiCecVolumeControlFeatureListener.struct │ │ │ │ │ │ ├── IHdmiControlCallback.struct │ │ │ │ │ │ ├── IHdmiControlService.struct │ │ │ │ │ │ ├── IHdmiControlStatusChangeListener.struct │ │ │ │ │ │ ├── IHdmiDeviceEventListener.struct │ │ │ │ │ │ ├── IHdmiHotplugEventListener.struct │ │ │ │ │ │ ├── IHdmiInputChangeListener.struct │ │ │ │ │ │ ├── IHdmiMhlVendorCommandListener.struct │ │ │ │ │ │ ├── IHdmiRecordListener.struct │ │ │ │ │ │ ├── IHdmiSystemAudioModeChangeListener.struct │ │ │ │ │ │ └── IHdmiVendorCommandListener.struct │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── Certificate.struct │ │ │ │ │ │ ├── HardwareInformation.struct │ │ │ │ │ │ ├── IIdentityCredential.struct │ │ │ │ │ │ ├── IIdentityCredentialStore.struct │ │ │ │ │ │ ├── IWritableIdentityCredential.struct │ │ │ │ │ │ ├── RequestDataItem.struct │ │ │ │ │ │ ├── RequestNamespace.struct │ │ │ │ │ │ └── SecureAccessControlProfile.struct │ │ │ │ │ ├── input │ │ │ │ │ │ ├── IInputDevicesChangedListener.struct │ │ │ │ │ │ ├── IInputManager.struct │ │ │ │ │ │ ├── ITabletModeChangedListener.struct │ │ │ │ │ │ ├── InputDeviceIdentifier.struct │ │ │ │ │ │ ├── KeyboardLayout.struct │ │ │ │ │ │ └── TouchCalibration.struct │ │ │ │ │ ├── iris │ │ │ │ │ │ └── IIrisService.struct │ │ │ │ │ ├── keymaster │ │ │ │ │ │ ├── HardwareAuthToken.struct │ │ │ │ │ │ ├── Timestamp.struct │ │ │ │ │ │ └── VerificationToken.struct │ │ │ │ │ ├── light │ │ │ │ │ │ ├── HwLight.struct │ │ │ │ │ │ ├── HwLightState.struct │ │ │ │ │ │ └── ILights.struct │ │ │ │ │ ├── lights │ │ │ │ │ │ ├── ILightsManager.struct │ │ │ │ │ │ ├── Light.struct │ │ │ │ │ │ └── LightState.struct │ │ │ │ │ ├── location │ │ │ │ │ │ ├── ContextHubMessage.struct │ │ │ │ │ │ ├── IActivityRecognitionHardware.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareClient.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareSink.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareWatcher.struct │ │ │ │ │ │ ├── IContextHubCallback.struct │ │ │ │ │ │ ├── IContextHubClient.struct │ │ │ │ │ │ ├── IContextHubClientCallback.struct │ │ │ │ │ │ ├── IContextHubService.struct │ │ │ │ │ │ ├── IContextHubTransactionCallback.struct │ │ │ │ │ │ ├── IGeofenceHardware.struct │ │ │ │ │ │ ├── IGeofenceHardwareCallback.struct │ │ │ │ │ │ ├── IGeofenceHardwareMonitorCallback.struct │ │ │ │ │ │ ├── NanoApp.struct │ │ │ │ │ │ ├── NanoAppBinary.struct │ │ │ │ │ │ ├── NanoAppFilter.struct │ │ │ │ │ │ ├── NanoAppInstanceInfo.struct │ │ │ │ │ │ ├── NanoAppMessage.struct │ │ │ │ │ │ └── NanoAppState.struct │ │ │ │ │ ├── power │ │ │ │ │ │ └── IPower.struct │ │ │ │ │ ├── radio │ │ │ │ │ │ ├── IAnnouncementListener.struct │ │ │ │ │ │ ├── ICloseHandle.struct │ │ │ │ │ │ ├── IRadioService.struct │ │ │ │ │ │ ├── ITuner.struct │ │ │ │ │ │ └── ITunerCallback.struct │ │ │ │ │ ├── rebootescrow │ │ │ │ │ │ └── IRebootEscrow.struct │ │ │ │ │ ├── soundtrigger │ │ │ │ │ │ └── IRecognitionStatusCallback.struct │ │ │ │ │ ├── tests │ │ │ │ │ │ └── extension │ │ │ │ │ │ │ └── vibrator │ │ │ │ │ │ │ └── ICustomVibrator.struct │ │ │ │ │ ├── usb │ │ │ │ │ │ ├── IUsbManager.struct │ │ │ │ │ │ ├── IUsbSerialReader.struct │ │ │ │ │ │ ├── ParcelableUsbPort.struct │ │ │ │ │ │ └── UsbPortStatus.struct │ │ │ │ │ └── vibrator │ │ │ │ │ │ ├── CompositeEffect.struct │ │ │ │ │ │ ├── IVibrator.struct │ │ │ │ │ │ └── IVibratorCallback.struct │ │ │ │ ├── location │ │ │ │ │ ├── Country.struct │ │ │ │ │ ├── Criteria.struct │ │ │ │ │ ├── GeocoderParams.struct │ │ │ │ │ ├── Geofence.struct │ │ │ │ │ ├── GnssRequest.struct │ │ │ │ │ ├── IBatchedLocationCallback.struct │ │ │ │ │ ├── ICountryDetector.struct │ │ │ │ │ ├── ICountryListener.struct │ │ │ │ │ ├── IFusedGeofenceHardware.struct │ │ │ │ │ ├── IGeocodeProvider.struct │ │ │ │ │ ├── IGeofenceProvider.struct │ │ │ │ │ ├── IGnssAntennaInfoListener.struct │ │ │ │ │ ├── IGnssMeasurementsListener.struct │ │ │ │ │ ├── IGnssNavigationMessageListener.struct │ │ │ │ │ ├── IGnssStatusListener.struct │ │ │ │ │ ├── IGpsGeofenceHardware.struct │ │ │ │ │ ├── ILocationListener.struct │ │ │ │ │ ├── ILocationManager.struct │ │ │ │ │ ├── INetInitiatedListener.struct │ │ │ │ │ └── LocationTime.struct │ │ │ │ ├── lpdump │ │ │ │ │ └── ILpdump.struct │ │ │ │ ├── media │ │ │ │ │ ├── AudioDeviceAttributes.struct │ │ │ │ │ ├── AudioRoutesInfo.struct │ │ │ │ │ ├── IAudioFocusDispatcher.struct │ │ │ │ │ ├── IAudioRecord.struct │ │ │ │ │ ├── IAudioRoutesObserver.struct │ │ │ │ │ ├── IAudioServerStateDispatcher.struct │ │ │ │ │ ├── IAudioService.struct │ │ │ │ │ ├── IAudioTrackCallback.struct │ │ │ │ │ ├── ICaptureStateListener.struct │ │ │ │ │ ├── IMediaController2.struct │ │ │ │ │ ├── IMediaHTTPConnection.struct │ │ │ │ │ ├── IMediaHTTPService.struct │ │ │ │ │ ├── IMediaResourceMonitor.struct │ │ │ │ │ ├── IMediaRoute2ProviderService.struct │ │ │ │ │ ├── IMediaRoute2ProviderServiceCallback.struct │ │ │ │ │ ├── IMediaRouter2.struct │ │ │ │ │ ├── IMediaRouter2Manager.struct │ │ │ │ │ ├── IMediaRouterClient.struct │ │ │ │ │ ├── IMediaRouterService.struct │ │ │ │ │ ├── IMediaScannerListener.struct │ │ │ │ │ ├── IMediaScannerService.struct │ │ │ │ │ ├── IMediaSession2.struct │ │ │ │ │ ├── IMediaSession2Service.struct │ │ │ │ │ ├── IMediaTranscodingService.struct │ │ │ │ │ ├── IPlaybackConfigDispatcher.struct │ │ │ │ │ ├── IPlayer.struct │ │ │ │ │ ├── IRecordingConfigDispatcher.struct │ │ │ │ │ ├── IRemoteDisplayCallback.struct │ │ │ │ │ ├── IRemoteDisplayProvider.struct │ │ │ │ │ ├── IRemoteVolumeController.struct │ │ │ │ │ ├── IRemoteVolumeObserver.struct │ │ │ │ │ ├── IResourceManagerClient.struct │ │ │ │ │ ├── IResourceManagerService.struct │ │ │ │ │ ├── IRingtonePlayer.struct │ │ │ │ │ ├── IStrategyPreferredDeviceDispatcher.struct │ │ │ │ │ ├── ITranscodingServiceClient.struct │ │ │ │ │ ├── IVolumeController.struct │ │ │ │ │ ├── MediaMetadata.struct │ │ │ │ │ ├── MediaResourceParcel.struct │ │ │ │ │ ├── MediaResourcePolicyParcel.struct │ │ │ │ │ ├── MediaRoute2Info.struct │ │ │ │ │ ├── PlaybackParams.struct │ │ │ │ │ ├── Rating.struct │ │ │ │ │ ├── RouteDiscoveryPreference.struct │ │ │ │ │ ├── Session2Command.struct │ │ │ │ │ ├── TranscodingJobParcel.struct │ │ │ │ │ ├── TranscodingRequestParcel.struct │ │ │ │ │ ├── TranscodingResultParcel.struct │ │ │ │ │ ├── VolumePolicy.struct │ │ │ │ │ ├── audio │ │ │ │ │ │ └── common │ │ │ │ │ │ │ ├── AudioConfig.struct │ │ │ │ │ │ │ └── AudioOffloadInfo.struct │ │ │ │ │ ├── audiopolicy │ │ │ │ │ │ ├── AudioProductStrategy.struct │ │ │ │ │ │ └── IAudioPolicyCallback.struct │ │ │ │ │ ├── eco │ │ │ │ │ │ ├── IECOService.struct │ │ │ │ │ │ ├── IECOServiceInfoListener.struct │ │ │ │ │ │ ├── IECOServiceStatsProvider.struct │ │ │ │ │ │ └── IECOSession.struct │ │ │ │ │ ├── midi │ │ │ │ │ │ ├── IBluetoothMidiService.struct │ │ │ │ │ │ ├── IMidiDeviceListener.struct │ │ │ │ │ │ ├── IMidiDeviceOpenCallback.struct │ │ │ │ │ │ ├── IMidiDeviceServer.struct │ │ │ │ │ │ ├── IMidiManager.struct │ │ │ │ │ │ └── MidiDeviceInfo.struct │ │ │ │ │ ├── projection │ │ │ │ │ │ ├── IMediaProjection.struct │ │ │ │ │ │ ├── IMediaProjectionCallback.struct │ │ │ │ │ │ ├── IMediaProjectionManager.struct │ │ │ │ │ │ ├── IMediaProjectionWatcherCallback.struct │ │ │ │ │ │ └── MediaProjectionInfo.struct │ │ │ │ │ ├── session │ │ │ │ │ │ ├── IActiveSessionsListener.struct │ │ │ │ │ │ ├── IOnMediaKeyEventDispatchedListener.struct │ │ │ │ │ │ ├── IOnMediaKeyEventSessionChangedListener.struct │ │ │ │ │ │ ├── IOnMediaKeyListener.struct │ │ │ │ │ │ ├── IOnVolumeKeyLongPressListener.struct │ │ │ │ │ │ ├── ISession.struct │ │ │ │ │ │ ├── ISession2TokensListener.struct │ │ │ │ │ │ ├── ISessionCallback.struct │ │ │ │ │ │ ├── ISessionController.struct │ │ │ │ │ │ ├── ISessionControllerCallback.struct │ │ │ │ │ │ └── ISessionManager.struct │ │ │ │ │ ├── soundtrigger │ │ │ │ │ │ ├── ISoundTriggerDetectionService.struct │ │ │ │ │ │ └── ISoundTriggerDetectionServiceClient.struct │ │ │ │ │ ├── soundtrigger_middleware │ │ │ │ │ │ ├── ConfidenceLevel.struct │ │ │ │ │ │ ├── ISoundTriggerCallback.struct │ │ │ │ │ │ ├── ISoundTriggerMiddlewareService.struct │ │ │ │ │ │ ├── ISoundTriggerModule.struct │ │ │ │ │ │ ├── ModelParameterRange.struct │ │ │ │ │ │ ├── Phrase.struct │ │ │ │ │ │ ├── PhraseRecognitionEvent.struct │ │ │ │ │ │ ├── PhraseRecognitionExtra.struct │ │ │ │ │ │ ├── PhraseSoundModel.struct │ │ │ │ │ │ ├── RecognitionConfig.struct │ │ │ │ │ │ ├── RecognitionEvent.struct │ │ │ │ │ │ ├── SoundModel.struct │ │ │ │ │ │ ├── SoundTriggerModuleDescriptor.struct │ │ │ │ │ │ └── SoundTriggerModuleProperties.struct │ │ │ │ │ └── tv │ │ │ │ │ │ ├── DvbDeviceInfo.struct │ │ │ │ │ │ ├── ITvInputClient.struct │ │ │ │ │ │ ├── ITvInputHardware.struct │ │ │ │ │ │ ├── ITvInputHardwareCallback.struct │ │ │ │ │ │ ├── ITvInputManager.struct │ │ │ │ │ │ ├── ITvInputManagerCallback.struct │ │ │ │ │ │ ├── ITvInputService.struct │ │ │ │ │ │ ├── ITvInputServiceCallback.struct │ │ │ │ │ │ ├── ITvInputSession.struct │ │ │ │ │ │ ├── ITvInputSessionCallback.struct │ │ │ │ │ │ ├── ITvRemoteProvider.struct │ │ │ │ │ │ ├── ITvRemoteServiceInput.struct │ │ │ │ │ │ ├── TvContentRatingSystemInfo.struct │ │ │ │ │ │ ├── TvInputInfo.struct │ │ │ │ │ │ ├── TvTrackInfo.struct │ │ │ │ │ │ └── tunerresourcemanager │ │ │ │ │ │ ├── CasSessionRequest.struct │ │ │ │ │ │ ├── IResourcesReclaimListener.struct │ │ │ │ │ │ ├── ITunerResourceManager.struct │ │ │ │ │ │ ├── ResourceClientProfile.struct │ │ │ │ │ │ ├── TunerDemuxRequest.struct │ │ │ │ │ │ ├── TunerDescramblerRequest.struct │ │ │ │ │ │ ├── TunerFrontendInfo.struct │ │ │ │ │ │ ├── TunerFrontendRequest.struct │ │ │ │ │ │ └── TunerLnbRequest.struct │ │ │ │ ├── net │ │ │ │ │ ├── CaptivePortalData.struct │ │ │ │ │ ├── ConnectivityMetricsEvent.struct │ │ │ │ │ ├── DataStallReportParcelable.struct │ │ │ │ │ ├── DataUsageRequest.struct │ │ │ │ │ ├── DhcpInfo.struct │ │ │ │ │ ├── DhcpResultsParcelable.struct │ │ │ │ │ ├── ICaptivePortal.struct │ │ │ │ │ ├── IConnectivityDiagnosticsCallback.struct │ │ │ │ │ ├── IConnectivityManager.struct │ │ │ │ │ ├── IDnsResolver.struct │ │ │ │ │ ├── IEthernetManager.struct │ │ │ │ │ ├── IEthernetServiceListener.struct │ │ │ │ │ ├── IIntResultListener.struct │ │ │ │ │ ├── IIpConnectivityMetrics.struct │ │ │ │ │ ├── IIpMemoryStore.struct │ │ │ │ │ ├── IIpMemoryStoreCallbacks.struct │ │ │ │ │ ├── IIpSecService.struct │ │ │ │ │ ├── INetd.struct │ │ │ │ │ ├── INetdEventCallback.struct │ │ │ │ │ ├── INetdUnsolicitedEventListener.struct │ │ │ │ │ ├── INetworkManagementEventObserver.struct │ │ │ │ │ ├── INetworkMonitor.struct │ │ │ │ │ ├── INetworkMonitorCallbacks.struct │ │ │ │ │ ├── INetworkPolicyListener.struct │ │ │ │ │ ├── INetworkPolicyManager.struct │ │ │ │ │ ├── INetworkRecommendationProvider.struct │ │ │ │ │ ├── INetworkScoreCache.struct │ │ │ │ │ ├── INetworkScoreService.struct │ │ │ │ │ ├── INetworkStackConnector.struct │ │ │ │ │ ├── INetworkStackStatusCallback.struct │ │ │ │ │ ├── INetworkStatsService.struct │ │ │ │ │ ├── INetworkStatsSession.struct │ │ │ │ │ ├── ISocketKeepaliveCallback.struct │ │ │ │ │ ├── ITestNetworkManager.struct │ │ │ │ │ ├── ITetheredInterfaceCallback.struct │ │ │ │ │ ├── ITetheringConnector.struct │ │ │ │ │ ├── ITetheringEventCallback.struct │ │ │ │ │ ├── ITetheringStatsProvider.struct │ │ │ │ │ ├── InformationElementParcelable.struct │ │ │ │ │ ├── InitialConfigurationParcelable.struct │ │ │ │ │ ├── InterfaceConfigurationParcel.struct │ │ │ │ │ ├── IpPrefix.struct │ │ │ │ │ ├── IpSecSpiResponse.struct │ │ │ │ │ ├── IpSecTransformResponse.struct │ │ │ │ │ ├── IpSecTunnelInterfaceResponse.struct │ │ │ │ │ ├── Layer2InformationParcelable.struct │ │ │ │ │ ├── Layer2PacketParcelable.struct │ │ │ │ │ ├── MacAddress.struct │ │ │ │ │ ├── MarkMaskParcel.struct │ │ │ │ │ ├── NattKeepalivePacketDataParcelable.struct │ │ │ │ │ ├── Network.struct │ │ │ │ │ ├── NetworkAgentConfig.struct │ │ │ │ │ ├── NetworkKey.struct │ │ │ │ │ ├── NetworkPolicy.struct │ │ │ │ │ ├── NetworkQuotaInfo.struct │ │ │ │ │ ├── NetworkScorerAppData.struct │ │ │ │ │ ├── NetworkState.struct │ │ │ │ │ ├── NetworkStats.struct │ │ │ │ │ ├── NetworkTemplate.struct │ │ │ │ │ ├── NetworkTestResultParcelable.struct │ │ │ │ │ ├── PrivateDnsConfigParcel.struct │ │ │ │ │ ├── ProvisioningConfigurationParcelable.struct │ │ │ │ │ ├── ProxyInfo.struct │ │ │ │ │ ├── ResolverHostsParcel.struct │ │ │ │ │ ├── ResolverOptionsParcel.struct │ │ │ │ │ ├── ResolverParamsParcel.struct │ │ │ │ │ ├── RouteInfo.struct │ │ │ │ │ ├── RouteInfoParcel.struct │ │ │ │ │ ├── RssiCurve.struct │ │ │ │ │ ├── ScanResultInfoParcelable.struct │ │ │ │ │ ├── ScoredNetwork.struct │ │ │ │ │ ├── TcpKeepalivePacketDataParcelable.struct │ │ │ │ │ ├── TetherConfigParcel.struct │ │ │ │ │ ├── TetherOffloadRuleParcel.struct │ │ │ │ │ ├── TetherStatesParcel.struct │ │ │ │ │ ├── TetherStatsParcel.struct │ │ │ │ │ ├── TetheredClient.struct │ │ │ │ │ ├── TetheringCallbackStartedParcel.struct │ │ │ │ │ ├── TetheringConfigurationParcel.struct │ │ │ │ │ ├── TetheringRequestParcel.struct │ │ │ │ │ ├── UidRange.struct │ │ │ │ │ ├── UidRangeParcel.struct │ │ │ │ │ ├── Uri.struct │ │ │ │ │ ├── apf │ │ │ │ │ │ └── ApfCapabilities.struct │ │ │ │ │ ├── dhcp │ │ │ │ │ │ ├── DhcpLeaseParcelable.struct │ │ │ │ │ │ ├── DhcpServingParamsParcel.struct │ │ │ │ │ │ ├── IDhcpEventCallbacks.struct │ │ │ │ │ │ ├── IDhcpServer.struct │ │ │ │ │ │ └── IDhcpServerCallbacks.struct │ │ │ │ │ ├── ip │ │ │ │ │ │ ├── IIpClient.struct │ │ │ │ │ │ └── IIpClientCallbacks.struct │ │ │ │ │ ├── ipmemorystore │ │ │ │ │ │ ├── Blob.struct │ │ │ │ │ │ ├── IOnBlobRetrievedListener.struct │ │ │ │ │ │ ├── IOnL2KeyResponseListener.struct │ │ │ │ │ │ ├── IOnNetworkAttributesRetrievedListener.struct │ │ │ │ │ │ ├── IOnSameL3NetworkResponseListener.struct │ │ │ │ │ │ ├── IOnStatusAndCountListener.struct │ │ │ │ │ │ ├── IOnStatusListener.struct │ │ │ │ │ │ ├── NetworkAttributesParcelable.struct │ │ │ │ │ │ ├── SameL3NetworkResponseParcelable.struct │ │ │ │ │ │ └── StatusParcelable.struct │ │ │ │ │ ├── lowpan │ │ │ │ │ │ ├── ILowpanEnergyScanCallback.struct │ │ │ │ │ │ ├── ILowpanInterface.struct │ │ │ │ │ │ ├── ILowpanInterfaceListener.struct │ │ │ │ │ │ ├── ILowpanManager.struct │ │ │ │ │ │ ├── ILowpanManagerListener.struct │ │ │ │ │ │ ├── ILowpanNetScanCallback.struct │ │ │ │ │ │ ├── LowpanChannelInfo.struct │ │ │ │ │ │ └── LowpanCredential.struct │ │ │ │ │ ├── metrics │ │ │ │ │ │ └── INetdEventListener.struct │ │ │ │ │ ├── netstats │ │ │ │ │ │ └── provider │ │ │ │ │ │ │ ├── INetworkStatsProvider.struct │ │ │ │ │ │ │ └── INetworkStatsProviderCallback.struct │ │ │ │ │ ├── nsd │ │ │ │ │ │ └── INsdManager.struct │ │ │ │ │ ├── sip │ │ │ │ │ │ ├── ISipService.struct │ │ │ │ │ │ ├── ISipSession.struct │ │ │ │ │ │ ├── ISipSessionListener.struct │ │ │ │ │ │ └── SipProfile.struct │ │ │ │ │ └── wifi │ │ │ │ │ │ ├── IActionListener.struct │ │ │ │ │ │ ├── IDppCallback.struct │ │ │ │ │ │ ├── ILocalOnlyHotspotCallback.struct │ │ │ │ │ │ ├── INetworkRequestMatchCallback.struct │ │ │ │ │ │ ├── INetworkRequestUserSelectionCallback.struct │ │ │ │ │ │ ├── IOnWifiActivityEnergyInfoListener.struct │ │ │ │ │ │ ├── IOnWifiUsabilityStatsListener.struct │ │ │ │ │ │ ├── IScanResultsCallback.struct │ │ │ │ │ │ ├── IScanResultsListener.struct │ │ │ │ │ │ ├── IScoreUpdateObserver.struct │ │ │ │ │ │ ├── ISoftApCallback.struct │ │ │ │ │ │ ├── ISuggestionConnectionStatusListener.struct │ │ │ │ │ │ ├── ITrafficStateCallback.struct │ │ │ │ │ │ ├── ITxPacketCountListener.struct │ │ │ │ │ │ ├── IWifiConnectedNetworkScorer.struct │ │ │ │ │ │ ├── IWifiManager.struct │ │ │ │ │ │ ├── IWifiScanner.struct │ │ │ │ │ │ ├── SoftApCapability.struct │ │ │ │ │ │ ├── SoftApInfo.struct │ │ │ │ │ │ ├── WifiApiServiceInfo.struct │ │ │ │ │ │ ├── WifiClient.struct │ │ │ │ │ │ ├── WifiNetworkSuggestion.struct │ │ │ │ │ │ ├── WifiUsabilityStatsEntry.struct │ │ │ │ │ │ ├── aware │ │ │ │ │ │ ├── ConfigRequest.struct │ │ │ │ │ │ ├── IWifiAwareDiscoverySessionCallback.struct │ │ │ │ │ │ ├── IWifiAwareEventCallback.struct │ │ │ │ │ │ ├── IWifiAwareMacAddressProvider.struct │ │ │ │ │ │ ├── IWifiAwareManager.struct │ │ │ │ │ │ ├── PublishConfig.struct │ │ │ │ │ │ └── SubscribeConfig.struct │ │ │ │ │ │ ├── hotspot2 │ │ │ │ │ │ └── IProvisioningCallback.struct │ │ │ │ │ │ ├── nl80211 │ │ │ │ │ │ ├── DeviceWiphyCapabilities.struct │ │ │ │ │ │ ├── IApInterface.struct │ │ │ │ │ │ ├── IApInterfaceEventCallback.struct │ │ │ │ │ │ ├── IClientInterface.struct │ │ │ │ │ │ ├── IInterfaceEventCallback.struct │ │ │ │ │ │ ├── IPnoScanEvent.struct │ │ │ │ │ │ ├── IScanEvent.struct │ │ │ │ │ │ ├── ISendMgmtFrameEvent.struct │ │ │ │ │ │ ├── IWifiScannerImpl.struct │ │ │ │ │ │ └── IWificond.struct │ │ │ │ │ │ ├── p2p │ │ │ │ │ │ └── IWifiP2pManager.struct │ │ │ │ │ │ └── rtt │ │ │ │ │ │ ├── IRttCallback.struct │ │ │ │ │ │ ├── IWifiRttManager.struct │ │ │ │ │ │ └── RangingRequest.struct │ │ │ │ ├── nfc │ │ │ │ │ ├── IAppCallback.struct │ │ │ │ │ ├── INfcAdapter.struct │ │ │ │ │ ├── INfcAdapterExtras.struct │ │ │ │ │ ├── INfcCardEmulation.struct │ │ │ │ │ ├── INfcDta.struct │ │ │ │ │ ├── INfcFCardEmulation.struct │ │ │ │ │ ├── INfcTag.struct │ │ │ │ │ ├── INfcUnlockHandler.struct │ │ │ │ │ ├── ITagRemovedCallback.struct │ │ │ │ │ ├── TechListParcel.struct │ │ │ │ │ ├── TransceiveResult.struct │ │ │ │ │ └── cardemulation │ │ │ │ │ │ └── NfcFServiceInfo.struct │ │ │ │ ├── os │ │ │ │ │ ├── Bundle.struct │ │ │ │ │ ├── CoolingDevice.struct │ │ │ │ │ ├── IAidlTest.struct │ │ │ │ │ ├── IBatteryPropertiesRegistrar.struct │ │ │ │ │ ├── IBinderThreadPriorityService.struct │ │ │ │ │ ├── IBinderWorkSourceNestedService.struct │ │ │ │ │ ├── IBinderWorkSourceService.struct │ │ │ │ │ ├── ICancellationSignal.struct │ │ │ │ │ ├── IClientCallback.struct │ │ │ │ │ ├── IDeviceIdentifiersPolicyService.struct │ │ │ │ │ ├── IDeviceIdleController.struct │ │ │ │ │ ├── IDumpstate.struct │ │ │ │ │ ├── IDumpstateListener.struct │ │ │ │ │ ├── IExternalVibrationController.struct │ │ │ │ │ ├── IExternalVibratorService.struct │ │ │ │ │ ├── IHardwarePropertiesManager.struct │ │ │ │ │ ├── IIdmap2.struct │ │ │ │ │ ├── IIncidentAuthListener.struct │ │ │ │ │ ├── IIncidentCompanion.struct │ │ │ │ │ ├── IIncidentDumpCallback.struct │ │ │ │ │ ├── IIncidentManager.struct │ │ │ │ │ ├── IIncidentReportStatusListener.struct │ │ │ │ │ ├── IInstalld.struct │ │ │ │ │ ├── IMessenger.struct │ │ │ │ │ ├── INetworkActivityListener.struct │ │ │ │ │ ├── INetworkManagementService.struct │ │ │ │ │ ├── IPendingIntentRef.struct │ │ │ │ │ ├── IPermissionController.struct │ │ │ │ │ ├── IPowerManager.struct │ │ │ │ │ ├── IProcessInfoService.struct │ │ │ │ │ ├── IProgressListener.struct │ │ │ │ │ ├── IPullAtomCallback.struct │ │ │ │ │ ├── IPullAtomResultReceiver.struct │ │ │ │ │ ├── IRecoverySystem.struct │ │ │ │ │ ├── IRecoverySystemProgressListener.struct │ │ │ │ │ ├── IRemoteCallback.struct │ │ │ │ │ ├── ISchedulingPolicyService.struct │ │ │ │ │ ├── IServiceCallback.struct │ │ │ │ │ ├── IServiceManager.struct │ │ │ │ │ ├── ISomeService.struct │ │ │ │ │ ├── IStatsCompanionService.struct │ │ │ │ │ ├── IStatsManagerService.struct │ │ │ │ │ ├── IStatsd.struct │ │ │ │ │ ├── IStoraged.struct │ │ │ │ │ ├── ISystemConfig.struct │ │ │ │ │ ├── ISystemUpdateManager.struct │ │ │ │ │ ├── IThermalEventListener.struct │ │ │ │ │ ├── IThermalService.struct │ │ │ │ │ ├── IThermalStatusListener.struct │ │ │ │ │ ├── IUpdateEngine.struct │ │ │ │ │ ├── IUpdateEngineCallback.struct │ │ │ │ │ ├── IUpdateLock.struct │ │ │ │ │ ├── IUserManager.struct │ │ │ │ │ ├── IUserRestrictionsListener.struct │ │ │ │ │ ├── IVibratorService.struct │ │ │ │ │ ├── IVibratorStateListener.struct │ │ │ │ │ ├── IVold.struct │ │ │ │ │ ├── IVoldListener.struct │ │ │ │ │ ├── IVoldMountCallback.struct │ │ │ │ │ ├── IVoldTaskListener.struct │ │ │ │ │ ├── Messenger.struct │ │ │ │ │ ├── OverlayablePolicy.struct │ │ │ │ │ ├── ParcelFileDescriptor.struct │ │ │ │ │ ├── ParcelUuid.struct │ │ │ │ │ ├── PersistableBundle.struct │ │ │ │ │ ├── PowerSaveState.struct │ │ │ │ │ ├── SharedMemory.struct │ │ │ │ │ ├── StatsDimensionsValueParcel.struct │ │ │ │ │ ├── Temperature.struct │ │ │ │ │ ├── UserHandle.struct │ │ │ │ │ ├── connectivity │ │ │ │ │ │ ├── CellularBatteryStats.struct │ │ │ │ │ │ ├── GpsBatteryStats.struct │ │ │ │ │ │ ├── WifiActivityEnergyInfo.struct │ │ │ │ │ │ └── WifiBatteryStats.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── ExceptionalParcelable.struct │ │ │ │ │ │ ├── IEmptyService.struct │ │ │ │ │ │ ├── IParcelExceptionService.struct │ │ │ │ │ │ ├── IParcelFileDescriptorPeer.struct │ │ │ │ │ │ ├── ISeccompIsolatedService.struct │ │ │ │ │ │ ├── ISecondary.struct │ │ │ │ │ │ └── ISharedMemoryService.struct │ │ │ │ │ ├── image │ │ │ │ │ │ └── IDynamicSystemService.struct │ │ │ │ │ ├── incremental │ │ │ │ │ │ ├── IIncrementalService.struct │ │ │ │ │ │ ├── IIncrementalServiceConnector.struct │ │ │ │ │ │ ├── IStorageHealthListener.struct │ │ │ │ │ │ ├── IncrementalFileSystemControlParcel.struct │ │ │ │ │ │ ├── IncrementalNewFileParams.struct │ │ │ │ │ │ └── StorageHealthCheckParams.struct │ │ │ │ │ ├── storage │ │ │ │ │ │ ├── CrateMetadata.struct │ │ │ │ │ │ ├── DiskInfo.struct │ │ │ │ │ │ ├── IObbActionListener.struct │ │ │ │ │ │ ├── IStorageEventListener.struct │ │ │ │ │ │ ├── IStorageManager.struct │ │ │ │ │ │ ├── IStorageShutdownObserver.struct │ │ │ │ │ │ ├── VolumeInfo.struct │ │ │ │ │ │ └── VolumeRecord.struct │ │ │ │ │ └── storaged │ │ │ │ │ │ └── IStoragedPrivate.struct │ │ │ │ ├── permission │ │ │ │ │ ├── IOnPermissionsChangeListener.struct │ │ │ │ │ ├── IPermissionController.struct │ │ │ │ │ ├── IPermissionManager.struct │ │ │ │ │ └── cts │ │ │ │ │ │ └── appthataccesseslocation │ │ │ │ │ │ └── IAccessLocationOnCommand.struct │ │ │ │ ├── pixel │ │ │ │ │ └── perfstatsd │ │ │ │ │ │ └── IPerfstatsdPrivate.struct │ │ │ │ ├── print │ │ │ │ │ ├── ILayoutResultCallback.struct │ │ │ │ │ ├── IPrintDocumentAdapter.struct │ │ │ │ │ ├── IPrintDocumentAdapterObserver.struct │ │ │ │ │ ├── IPrintJobStateChangeListener.struct │ │ │ │ │ ├── IPrintManager.struct │ │ │ │ │ ├── IPrintServicesChangeListener.struct │ │ │ │ │ ├── IPrintSpooler.struct │ │ │ │ │ ├── IPrintSpoolerCallbacks.struct │ │ │ │ │ ├── IPrintSpoolerClient.struct │ │ │ │ │ ├── IPrinterDiscoveryObserver.struct │ │ │ │ │ ├── IWriteResultCallback.struct │ │ │ │ │ ├── PageRange.struct │ │ │ │ │ ├── PrintAttributes.struct │ │ │ │ │ └── PrintJobInfo.struct │ │ │ │ ├── printservice │ │ │ │ │ ├── IPrintService.struct │ │ │ │ │ ├── IPrintServiceClient.struct │ │ │ │ │ ├── PrintServiceInfo.struct │ │ │ │ │ └── recommendation │ │ │ │ │ │ ├── IRecommendationService.struct │ │ │ │ │ │ ├── IRecommendationServiceCallbacks.struct │ │ │ │ │ │ ├── IRecommendationsChangeListener.struct │ │ │ │ │ │ └── RecommendationInfo.struct │ │ │ │ ├── se │ │ │ │ │ └── omapi │ │ │ │ │ │ ├── ISecureElementChannel.struct │ │ │ │ │ │ ├── ISecureElementListener.struct │ │ │ │ │ │ ├── ISecureElementReader.struct │ │ │ │ │ │ ├── ISecureElementService.struct │ │ │ │ │ │ └── ISecureElementSession.struct │ │ │ │ ├── security │ │ │ │ │ ├── IConfirmationPromptCallback.struct │ │ │ │ │ ├── IFileIntegrityService.struct │ │ │ │ │ ├── IKeyChainAliasCallback.struct │ │ │ │ │ ├── IKeyChainService.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── CVE_2021_0327 │ │ │ │ │ │ │ └── IBadProvider.struct │ │ │ │ │ │ ├── IBinderExchange.struct │ │ │ │ │ │ ├── IIsolatedService.struct │ │ │ │ │ │ └── activity │ │ │ │ │ │ │ └── ISecureRandomService.struct │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── AccessControlProfileParcel.struct │ │ │ │ │ │ ├── AuthKeyParcel.struct │ │ │ │ │ │ ├── EntryNamespaceParcel.struct │ │ │ │ │ │ ├── EntryParcel.struct │ │ │ │ │ │ ├── GetEntriesResultParcel.struct │ │ │ │ │ │ ├── ICredential.struct │ │ │ │ │ │ ├── ICredentialStore.struct │ │ │ │ │ │ ├── ICredentialStoreFactory.struct │ │ │ │ │ │ ├── IWritableCredential.struct │ │ │ │ │ │ ├── RequestEntryParcel.struct │ │ │ │ │ │ ├── RequestNamespaceParcel.struct │ │ │ │ │ │ ├── ResultEntryParcel.struct │ │ │ │ │ │ ├── ResultNamespaceParcel.struct │ │ │ │ │ │ └── SecurityHardwareInfoParcel.struct │ │ │ │ │ ├── keymaster │ │ │ │ │ │ ├── ExportResult.struct │ │ │ │ │ │ ├── IKeyAttestationApplicationIdProvider.struct │ │ │ │ │ │ ├── KeymasterBlob.struct │ │ │ │ │ │ └── OperationResult.struct │ │ │ │ │ └── keystore │ │ │ │ │ │ ├── ICredstoreTokenCallback.struct │ │ │ │ │ │ ├── IKeystoreCertificateChainCallback.struct │ │ │ │ │ │ ├── IKeystoreExportKeyCallback.struct │ │ │ │ │ │ ├── IKeystoreKeyCharacteristicsCallback.struct │ │ │ │ │ │ ├── IKeystoreOperationResultCallback.struct │ │ │ │ │ │ ├── IKeystoreResponseCallback.struct │ │ │ │ │ │ ├── IKeystoreService.struct │ │ │ │ │ │ ├── KeystoreResponse.struct │ │ │ │ │ │ └── recovery │ │ │ │ │ │ ├── RecoveryCertPath.struct │ │ │ │ │ │ └── WrappedApplicationKey.struct │ │ │ │ ├── service │ │ │ │ │ ├── appprediction │ │ │ │ │ │ └── IPredictionService.struct │ │ │ │ │ ├── attention │ │ │ │ │ │ ├── IAttentionCallback.struct │ │ │ │ │ │ └── IAttentionService.struct │ │ │ │ │ ├── autofill │ │ │ │ │ │ ├── IAutoFillService.struct │ │ │ │ │ │ ├── IAutofillFieldClassificationService.struct │ │ │ │ │ │ ├── IFillCallback.struct │ │ │ │ │ │ ├── IInlineSuggestionRenderService.struct │ │ │ │ │ │ ├── IInlineSuggestionUi.struct │ │ │ │ │ │ ├── IInlineSuggestionUiCallback.struct │ │ │ │ │ │ ├── ISaveCallback.struct │ │ │ │ │ │ ├── ISurfacePackageResultCallback.struct │ │ │ │ │ │ └── augmented │ │ │ │ │ │ │ ├── IAugmentedAutofillService.struct │ │ │ │ │ │ │ └── IFillCallback.struct │ │ │ │ │ ├── carrier │ │ │ │ │ │ ├── IApnSourceService.struct │ │ │ │ │ │ ├── ICarrierMessagingCallback.struct │ │ │ │ │ │ ├── ICarrierMessagingClientService.struct │ │ │ │ │ │ ├── ICarrierMessagingService.struct │ │ │ │ │ │ ├── ICarrierService.struct │ │ │ │ │ │ └── MessagePdu.struct │ │ │ │ │ ├── chooser │ │ │ │ │ │ ├── ChooserTarget.struct │ │ │ │ │ │ ├── IChooserTargetResult.struct │ │ │ │ │ │ └── IChooserTargetService.struct │ │ │ │ │ ├── contentcapture │ │ │ │ │ │ ├── ActivityEvent.struct │ │ │ │ │ │ ├── FlushMetrics.struct │ │ │ │ │ │ ├── IContentCaptureService.struct │ │ │ │ │ │ ├── IContentCaptureServiceCallback.struct │ │ │ │ │ │ ├── IDataShareCallback.struct │ │ │ │ │ │ ├── IDataShareReadAdapter.struct │ │ │ │ │ │ └── SnapshotData.struct │ │ │ │ │ ├── contentsuggestions │ │ │ │ │ │ └── IContentSuggestionsService.struct │ │ │ │ │ ├── controls │ │ │ │ │ │ ├── Control.struct │ │ │ │ │ │ ├── IControlsActionCallback.struct │ │ │ │ │ │ ├── IControlsProvider.struct │ │ │ │ │ │ ├── IControlsSubscriber.struct │ │ │ │ │ │ └── IControlsSubscription.struct │ │ │ │ │ ├── dreams │ │ │ │ │ │ ├── IDreamManager.struct │ │ │ │ │ │ └── IDreamService.struct │ │ │ │ │ ├── euicc │ │ │ │ │ │ ├── DownloadSubscriptionResult.struct │ │ │ │ │ │ ├── IDeleteSubscriptionCallback.struct │ │ │ │ │ │ ├── IDownloadSubscriptionCallback.struct │ │ │ │ │ │ ├── IEraseSubscriptionsCallback.struct │ │ │ │ │ │ ├── IEuiccService.struct │ │ │ │ │ │ ├── IEuiccServiceDumpResultCallback.struct │ │ │ │ │ │ ├── IGetDefaultDownloadableSubscriptionListCallback.struct │ │ │ │ │ │ ├── IGetDownloadableSubscriptionMetadataCallback.struct │ │ │ │ │ │ ├── IGetEidCallback.struct │ │ │ │ │ │ ├── IGetEuiccInfoCallback.struct │ │ │ │ │ │ ├── IGetEuiccProfileInfoListCallback.struct │ │ │ │ │ │ ├── IGetOtaStatusCallback.struct │ │ │ │ │ │ ├── IOtaStatusChangedCallback.struct │ │ │ │ │ │ ├── IRetainSubscriptionsForFactoryResetCallback.struct │ │ │ │ │ │ ├── ISwitchToSubscriptionCallback.struct │ │ │ │ │ │ └── IUpdateSubscriptionNicknameCallback.struct │ │ │ │ │ ├── gatekeeper │ │ │ │ │ │ └── IGateKeeperService.struct │ │ │ │ │ ├── media │ │ │ │ │ │ ├── IMediaBrowserService.struct │ │ │ │ │ │ └── IMediaBrowserServiceCallbacks.struct │ │ │ │ │ ├── notification │ │ │ │ │ │ ├── Adjustment.struct │ │ │ │ │ │ ├── Condition.struct │ │ │ │ │ │ ├── IConditionListener.struct │ │ │ │ │ │ ├── IConditionProvider.struct │ │ │ │ │ │ ├── INotificationListener.struct │ │ │ │ │ │ ├── IStatusBarNotificationHolder.struct │ │ │ │ │ │ └── NotificationStats.struct │ │ │ │ │ ├── oemlock │ │ │ │ │ │ └── IOemLockService.struct │ │ │ │ │ ├── persistentdata │ │ │ │ │ │ └── IPersistentDataBlockService.struct │ │ │ │ │ ├── quickaccesswallet │ │ │ │ │ │ ├── GetWalletCardsRequest.struct │ │ │ │ │ │ ├── IQuickAccessWalletService.struct │ │ │ │ │ │ ├── IQuickAccessWalletServiceCallbacks.struct │ │ │ │ │ │ ├── SelectWalletCardRequest.struct │ │ │ │ │ │ └── WalletServiceEvent.struct │ │ │ │ │ ├── quicksettings │ │ │ │ │ │ ├── IQSService.struct │ │ │ │ │ │ └── IQSTileService.struct │ │ │ │ │ ├── resolver │ │ │ │ │ │ ├── IResolverRankerResult.struct │ │ │ │ │ │ ├── IResolverRankerService.struct │ │ │ │ │ │ └── ResolverTarget.struct │ │ │ │ │ ├── settings │ │ │ │ │ │ └── suggestions │ │ │ │ │ │ │ └── ISuggestionService.struct │ │ │ │ │ ├── storage │ │ │ │ │ │ └── IExternalStorageService.struct │ │ │ │ │ ├── textclassifier │ │ │ │ │ │ ├── ITextClassifierCallback.struct │ │ │ │ │ │ └── ITextClassifierService.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── ITrustAgentService.struct │ │ │ │ │ │ └── ITrustAgentServiceCallback.struct │ │ │ │ │ ├── voice │ │ │ │ │ │ ├── IVoiceInteractionService.struct │ │ │ │ │ │ ├── IVoiceInteractionSession.struct │ │ │ │ │ │ └── IVoiceInteractionSessionService.struct │ │ │ │ │ ├── vr │ │ │ │ │ │ ├── IPersistentVrStateCallbacks.struct │ │ │ │ │ │ ├── IVrListener.struct │ │ │ │ │ │ ├── IVrManager.struct │ │ │ │ │ │ └── IVrStateCallbacks.struct │ │ │ │ │ ├── wallpaper │ │ │ │ │ │ ├── IWallpaperConnection.struct │ │ │ │ │ │ ├── IWallpaperEngine.struct │ │ │ │ │ │ └── IWallpaperService.struct │ │ │ │ │ └── watchdog │ │ │ │ │ │ └── IExplicitHealthCheckService.struct │ │ │ │ ├── speech │ │ │ │ │ ├── IRecognitionListener.struct │ │ │ │ │ ├── IRecognitionService.struct │ │ │ │ │ └── tts │ │ │ │ │ │ ├── ITextToSpeechCallback.struct │ │ │ │ │ │ └── ITextToSpeechService.struct │ │ │ │ ├── system │ │ │ │ │ └── suspend │ │ │ │ │ │ ├── ISuspendCallback.struct │ │ │ │ │ │ ├── ISuspendControlService.struct │ │ │ │ │ │ └── WakeLockInfo.struct │ │ │ │ ├── telecom │ │ │ │ │ ├── DisconnectCause.struct │ │ │ │ │ ├── VideoProfile.struct │ │ │ │ │ └── cts │ │ │ │ │ │ ├── api29incallservice │ │ │ │ │ │ └── ICtsApi29InCallServiceControl.struct │ │ │ │ │ │ ├── carmodetestapp │ │ │ │ │ │ └── ICtsCarModeInCallServiceControl.struct │ │ │ │ │ │ ├── redirectiontestapp │ │ │ │ │ │ └── ICtsCallRedirectionServiceController.struct │ │ │ │ │ │ ├── screeningtestapp │ │ │ │ │ │ └── ICallScreeningControl.struct │ │ │ │ │ │ └── thirdptyincallservice │ │ │ │ │ │ └── ICtsThirdPartyInCallServiceControl.struct │ │ │ │ ├── telephony │ │ │ │ │ ├── CallForwardingInfo.struct │ │ │ │ │ ├── CallQuality.struct │ │ │ │ │ ├── CellIdentity.struct │ │ │ │ │ ├── CellInfo.struct │ │ │ │ │ ├── DataConnectionRealTimeInfo.struct │ │ │ │ │ ├── ICellBroadcastService.struct │ │ │ │ │ ├── ICellInfoCallback.struct │ │ │ │ │ ├── INetworkService.struct │ │ │ │ │ ├── INetworkServiceCallback.struct │ │ │ │ │ ├── IccOpenLogicalChannelResponse.struct │ │ │ │ │ ├── ModemActivityInfo.struct │ │ │ │ │ ├── NeighboringCellInfo.struct │ │ │ │ │ ├── PhoneNumberRange.struct │ │ │ │ │ ├── PreciseCallState.struct │ │ │ │ │ ├── PreciseDataConnectionState.struct │ │ │ │ │ ├── RadioAccessSpecifier.struct │ │ │ │ │ ├── ServiceState.struct │ │ │ │ │ ├── SubscriptionPlan.struct │ │ │ │ │ ├── TelephonyDisplayInfo.struct │ │ │ │ │ ├── TelephonyHistogram.struct │ │ │ │ │ ├── UiccCardInfo.struct │ │ │ │ │ ├── UiccSlotInfo.struct │ │ │ │ │ ├── cdma │ │ │ │ │ │ └── CdmaSmsCbProgramData.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── embmstestapp │ │ │ │ │ │ │ ├── ICtsDownloadMiddlewareControl.struct │ │ │ │ │ │ │ ├── ICtsGroupCallMiddlewareControl.struct │ │ │ │ │ │ │ └── ICtsStreamingMiddlewareControl.struct │ │ │ │ │ │ ├── externalimsservice │ │ │ │ │ │ │ └── ITestExternalImsService.struct │ │ │ │ │ │ └── locationaccessingapp │ │ │ │ │ │ │ └── ICtsLocationAccessControl.struct │ │ │ │ │ ├── data │ │ │ │ │ │ ├── DataProfile.struct │ │ │ │ │ │ ├── IDataService.struct │ │ │ │ │ │ ├── IDataServiceCallback.struct │ │ │ │ │ │ ├── IQualifiedNetworksService.struct │ │ │ │ │ │ └── IQualifiedNetworksServiceCallback.struct │ │ │ │ │ ├── emergency │ │ │ │ │ │ └── EmergencyNumber.struct │ │ │ │ │ ├── euicc │ │ │ │ │ │ ├── EuiccInfo.struct │ │ │ │ │ │ └── EuiccNotification.struct │ │ │ │ │ ├── ims │ │ │ │ │ │ ├── ImsReasonInfo.struct │ │ │ │ │ │ ├── ImsSuppServiceNotification.struct │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ ├── IImsCallSessionListener.struct │ │ │ │ │ │ │ ├── IImsCapabilityCallback.struct │ │ │ │ │ │ │ ├── IImsConfig.struct │ │ │ │ │ │ │ ├── IImsConfigCallback.struct │ │ │ │ │ │ │ ├── IImsMmTelFeature.struct │ │ │ │ │ │ │ ├── IImsMmTelListener.struct │ │ │ │ │ │ │ ├── IImsRcsController.struct │ │ │ │ │ │ │ ├── IImsRcsFeature.struct │ │ │ │ │ │ │ ├── IImsRegistration.struct │ │ │ │ │ │ │ ├── IImsRegistrationCallback.struct │ │ │ │ │ │ │ ├── IImsServiceController.struct │ │ │ │ │ │ │ ├── IImsServiceControllerListener.struct │ │ │ │ │ │ │ ├── IImsSmsListener.struct │ │ │ │ │ │ │ ├── IRcsFeatureListener.struct │ │ │ │ │ │ │ └── IRcsUceControllerCallback.struct │ │ │ │ │ │ ├── feature │ │ │ │ │ │ │ └── CapabilityChangeRequest.struct │ │ │ │ │ │ └── stub │ │ │ │ │ │ │ └── ImsFeatureConfiguration.struct │ │ │ │ │ └── mbms │ │ │ │ │ │ ├── FileInfo.struct │ │ │ │ │ │ ├── IDownloadProgressListener.struct │ │ │ │ │ │ ├── IDownloadStatusListener.struct │ │ │ │ │ │ ├── IGroupCallCallback.struct │ │ │ │ │ │ ├── IMbmsDownloadSessionCallback.struct │ │ │ │ │ │ ├── IMbmsGroupCallSessionCallback.struct │ │ │ │ │ │ ├── IMbmsStreamingSessionCallback.struct │ │ │ │ │ │ ├── IStreamingServiceCallback.struct │ │ │ │ │ │ ├── StreamingServiceInfo.struct │ │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── IMbmsDownloadService.struct │ │ │ │ │ │ ├── IMbmsGroupCallService.struct │ │ │ │ │ │ └── IMbmsStreamingService.struct │ │ │ │ ├── tests │ │ │ │ │ └── binder │ │ │ │ │ │ └── IBenchmark.struct │ │ │ │ ├── util │ │ │ │ │ ├── IRemoteMemoryIntArray.struct │ │ │ │ │ ├── MemoryIntArray.struct │ │ │ │ │ └── StatsEventParcel.struct │ │ │ │ ├── vendor │ │ │ │ │ └── powerstats │ │ │ │ │ │ ├── IPixelPowerStatsCallback.struct │ │ │ │ │ │ ├── IPixelPowerStatsProvider.struct │ │ │ │ │ │ └── StateResidencyData.struct │ │ │ │ ├── view │ │ │ │ │ ├── AppTransitionAnimationSpec.struct │ │ │ │ │ ├── IAppTransitionAnimationSpecsFuture.struct │ │ │ │ │ ├── IApplicationToken.struct │ │ │ │ │ ├── IDisplayFoldListener.struct │ │ │ │ │ ├── IDisplayWindowInsetsController.struct │ │ │ │ │ ├── IDisplayWindowListener.struct │ │ │ │ │ ├── IDisplayWindowRotationCallback.struct │ │ │ │ │ ├── IDisplayWindowRotationController.struct │ │ │ │ │ ├── IDockedStackListener.struct │ │ │ │ │ ├── IGraphicsStats.struct │ │ │ │ │ ├── IGraphicsStatsCallback.struct │ │ │ │ │ ├── IInputFilter.struct │ │ │ │ │ ├── IInputFilterHost.struct │ │ │ │ │ ├── IInputMonitorHost.struct │ │ │ │ │ ├── IOnKeyguardExitResult.struct │ │ │ │ │ ├── IPinnedStackController.struct │ │ │ │ │ ├── IPinnedStackListener.struct │ │ │ │ │ ├── IRecentsAnimationController.struct │ │ │ │ │ ├── IRecentsAnimationRunner.struct │ │ │ │ │ ├── IRemoteAnimationFinishedCallback.struct │ │ │ │ │ ├── IRemoteAnimationRunner.struct │ │ │ │ │ ├── IRotationWatcher.struct │ │ │ │ │ ├── IScrollCaptureClient.struct │ │ │ │ │ ├── IScrollCaptureController.struct │ │ │ │ │ ├── ISystemGestureExclusionListener.struct │ │ │ │ │ ├── IWallpaperVisibilityListener.struct │ │ │ │ │ ├── IWindow.struct │ │ │ │ │ ├── IWindowFocusObserver.struct │ │ │ │ │ ├── IWindowId.struct │ │ │ │ │ ├── IWindowManager.struct │ │ │ │ │ ├── IWindowSession.struct │ │ │ │ │ ├── IWindowSessionCallback.struct │ │ │ │ │ ├── InsetsSourceControl.struct │ │ │ │ │ ├── KeyEvent.struct │ │ │ │ │ ├── RemoteAnimationTarget.struct │ │ │ │ │ ├── WindowAnimationFrameStats.struct │ │ │ │ │ ├── WindowContentFrameStats.struct │ │ │ │ │ ├── accessibility │ │ │ │ │ │ ├── IAccessibilityEmbeddedConnection.struct │ │ │ │ │ │ ├── IAccessibilityInteractionConnection.struct │ │ │ │ │ │ ├── IAccessibilityInteractionConnectionCallback.struct │ │ │ │ │ │ ├── IAccessibilityManager.struct │ │ │ │ │ │ ├── IAccessibilityManagerClient.struct │ │ │ │ │ │ ├── IWindowMagnificationConnection.struct │ │ │ │ │ │ └── IWindowMagnificationConnectionCallback.struct │ │ │ │ │ ├── autofill │ │ │ │ │ │ ├── AutofillId.struct │ │ │ │ │ │ ├── AutofillValue.struct │ │ │ │ │ │ ├── IAugmentedAutofillManagerClient.struct │ │ │ │ │ │ ├── IAutoFillManager.struct │ │ │ │ │ │ ├── IAutoFillManagerClient.struct │ │ │ │ │ │ └── IAutofillWindowPresenter.struct │ │ │ │ │ ├── contentcapture │ │ │ │ │ │ ├── ContentCaptureCondition.struct │ │ │ │ │ │ ├── DataRemovalRequest.struct │ │ │ │ │ │ ├── IContentCaptureDirectManager.struct │ │ │ │ │ │ ├── IContentCaptureManager.struct │ │ │ │ │ │ └── IDataShareWriteAdapter.struct │ │ │ │ │ ├── inputmethod │ │ │ │ │ │ ├── CompletionInfo.struct │ │ │ │ │ │ ├── CorrectionInfo.struct │ │ │ │ │ │ ├── ExtractedText.struct │ │ │ │ │ │ ├── ExtractedTextRequest.struct │ │ │ │ │ │ ├── InputBinding.struct │ │ │ │ │ │ ├── InputMethodSubtype.struct │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── IWindowFocusStealer.struct │ │ │ │ │ ├── textclassifier │ │ │ │ │ │ ├── SelectionEvent.struct │ │ │ │ │ │ ├── TextClassificationContext.struct │ │ │ │ │ │ └── TextClassificationSessionId.struct │ │ │ │ │ └── textservice │ │ │ │ │ │ ├── SuggestionsInfo.struct │ │ │ │ │ │ └── TextInfo.struct │ │ │ │ ├── webkit │ │ │ │ │ └── IWebViewUpdateService.struct │ │ │ │ └── window │ │ │ │ │ ├── DisplayAreaInfo.struct │ │ │ │ │ ├── IDisplayAreaOrganizer.struct │ │ │ │ │ ├── IDisplayAreaOrganizerController.struct │ │ │ │ │ ├── ITaskOrganizer.struct │ │ │ │ │ ├── ITaskOrganizerController.struct │ │ │ │ │ ├── IWindowContainerToken.struct │ │ │ │ │ ├── IWindowContainerTransactionCallback.struct │ │ │ │ │ └── IWindowOrganizerController.struct │ │ │ ├── another_package │ │ │ │ └── IFaz.struct │ │ │ ├── classPaths.txt │ │ │ ├── com │ │ │ │ ├── android │ │ │ │ │ ├── bips │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ └── SizeD.struct │ │ │ │ │ │ └── render │ │ │ │ │ │ │ └── IPdfRender.struct │ │ │ │ │ ├── car │ │ │ │ │ │ ├── keventreader │ │ │ │ │ │ │ ├── IEventCallback.struct │ │ │ │ │ │ │ ├── IEventProvider.struct │ │ │ │ │ │ │ └── KeypressEvent.struct │ │ │ │ │ │ ├── procfsinspector │ │ │ │ │ │ │ ├── IProcfsInspector.struct │ │ │ │ │ │ │ └── ProcessInfo.struct │ │ │ │ │ │ ├── radio │ │ │ │ │ │ │ ├── bands │ │ │ │ │ │ │ │ └── ProgramType.struct │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ ├── IRadioAppCallback.struct │ │ │ │ │ │ │ │ ├── IRadioAppService.struct │ │ │ │ │ │ │ │ └── ITuneCallback.struct │ │ │ │ │ │ └── setupwizardlib │ │ │ │ │ │ │ └── IInitialLockSetupService.struct │ │ │ │ │ ├── compatibility │ │ │ │ │ │ └── common │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── devicepolicy │ │ │ │ │ │ │ └── provisioning │ │ │ │ │ │ │ └── IBooleanCallback.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── IBinderPermissionTestService.struct │ │ │ │ │ │ ├── appdataisolation │ │ │ │ │ │ │ └── appa │ │ │ │ │ │ │ │ └── IIsolatedService.struct │ │ │ │ │ │ ├── blob │ │ │ │ │ │ │ └── ICommandReceiver.struct │ │ │ │ │ │ ├── comp │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ ├── deviceowner │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ └── hostside │ │ │ │ │ │ │ │ ├── IMyService.struct │ │ │ │ │ │ │ │ ├── INetworkCallback.struct │ │ │ │ │ │ │ │ ├── INetworkStateObserver.struct │ │ │ │ │ │ │ │ └── IRemoteSocketFactory.struct │ │ │ │ │ │ └── verifier │ │ │ │ │ │ │ ├── managedprovisioning │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ │ └── projection │ │ │ │ │ │ │ └── IProjectionService.struct │ │ │ │ │ ├── development │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ ├── dialer │ │ │ │ │ │ └── simulator │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── ISimulatorService.struct │ │ │ │ │ ├── frameworks │ │ │ │ │ │ ├── coretests │ │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ │ ├── IBinderProxyCountingService.struct │ │ │ │ │ │ │ │ ├── IBpcCallbackObserver.struct │ │ │ │ │ │ │ │ ├── IBpcTestAppCmdService.struct │ │ │ │ │ │ │ │ ├── IBpcTestServiceCmdService.struct │ │ │ │ │ │ │ │ ├── ICmdCallback.struct │ │ │ │ │ │ │ │ ├── ICmdReceiver.struct │ │ │ │ │ │ │ │ └── ITestRemoteCallback.struct │ │ │ │ │ │ └── perftests │ │ │ │ │ │ │ └── am │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── ICommandReceiver.struct │ │ │ │ │ │ │ └── ITimeReceiverCallback.struct │ │ │ │ │ ├── ims │ │ │ │ │ │ ├── IRcsPresenceListener.struct │ │ │ │ │ │ ├── ImsConfigListener.struct │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── IImsCallSession.struct │ │ │ │ │ │ │ ├── IImsCallSessionListener.struct │ │ │ │ │ │ │ ├── IImsConfig.struct │ │ │ │ │ │ │ ├── IImsEcbm.struct │ │ │ │ │ │ │ ├── IImsEcbmListener.struct │ │ │ │ │ │ │ ├── IImsExternalCallStateListener.struct │ │ │ │ │ │ │ ├── IImsFeatureStatusCallback.struct │ │ │ │ │ │ │ ├── IImsMMTelFeature.struct │ │ │ │ │ │ │ ├── IImsMultiEndpoint.struct │ │ │ │ │ │ │ ├── IImsRcsFeature.struct │ │ │ │ │ │ │ ├── IImsRegistrationListener.struct │ │ │ │ │ │ │ ├── IImsService.struct │ │ │ │ │ │ │ ├── IImsServiceController.struct │ │ │ │ │ │ │ ├── IImsServiceFeatureCallback.struct │ │ │ │ │ │ │ ├── IImsStreamMediaSession.struct │ │ │ │ │ │ │ ├── IImsUt.struct │ │ │ │ │ │ │ ├── IImsUtListener.struct │ │ │ │ │ │ │ ├── IImsVideoCallCallback.struct │ │ │ │ │ │ │ ├── IImsVideoCallProvider.struct │ │ │ │ │ │ │ ├── IRcsPresence.struct │ │ │ │ │ │ │ ├── IRcsService.struct │ │ │ │ │ │ │ └── uce │ │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ ├── IOptionsListener.struct │ │ │ │ │ │ │ └── IOptionsService.struct │ │ │ │ │ │ │ ├── presence │ │ │ │ │ │ │ ├── IPresenceListener.struct │ │ │ │ │ │ │ └── IPresenceService.struct │ │ │ │ │ │ │ └── uceservice │ │ │ │ │ │ │ ├── IUceListener.struct │ │ │ │ │ │ │ └── IUceService.struct │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── IAppOpsActiveCallback.struct │ │ │ │ │ │ │ ├── IAppOpsAsyncNotedCallback.struct │ │ │ │ │ │ │ ├── IAppOpsCallback.struct │ │ │ │ │ │ │ ├── IAppOpsNotedCallback.struct │ │ │ │ │ │ │ ├── IAppOpsService.struct │ │ │ │ │ │ │ ├── IAppOpsStartedCallback.struct │ │ │ │ │ │ │ ├── IBatteryStats.struct │ │ │ │ │ │ │ ├── IMediaContainerService.struct │ │ │ │ │ │ │ ├── ISoundTriggerService.struct │ │ │ │ │ │ │ ├── IVoiceActionCheckCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractionManagerService.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSessionListener.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSessionShowCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractor.struct │ │ │ │ │ │ │ ├── IVoiceInteractorCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractorRequest.struct │ │ │ │ │ │ │ └── procstats │ │ │ │ │ │ │ │ └── IProcessStats.struct │ │ │ │ │ │ ├── appwidget │ │ │ │ │ │ │ ├── IAppWidgetHost.struct │ │ │ │ │ │ │ └── IAppWidgetService.struct │ │ │ │ │ │ ├── backup │ │ │ │ │ │ │ ├── IBackupTransport.struct │ │ │ │ │ │ │ └── IObbBackupService.struct │ │ │ │ │ │ ├── car │ │ │ │ │ │ │ └── ICarServiceHelper.struct │ │ │ │ │ │ ├── compat │ │ │ │ │ │ │ ├── CompatibilityChangeConfig.struct │ │ │ │ │ │ │ ├── CompatibilityChangeInfo.struct │ │ │ │ │ │ │ ├── IOverrideValidator.struct │ │ │ │ │ │ │ ├── IPlatformCompat.struct │ │ │ │ │ │ │ ├── IPlatformCompatNative.struct │ │ │ │ │ │ │ └── OverrideAllowedState.struct │ │ │ │ │ │ ├── infra │ │ │ │ │ │ │ └── IAndroidFuture.struct │ │ │ │ │ │ ├── inputmethod │ │ │ │ │ │ │ ├── ICharSequenceResultCallback.struct │ │ │ │ │ │ │ ├── IExtractedTextResultCallback.struct │ │ │ │ │ │ │ ├── IInputContentUriToken.struct │ │ │ │ │ │ │ ├── IInputMethodPrivilegedOperations.struct │ │ │ │ │ │ │ ├── IIntResultCallback.struct │ │ │ │ │ │ │ ├── IMultiClientInputMethod.struct │ │ │ │ │ │ │ ├── IMultiClientInputMethodPrivilegedOperations.struct │ │ │ │ │ │ │ └── IMultiClientInputMethodSession.struct │ │ │ │ │ │ ├── location │ │ │ │ │ │ │ ├── ILocationProvider.struct │ │ │ │ │ │ │ ├── ILocationProviderManager.struct │ │ │ │ │ │ │ └── ProviderProperties.struct │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ ├── INetworkWatchlistManager.struct │ │ │ │ │ │ │ ├── IOemNetd.struct │ │ │ │ │ │ │ ├── IOemNetdUnsolicitedEventListener.struct │ │ │ │ │ │ │ ├── LegacyVpnInfo.struct │ │ │ │ │ │ │ └── VpnInfo.struct │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ ├── AppFuseMount.struct │ │ │ │ │ │ │ ├── IDropBoxManagerService.struct │ │ │ │ │ │ │ ├── IParcelFileDescriptorFactory.struct │ │ │ │ │ │ │ ├── IResultReceiver.struct │ │ │ │ │ │ │ └── IShellCallback.struct │ │ │ │ │ │ ├── policy │ │ │ │ │ │ │ ├── IKeyguardDismissCallback.struct │ │ │ │ │ │ │ ├── IKeyguardDrawnCallback.struct │ │ │ │ │ │ │ ├── IKeyguardExitCallback.struct │ │ │ │ │ │ │ ├── IKeyguardService.struct │ │ │ │ │ │ │ ├── IKeyguardStateCallback.struct │ │ │ │ │ │ │ └── IShortcutService.struct │ │ │ │ │ │ ├── statusbar │ │ │ │ │ │ │ ├── IStatusBar.struct │ │ │ │ │ │ │ └── IStatusBarService.struct │ │ │ │ │ │ ├── telecom │ │ │ │ │ │ │ ├── ICallRedirectionAdapter.struct │ │ │ │ │ │ │ ├── ICallRedirectionService.struct │ │ │ │ │ │ │ ├── ICallScreeningAdapter.struct │ │ │ │ │ │ │ ├── ICallScreeningService.struct │ │ │ │ │ │ │ ├── IConnectionService.struct │ │ │ │ │ │ │ ├── IConnectionServiceAdapter.struct │ │ │ │ │ │ │ ├── IDeviceIdleControllerAdapter.struct │ │ │ │ │ │ │ ├── IInCallAdapter.struct │ │ │ │ │ │ │ ├── IInCallService.struct │ │ │ │ │ │ │ ├── IInternalServiceRetriever.struct │ │ │ │ │ │ │ ├── IPhoneAccountSuggestionCallback.struct │ │ │ │ │ │ │ ├── IPhoneAccountSuggestionService.struct │ │ │ │ │ │ │ ├── ITelecomLoader.struct │ │ │ │ │ │ │ ├── ITelecomService.struct │ │ │ │ │ │ │ ├── IVideoCallback.struct │ │ │ │ │ │ │ ├── IVideoProvider.struct │ │ │ │ │ │ │ └── RemoteServiceCallback.struct │ │ │ │ │ │ ├── telephony │ │ │ │ │ │ │ ├── IBooleanConsumer.struct │ │ │ │ │ │ │ ├── ICarrierConfigLoader.struct │ │ │ │ │ │ │ ├── IIccPhoneBook.struct │ │ │ │ │ │ │ ├── IIntegerConsumer.struct │ │ │ │ │ │ │ ├── IMms.struct │ │ │ │ │ │ │ ├── INumberVerificationCallback.struct │ │ │ │ │ │ │ ├── IOnSubscriptionsChangedListener.struct │ │ │ │ │ │ │ ├── IOns.struct │ │ │ │ │ │ │ ├── IPhoneStateListener.struct │ │ │ │ │ │ │ ├── IPhoneSubInfo.struct │ │ │ │ │ │ │ ├── ISetOpportunisticDataCallback.struct │ │ │ │ │ │ │ ├── ISms.struct │ │ │ │ │ │ │ ├── ISub.struct │ │ │ │ │ │ │ ├── ITelephony.struct │ │ │ │ │ │ │ ├── ITelephonyRegistry.struct │ │ │ │ │ │ │ ├── IUpdateAvailableNetworksCallback.struct │ │ │ │ │ │ │ ├── IWapPushManager.struct │ │ │ │ │ │ │ ├── OperatorInfo.struct │ │ │ │ │ │ │ ├── SmsRawData.struct │ │ │ │ │ │ │ ├── euicc │ │ │ │ │ │ │ │ ├── IAuthenticateServerCallback.struct │ │ │ │ │ │ │ │ ├── ICancelSessionCallback.struct │ │ │ │ │ │ │ │ ├── IDeleteProfileCallback.struct │ │ │ │ │ │ │ │ ├── IDisableProfileCallback.struct │ │ │ │ │ │ │ │ ├── IEuiccCardController.struct │ │ │ │ │ │ │ │ ├── IEuiccController.struct │ │ │ │ │ │ │ │ ├── IGetAllProfilesCallback.struct │ │ │ │ │ │ │ │ ├── IGetDefaultSmdpAddressCallback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccChallengeCallback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccInfo1Callback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccInfo2Callback.struct │ │ │ │ │ │ │ │ ├── IGetProfileCallback.struct │ │ │ │ │ │ │ │ ├── IGetRulesAuthTableCallback.struct │ │ │ │ │ │ │ │ ├── IGetSmdsAddressCallback.struct │ │ │ │ │ │ │ │ ├── IListNotificationsCallback.struct │ │ │ │ │ │ │ │ ├── ILoadBoundProfilePackageCallback.struct │ │ │ │ │ │ │ │ ├── IPrepareDownloadCallback.struct │ │ │ │ │ │ │ │ ├── IRemoveNotificationFromListCallback.struct │ │ │ │ │ │ │ │ ├── IResetMemoryCallback.struct │ │ │ │ │ │ │ │ ├── IRetrieveNotificationCallback.struct │ │ │ │ │ │ │ │ ├── IRetrieveNotificationListCallback.struct │ │ │ │ │ │ │ │ ├── ISetDefaultSmdpAddressCallback.struct │ │ │ │ │ │ │ │ ├── ISetNicknameCallback.struct │ │ │ │ │ │ │ │ └── ISwitchToProfileCallback.struct │ │ │ │ │ │ │ └── uicc │ │ │ │ │ │ │ │ └── AdnRecord.struct │ │ │ │ │ │ ├── textservice │ │ │ │ │ │ │ ├── ISpellCheckerService.struct │ │ │ │ │ │ │ ├── ISpellCheckerServiceCallback.struct │ │ │ │ │ │ │ ├── ISpellCheckerSession.struct │ │ │ │ │ │ │ ├── ISpellCheckerSessionListener.struct │ │ │ │ │ │ │ ├── ITextServicesManager.struct │ │ │ │ │ │ │ └── ITextServicesSessionListener.struct │ │ │ │ │ │ ├── view │ │ │ │ │ │ │ ├── IDragAndDropPermissions.struct │ │ │ │ │ │ │ ├── IInlineSuggestionsRequestCallback.struct │ │ │ │ │ │ │ ├── IInlineSuggestionsResponseCallback.struct │ │ │ │ │ │ │ ├── IInputContext.struct │ │ │ │ │ │ │ ├── IInputMethod.struct │ │ │ │ │ │ │ ├── IInputMethodClient.struct │ │ │ │ │ │ │ ├── IInputMethodManager.struct │ │ │ │ │ │ │ ├── IInputMethodSession.struct │ │ │ │ │ │ │ ├── IInputSessionCallback.struct │ │ │ │ │ │ │ └── inline │ │ │ │ │ │ │ │ ├── IInlineContentCallback.struct │ │ │ │ │ │ │ │ └── IInlineContentProvider.struct │ │ │ │ │ │ └── widget │ │ │ │ │ │ │ ├── ICheckCredentialProgressCallback.struct │ │ │ │ │ │ │ ├── ILockSettings.struct │ │ │ │ │ │ │ ├── IRemoteViewsFactory.struct │ │ │ │ │ │ │ └── LockscreenCredential.struct │ │ │ │ │ ├── keychain │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ └── IKeyChainServiceTestSupport.struct │ │ │ │ │ ├── net │ │ │ │ │ │ ├── IProxyCallback.struct │ │ │ │ │ │ ├── IProxyPortListener.struct │ │ │ │ │ │ └── IProxyService.struct │ │ │ │ │ ├── onemedia │ │ │ │ │ │ ├── IPlayerCallback.struct │ │ │ │ │ │ ├── IPlayerService.struct │ │ │ │ │ │ └── playback │ │ │ │ │ │ │ └── IRequestCallback.struct │ │ │ │ │ ├── printspooler │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ ├── IPdfEditor.struct │ │ │ │ │ │ │ └── IPdfRenderer.struct │ │ │ │ │ ├── server │ │ │ │ │ │ └── net │ │ │ │ │ │ │ └── integrationtests │ │ │ │ │ │ │ └── INetworkStackInstrumentation.struct │ │ │ │ │ ├── servicestests │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ ├── ICmdReceiverService.struct │ │ │ │ │ │ │ └── INetworkStateObserver.struct │ │ │ │ │ ├── smspush │ │ │ │ │ │ └── unitTests │ │ │ │ │ │ │ └── IDataVerify.struct │ │ │ │ │ ├── suspendapps │ │ │ │ │ │ └── suspendtestapp │ │ │ │ │ │ │ ├── IBroadcastReporter.struct │ │ │ │ │ │ │ └── ITestService.struct │ │ │ │ │ ├── systemui │ │ │ │ │ │ ├── assist │ │ │ │ │ │ │ └── IAssistHandleService.struct │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ └── recents │ │ │ │ │ │ │ ├── IOverviewProxy.struct │ │ │ │ │ │ │ ├── IPinnedStackAnimationListener.struct │ │ │ │ │ │ │ └── ISystemUiProxy.struct │ │ │ │ │ ├── test │ │ │ │ │ │ └── notificationlistener │ │ │ │ │ │ │ └── INotificationUriAccessService.struct │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ │ └── basicprojectwithaidl │ │ │ │ │ │ │ └── ITest.struct │ │ │ │ │ └── tv │ │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── users │ │ │ │ │ │ │ └── IRestrictedProfilePinService.struct │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── IActivityTransitionBitmapProvider.struct │ │ │ │ │ │ └── testing │ │ │ │ │ │ └── testinput │ │ │ │ │ │ └── ITestInputControl.struct │ │ │ │ ├── example │ │ │ │ │ └── android │ │ │ │ │ │ └── apis │ │ │ │ │ │ └── app │ │ │ │ │ │ ├── IRemoteService.struct │ │ │ │ │ │ ├── IRemoteServiceCallback.struct │ │ │ │ │ │ └── ISecondary.struct │ │ │ │ ├── google │ │ │ │ │ ├── android │ │ │ │ │ │ ├── setupcompat │ │ │ │ │ │ │ └── ISetupCompatService.struct │ │ │ │ │ │ ├── setupwizard │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ └── INetworkInterceptService.struct │ │ │ │ │ │ └── startop │ │ │ │ │ │ │ └── iorap │ │ │ │ │ │ │ ├── ActivityInfo.struct │ │ │ │ │ │ │ ├── AppIntentEvent.struct │ │ │ │ │ │ │ ├── AppLaunchEvent.struct │ │ │ │ │ │ │ ├── DexOptEvent.struct │ │ │ │ │ │ │ ├── IIorap.struct │ │ │ │ │ │ │ ├── ITaskListener.struct │ │ │ │ │ │ │ ├── JobScheduledEvent.struct │ │ │ │ │ │ │ ├── PackageEvent.struct │ │ │ │ │ │ │ ├── RequestId.struct │ │ │ │ │ │ │ ├── SystemServiceEvent.struct │ │ │ │ │ │ │ ├── SystemServiceUserEvent.struct │ │ │ │ │ │ │ └── TaskResult.struct │ │ │ │ │ └── hardware │ │ │ │ │ │ └── pixel │ │ │ │ │ │ └── display │ │ │ │ │ │ └── IDisplay.struct │ │ │ │ └── mediatek │ │ │ │ │ └── tunerservice │ │ │ │ │ └── IMtkTuner.struct │ │ │ ├── google │ │ │ │ └── hardware │ │ │ │ │ └── power │ │ │ │ │ └── extension │ │ │ │ │ └── pixel │ │ │ │ │ └── IPowerExt.struct │ │ │ ├── other_package │ │ │ │ └── IBaz.struct │ │ │ ├── some_package │ │ │ │ ├── IBar.struct │ │ │ │ ├── IFoo.struct │ │ │ │ ├── Thing.struct │ │ │ │ └── sub_package │ │ │ │ │ ├── IFoo.struct │ │ │ │ │ └── SubThing.struct │ │ │ ├── test │ │ │ │ └── ParcelableTest.struct │ │ │ └── test_package │ │ │ │ ├── Bar.struct │ │ │ │ ├── Foo.struct │ │ │ │ ├── IBaz.struct │ │ │ │ ├── IEmpty.struct │ │ │ │ ├── ITest.struct │ │ │ │ └── RegularPolygon.struct │ │ ├── android-12.1.0_r27 │ │ │ ├── aaudio │ │ │ │ ├── Endpoint.struct │ │ │ │ ├── IAAudioClient.struct │ │ │ │ ├── IAAudioService.struct │ │ │ │ ├── RingBuffer.struct │ │ │ │ ├── SharedRegion.struct │ │ │ │ ├── StreamParameters.struct │ │ │ │ └── StreamRequest.struct │ │ │ ├── android │ │ │ │ ├── IDataSource.struct │ │ │ │ ├── IGraphicBufferSource.struct │ │ │ │ ├── IMediaExtractor.struct │ │ │ │ ├── IMediaExtractorService.struct │ │ │ │ ├── IOMXBufferSource.struct │ │ │ │ ├── IOMXNode.struct │ │ │ │ ├── accessibilityservice │ │ │ │ │ ├── AccessibilityGestureEvent.struct │ │ │ │ │ ├── AccessibilityServiceInfo.struct │ │ │ │ │ ├── IAccessibilityServiceClient.struct │ │ │ │ │ └── IAccessibilityServiceConnection.struct │ │ │ │ ├── accounts │ │ │ │ │ ├── Account.struct │ │ │ │ │ ├── AuthenticatorDescription.struct │ │ │ │ │ ├── IAccountAuthenticator.struct │ │ │ │ │ ├── IAccountAuthenticatorResponse.struct │ │ │ │ │ ├── IAccountManager.struct │ │ │ │ │ └── IAccountManagerResponse.struct │ │ │ │ ├── aidl │ │ │ │ │ ├── loggable │ │ │ │ │ │ ├── Data.struct │ │ │ │ │ │ ├── ILoggableInterface.struct │ │ │ │ │ │ └── Union.struct │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── DeprecatedParcelable.struct │ │ │ │ │ │ ├── IDeprecated.struct │ │ │ │ │ │ ├── INamedCallback.struct │ │ │ │ │ │ ├── INewName.struct │ │ │ │ │ │ ├── IOldName.struct │ │ │ │ │ │ ├── OtherParcelableForToString.struct │ │ │ │ │ │ ├── StructuredParcelable.struct │ │ │ │ │ │ ├── Union.struct │ │ │ │ │ │ ├── extension │ │ │ │ │ │ │ ├── ExtendableParcelable.struct │ │ │ │ │ │ │ ├── MyExt.struct │ │ │ │ │ │ │ ├── MyExt2.struct │ │ │ │ │ │ │ └── MyExtLike.struct │ │ │ │ │ │ ├── generic │ │ │ │ │ │ │ └── Baz.struct │ │ │ │ │ │ ├── immutable │ │ │ │ │ │ │ ├── Bar.struct │ │ │ │ │ │ │ ├── Foo.struct │ │ │ │ │ │ │ └── IBaz.struct │ │ │ │ │ │ ├── map │ │ │ │ │ │ │ ├── Bar.struct │ │ │ │ │ │ │ ├── Foo.struct │ │ │ │ │ │ │ └── IEmpty.struct │ │ │ │ │ │ ├── nonvintf │ │ │ │ │ │ │ ├── NonVintfExtendableParcelable.struct │ │ │ │ │ │ │ └── NonVintfParcelable.struct │ │ │ │ │ │ ├── unstable │ │ │ │ │ │ │ ├── UnstableExtendableParcelable.struct │ │ │ │ │ │ │ └── UnstableParcelable.struct │ │ │ │ │ │ └── vintf │ │ │ │ │ │ │ ├── VintfExtendableParcelable.struct │ │ │ │ │ │ │ └── VintfParcelable.struct │ │ │ │ │ └── versioned │ │ │ │ │ │ └── tests │ │ │ │ │ │ ├── Foo.struct │ │ │ │ │ │ └── IFooInterface.struct │ │ │ │ ├── apex │ │ │ │ │ ├── ApexInfo.struct │ │ │ │ │ ├── ApexInfoList.struct │ │ │ │ │ ├── ApexSessionInfo.struct │ │ │ │ │ ├── ApexSessionParams.struct │ │ │ │ │ ├── CompressedApexInfo.struct │ │ │ │ │ └── CompressedApexInfoList.struct │ │ │ │ ├── app │ │ │ │ │ ├── AsyncNotedAppOp.struct │ │ │ │ │ ├── AutomaticZenRule.struct │ │ │ │ │ ├── ContentProviderHolder.struct │ │ │ │ │ ├── IActivityClientController.struct │ │ │ │ │ ├── IActivityController.struct │ │ │ │ │ ├── IActivityManager.struct │ │ │ │ │ ├── IActivityPendingResult.struct │ │ │ │ │ ├── IActivityTaskManager.struct │ │ │ │ │ ├── IAlarmCompleteListener.struct │ │ │ │ │ ├── IAlarmListener.struct │ │ │ │ │ ├── IAlarmManager.struct │ │ │ │ │ ├── IAppTask.struct │ │ │ │ │ ├── IAppTraceRetriever.struct │ │ │ │ │ ├── IApplicationThread.struct │ │ │ │ │ ├── IAssistDataReceiver.struct │ │ │ │ │ ├── IBackupAgent.struct │ │ │ │ │ ├── IEphemeralResolver.struct │ │ │ │ │ ├── IGameManager.struct │ │ │ │ │ ├── IGameManagerService.struct │ │ │ │ │ ├── IInstantAppResolver.struct │ │ │ │ │ ├── IInstrumentationWatcher.struct │ │ │ │ │ ├── ILocalWallpaperColorConsumer.struct │ │ │ │ │ ├── INotificationManager.struct │ │ │ │ │ ├── IOnProjectionStateChangedListener.struct │ │ │ │ │ ├── IParcelFileDescriptorRetriever.struct │ │ │ │ │ ├── IProcessObserver.struct │ │ │ │ │ ├── IRequestFinishCallback.struct │ │ │ │ │ ├── ISearchManager.struct │ │ │ │ │ ├── ISearchManagerCallback.struct │ │ │ │ │ ├── IServiceConnection.struct │ │ │ │ │ ├── IStopUserCallback.struct │ │ │ │ │ ├── ITaskStackListener.struct │ │ │ │ │ ├── ITransientNotification.struct │ │ │ │ │ ├── ITransientNotificationCallback.struct │ │ │ │ │ ├── IUiAutomationConnection.struct │ │ │ │ │ ├── IUiModeManager.struct │ │ │ │ │ ├── IUidObserver.struct │ │ │ │ │ ├── IUriGrantsManager.struct │ │ │ │ │ ├── IUserSwitchObserver.struct │ │ │ │ │ ├── IWallpaperManager.struct │ │ │ │ │ ├── IWallpaperManagerCallback.struct │ │ │ │ │ ├── IWindowToken.struct │ │ │ │ │ ├── Notification$Action.struct │ │ │ │ │ ├── Notification$BubbleMetadata.struct │ │ │ │ │ ├── Notification.struct │ │ │ │ │ ├── NotificationChannel.struct │ │ │ │ │ ├── NotificationChannelGroup.struct │ │ │ │ │ ├── NotificationHistory.struct │ │ │ │ │ ├── PendingIntent.struct │ │ │ │ │ ├── PictureInPictureParams.struct │ │ │ │ │ ├── PictureInPictureUiState.struct │ │ │ │ │ ├── ProfilerInfo.struct │ │ │ │ │ ├── RemoteAction.struct │ │ │ │ │ ├── RemoteInput.struct │ │ │ │ │ ├── RuntimeAppOpAccessMessage.struct │ │ │ │ │ ├── SearchableInfo.struct │ │ │ │ │ ├── SyncNotedAppOp.struct │ │ │ │ │ ├── Vr2dDisplayProperties.struct │ │ │ │ │ ├── WaitResult.struct │ │ │ │ │ ├── WallpaperColors.struct │ │ │ │ │ ├── WallpaperInfo.struct │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── FactoryResetProtectionPolicy.struct │ │ │ │ │ │ ├── IDeviceAdminService.struct │ │ │ │ │ │ ├── IDevicePolicyManager.struct │ │ │ │ │ │ ├── IKeyguardCallback.struct │ │ │ │ │ │ ├── IKeyguardClient.struct │ │ │ │ │ │ ├── NetworkEvent.struct │ │ │ │ │ │ ├── ParcelableGranteeMap.struct │ │ │ │ │ │ ├── PasswordMetrics.struct │ │ │ │ │ │ ├── StartInstallingUpdateCallback.struct │ │ │ │ │ │ ├── SystemUpdateInfo.struct │ │ │ │ │ │ ├── SystemUpdatePolicy$ValidationFailedException.struct │ │ │ │ │ │ └── SystemUpdatePolicy.struct │ │ │ │ │ ├── appops │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ ├── IAppOpsForegroundControlService.struct │ │ │ │ │ │ │ ├── IAppOpsUserClient.struct │ │ │ │ │ │ │ └── IAppOpsUserService.struct │ │ │ │ │ ├── appsearch │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ ├── IAppSearchBatchResultCallback.struct │ │ │ │ │ │ │ └── IAppSearchResultCallback.struct │ │ │ │ │ ├── assist │ │ │ │ │ │ ├── AssistContent.struct │ │ │ │ │ │ ├── AssistStructure$HtmlInfoNode.struct │ │ │ │ │ │ ├── AssistStructure$ViewNodeParcelable.struct │ │ │ │ │ │ └── AssistStructure.struct │ │ │ │ │ ├── backup │ │ │ │ │ │ ├── BackupProgress.struct │ │ │ │ │ │ ├── IBackupCallback.struct │ │ │ │ │ │ ├── IBackupManager.struct │ │ │ │ │ │ ├── IBackupManagerMonitor.struct │ │ │ │ │ │ ├── IBackupObserver.struct │ │ │ │ │ │ ├── IFullBackupRestoreObserver.struct │ │ │ │ │ │ ├── IRestoreObserver.struct │ │ │ │ │ │ ├── IRestoreSession.struct │ │ │ │ │ │ ├── ISelectBackupTransportCallback.struct │ │ │ │ │ │ ├── RestoreDescription.struct │ │ │ │ │ │ └── RestoreSet.struct │ │ │ │ │ ├── blob │ │ │ │ │ │ ├── BlobHandle.struct │ │ │ │ │ │ ├── BlobInfo.struct │ │ │ │ │ │ ├── IBlobCommitCallback.struct │ │ │ │ │ │ ├── IBlobStoreManager.struct │ │ │ │ │ │ ├── IBlobStoreSession.struct │ │ │ │ │ │ └── LeaseInfo.struct │ │ │ │ │ ├── contentsuggestions │ │ │ │ │ │ ├── ClassificationsRequest.struct │ │ │ │ │ │ ├── ContentClassification.struct │ │ │ │ │ │ ├── ContentSelection.struct │ │ │ │ │ │ ├── IClassificationsCallback.struct │ │ │ │ │ │ ├── IContentSuggestionsManager.struct │ │ │ │ │ │ ├── ISelectionsCallback.struct │ │ │ │ │ │ └── SelectionsRequest.struct │ │ │ │ │ ├── job │ │ │ │ │ │ ├── IJobCallback.struct │ │ │ │ │ │ ├── IJobScheduler.struct │ │ │ │ │ │ ├── IJobService.struct │ │ │ │ │ │ ├── JobInfo$TriggerContentUri.struct │ │ │ │ │ │ ├── JobInfo.struct │ │ │ │ │ │ ├── JobParameters.struct │ │ │ │ │ │ └── JobWorkItem.struct │ │ │ │ │ ├── people │ │ │ │ │ │ ├── ConversationChannel.struct │ │ │ │ │ │ ├── ConversationStatus.struct │ │ │ │ │ │ ├── IConversationListener.struct │ │ │ │ │ │ └── IPeopleManager.struct │ │ │ │ │ ├── prediction │ │ │ │ │ │ ├── AppPredictionContext.struct │ │ │ │ │ │ ├── AppPredictionSessionId.struct │ │ │ │ │ │ ├── AppTargetEvent.struct │ │ │ │ │ │ ├── IPredictionCallback.struct │ │ │ │ │ │ └── IPredictionManager.struct │ │ │ │ │ ├── role │ │ │ │ │ │ ├── IOnRoleHoldersChangedListener.struct │ │ │ │ │ │ ├── IRoleController.struct │ │ │ │ │ │ └── IRoleManager.struct │ │ │ │ │ ├── search │ │ │ │ │ │ ├── ISearchCallback.struct │ │ │ │ │ │ ├── ISearchUiManager.struct │ │ │ │ │ │ ├── Query.struct │ │ │ │ │ │ ├── SearchContext.struct │ │ │ │ │ │ ├── SearchSessionId.struct │ │ │ │ │ │ └── SearchTargetEvent.struct │ │ │ │ │ ├── servertransaction │ │ │ │ │ │ └── ClientTransaction.struct │ │ │ │ │ ├── slice │ │ │ │ │ │ ├── ISliceListener.struct │ │ │ │ │ │ ├── ISliceManager.struct │ │ │ │ │ │ ├── Slice.struct │ │ │ │ │ │ ├── SliceItem.struct │ │ │ │ │ │ └── SliceSpec.struct │ │ │ │ │ ├── smartspace │ │ │ │ │ │ ├── ISmartspaceCallback.struct │ │ │ │ │ │ ├── ISmartspaceManager.struct │ │ │ │ │ │ ├── SmartspaceConfig.struct │ │ │ │ │ │ ├── SmartspaceSessionId.struct │ │ │ │ │ │ └── SmartspaceTargetEvent.struct │ │ │ │ │ ├── stubs │ │ │ │ │ │ ├── ISecondary.struct │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ └── ICloseSystemDialogsTestsService.struct │ │ │ │ │ ├── time │ │ │ │ │ │ ├── ExternalTimeSuggestion.struct │ │ │ │ │ │ ├── ITimeZoneDetectorListener.struct │ │ │ │ │ │ ├── TimeCapabilitiesAndConfig.struct │ │ │ │ │ │ ├── TimeConfiguration.struct │ │ │ │ │ │ ├── TimeZoneCapabilitiesAndConfig.struct │ │ │ │ │ │ └── TimeZoneConfiguration.struct │ │ │ │ │ ├── timedetector │ │ │ │ │ │ ├── GnssTimeSuggestion.struct │ │ │ │ │ │ ├── ITimeDetectorService.struct │ │ │ │ │ │ ├── ManualTimeSuggestion.struct │ │ │ │ │ │ ├── NetworkTimeSuggestion.struct │ │ │ │ │ │ └── TelephonyTimeSuggestion.struct │ │ │ │ │ ├── timezone │ │ │ │ │ │ ├── ICallback.struct │ │ │ │ │ │ ├── IRulesManager.struct │ │ │ │ │ │ └── RulesState.struct │ │ │ │ │ ├── timezonedetector │ │ │ │ │ │ ├── ITimeZoneDetectorService.struct │ │ │ │ │ │ ├── ManualTimeZoneSuggestion.struct │ │ │ │ │ │ └── TelephonyTimeZoneSuggestion.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── IStrongAuthTracker.struct │ │ │ │ │ │ ├── ITrustListener.struct │ │ │ │ │ │ └── ITrustManager.struct │ │ │ │ │ └── usage │ │ │ │ │ │ ├── CacheQuotaHint.struct │ │ │ │ │ │ ├── ExternalStorageStats.struct │ │ │ │ │ │ ├── ICacheQuotaService.struct │ │ │ │ │ │ ├── IStorageStatsManager.struct │ │ │ │ │ │ ├── IUsageStatsManager.struct │ │ │ │ │ │ ├── StorageStats.struct │ │ │ │ │ │ ├── UsageEvents.struct │ │ │ │ │ │ └── cts │ │ │ │ │ │ └── ITestReceiver.struct │ │ │ │ ├── apphibernation │ │ │ │ │ └── IAppHibernationService.struct │ │ │ │ ├── appsecurity │ │ │ │ │ └── cts │ │ │ │ │ │ └── keyrotationtest │ │ │ │ │ │ └── service │ │ │ │ │ │ └── ISignatureQueryService.struct │ │ │ │ ├── automotive │ │ │ │ │ ├── computepipe │ │ │ │ │ │ ├── registry │ │ │ │ │ │ │ ├── IClientInfo.struct │ │ │ │ │ │ │ ├── IPipeQuery.struct │ │ │ │ │ │ │ └── IPipeRegistration.struct │ │ │ │ │ │ └── runner │ │ │ │ │ │ │ ├── IPipeDebugger.struct │ │ │ │ │ │ │ ├── IPipeRunner.struct │ │ │ │ │ │ │ ├── IPipeStateCallback.struct │ │ │ │ │ │ │ ├── IPipeStream.struct │ │ │ │ │ │ │ ├── PacketDescriptor.struct │ │ │ │ │ │ │ ├── PipeDescriptor.struct │ │ │ │ │ │ │ ├── PipeInputConfig.struct │ │ │ │ │ │ │ ├── PipeInputConfigCameraDesc.struct │ │ │ │ │ │ │ ├── PipeInputConfigImageFileDesc.struct │ │ │ │ │ │ │ ├── PipeInputConfigInputSourceDesc.struct │ │ │ │ │ │ │ ├── PipeInputConfigVideoFileDesc.struct │ │ │ │ │ │ │ ├── PipeOffloadConfig.struct │ │ │ │ │ │ │ ├── PipeOffloadConfigOffloadDesc.struct │ │ │ │ │ │ │ ├── PipeOutputConfig.struct │ │ │ │ │ │ │ ├── PipeOutputConfigOutputDesc.struct │ │ │ │ │ │ │ ├── PipeTerminationConfig.struct │ │ │ │ │ │ │ ├── PipeTerminationConfigTerminationDesc.struct │ │ │ │ │ │ │ └── ProfilingData.struct │ │ │ │ │ ├── telemetry │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── CarDataInternal.struct │ │ │ │ │ │ │ ├── ICarDataListener.struct │ │ │ │ │ │ │ └── ICarTelemetryInternal.struct │ │ │ │ │ └── watchdog │ │ │ │ │ │ ├── ICarWatchdog.struct │ │ │ │ │ │ ├── ICarWatchdogClient.struct │ │ │ │ │ │ ├── ICarWatchdogMonitor.struct │ │ │ │ │ │ ├── IResourceOveruseListener.struct │ │ │ │ │ │ ├── IoOveruseStats.struct │ │ │ │ │ │ ├── PerStateBytes.struct │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── ICarWatchdog.struct │ │ │ │ │ │ ├── ICarWatchdogMonitor.struct │ │ │ │ │ │ ├── ICarWatchdogServiceForSystem.struct │ │ │ │ │ │ ├── IoOveruseAlertThreshold.struct │ │ │ │ │ │ ├── IoOveruseConfiguration.struct │ │ │ │ │ │ ├── IoUsageStats.struct │ │ │ │ │ │ ├── PackageIdentifier.struct │ │ │ │ │ │ ├── PackageInfo.struct │ │ │ │ │ │ ├── PackageIoOveruseStats.struct │ │ │ │ │ │ ├── PackageMetadata.struct │ │ │ │ │ │ ├── PerStateIoOveruseThreshold.struct │ │ │ │ │ │ ├── ResourceOveruseConfiguration.struct │ │ │ │ │ │ └── UserPackageIoUsageStats.struct │ │ │ │ ├── binderdebug │ │ │ │ │ └── test │ │ │ │ │ │ └── IControl.struct │ │ │ │ ├── bluetooth │ │ │ │ │ ├── BluetoothActivityEnergyInfo.struct │ │ │ │ │ ├── BluetoothAudioConfig.struct │ │ │ │ │ ├── BluetoothAvrcpPlayerSettings.struct │ │ │ │ │ ├── BluetoothClass.struct │ │ │ │ │ ├── BluetoothCodecConfig.struct │ │ │ │ │ ├── BluetoothCodecStatus.struct │ │ │ │ │ ├── BluetoothDevice.struct │ │ │ │ │ ├── BluetoothGattCharacteristic.struct │ │ │ │ │ ├── BluetoothGattDescriptor.struct │ │ │ │ │ ├── BluetoothGattIncludedService.struct │ │ │ │ │ ├── BluetoothGattService.struct │ │ │ │ │ ├── BluetoothHeadsetClientCall.struct │ │ │ │ │ ├── BluetoothHidDeviceAppQosSettings.struct │ │ │ │ │ ├── BluetoothHidDeviceAppSdpSettings.struct │ │ │ │ │ ├── BufferConstraint.struct │ │ │ │ │ ├── BufferConstraints.struct │ │ │ │ │ ├── IBluetooth.struct │ │ │ │ │ ├── IBluetoothA2dp.struct │ │ │ │ │ ├── IBluetoothA2dpSink.struct │ │ │ │ │ ├── IBluetoothA2dpSinkCallback.struct │ │ │ │ │ ├── IBluetoothA2dpSource.struct │ │ │ │ │ ├── IBluetoothA2dpSourceCallback.struct │ │ │ │ │ ├── IBluetoothAvrcpControl.struct │ │ │ │ │ ├── IBluetoothAvrcpControlCallback.struct │ │ │ │ │ ├── IBluetoothAvrcpController.struct │ │ │ │ │ ├── IBluetoothAvrcpTarget.struct │ │ │ │ │ ├── IBluetoothAvrcpTargetCallback.struct │ │ │ │ │ ├── IBluetoothCallback.struct │ │ │ │ │ ├── IBluetoothConnectionCallback.struct │ │ │ │ │ ├── IBluetoothGatt.struct │ │ │ │ │ ├── IBluetoothGattCallback.struct │ │ │ │ │ ├── IBluetoothGattClient.struct │ │ │ │ │ ├── IBluetoothGattClientCallback.struct │ │ │ │ │ ├── IBluetoothGattServer.struct │ │ │ │ │ ├── IBluetoothGattServerCallback.struct │ │ │ │ │ ├── IBluetoothHeadset.struct │ │ │ │ │ ├── IBluetoothHeadsetClient.struct │ │ │ │ │ ├── IBluetoothHearingAid.struct │ │ │ │ │ ├── IBluetoothHidDevice.struct │ │ │ │ │ ├── IBluetoothHidDeviceCallback.struct │ │ │ │ │ ├── IBluetoothHidHost.struct │ │ │ │ │ ├── IBluetoothLeAdvertiser.struct │ │ │ │ │ ├── IBluetoothLeAdvertiserCallback.struct │ │ │ │ │ ├── IBluetoothLeAudio.struct │ │ │ │ │ ├── IBluetoothLeScanner.struct │ │ │ │ │ ├── IBluetoothLeScannerCallback.struct │ │ │ │ │ ├── IBluetoothLowEnergy.struct │ │ │ │ │ ├── IBluetoothLowEnergyCallback.struct │ │ │ │ │ ├── IBluetoothManager.struct │ │ │ │ │ ├── IBluetoothManagerCallback.struct │ │ │ │ │ ├── IBluetoothMap.struct │ │ │ │ │ ├── IBluetoothMapClient.struct │ │ │ │ │ ├── IBluetoothMetadataListener.struct │ │ │ │ │ ├── IBluetoothOobDataCallback.struct │ │ │ │ │ ├── IBluetoothPan.struct │ │ │ │ │ ├── IBluetoothPbap.struct │ │ │ │ │ ├── IBluetoothPbapClient.struct │ │ │ │ │ ├── IBluetoothProfileServiceConnection.struct │ │ │ │ │ ├── IBluetoothSap.struct │ │ │ │ │ ├── IBluetoothSocketManager.struct │ │ │ │ │ ├── IBluetoothStateChangeCallback.struct │ │ │ │ │ ├── IBluetoothVolumeControl.struct │ │ │ │ │ ├── OobData.struct │ │ │ │ │ ├── UidTraffic.struct │ │ │ │ │ └── le │ │ │ │ │ │ ├── AdvertiseData.struct │ │ │ │ │ │ ├── AdvertisingSetParameters.struct │ │ │ │ │ │ ├── IAdvertisingSetCallback.struct │ │ │ │ │ │ ├── IPeriodicAdvertisingCallback.struct │ │ │ │ │ │ ├── IScannerCallback.struct │ │ │ │ │ │ ├── PeriodicAdvertisingParameters.struct │ │ │ │ │ │ ├── PeriodicAdvertisingReport.struct │ │ │ │ │ │ ├── ScanFilter.struct │ │ │ │ │ │ ├── ScanResult.struct │ │ │ │ │ │ └── ScanSettings.struct │ │ │ │ ├── car │ │ │ │ │ ├── IAppFocus.struct │ │ │ │ │ ├── IAppFocusListener.struct │ │ │ │ │ ├── IAppFocusOwnershipCallback.struct │ │ │ │ │ ├── ICar.struct │ │ │ │ │ ├── ICarBluetooth.struct │ │ │ │ │ ├── ICarBluetoothUserService.struct │ │ │ │ │ ├── ICarBugreportCallback.struct │ │ │ │ │ ├── ICarBugreportService.struct │ │ │ │ │ ├── ICarConnectionListener.struct │ │ │ │ │ ├── ICarInfo.struct │ │ │ │ │ ├── ICarOccupantZone.struct │ │ │ │ │ ├── ICarOccupantZoneCallback.struct │ │ │ │ │ ├── ICarProjection.struct │ │ │ │ │ ├── ICarProjectionKeyEventHandler.struct │ │ │ │ │ ├── ICarProjectionStatusListener.struct │ │ │ │ │ ├── ICarUserService.struct │ │ │ │ │ ├── IExperimentalCar.struct │ │ │ │ │ ├── IExperimentalCarHelper.struct │ │ │ │ │ ├── ILocationManagerProxy.struct │ │ │ │ │ ├── IPerUserCarService.struct │ │ │ │ │ ├── admin │ │ │ │ │ │ └── ICarDevicePolicyService.struct │ │ │ │ │ ├── app │ │ │ │ │ │ └── ICarActivityService.struct │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── ClusterState.struct │ │ │ │ │ │ ├── IClusterHomeService.struct │ │ │ │ │ │ ├── IClusterNavigationStateListener.struct │ │ │ │ │ │ ├── IClusterStateListener.struct │ │ │ │ │ │ ├── IInstrumentClusterManagerCallback.struct │ │ │ │ │ │ ├── IInstrumentClusterManagerService.struct │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ ├── IInstrumentCluster.struct │ │ │ │ │ │ │ ├── IInstrumentClusterHelper.struct │ │ │ │ │ │ │ └── IInstrumentClusterNavigation.struct │ │ │ │ │ ├── content │ │ │ │ │ │ └── pm │ │ │ │ │ │ │ ├── AppBlockingPackageInfo.struct │ │ │ │ │ │ │ ├── CarAppBlockingPolicy.struct │ │ │ │ │ │ │ ├── ICarAppBlockingPolicy.struct │ │ │ │ │ │ │ ├── ICarAppBlockingPolicySetter.struct │ │ │ │ │ │ │ └── ICarPackageManager.struct │ │ │ │ │ ├── diagnostic │ │ │ │ │ │ ├── CarDiagnosticEvent.struct │ │ │ │ │ │ ├── ICarDiagnostic.struct │ │ │ │ │ │ └── ICarDiagnosticEventListener.struct │ │ │ │ │ ├── drivingstate │ │ │ │ │ │ ├── CarDrivingStateEvent.struct │ │ │ │ │ │ ├── CarUxRestrictions.struct │ │ │ │ │ │ ├── CarUxRestrictionsConfiguration$RestrictionsPerSpeedRange.struct │ │ │ │ │ │ ├── CarUxRestrictionsConfiguration.struct │ │ │ │ │ │ ├── ICarDrivingState.struct │ │ │ │ │ │ ├── ICarDrivingStateChangeListener.struct │ │ │ │ │ │ ├── ICarUxRestrictionsChangeListener.struct │ │ │ │ │ │ └── ICarUxRestrictionsManager.struct │ │ │ │ │ ├── evs │ │ │ │ │ │ ├── CarEvsBufferDescriptor.struct │ │ │ │ │ │ ├── CarEvsStatus.struct │ │ │ │ │ │ ├── ICarEvsService.struct │ │ │ │ │ │ ├── ICarEvsStatusListener.struct │ │ │ │ │ │ └── ICarEvsStreamCallback.struct │ │ │ │ │ ├── experimental │ │ │ │ │ │ ├── DriverAwarenessEvent.struct │ │ │ │ │ │ ├── DriverAwarenessSupplierConfig.struct │ │ │ │ │ │ ├── DriverDistractionChangeEvent.struct │ │ │ │ │ │ ├── IDriverAwarenessSupplier.struct │ │ │ │ │ │ ├── IDriverAwarenessSupplierCallback.struct │ │ │ │ │ │ ├── IDriverDistractionChangeListener.struct │ │ │ │ │ │ ├── IDriverDistractionManager.struct │ │ │ │ │ │ └── ITestDemoExperimental.struct │ │ │ │ │ ├── hardware │ │ │ │ │ │ ├── CarPropertyConfig.struct │ │ │ │ │ │ ├── CarPropertyValue.struct │ │ │ │ │ │ ├── CarSensorConfig.struct │ │ │ │ │ │ ├── CarSensorEvent.struct │ │ │ │ │ │ ├── ICarSensor.struct │ │ │ │ │ │ ├── ICarSensorEventListener.struct │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── CarPowerPolicy.struct │ │ │ │ │ │ │ ├── CarPowerPolicyFilter.struct │ │ │ │ │ │ │ ├── ICarPower.struct │ │ │ │ │ │ │ ├── ICarPowerPolicyListener.struct │ │ │ │ │ │ │ └── ICarPowerStateListener.struct │ │ │ │ │ │ └── property │ │ │ │ │ │ │ ├── CarPropertyEvent.struct │ │ │ │ │ │ │ ├── ICarProperty.struct │ │ │ │ │ │ │ └── ICarPropertyEventListener.struct │ │ │ │ │ ├── input │ │ │ │ │ │ ├── CustomInputEvent.struct │ │ │ │ │ │ ├── ICarInput.struct │ │ │ │ │ │ ├── ICarInputCallback.struct │ │ │ │ │ │ ├── ICarInputListener.struct │ │ │ │ │ │ └── RotaryEvent.struct │ │ │ │ │ ├── media │ │ │ │ │ │ ├── CarAudioPatchHandle.struct │ │ │ │ │ │ ├── ICarAudio.struct │ │ │ │ │ │ ├── ICarMedia.struct │ │ │ │ │ │ ├── ICarMediaSourceListener.struct │ │ │ │ │ │ └── ICarVolumeCallback.struct │ │ │ │ │ ├── navigation │ │ │ │ │ │ └── CarNavigationInstrumentCluster.struct │ │ │ │ │ ├── occupantawareness │ │ │ │ │ │ ├── IOccupantAwarenessEventCallback.struct │ │ │ │ │ │ ├── IOccupantAwarenessManager.struct │ │ │ │ │ │ ├── OccupantAwarenessDetection.struct │ │ │ │ │ │ └── SystemStatusEvent.struct │ │ │ │ │ ├── projection │ │ │ │ │ │ ├── ProjectionStatus$MobileDevice.struct │ │ │ │ │ │ └── ProjectionStatus.struct │ │ │ │ │ ├── storagemonitoring │ │ │ │ │ │ ├── ICarStorageMonitoring.struct │ │ │ │ │ │ ├── IIoStatsListener.struct │ │ │ │ │ │ ├── IoStats.struct │ │ │ │ │ │ ├── IoStatsEntry.struct │ │ │ │ │ │ ├── WearEstimate.struct │ │ │ │ │ │ └── WearEstimateChange.struct │ │ │ │ │ ├── telemetry │ │ │ │ │ │ ├── ICarTelemetryService.struct │ │ │ │ │ │ ├── ICarTelemetryServiceListener.struct │ │ │ │ │ │ └── MetricsConfigKey.struct │ │ │ │ │ ├── test │ │ │ │ │ │ └── ICarTest.struct │ │ │ │ │ ├── user │ │ │ │ │ │ ├── IUserNotice.struct │ │ │ │ │ │ ├── IUserNoticeUI.struct │ │ │ │ │ │ └── UserIdentificationAssociationResponse.struct │ │ │ │ │ ├── vms │ │ │ │ │ │ ├── IVmsBrokerService.struct │ │ │ │ │ │ ├── IVmsClientCallback.struct │ │ │ │ │ │ ├── VmsAssociatedLayer.struct │ │ │ │ │ │ ├── VmsAvailableLayers.struct │ │ │ │ │ │ ├── VmsLayer.struct │ │ │ │ │ │ ├── VmsLayerDependency.struct │ │ │ │ │ │ ├── VmsProviderInfo.struct │ │ │ │ │ │ ├── VmsRegistrationInfo.struct │ │ │ │ │ │ └── VmsSubscriptionState.struct │ │ │ │ │ └── watchdog │ │ │ │ │ │ ├── ICarWatchdogService.struct │ │ │ │ │ │ ├── ICarWatchdogServiceCallback.struct │ │ │ │ │ │ ├── IResourceOveruseListener.struct │ │ │ │ │ │ ├── PackageKillableState.struct │ │ │ │ │ │ ├── ResourceOveruseConfiguration.struct │ │ │ │ │ │ └── ResourceOveruseStats.struct │ │ │ │ ├── companion │ │ │ │ │ ├── Association.struct │ │ │ │ │ ├── AssociationRequest.struct │ │ │ │ │ ├── ICompanionDeviceDiscoveryService.struct │ │ │ │ │ ├── ICompanionDeviceManager.struct │ │ │ │ │ ├── ICompanionDeviceService.struct │ │ │ │ │ └── IFindDeviceCallback.struct │ │ │ │ ├── content │ │ │ │ │ ├── AttributionSourceState.struct │ │ │ │ │ ├── AutofillOptions.struct │ │ │ │ │ ├── ClipData.struct │ │ │ │ │ ├── ClipDescription.struct │ │ │ │ │ ├── ContentCaptureOptions.struct │ │ │ │ │ ├── ContentValues.struct │ │ │ │ │ ├── IClipboard.struct │ │ │ │ │ ├── IContentService.struct │ │ │ │ │ ├── ICrossUserContentService.struct │ │ │ │ │ ├── IIntentReceiver.struct │ │ │ │ │ ├── IIntentSender.struct │ │ │ │ │ ├── IOnPrimaryClipChangedListener.struct │ │ │ │ │ ├── IRestrictionsManager.struct │ │ │ │ │ ├── ISyncAdapter.struct │ │ │ │ │ ├── ISyncAdapterUnsyncableAccountCallback.struct │ │ │ │ │ ├── ISyncContext.struct │ │ │ │ │ ├── ISyncServiceAdapter.struct │ │ │ │ │ ├── ISyncStatusObserver.struct │ │ │ │ │ ├── Intent$ShortcutIconResource.struct │ │ │ │ │ ├── Intent.struct │ │ │ │ │ ├── IntentFilter.struct │ │ │ │ │ ├── IntentSender.struct │ │ │ │ │ ├── LocusId.struct │ │ │ │ │ ├── PeriodicSync.struct │ │ │ │ │ ├── SyncAdapterType.struct │ │ │ │ │ ├── SyncInfo.struct │ │ │ │ │ ├── SyncRequest.struct │ │ │ │ │ ├── SyncResult.struct │ │ │ │ │ ├── SyncStats.struct │ │ │ │ │ ├── SyncStatusInfo.struct │ │ │ │ │ ├── integrity │ │ │ │ │ │ └── IAppIntegrityManager.struct │ │ │ │ │ ├── om │ │ │ │ │ │ ├── IOverlayManager.struct │ │ │ │ │ │ ├── OverlayIdentifier.struct │ │ │ │ │ │ ├── OverlayInfo.struct │ │ │ │ │ │ └── OverlayManagerTransaction.struct │ │ │ │ │ ├── pm │ │ │ │ │ │ ├── ActivityInfo.struct │ │ │ │ │ │ ├── ApkChecksum.struct │ │ │ │ │ │ ├── ApplicationInfo.struct │ │ │ │ │ │ ├── Attribution.struct │ │ │ │ │ │ ├── ChangedPackages.struct │ │ │ │ │ │ ├── Checksum.struct │ │ │ │ │ │ ├── ConfigurationInfo.struct │ │ │ │ │ │ ├── DataLoaderParamsParcel.struct │ │ │ │ │ │ ├── FeatureGroupInfo.struct │ │ │ │ │ │ ├── FeatureInfo.struct │ │ │ │ │ │ ├── FileSystemControlParcel.struct │ │ │ │ │ │ ├── ICrossProfileApps.struct │ │ │ │ │ │ ├── IDataLoader.struct │ │ │ │ │ │ ├── IDataLoaderManager.struct │ │ │ │ │ │ ├── IDataLoaderStatusListener.struct │ │ │ │ │ │ ├── IDexModuleRegisterCallback.struct │ │ │ │ │ │ ├── ILauncherApps.struct │ │ │ │ │ │ ├── IOnAppsChangedListener.struct │ │ │ │ │ │ ├── IOnChecksumsReadyListener.struct │ │ │ │ │ │ ├── IOtaDexopt.struct │ │ │ │ │ │ ├── IPackageChangeObserver.struct │ │ │ │ │ │ ├── IPackageDataObserver.struct │ │ │ │ │ │ ├── IPackageDeleteObserver.struct │ │ │ │ │ │ ├── IPackageDeleteObserver2.struct │ │ │ │ │ │ ├── IPackageInstallObserver2.struct │ │ │ │ │ │ ├── IPackageInstaller.struct │ │ │ │ │ │ ├── IPackageInstallerCallback.struct │ │ │ │ │ │ ├── IPackageInstallerSession.struct │ │ │ │ │ │ ├── IPackageInstallerSessionFileSystemConnector.struct │ │ │ │ │ │ ├── IPackageLoadingProgressCallback.struct │ │ │ │ │ │ ├── IPackageManager.struct │ │ │ │ │ │ ├── IPackageManagerNative.struct │ │ │ │ │ │ ├── IPackageMoveObserver.struct │ │ │ │ │ │ ├── IPackageStatsObserver.struct │ │ │ │ │ │ ├── IPinItemRequest.struct │ │ │ │ │ │ ├── IShortcutChangeCallback.struct │ │ │ │ │ │ ├── IShortcutService.struct │ │ │ │ │ │ ├── InstallSourceInfo.struct │ │ │ │ │ │ ├── InstallationFileParcel.struct │ │ │ │ │ │ ├── InstantAppRequestInfo.struct │ │ │ │ │ │ ├── InstrumentationInfo.struct │ │ │ │ │ │ ├── KeySet.struct │ │ │ │ │ │ ├── LauncherActivityInfoInternal.struct │ │ │ │ │ │ ├── ModuleInfo.struct │ │ │ │ │ │ ├── PackageChangeEvent.struct │ │ │ │ │ │ ├── PackageInfo.struct │ │ │ │ │ │ ├── PackageInfoLite.struct │ │ │ │ │ │ ├── PackageStats.struct │ │ │ │ │ │ ├── PathPermission.struct │ │ │ │ │ │ ├── PermissionGroupInfo.struct │ │ │ │ │ │ ├── PermissionInfo.struct │ │ │ │ │ │ ├── ProviderInfo.struct │ │ │ │ │ │ ├── ProviderInfoList.struct │ │ │ │ │ │ ├── ResolveInfo.struct │ │ │ │ │ │ ├── ServiceInfo.struct │ │ │ │ │ │ ├── SharedLibraryInfo.struct │ │ │ │ │ │ ├── ShortcutInfo.struct │ │ │ │ │ │ ├── Signature.struct │ │ │ │ │ │ ├── SigningInfo.struct │ │ │ │ │ │ ├── SuspendDialogInfo.struct │ │ │ │ │ │ ├── UserInfo.struct │ │ │ │ │ │ ├── VerifierDeviceIdentity.struct │ │ │ │ │ │ ├── VersionedPackage.struct │ │ │ │ │ │ ├── dex │ │ │ │ │ │ │ ├── IArtManager.struct │ │ │ │ │ │ │ └── ISnapshotRuntimeProfileCallback.struct │ │ │ │ │ │ ├── permission │ │ │ │ │ │ │ ├── IRuntimePermissionPresenter.struct │ │ │ │ │ │ │ └── SplitPermissionInfoParcelable.struct │ │ │ │ │ │ └── verify │ │ │ │ │ │ │ └── domain │ │ │ │ │ │ │ ├── DomainOwner.struct │ │ │ │ │ │ │ ├── DomainSet.struct │ │ │ │ │ │ │ ├── DomainVerificationInfo.struct │ │ │ │ │ │ │ ├── DomainVerificationUserState.struct │ │ │ │ │ │ │ └── IDomainVerificationManager.struct │ │ │ │ │ ├── res │ │ │ │ │ │ ├── ColorStateList.struct │ │ │ │ │ │ ├── CompatibilityInfo.struct │ │ │ │ │ │ ├── Configuration.struct │ │ │ │ │ │ └── ObbInfo.struct │ │ │ │ │ └── rollback │ │ │ │ │ │ └── IRollbackManager.struct │ │ │ │ ├── contentcaptureservice │ │ │ │ │ └── cts │ │ │ │ │ │ └── IOutOfProcessDataSharingService.struct │ │ │ │ ├── database │ │ │ │ │ └── IContentObserver.struct │ │ │ │ ├── debug │ │ │ │ │ ├── IAdbManager.struct │ │ │ │ │ └── IAdbTransport.struct │ │ │ │ ├── dvr │ │ │ │ │ ├── IVirtualTouchpadService.struct │ │ │ │ │ ├── IVrComposer.struct │ │ │ │ │ └── IVrComposerCallback.struct │ │ │ │ ├── fmq │ │ │ │ │ └── test │ │ │ │ │ │ └── FixedParcelable.struct │ │ │ │ ├── frameworks │ │ │ │ │ ├── automotive │ │ │ │ │ │ ├── powerpolicy │ │ │ │ │ │ │ ├── CarPowerPolicy.struct │ │ │ │ │ │ │ ├── CarPowerPolicyFilter.struct │ │ │ │ │ │ │ ├── ICarPowerPolicyChangeCallback.struct │ │ │ │ │ │ │ ├── ICarPowerPolicyServer.struct │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ │ ├── ICarPowerPolicySystemNotification.struct │ │ │ │ │ │ │ │ └── PolicyState.struct │ │ │ │ │ │ └── telemetry │ │ │ │ │ │ │ ├── CarData.struct │ │ │ │ │ │ │ └── ICarTelemetry.struct │ │ │ │ │ └── stats │ │ │ │ │ │ ├── IStats.struct │ │ │ │ │ │ └── VendorAtom.struct │ │ │ │ ├── graphics │ │ │ │ │ ├── Bitmap.struct │ │ │ │ │ ├── Insets.struct │ │ │ │ │ ├── Point.struct │ │ │ │ │ ├── Rect.struct │ │ │ │ │ ├── RectF.struct │ │ │ │ │ ├── Region.struct │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── Icon.struct │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── FontUpdateRequest$Family.struct │ │ │ │ │ │ ├── FontUpdateRequest$Font.struct │ │ │ │ │ │ └── FontUpdateRequest.struct │ │ │ │ ├── gsi │ │ │ │ │ ├── AvbPublicKey.struct │ │ │ │ │ ├── GsiProgress.struct │ │ │ │ │ ├── IGsiService.struct │ │ │ │ │ ├── IGsiServiceCallback.struct │ │ │ │ │ ├── IImageService.struct │ │ │ │ │ ├── IProgressCallback.struct │ │ │ │ │ └── MappedImage.struct │ │ │ │ ├── gui │ │ │ │ │ ├── DisplayBrightness.struct │ │ │ │ │ ├── FocusRequest.struct │ │ │ │ │ ├── IFpsListener.struct │ │ │ │ │ ├── IHdrLayerInfoListener.struct │ │ │ │ │ ├── IScreenCaptureListener.struct │ │ │ │ │ ├── ITransactionTraceListener.struct │ │ │ │ │ ├── ITunnelModeEnabledListener.struct │ │ │ │ │ ├── IWindowInfosListener.struct │ │ │ │ │ ├── IWindowInfosReportedListener.struct │ │ │ │ │ └── InputApplicationInfo.struct │ │ │ │ ├── hardware │ │ │ │ │ ├── CameraInfo.struct │ │ │ │ │ ├── CameraSessionStats.struct │ │ │ │ │ ├── CameraStatus.struct │ │ │ │ │ ├── HardwareBuffer.struct │ │ │ │ │ ├── ICamera.struct │ │ │ │ │ ├── ICameraClient.struct │ │ │ │ │ ├── ICameraService.struct │ │ │ │ │ ├── ICameraServiceListener.struct │ │ │ │ │ ├── ICameraServiceProxy.struct │ │ │ │ │ ├── IConsumerIrService.struct │ │ │ │ │ ├── ISensorPrivacyListener.struct │ │ │ │ │ ├── ISensorPrivacyManager.struct │ │ │ │ │ ├── ISerialManager.struct │ │ │ │ │ ├── authsecret │ │ │ │ │ │ └── IAuthSecret.struct │ │ │ │ │ ├── automotive │ │ │ │ │ │ ├── audiocontrol │ │ │ │ │ │ │ ├── DuckingInfo.struct │ │ │ │ │ │ │ ├── IAudioControl.struct │ │ │ │ │ │ │ ├── IFocusListener.struct │ │ │ │ │ │ │ └── MutingInfo.struct │ │ │ │ │ │ └── occupant_awareness │ │ │ │ │ │ │ ├── DriverMonitoringDetection.struct │ │ │ │ │ │ │ ├── GazeDetection.struct │ │ │ │ │ │ │ ├── IOccupantAwareness.struct │ │ │ │ │ │ │ ├── IOccupantAwarenessClientCallback.struct │ │ │ │ │ │ │ ├── OccupantDetection.struct │ │ │ │ │ │ │ ├── OccupantDetections.struct │ │ │ │ │ │ │ └── PresenceDetection.struct │ │ │ │ │ ├── biometrics │ │ │ │ │ │ ├── BiometricSourceType.struct │ │ │ │ │ │ ├── ComponentInfoInternal.struct │ │ │ │ │ │ ├── IAuthService.struct │ │ │ │ │ │ ├── IBiometricAuthenticator.struct │ │ │ │ │ │ ├── IBiometricEnabledOnKeyguardCallback.struct │ │ │ │ │ │ ├── IBiometricSensorReceiver.struct │ │ │ │ │ │ ├── IBiometricService.struct │ │ │ │ │ │ ├── IBiometricServiceLockoutResetCallback.struct │ │ │ │ │ │ ├── IBiometricServiceReceiver.struct │ │ │ │ │ │ ├── IBiometricSysuiReceiver.struct │ │ │ │ │ │ ├── IInvalidationCallback.struct │ │ │ │ │ │ ├── ITestSession.struct │ │ │ │ │ │ ├── ITestSessionCallback.struct │ │ │ │ │ │ ├── PromptInfo.struct │ │ │ │ │ │ ├── SensorPropertiesInternal.struct │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── CommonProps.struct │ │ │ │ │ │ │ ├── ComponentInfo.struct │ │ │ │ │ │ │ └── ICancellationSignal.struct │ │ │ │ │ │ ├── face │ │ │ │ │ │ │ ├── AuthenticationFrame.struct │ │ │ │ │ │ │ ├── BaseFrame.struct │ │ │ │ │ │ │ ├── Cell.struct │ │ │ │ │ │ │ ├── EnrollmentFrame.struct │ │ │ │ │ │ │ ├── EnrollmentStageConfig.struct │ │ │ │ │ │ │ ├── IFace.struct │ │ │ │ │ │ │ ├── ISession.struct │ │ │ │ │ │ │ ├── ISessionCallback.struct │ │ │ │ │ │ │ └── SensorProps.struct │ │ │ │ │ │ └── fingerprint │ │ │ │ │ │ │ ├── IFingerprint.struct │ │ │ │ │ │ │ ├── ISession.struct │ │ │ │ │ │ │ ├── ISessionCallback.struct │ │ │ │ │ │ │ ├── SensorLocation.struct │ │ │ │ │ │ │ └── SensorProps.struct │ │ │ │ │ ├── camera2 │ │ │ │ │ │ ├── CaptureRequest.struct │ │ │ │ │ │ ├── ICameraDeviceCallbacks.struct │ │ │ │ │ │ ├── ICameraDeviceUser.struct │ │ │ │ │ │ ├── ICameraInjectionCallback.struct │ │ │ │ │ │ ├── ICameraInjectionSession.struct │ │ │ │ │ │ ├── ICameraOfflineSession.struct │ │ │ │ │ │ ├── extension │ │ │ │ │ │ │ ├── IAdvancedExtenderImpl.struct │ │ │ │ │ │ │ ├── ICameraExtensionsProxyService.struct │ │ │ │ │ │ │ ├── ICaptureCallback.struct │ │ │ │ │ │ │ ├── ICaptureProcessorImpl.struct │ │ │ │ │ │ │ ├── IImageCaptureExtenderImpl.struct │ │ │ │ │ │ │ ├── IImageProcessorImpl.struct │ │ │ │ │ │ │ ├── IInitializeSessionCallback.struct │ │ │ │ │ │ │ ├── IPreviewExtenderImpl.struct │ │ │ │ │ │ │ ├── IPreviewImageProcessorImpl.struct │ │ │ │ │ │ │ ├── IRequestCallback.struct │ │ │ │ │ │ │ ├── IRequestProcessorImpl.struct │ │ │ │ │ │ │ ├── IRequestUpdateProcessorImpl.struct │ │ │ │ │ │ │ └── ISessionProcessorImpl.struct │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ ├── CameraMetadataNative.struct │ │ │ │ │ │ │ ├── CaptureResultExtras.struct │ │ │ │ │ │ │ └── PhysicalCaptureResultInfo.struct │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── OutputConfiguration.struct │ │ │ │ │ │ │ ├── SessionConfiguration.struct │ │ │ │ │ │ │ ├── VendorTagDescriptor.struct │ │ │ │ │ │ │ └── VendorTagDescriptorCache.struct │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── CameraIdAndSessionConfiguration.struct │ │ │ │ │ │ │ ├── ConcurrentCameraIdCombination.struct │ │ │ │ │ │ │ └── SubmitInfo.struct │ │ │ │ │ ├── common │ │ │ │ │ │ ├── Ashmem.struct │ │ │ │ │ │ ├── MappableFile.struct │ │ │ │ │ │ ├── NativeHandle.struct │ │ │ │ │ │ └── fmq │ │ │ │ │ │ │ └── GrantorDescriptor.struct │ │ │ │ │ ├── devicestate │ │ │ │ │ │ ├── DeviceStateInfo.struct │ │ │ │ │ │ ├── IDeviceStateManager.struct │ │ │ │ │ │ └── IDeviceStateManagerCallback.struct │ │ │ │ │ ├── display │ │ │ │ │ │ ├── BrightnessConfiguration.struct │ │ │ │ │ │ ├── BrightnessCorrection.struct │ │ │ │ │ │ ├── BrightnessInfo.struct │ │ │ │ │ │ ├── Curve.struct │ │ │ │ │ │ ├── IColorDisplayManager.struct │ │ │ │ │ │ ├── IDeviceProductInfoConstants.struct │ │ │ │ │ │ ├── IDisplayManager.struct │ │ │ │ │ │ ├── IDisplayManagerCallback.struct │ │ │ │ │ │ ├── IVirtualDisplayCallback.struct │ │ │ │ │ │ ├── Time.struct │ │ │ │ │ │ ├── VirtualDisplayConfig.struct │ │ │ │ │ │ ├── WifiDisplay.struct │ │ │ │ │ │ ├── WifiDisplaySessionInfo.struct │ │ │ │ │ │ └── WifiDisplayStatus.struct │ │ │ │ │ ├── face │ │ │ │ │ │ ├── Face.struct │ │ │ │ │ │ ├── FaceAuthenticationFrame.struct │ │ │ │ │ │ ├── FaceEnrollFrame.struct │ │ │ │ │ │ ├── FaceSensorPropertiesInternal.struct │ │ │ │ │ │ ├── IFaceService.struct │ │ │ │ │ │ └── IFaceServiceReceiver.struct │ │ │ │ │ ├── fingerprint │ │ │ │ │ │ ├── Fingerprint.struct │ │ │ │ │ │ ├── IFingerprintAuthenticatorsRegisteredCallback.struct │ │ │ │ │ │ ├── IFingerprintClientActiveCallback.struct │ │ │ │ │ │ ├── IFingerprintService.struct │ │ │ │ │ │ ├── IFingerprintServiceReceiver.struct │ │ │ │ │ │ ├── IFingerprintStateListener.struct │ │ │ │ │ │ ├── ISidefpsController.struct │ │ │ │ │ │ ├── IUdfpsHbmListener.struct │ │ │ │ │ │ ├── IUdfpsOverlayController.struct │ │ │ │ │ │ └── IUdfpsOverlayControllerCallback.struct │ │ │ │ │ ├── gnss │ │ │ │ │ │ ├── BlocklistedSource.struct │ │ │ │ │ │ ├── CorrelationVector.struct │ │ │ │ │ │ ├── ElapsedRealtime.struct │ │ │ │ │ │ ├── GnssClock.struct │ │ │ │ │ │ ├── GnssData.struct │ │ │ │ │ │ ├── GnssMeasurement.struct │ │ │ │ │ │ ├── GnssPowerStats.struct │ │ │ │ │ │ ├── GnssSignalType.struct │ │ │ │ │ │ ├── IGnss.struct │ │ │ │ │ │ ├── IGnssCallback.struct │ │ │ │ │ │ ├── IGnssConfiguration.struct │ │ │ │ │ │ ├── IGnssMeasurementCallback.struct │ │ │ │ │ │ ├── IGnssMeasurementInterface.struct │ │ │ │ │ │ ├── IGnssPowerIndication.struct │ │ │ │ │ │ ├── IGnssPowerIndicationCallback.struct │ │ │ │ │ │ ├── IGnssPsds.struct │ │ │ │ │ │ ├── IGnssPsdsCallback.struct │ │ │ │ │ │ ├── SatelliteClockInfo.struct │ │ │ │ │ │ ├── SatellitePositionEcef.struct │ │ │ │ │ │ ├── SatellitePvt.struct │ │ │ │ │ │ └── SatelliteVelocityEcef.struct │ │ │ │ │ ├── graphics │ │ │ │ │ │ └── common │ │ │ │ │ │ │ ├── Cta861_3.struct │ │ │ │ │ │ │ ├── ExtendableType.struct │ │ │ │ │ │ │ ├── HardwareBuffer.struct │ │ │ │ │ │ │ ├── HardwareBufferDescription.struct │ │ │ │ │ │ │ ├── PlaneLayout.struct │ │ │ │ │ │ │ ├── PlaneLayoutComponent.struct │ │ │ │ │ │ │ ├── Rect.struct │ │ │ │ │ │ │ ├── Smpte2086.struct │ │ │ │ │ │ │ └── XyColor.struct │ │ │ │ │ ├── hdmi │ │ │ │ │ │ ├── HdmiDeviceInfo.struct │ │ │ │ │ │ ├── HdmiHotplugEvent.struct │ │ │ │ │ │ ├── HdmiPortInfo.struct │ │ │ │ │ │ ├── IHdmiCecSettingChangeListener.struct │ │ │ │ │ │ ├── IHdmiCecVolumeControlFeatureListener.struct │ │ │ │ │ │ ├── IHdmiControlCallback.struct │ │ │ │ │ │ ├── IHdmiControlService.struct │ │ │ │ │ │ ├── IHdmiControlStatusChangeListener.struct │ │ │ │ │ │ ├── IHdmiDeviceEventListener.struct │ │ │ │ │ │ ├── IHdmiHotplugEventListener.struct │ │ │ │ │ │ ├── IHdmiInputChangeListener.struct │ │ │ │ │ │ ├── IHdmiMhlVendorCommandListener.struct │ │ │ │ │ │ ├── IHdmiRecordListener.struct │ │ │ │ │ │ ├── IHdmiSystemAudioModeChangeListener.struct │ │ │ │ │ │ └── IHdmiVendorCommandListener.struct │ │ │ │ │ ├── health │ │ │ │ │ │ └── storage │ │ │ │ │ │ │ ├── IGarbageCollectCallback.struct │ │ │ │ │ │ │ └── IStorage.struct │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── Certificate.struct │ │ │ │ │ │ ├── HardwareInformation.struct │ │ │ │ │ │ ├── IIdentityCredential.struct │ │ │ │ │ │ ├── IIdentityCredentialStore.struct │ │ │ │ │ │ ├── IWritableIdentityCredential.struct │ │ │ │ │ │ ├── RequestDataItem.struct │ │ │ │ │ │ ├── RequestNamespace.struct │ │ │ │ │ │ └── SecureAccessControlProfile.struct │ │ │ │ │ ├── input │ │ │ │ │ │ ├── IInputDevicesChangedListener.struct │ │ │ │ │ │ ├── IInputManager.struct │ │ │ │ │ │ ├── IInputSensorEventListener.struct │ │ │ │ │ │ ├── ITabletModeChangedListener.struct │ │ │ │ │ │ ├── InputDeviceIdentifier.struct │ │ │ │ │ │ ├── InputSensorInfo.struct │ │ │ │ │ │ ├── KeyboardLayout.struct │ │ │ │ │ │ └── TouchCalibration.struct │ │ │ │ │ ├── iris │ │ │ │ │ │ └── IIrisService.struct │ │ │ │ │ ├── keymaster │ │ │ │ │ │ ├── HardwareAuthToken.struct │ │ │ │ │ │ ├── Timestamp.struct │ │ │ │ │ │ └── VerificationToken.struct │ │ │ │ │ ├── light │ │ │ │ │ │ ├── HwLight.struct │ │ │ │ │ │ ├── HwLightState.struct │ │ │ │ │ │ └── ILights.struct │ │ │ │ │ ├── lights │ │ │ │ │ │ ├── ILightsManager.struct │ │ │ │ │ │ ├── Light.struct │ │ │ │ │ │ └── LightState.struct │ │ │ │ │ ├── location │ │ │ │ │ │ ├── ActivityChangedEvent.struct │ │ │ │ │ │ ├── ActivityRecognitionEvent.struct │ │ │ │ │ │ ├── ContextHubInfo.struct │ │ │ │ │ │ ├── ContextHubMessage.struct │ │ │ │ │ │ ├── GeofenceHardwareMonitorEvent.struct │ │ │ │ │ │ ├── GeofenceHardwareRequestParcelable.struct │ │ │ │ │ │ ├── IActivityRecognitionHardware.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareClient.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareSink.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareWatcher.struct │ │ │ │ │ │ ├── IContextHubCallback.struct │ │ │ │ │ │ ├── IContextHubClient.struct │ │ │ │ │ │ ├── IContextHubClientCallback.struct │ │ │ │ │ │ ├── IContextHubService.struct │ │ │ │ │ │ ├── IContextHubTransactionCallback.struct │ │ │ │ │ │ ├── IGeofenceHardware.struct │ │ │ │ │ │ ├── IGeofenceHardwareCallback.struct │ │ │ │ │ │ ├── IGeofenceHardwareMonitorCallback.struct │ │ │ │ │ │ ├── MemoryRegion.struct │ │ │ │ │ │ ├── NanoApp.struct │ │ │ │ │ │ ├── NanoAppBinary.struct │ │ │ │ │ │ ├── NanoAppFilter.struct │ │ │ │ │ │ ├── NanoAppInstanceInfo.struct │ │ │ │ │ │ ├── NanoAppMessage.struct │ │ │ │ │ │ └── NanoAppState.struct │ │ │ │ │ ├── memtrack │ │ │ │ │ │ ├── DeviceInfo.struct │ │ │ │ │ │ ├── IMemtrack.struct │ │ │ │ │ │ └── MemtrackRecord.struct │ │ │ │ │ ├── neuralnetworks │ │ │ │ │ │ ├── BufferDesc.struct │ │ │ │ │ │ ├── BufferRole.struct │ │ │ │ │ │ ├── Capabilities.struct │ │ │ │ │ │ ├── DataLocation.struct │ │ │ │ │ │ ├── DeviceBuffer.struct │ │ │ │ │ │ ├── ExecutionResult.struct │ │ │ │ │ │ ├── Extension.struct │ │ │ │ │ │ ├── ExtensionNameAndPrefix.struct │ │ │ │ │ │ ├── ExtensionOperandTypeInformation.struct │ │ │ │ │ │ ├── FencedExecutionResult.struct │ │ │ │ │ │ ├── IBuffer.struct │ │ │ │ │ │ ├── IBurst.struct │ │ │ │ │ │ ├── IDevice.struct │ │ │ │ │ │ ├── IFencedExecutionCallback.struct │ │ │ │ │ │ ├── IPreparedModel.struct │ │ │ │ │ │ ├── IPreparedModelCallback.struct │ │ │ │ │ │ ├── IPreparedModelParcel.struct │ │ │ │ │ │ ├── Model.struct │ │ │ │ │ │ ├── NumberOfCacheFiles.struct │ │ │ │ │ │ ├── Operand.struct │ │ │ │ │ │ ├── OperandPerformance.struct │ │ │ │ │ │ ├── Operation.struct │ │ │ │ │ │ ├── OutputShape.struct │ │ │ │ │ │ ├── PerformanceInfo.struct │ │ │ │ │ │ ├── Request.struct │ │ │ │ │ │ ├── RequestArgument.struct │ │ │ │ │ │ ├── Subgraph.struct │ │ │ │ │ │ ├── SymmPerChannelQuantParams.struct │ │ │ │ │ │ └── Timing.struct │ │ │ │ │ ├── oemlock │ │ │ │ │ │ └── IOemLock.struct │ │ │ │ │ ├── power │ │ │ │ │ │ ├── IPower.struct │ │ │ │ │ │ ├── IPowerHintSession.struct │ │ │ │ │ │ ├── WorkDuration.struct │ │ │ │ │ │ └── stats │ │ │ │ │ │ │ ├── Channel.struct │ │ │ │ │ │ │ ├── EnergyConsumer.struct │ │ │ │ │ │ │ ├── EnergyConsumerAttribution.struct │ │ │ │ │ │ │ ├── EnergyConsumerResult.struct │ │ │ │ │ │ │ ├── EnergyMeasurement.struct │ │ │ │ │ │ │ ├── IPowerStats.struct │ │ │ │ │ │ │ ├── PowerEntity.struct │ │ │ │ │ │ │ ├── State.struct │ │ │ │ │ │ │ ├── StateResidency.struct │ │ │ │ │ │ │ └── StateResidencyResult.struct │ │ │ │ │ ├── radio │ │ │ │ │ │ ├── Announcement.struct │ │ │ │ │ │ ├── IAnnouncementListener.struct │ │ │ │ │ │ ├── ICloseHandle.struct │ │ │ │ │ │ ├── IRadioService.struct │ │ │ │ │ │ ├── ITuner.struct │ │ │ │ │ │ ├── ITunerCallback.struct │ │ │ │ │ │ ├── ProgramSelector$Identifier.struct │ │ │ │ │ │ └── ProgramSelector.struct │ │ │ │ │ ├── rebootescrow │ │ │ │ │ │ └── IRebootEscrow.struct │ │ │ │ │ ├── security │ │ │ │ │ │ ├── keymint │ │ │ │ │ │ │ ├── AttestationKey.struct │ │ │ │ │ │ │ ├── BeginResult.struct │ │ │ │ │ │ │ ├── Certificate.struct │ │ │ │ │ │ │ ├── DeviceInfo.struct │ │ │ │ │ │ │ ├── HardwareAuthToken.struct │ │ │ │ │ │ │ ├── IKeyMintDevice.struct │ │ │ │ │ │ │ ├── IKeyMintOperation.struct │ │ │ │ │ │ │ ├── IRemotelyProvisionedComponent.struct │ │ │ │ │ │ │ ├── KeyCharacteristics.struct │ │ │ │ │ │ │ ├── KeyCreationResult.struct │ │ │ │ │ │ │ ├── KeyMintHardwareInfo.struct │ │ │ │ │ │ │ ├── KeyParameter.struct │ │ │ │ │ │ │ ├── MacedPublicKey.struct │ │ │ │ │ │ │ ├── ProtectedData.struct │ │ │ │ │ │ │ └── RpcHardwareInfo.struct │ │ │ │ │ │ ├── secureclock │ │ │ │ │ │ │ ├── ISecureClock.struct │ │ │ │ │ │ │ ├── TimeStampToken.struct │ │ │ │ │ │ │ └── Timestamp.struct │ │ │ │ │ │ └── sharedsecret │ │ │ │ │ │ │ ├── ISharedSecret.struct │ │ │ │ │ │ │ └── SharedSecretParameters.struct │ │ │ │ │ ├── soundtrigger │ │ │ │ │ │ ├── IRecognitionStatusCallback.struct │ │ │ │ │ │ └── KeyphraseMetadata.struct │ │ │ │ │ ├── tests │ │ │ │ │ │ └── extension │ │ │ │ │ │ │ └── vibrator │ │ │ │ │ │ │ └── ICustomVibrator.struct │ │ │ │ │ ├── usb │ │ │ │ │ │ ├── IUsbManager.struct │ │ │ │ │ │ ├── IUsbSerialReader.struct │ │ │ │ │ │ ├── ParcelableUsbPort.struct │ │ │ │ │ │ ├── UsbAccessory.struct │ │ │ │ │ │ ├── UsbDevice.struct │ │ │ │ │ │ └── UsbPortStatus.struct │ │ │ │ │ ├── vibrator │ │ │ │ │ │ ├── ActivePwle.struct │ │ │ │ │ │ ├── BrakingPwle.struct │ │ │ │ │ │ ├── CompositeEffect.struct │ │ │ │ │ │ ├── IVibrator.struct │ │ │ │ │ │ ├── IVibratorCallback.struct │ │ │ │ │ │ └── IVibratorManager.struct │ │ │ │ │ └── weaver │ │ │ │ │ │ ├── IWeaver.struct │ │ │ │ │ │ ├── WeaverConfig.struct │ │ │ │ │ │ └── WeaverReadResponse.struct │ │ │ │ ├── location │ │ │ │ │ ├── Address.struct │ │ │ │ │ ├── Country.struct │ │ │ │ │ ├── Criteria.struct │ │ │ │ │ ├── GeocoderParams.struct │ │ │ │ │ ├── Geofence.struct │ │ │ │ │ ├── GnssAntennaInfo$PhaseCenterOffset.struct │ │ │ │ │ ├── GnssAntennaInfo$SphericalCorrections.struct │ │ │ │ │ ├── GnssAntennaInfo.struct │ │ │ │ │ ├── GnssCapabilities.struct │ │ │ │ │ ├── GnssMeasurement.struct │ │ │ │ │ ├── GnssMeasurementCorrections.struct │ │ │ │ │ ├── GnssMeasurementRequest.struct │ │ │ │ │ ├── GnssMeasurementsEvent.struct │ │ │ │ │ ├── GnssNavigationMessage.struct │ │ │ │ │ ├── GnssStatus.struct │ │ │ │ │ ├── ICountryDetector.struct │ │ │ │ │ ├── ICountryListener.struct │ │ │ │ │ ├── IFusedGeofenceHardware.struct │ │ │ │ │ ├── IGeocodeListener.struct │ │ │ │ │ ├── IGeocodeProvider.struct │ │ │ │ │ ├── IGeofenceProvider.struct │ │ │ │ │ ├── IGnssAntennaInfoListener.struct │ │ │ │ │ ├── IGnssMeasurementsListener.struct │ │ │ │ │ ├── IGnssNavigationMessageListener.struct │ │ │ │ │ ├── IGnssNmeaListener.struct │ │ │ │ │ ├── IGnssStatusListener.struct │ │ │ │ │ ├── IGpsGeofenceHardware.struct │ │ │ │ │ ├── ILocationCallback.struct │ │ │ │ │ ├── ILocationListener.struct │ │ │ │ │ ├── ILocationManager.struct │ │ │ │ │ ├── INetInitiatedListener.struct │ │ │ │ │ ├── LastLocationRequest.struct │ │ │ │ │ ├── Location.struct │ │ │ │ │ ├── LocationRequest.struct │ │ │ │ │ ├── LocationTime.struct │ │ │ │ │ └── provider │ │ │ │ │ │ ├── ILocationProvider.struct │ │ │ │ │ │ ├── ILocationProviderManager.struct │ │ │ │ │ │ ├── IProviderRequestListener.struct │ │ │ │ │ │ ├── ProviderProperties.struct │ │ │ │ │ │ └── ProviderRequest.struct │ │ │ │ ├── lpdump │ │ │ │ │ └── ILpdump.struct │ │ │ │ ├── media │ │ │ │ │ ├── AudioAttributes.struct │ │ │ │ │ ├── AudioAttributesEx.struct │ │ │ │ │ ├── AudioAttributesInternal.struct │ │ │ │ │ ├── AudioClient.struct │ │ │ │ │ ├── AudioConfig.struct │ │ │ │ │ ├── AudioConfigBase.struct │ │ │ │ │ ├── AudioDevice.struct │ │ │ │ │ ├── AudioDeviceAttributes.struct │ │ │ │ │ ├── AudioFocusInfo.struct │ │ │ │ │ ├── AudioFormat.struct │ │ │ │ │ ├── AudioGain.struct │ │ │ │ │ ├── AudioGainConfig.struct │ │ │ │ │ ├── AudioIoDescriptor.struct │ │ │ │ │ ├── AudioMix.struct │ │ │ │ │ ├── AudioMixMatchCriterion.struct │ │ │ │ │ ├── AudioOffloadInfo.struct │ │ │ │ │ ├── AudioPatch.struct │ │ │ │ │ ├── AudioPlaybackConfiguration.struct │ │ │ │ │ ├── AudioPlaybackRate.struct │ │ │ │ │ ├── AudioPort.struct │ │ │ │ │ ├── AudioPortConfig.struct │ │ │ │ │ ├── AudioPortConfigDeviceExt.struct │ │ │ │ │ ├── AudioPortConfigMixExt.struct │ │ │ │ │ ├── AudioPortConfigSessionExt.struct │ │ │ │ │ ├── AudioPortDeviceExt.struct │ │ │ │ │ ├── AudioPortMixExt.struct │ │ │ │ │ ├── AudioPortSessionExt.struct │ │ │ │ │ ├── AudioProductStrategy.struct │ │ │ │ │ ├── AudioProfile.struct │ │ │ │ │ ├── AudioRecordingConfiguration.struct │ │ │ │ │ ├── AudioRoutesInfo.struct │ │ │ │ │ ├── AudioTimestampInternal.struct │ │ │ │ │ ├── AudioUuid.struct │ │ │ │ │ ├── AudioVibratorInfo.struct │ │ │ │ │ ├── AudioVolumeGroup.struct │ │ │ │ │ ├── Controller2Link.struct │ │ │ │ │ ├── CreateEffectRequest.struct │ │ │ │ │ ├── CreateEffectResponse.struct │ │ │ │ │ ├── CreateRecordRequest.struct │ │ │ │ │ ├── CreateRecordResponse.struct │ │ │ │ │ ├── CreateTrackRequest.struct │ │ │ │ │ ├── CreateTrackResponse.struct │ │ │ │ │ ├── EffectDescriptor.struct │ │ │ │ │ ├── ExtraAudioDescriptor.struct │ │ │ │ │ ├── GetInputForAttrResponse.struct │ │ │ │ │ ├── GetOutputForAttrResponse.struct │ │ │ │ │ ├── GetSpatializerResponse.struct │ │ │ │ │ ├── IAudioFlingerClient.struct │ │ │ │ │ ├── IAudioFocusDispatcher.struct │ │ │ │ │ ├── IAudioModeDispatcher.struct │ │ │ │ │ ├── IAudioPolicyServiceClient.struct │ │ │ │ │ ├── IAudioRecord.struct │ │ │ │ │ ├── IAudioRoutesObserver.struct │ │ │ │ │ ├── IAudioServerStateDispatcher.struct │ │ │ │ │ ├── IAudioService.struct │ │ │ │ │ ├── IAudioTrack.struct │ │ │ │ │ ├── IAudioTrackCallback.struct │ │ │ │ │ ├── ICapturePresetDevicesRoleDispatcher.struct │ │ │ │ │ ├── ICaptureStateListener.struct │ │ │ │ │ ├── ICommunicationDeviceDispatcher.struct │ │ │ │ │ ├── IEffect.struct │ │ │ │ │ ├── IEffectClient.struct │ │ │ │ │ ├── IMediaCommunicationService.struct │ │ │ │ │ ├── IMediaCommunicationServiceCallback.struct │ │ │ │ │ ├── IMediaController2.struct │ │ │ │ │ ├── IMediaHTTPConnection.struct │ │ │ │ │ ├── IMediaHTTPService.struct │ │ │ │ │ ├── IMediaMetricsService.struct │ │ │ │ │ ├── IMediaResourceMonitor.struct │ │ │ │ │ ├── IMediaRoute2ProviderService.struct │ │ │ │ │ ├── IMediaRoute2ProviderServiceCallback.struct │ │ │ │ │ ├── IMediaRouter2.struct │ │ │ │ │ ├── IMediaRouter2Manager.struct │ │ │ │ │ ├── IMediaRouterClient.struct │ │ │ │ │ ├── IMediaRouterService.struct │ │ │ │ │ ├── IMediaScannerListener.struct │ │ │ │ │ ├── IMediaScannerService.struct │ │ │ │ │ ├── IMediaSession2.struct │ │ │ │ │ ├── IMediaSession2Service.struct │ │ │ │ │ ├── IMediaTranscodingService.struct │ │ │ │ │ ├── INativeSpatializerCallback.struct │ │ │ │ │ ├── IPlaybackConfigDispatcher.struct │ │ │ │ │ ├── IPlayer.struct │ │ │ │ │ ├── IRecordingConfigDispatcher.struct │ │ │ │ │ ├── IRemoteDisplayCallback.struct │ │ │ │ │ ├── IRemoteDisplayProvider.struct │ │ │ │ │ ├── IRemoteSessionCallback.struct │ │ │ │ │ ├── IRemoteVolumeObserver.struct │ │ │ │ │ ├── IResourceManagerClient.struct │ │ │ │ │ ├── IResourceManagerService.struct │ │ │ │ │ ├── IResourceObserver.struct │ │ │ │ │ ├── IResourceObserverService.struct │ │ │ │ │ ├── IRingtonePlayer.struct │ │ │ │ │ ├── ISpatializer.struct │ │ │ │ │ ├── ISpatializerCallback.struct │ │ │ │ │ ├── ISpatializerHeadToSoundStagePoseCallback.struct │ │ │ │ │ ├── ISpatializerHeadTrackingCallback.struct │ │ │ │ │ ├── ISpatializerHeadTrackingModeCallback.struct │ │ │ │ │ ├── ISpatializerOutputCallback.struct │ │ │ │ │ ├── IStrategyPreferredDevicesDispatcher.struct │ │ │ │ │ ├── ITranscodingClient.struct │ │ │ │ │ ├── ITranscodingClientCallback.struct │ │ │ │ │ ├── IVolumeController.struct │ │ │ │ │ ├── Int.struct │ │ │ │ │ ├── InterpolatorConfig.struct │ │ │ │ │ ├── MediaMetadata.struct │ │ │ │ │ ├── MediaObservableFilter.struct │ │ │ │ │ ├── MediaObservableParcel.struct │ │ │ │ │ ├── MediaResourceParcel.struct │ │ │ │ │ ├── MediaResourcePolicyParcel.struct │ │ │ │ │ ├── MediaRoute2Info.struct │ │ │ │ │ ├── MediaRoute2ProviderInfo.struct │ │ │ │ │ ├── MediaRouterClientState$RouteInfo.struct │ │ │ │ │ ├── MediaRouterClientState.struct │ │ │ │ │ ├── MicrophoneInfoData.struct │ │ │ │ │ ├── OpenInputRequest.struct │ │ │ │ │ ├── OpenInputResponse.struct │ │ │ │ │ ├── OpenOutputRequest.struct │ │ │ │ │ ├── OpenOutputResponse.struct │ │ │ │ │ ├── PlaybackParams.struct │ │ │ │ │ ├── Rating.struct │ │ │ │ │ ├── RecordClientInfo.struct │ │ │ │ │ ├── RemoteDisplayState$RemoteDisplayInfo.struct │ │ │ │ │ ├── RemoteDisplayState.struct │ │ │ │ │ ├── RenderPosition.struct │ │ │ │ │ ├── RouteDiscoveryPreference.struct │ │ │ │ │ ├── RoutingSessionInfo.struct │ │ │ │ │ ├── Session2Command.struct │ │ │ │ │ ├── Session2Token.struct │ │ │ │ │ ├── SharedFileRegion.struct │ │ │ │ │ ├── SoundTriggerSession.struct │ │ │ │ │ ├── TrackSecondaryOutputInfo.struct │ │ │ │ │ ├── TranscodingRequestParcel.struct │ │ │ │ │ ├── TranscodingResultParcel.struct │ │ │ │ │ ├── TranscodingSessionParcel.struct │ │ │ │ │ ├── TranscodingSessionStats.struct │ │ │ │ │ ├── TranscodingTestConfig.struct │ │ │ │ │ ├── TranscodingVideoTrackFormat.struct │ │ │ │ │ ├── VolumePolicy.struct │ │ │ │ │ ├── VolumeShaperConfiguration.struct │ │ │ │ │ ├── VolumeShaperOperation.struct │ │ │ │ │ ├── VolumeShaperState.struct │ │ │ │ │ ├── audio │ │ │ │ │ │ └── common │ │ │ │ │ │ │ ├── AudioConfig.struct │ │ │ │ │ │ │ └── AudioOffloadInfo.struct │ │ │ │ │ ├── audiopolicy │ │ │ │ │ │ ├── AudioPolicyConfig.struct │ │ │ │ │ │ ├── AudioProductStrategy$AudioAttributesGroup.struct │ │ │ │ │ │ ├── AudioProductStrategy.struct │ │ │ │ │ │ ├── AudioVolumeGroup.struct │ │ │ │ │ │ └── IAudioPolicyCallback.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ ├── eco │ │ │ │ │ │ ├── IECOService.struct │ │ │ │ │ │ ├── IECOServiceInfoListener.struct │ │ │ │ │ │ ├── IECOServiceStatsProvider.struct │ │ │ │ │ │ └── IECOSession.struct │ │ │ │ │ ├── metrics │ │ │ │ │ │ ├── IMediaMetricsManager.struct │ │ │ │ │ │ ├── NetworkEvent.struct │ │ │ │ │ │ ├── PlaybackErrorEvent.struct │ │ │ │ │ │ ├── PlaybackMetrics.struct │ │ │ │ │ │ ├── PlaybackStateEvent.struct │ │ │ │ │ │ └── TrackChangeEvent.struct │ │ │ │ │ ├── midi │ │ │ │ │ │ ├── IBluetoothMidiService.struct │ │ │ │ │ │ ├── IMidiDeviceListener.struct │ │ │ │ │ │ ├── IMidiDeviceOpenCallback.struct │ │ │ │ │ │ ├── IMidiDeviceServer.struct │ │ │ │ │ │ ├── IMidiManager.struct │ │ │ │ │ │ ├── MidiDeviceInfo.struct │ │ │ │ │ │ └── MidiDeviceStatus.struct │ │ │ │ │ ├── musicrecognition │ │ │ │ │ │ ├── IMusicRecognitionAttributionTagCallback.struct │ │ │ │ │ │ ├── IMusicRecognitionManager.struct │ │ │ │ │ │ ├── IMusicRecognitionManagerCallback.struct │ │ │ │ │ │ ├── IMusicRecognitionService.struct │ │ │ │ │ │ ├── IMusicRecognitionServiceCallback.struct │ │ │ │ │ │ └── RecognitionRequest.struct │ │ │ │ │ ├── permission │ │ │ │ │ │ └── Identity.struct │ │ │ │ │ ├── projection │ │ │ │ │ │ ├── IMediaProjection.struct │ │ │ │ │ │ ├── IMediaProjectionCallback.struct │ │ │ │ │ │ ├── IMediaProjectionManager.struct │ │ │ │ │ │ ├── IMediaProjectionWatcherCallback.struct │ │ │ │ │ │ └── MediaProjectionInfo.struct │ │ │ │ │ ├── session │ │ │ │ │ │ ├── IActiveSessionsListener.struct │ │ │ │ │ │ ├── IOnMediaKeyEventDispatchedListener.struct │ │ │ │ │ │ ├── IOnMediaKeyEventSessionChangedListener.struct │ │ │ │ │ │ ├── IOnMediaKeyListener.struct │ │ │ │ │ │ ├── IOnVolumeKeyLongPressListener.struct │ │ │ │ │ │ ├── ISession.struct │ │ │ │ │ │ ├── ISession2TokensListener.struct │ │ │ │ │ │ ├── ISessionCallback.struct │ │ │ │ │ │ ├── ISessionController.struct │ │ │ │ │ │ ├── ISessionControllerCallback.struct │ │ │ │ │ │ ├── ISessionManager.struct │ │ │ │ │ │ └── PlaybackState.struct │ │ │ │ │ ├── soundtrigger │ │ │ │ │ │ ├── ISoundTriggerDetectionService.struct │ │ │ │ │ │ └── ISoundTriggerDetectionServiceClient.struct │ │ │ │ │ ├── soundtrigger_middleware │ │ │ │ │ │ ├── ConfidenceLevel.struct │ │ │ │ │ │ ├── ISoundTriggerCallback.struct │ │ │ │ │ │ ├── ISoundTriggerMiddlewareService.struct │ │ │ │ │ │ ├── ISoundTriggerModule.struct │ │ │ │ │ │ ├── ModelParameterRange.struct │ │ │ │ │ │ ├── Phrase.struct │ │ │ │ │ │ ├── PhraseRecognitionEvent.struct │ │ │ │ │ │ ├── PhraseRecognitionExtra.struct │ │ │ │ │ │ ├── PhraseSoundModel.struct │ │ │ │ │ │ ├── RecognitionConfig.struct │ │ │ │ │ │ ├── RecognitionEvent.struct │ │ │ │ │ │ ├── SoundModel.struct │ │ │ │ │ │ ├── SoundTriggerModuleDescriptor.struct │ │ │ │ │ │ └── SoundTriggerModuleProperties.struct │ │ │ │ │ └── tv │ │ │ │ │ │ ├── DvbDeviceInfo.struct │ │ │ │ │ │ ├── ITvInputClient.struct │ │ │ │ │ │ ├── ITvInputHardware.struct │ │ │ │ │ │ ├── ITvInputHardwareCallback.struct │ │ │ │ │ │ ├── ITvInputManager.struct │ │ │ │ │ │ ├── ITvInputManagerCallback.struct │ │ │ │ │ │ ├── ITvInputService.struct │ │ │ │ │ │ ├── ITvInputServiceCallback.struct │ │ │ │ │ │ ├── ITvInputSession.struct │ │ │ │ │ │ ├── ITvInputSessionCallback.struct │ │ │ │ │ │ ├── ITvRemoteProvider.struct │ │ │ │ │ │ ├── ITvRemoteServiceInput.struct │ │ │ │ │ │ ├── TunedInfo.struct │ │ │ │ │ │ ├── TvContentRatingSystemInfo.struct │ │ │ │ │ │ ├── TvInputHardwareInfo.struct │ │ │ │ │ │ ├── TvInputInfo.struct │ │ │ │ │ │ ├── TvStreamConfig.struct │ │ │ │ │ │ ├── TvTrackInfo.struct │ │ │ │ │ │ ├── tuner │ │ │ │ │ │ ├── ITunerDemux.struct │ │ │ │ │ │ ├── ITunerDescrambler.struct │ │ │ │ │ │ ├── ITunerDvrCallback.struct │ │ │ │ │ │ ├── ITunerFilterCallback.struct │ │ │ │ │ │ ├── ITunerFrontend.struct │ │ │ │ │ │ ├── ITunerFrontendCallback.struct │ │ │ │ │ │ ├── ITunerLnb.struct │ │ │ │ │ │ ├── ITunerLnbCallback.struct │ │ │ │ │ │ ├── ITunerService.struct │ │ │ │ │ │ ├── ITunerTimeFilter.struct │ │ │ │ │ │ ├── TunerAudioExtraMetaData.struct │ │ │ │ │ │ ├── TunerDemuxCapabilities.struct │ │ │ │ │ │ ├── TunerDemuxIpAddress.struct │ │ │ │ │ │ ├── TunerDemuxIpAddressSettings.struct │ │ │ │ │ │ ├── TunerDvrSettings.struct │ │ │ │ │ │ ├── TunerFilterAlpConfiguration.struct │ │ │ │ │ │ ├── TunerFilterAvSettings.struct │ │ │ │ │ │ ├── TunerFilterDownloadEvent.struct │ │ │ │ │ │ ├── TunerFilterDownloadSettings.struct │ │ │ │ │ │ ├── TunerFilterIpConfiguration.struct │ │ │ │ │ │ ├── TunerFilterIpPayloadEvent.struct │ │ │ │ │ │ ├── TunerFilterMediaEvent.struct │ │ │ │ │ │ ├── TunerFilterMmtpConfiguration.struct │ │ │ │ │ │ ├── TunerFilterMmtpRecordEvent.struct │ │ │ │ │ │ ├── TunerFilterPesDataSettings.struct │ │ │ │ │ │ ├── TunerFilterPesEvent.struct │ │ │ │ │ │ ├── TunerFilterRecordSettings.struct │ │ │ │ │ │ ├── TunerFilterSectionBits.struct │ │ │ │ │ │ ├── TunerFilterSectionEvent.struct │ │ │ │ │ │ ├── TunerFilterSectionSettings.struct │ │ │ │ │ │ ├── TunerFilterSectionTableInfo.struct │ │ │ │ │ │ ├── TunerFilterSharedHandleInfo.struct │ │ │ │ │ │ ├── TunerFilterTemiEvent.struct │ │ │ │ │ │ ├── TunerFilterTlvConfiguration.struct │ │ │ │ │ │ ├── TunerFilterTsConfiguration.struct │ │ │ │ │ │ ├── TunerFilterTsRecordEvent.struct │ │ │ │ │ │ ├── TunerFrontendAnalogCapabilities.struct │ │ │ │ │ │ ├── TunerFrontendAnalogSettings.struct │ │ │ │ │ │ ├── TunerFrontendAtsc3Capabilities.struct │ │ │ │ │ │ ├── TunerFrontendAtsc3PlpSettings.struct │ │ │ │ │ │ ├── TunerFrontendAtsc3Settings.struct │ │ │ │ │ │ ├── TunerFrontendAtscCapabilities.struct │ │ │ │ │ │ ├── TunerFrontendAtscSettings.struct │ │ │ │ │ │ ├── TunerFrontendCableCapabilities.struct │ │ │ │ │ │ ├── TunerFrontendCableSettings.struct │ │ │ │ │ │ ├── TunerFrontendDtmbCapabilities.struct │ │ │ │ │ │ ├── TunerFrontendDtmbSettings.struct │ │ │ │ │ │ ├── TunerFrontendDvbsCapabilities.struct │ │ │ │ │ │ ├── TunerFrontendDvbsCodeRate.struct │ │ │ │ │ │ ├── TunerFrontendDvbsSettings.struct │ │ │ │ │ │ ├── TunerFrontendDvbtCapabilities.struct │ │ │ │ │ │ ├── TunerFrontendDvbtSettings.struct │ │ │ │ │ │ ├── TunerFrontendInfo.struct │ │ │ │ │ │ ├── TunerFrontendIsdbs3Capabilities.struct │ │ │ │ │ │ ├── TunerFrontendIsdbs3Settings.struct │ │ │ │ │ │ ├── TunerFrontendIsdbsCapabilities.struct │ │ │ │ │ │ ├── TunerFrontendIsdbsSettings.struct │ │ │ │ │ │ ├── TunerFrontendIsdbtCapabilities.struct │ │ │ │ │ │ ├── TunerFrontendIsdbtSettings.struct │ │ │ │ │ │ ├── TunerFrontendScanAtsc3PlpInfo.struct │ │ │ │ │ │ ├── TunerFrontendSettings.struct │ │ │ │ │ │ └── TunerFrontendStatusAtsc3PlpInfo.struct │ │ │ │ │ │ └── tunerresourcemanager │ │ │ │ │ │ ├── CasSessionRequest.struct │ │ │ │ │ │ ├── IResourcesReclaimListener.struct │ │ │ │ │ │ ├── ITunerResourceManager.struct │ │ │ │ │ │ ├── ResourceClientProfile.struct │ │ │ │ │ │ ├── TunerCiCamRequest.struct │ │ │ │ │ │ ├── TunerDemuxRequest.struct │ │ │ │ │ │ ├── TunerDescramblerRequest.struct │ │ │ │ │ │ ├── TunerFrontendRequest.struct │ │ │ │ │ │ └── TunerLnbRequest.struct │ │ │ │ ├── net │ │ │ │ │ ├── CaptivePortalData.struct │ │ │ │ │ ├── ConnectionInfo.struct │ │ │ │ │ ├── ConnectivityMetricsEvent.struct │ │ │ │ │ ├── DataStallReportParcelable.struct │ │ │ │ │ ├── DataUsageRequest.struct │ │ │ │ │ ├── DhcpInfo.struct │ │ │ │ │ ├── DhcpResultsParcelable.struct │ │ │ │ │ ├── ICaptivePortal.struct │ │ │ │ │ ├── IConnectivityDiagnosticsCallback.struct │ │ │ │ │ ├── IConnectivityManager.struct │ │ │ │ │ ├── IDnsResolver.struct │ │ │ │ │ ├── IEthernetManager.struct │ │ │ │ │ ├── IEthernetServiceListener.struct │ │ │ │ │ ├── IIntResultListener.struct │ │ │ │ │ ├── IIpConnectivityMetrics.struct │ │ │ │ │ ├── IIpMemoryStore.struct │ │ │ │ │ ├── IIpMemoryStoreCallbacks.struct │ │ │ │ │ ├── IIpSecService.struct │ │ │ │ │ ├── INetd.struct │ │ │ │ │ ├── INetdEventCallback.struct │ │ │ │ │ ├── INetdUnsolicitedEventListener.struct │ │ │ │ │ ├── INetworkActivityListener.struct │ │ │ │ │ ├── INetworkAgent.struct │ │ │ │ │ ├── INetworkAgentRegistry.struct │ │ │ │ │ ├── INetworkManagementEventObserver.struct │ │ │ │ │ ├── INetworkMonitor.struct │ │ │ │ │ ├── INetworkMonitorCallbacks.struct │ │ │ │ │ ├── INetworkOfferCallback.struct │ │ │ │ │ ├── INetworkPolicyListener.struct │ │ │ │ │ ├── INetworkPolicyManager.struct │ │ │ │ │ ├── INetworkRecommendationProvider.struct │ │ │ │ │ ├── INetworkScoreCache.struct │ │ │ │ │ ├── INetworkScoreService.struct │ │ │ │ │ ├── INetworkStackConnector.struct │ │ │ │ │ ├── INetworkStackStatusCallback.struct │ │ │ │ │ ├── INetworkStatsService.struct │ │ │ │ │ ├── INetworkStatsSession.struct │ │ │ │ │ ├── IOnCompleteListener.struct │ │ │ │ │ ├── IPacProxyInstalledListener.struct │ │ │ │ │ ├── IPacProxyManager.struct │ │ │ │ │ ├── IQosCallback.struct │ │ │ │ │ ├── ISocketKeepaliveCallback.struct │ │ │ │ │ ├── ITestNetworkManager.struct │ │ │ │ │ ├── ITetheredInterfaceCallback.struct │ │ │ │ │ ├── ITetheringConnector.struct │ │ │ │ │ ├── ITetheringEventCallback.struct │ │ │ │ │ ├── ITetheringStatsProvider.struct │ │ │ │ │ ├── IVpnManager.struct │ │ │ │ │ ├── InformationElementParcelable.struct │ │ │ │ │ ├── InitialConfigurationParcelable.struct │ │ │ │ │ ├── InterfaceConfiguration.struct │ │ │ │ │ ├── InterfaceConfigurationParcel.struct │ │ │ │ │ ├── IpConfiguration.struct │ │ │ │ │ ├── IpPrefix.struct │ │ │ │ │ ├── IpSecConfig.struct │ │ │ │ │ ├── IpSecSpiResponse.struct │ │ │ │ │ ├── IpSecTransformResponse.struct │ │ │ │ │ ├── IpSecTunnelInterfaceResponse.struct │ │ │ │ │ ├── IpSecUdpEncapResponse.struct │ │ │ │ │ ├── Layer2InformationParcelable.struct │ │ │ │ │ ├── Layer2PacketParcelable.struct │ │ │ │ │ ├── LinkAddress.struct │ │ │ │ │ ├── LinkProperties.struct │ │ │ │ │ ├── LinkQualityInfo.struct │ │ │ │ │ ├── MacAddress.struct │ │ │ │ │ ├── MarkMaskParcel.struct │ │ │ │ │ ├── NativeNetworkConfig.struct │ │ │ │ │ ├── NattKeepalivePacketData.struct │ │ │ │ │ ├── NattKeepalivePacketDataParcelable.struct │ │ │ │ │ ├── Network.struct │ │ │ │ │ ├── NetworkAgentConfig.struct │ │ │ │ │ ├── NetworkCapabilities.struct │ │ │ │ │ ├── NetworkInfo.struct │ │ │ │ │ ├── NetworkKey.struct │ │ │ │ │ ├── NetworkPolicy.struct │ │ │ │ │ ├── NetworkQuotaInfo.struct │ │ │ │ │ ├── NetworkRequest.struct │ │ │ │ │ ├── NetworkScore.struct │ │ │ │ │ ├── NetworkScorerAppData.struct │ │ │ │ │ ├── NetworkState.struct │ │ │ │ │ ├── NetworkStateSnapshot.struct │ │ │ │ │ ├── NetworkStats.struct │ │ │ │ │ ├── NetworkStatsHistory.struct │ │ │ │ │ ├── NetworkTemplate.struct │ │ │ │ │ ├── NetworkTestResultParcelable.struct │ │ │ │ │ ├── OemNetworkPreferences.struct │ │ │ │ │ ├── PrivateDnsConfigParcel.struct │ │ │ │ │ ├── ProvisioningConfigurationParcelable.struct │ │ │ │ │ ├── ProxyInfo.struct │ │ │ │ │ ├── QosFilterParcelable.struct │ │ │ │ │ ├── QosSession.struct │ │ │ │ │ ├── QosSocketInfo.struct │ │ │ │ │ ├── ResolverHostsParcel.struct │ │ │ │ │ ├── ResolverOptionsParcel.struct │ │ │ │ │ ├── ResolverParamsParcel.struct │ │ │ │ │ ├── RouteInfo.struct │ │ │ │ │ ├── RouteInfoParcel.struct │ │ │ │ │ ├── RssiCurve.struct │ │ │ │ │ ├── ScanResultInfoParcelable.struct │ │ │ │ │ ├── ScoredNetwork.struct │ │ │ │ │ ├── TcpKeepalivePacketData.struct │ │ │ │ │ ├── TcpKeepalivePacketDataParcelable.struct │ │ │ │ │ ├── TestNetworkInterface.struct │ │ │ │ │ ├── TetherConfigParcel.struct │ │ │ │ │ ├── TetherOffloadRuleParcel.struct │ │ │ │ │ ├── TetherStatesParcel.struct │ │ │ │ │ ├── TetherStatsParcel.struct │ │ │ │ │ ├── TetheredClient$AddressInfo.struct │ │ │ │ │ ├── TetheredClient.struct │ │ │ │ │ ├── TetheringCallbackStartedParcel.struct │ │ │ │ │ ├── TetheringConfigurationParcel.struct │ │ │ │ │ ├── TetheringInterface.struct │ │ │ │ │ ├── TetheringRequestParcel.struct │ │ │ │ │ ├── UidRange.struct │ │ │ │ │ ├── UidRangeParcel.struct │ │ │ │ │ ├── UnderlyingNetworkInfo.struct │ │ │ │ │ ├── Uri$HierarchicalUri.struct │ │ │ │ │ ├── Uri$OpaqueUri.struct │ │ │ │ │ ├── Uri$StringUri.struct │ │ │ │ │ ├── Uri.struct │ │ │ │ │ ├── apf │ │ │ │ │ │ └── ApfCapabilities.struct │ │ │ │ │ ├── dhcp │ │ │ │ │ │ ├── DhcpLeaseParcelable.struct │ │ │ │ │ │ ├── DhcpServingParamsParcel.struct │ │ │ │ │ │ ├── IDhcpEventCallbacks.struct │ │ │ │ │ │ ├── IDhcpServer.struct │ │ │ │ │ │ └── IDhcpServerCallbacks.struct │ │ │ │ │ ├── ip │ │ │ │ │ │ ├── IIpClient.struct │ │ │ │ │ │ └── IIpClientCallbacks.struct │ │ │ │ │ ├── ipmemorystore │ │ │ │ │ │ ├── Blob.struct │ │ │ │ │ │ ├── IOnBlobRetrievedListener.struct │ │ │ │ │ │ ├── IOnL2KeyResponseListener.struct │ │ │ │ │ │ ├── IOnNetworkAttributesRetrievedListener.struct │ │ │ │ │ │ ├── IOnSameL3NetworkResponseListener.struct │ │ │ │ │ │ ├── IOnStatusAndCountListener.struct │ │ │ │ │ │ ├── IOnStatusListener.struct │ │ │ │ │ │ ├── NetworkAttributesParcelable.struct │ │ │ │ │ │ ├── SameL3NetworkResponseParcelable.struct │ │ │ │ │ │ └── StatusParcelable.struct │ │ │ │ │ ├── lowpan │ │ │ │ │ │ ├── ILowpanEnergyScanCallback.struct │ │ │ │ │ │ ├── ILowpanInterface.struct │ │ │ │ │ │ ├── ILowpanInterfaceListener.struct │ │ │ │ │ │ ├── ILowpanManager.struct │ │ │ │ │ │ ├── ILowpanManagerListener.struct │ │ │ │ │ │ ├── ILowpanNetScanCallback.struct │ │ │ │ │ │ ├── LowpanBeaconInfo.struct │ │ │ │ │ │ ├── LowpanChannelInfo.struct │ │ │ │ │ │ ├── LowpanCredential.struct │ │ │ │ │ │ ├── LowpanIdentity.struct │ │ │ │ │ │ └── LowpanProvision.struct │ │ │ │ │ ├── metrics │ │ │ │ │ │ └── INetdEventListener.struct │ │ │ │ │ ├── netd │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ └── NativeUidRangeConfig.struct │ │ │ │ │ ├── netstats │ │ │ │ │ │ └── provider │ │ │ │ │ │ │ ├── INetworkStatsProvider.struct │ │ │ │ │ │ │ └── INetworkStatsProviderCallback.struct │ │ │ │ │ ├── networkstack │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ ├── dhcp │ │ │ │ │ │ │ └── DhcpOption.struct │ │ │ │ │ │ │ └── quirks │ │ │ │ │ │ │ └── IPv6ProvisioningLossQuirkParcelable.struct │ │ │ │ │ ├── nsd │ │ │ │ │ │ └── INsdManager.struct │ │ │ │ │ ├── resolv │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ ├── DnsHealthEventParcel.struct │ │ │ │ │ │ │ ├── IDnsResolverUnsolicitedEventListener.struct │ │ │ │ │ │ │ ├── Nat64PrefixEventParcel.struct │ │ │ │ │ │ │ └── PrivateDnsValidationEventParcel.struct │ │ │ │ │ ├── sip │ │ │ │ │ │ ├── ISipService.struct │ │ │ │ │ │ ├── ISipSession.struct │ │ │ │ │ │ ├── ISipSessionListener.struct │ │ │ │ │ │ └── SipProfile.struct │ │ │ │ │ ├── vcn │ │ │ │ │ │ ├── IVcnManagementService.struct │ │ │ │ │ │ ├── IVcnStatusCallback.struct │ │ │ │ │ │ ├── IVcnUnderlyingNetworkPolicyListener.struct │ │ │ │ │ │ ├── VcnConfig.struct │ │ │ │ │ │ └── VcnUnderlyingNetworkPolicy.struct │ │ │ │ │ └── wifi │ │ │ │ │ │ ├── CoexUnsafeChannel.struct │ │ │ │ │ │ ├── IActionListener.struct │ │ │ │ │ │ ├── ICoexCallback.struct │ │ │ │ │ │ ├── IDppCallback.struct │ │ │ │ │ │ ├── ILocalOnlyHotspotCallback.struct │ │ │ │ │ │ ├── INetworkRequestMatchCallback.struct │ │ │ │ │ │ ├── INetworkRequestUserSelectionCallback.struct │ │ │ │ │ │ ├── IOnWifiActivityEnergyInfoListener.struct │ │ │ │ │ │ ├── IOnWifiUsabilityStatsListener.struct │ │ │ │ │ │ ├── IScanResultsCallback.struct │ │ │ │ │ │ ├── IScanResultsListener.struct │ │ │ │ │ │ ├── IScoreUpdateObserver.struct │ │ │ │ │ │ ├── ISubsystemRestartCallback.struct │ │ │ │ │ │ ├── ISuggestionConnectionStatusListener.struct │ │ │ │ │ │ ├── ISuggestionUserApprovalStatusListener.struct │ │ │ │ │ │ ├── ITrafficStateCallback.struct │ │ │ │ │ │ ├── IWifiConnectedNetworkScorer.struct │ │ │ │ │ │ ├── IWifiManager.struct │ │ │ │ │ │ ├── IWifiScanner.struct │ │ │ │ │ │ ├── IWifiVerboseLoggingStatusChangedListener.struct │ │ │ │ │ │ ├── ScanResult$InformationElement.struct │ │ │ │ │ │ ├── ScanResult.struct │ │ │ │ │ │ ├── SoftApConfiguration.struct │ │ │ │ │ │ ├── SupplicantState.struct │ │ │ │ │ │ ├── WifiAvailableChannel.struct │ │ │ │ │ │ ├── WifiConfiguration.struct │ │ │ │ │ │ ├── WifiConnectedSessionInfo.struct │ │ │ │ │ │ ├── WifiInfo.struct │ │ │ │ │ │ ├── WifiNetworkSuggestion.struct │ │ │ │ │ │ ├── WifiSsid.struct │ │ │ │ │ │ ├── WifiUsabilityStatsEntry$ContentionTimeStats.struct │ │ │ │ │ │ ├── WifiUsabilityStatsEntry$RadioStats.struct │ │ │ │ │ │ ├── WifiUsabilityStatsEntry$RateStats.struct │ │ │ │ │ │ ├── WifiUsabilityStatsEntry.struct │ │ │ │ │ │ ├── aware │ │ │ │ │ │ ├── AwareResources.struct │ │ │ │ │ │ ├── Characteristics.struct │ │ │ │ │ │ ├── ConfigRequest.struct │ │ │ │ │ │ ├── IWifiAwareDiscoverySessionCallback.struct │ │ │ │ │ │ ├── IWifiAwareEventCallback.struct │ │ │ │ │ │ ├── IWifiAwareMacAddressProvider.struct │ │ │ │ │ │ ├── IWifiAwareManager.struct │ │ │ │ │ │ ├── PublishConfig.struct │ │ │ │ │ │ └── SubscribeConfig.struct │ │ │ │ │ │ ├── hotspot2 │ │ │ │ │ │ ├── IProvisioningCallback.struct │ │ │ │ │ │ ├── OsuProvider.struct │ │ │ │ │ │ └── PasspointConfiguration.struct │ │ │ │ │ │ ├── nl80211 │ │ │ │ │ │ ├── DeviceWiphyCapabilities.struct │ │ │ │ │ │ ├── IApInterface.struct │ │ │ │ │ │ ├── IApInterfaceEventCallback.struct │ │ │ │ │ │ ├── IClientInterface.struct │ │ │ │ │ │ ├── IInterfaceEventCallback.struct │ │ │ │ │ │ ├── IPnoScanEvent.struct │ │ │ │ │ │ ├── IScanEvent.struct │ │ │ │ │ │ ├── ISendMgmtFrameEvent.struct │ │ │ │ │ │ ├── IWifiScannerImpl.struct │ │ │ │ │ │ ├── IWificond.struct │ │ │ │ │ │ ├── IWificondEventCallback.struct │ │ │ │ │ │ ├── NativeScanResult.struct │ │ │ │ │ │ ├── NativeWifiClient.struct │ │ │ │ │ │ ├── PnoSettings.struct │ │ │ │ │ │ └── SingleScanSettings.struct │ │ │ │ │ │ ├── p2p │ │ │ │ │ │ └── IWifiP2pManager.struct │ │ │ │ │ │ └── rtt │ │ │ │ │ │ ├── IRttCallback.struct │ │ │ │ │ │ ├── IWifiRttManager.struct │ │ │ │ │ │ ├── RangingRequest.struct │ │ │ │ │ │ └── RangingResult.struct │ │ │ │ ├── nfc │ │ │ │ │ ├── BeamShareData.struct │ │ │ │ │ ├── IAppCallback.struct │ │ │ │ │ ├── INfcAdapter.struct │ │ │ │ │ ├── INfcAdapterExtras.struct │ │ │ │ │ ├── INfcCardEmulation.struct │ │ │ │ │ ├── INfcControllerAlwaysOnListener.struct │ │ │ │ │ ├── INfcDta.struct │ │ │ │ │ ├── INfcFCardEmulation.struct │ │ │ │ │ ├── INfcTag.struct │ │ │ │ │ ├── INfcUnlockHandler.struct │ │ │ │ │ ├── ITagRemovedCallback.struct │ │ │ │ │ ├── NdefMessage.struct │ │ │ │ │ ├── NdefRecord.struct │ │ │ │ │ ├── Tag.struct │ │ │ │ │ ├── TechListParcel.struct │ │ │ │ │ ├── TransceiveResult.struct │ │ │ │ │ └── cardemulation │ │ │ │ │ │ ├── AidGroup.struct │ │ │ │ │ │ ├── ApduServiceInfo.struct │ │ │ │ │ │ └── NfcFServiceInfo.struct │ │ │ │ ├── os │ │ │ │ │ ├── AggregateBatteryConsumer.struct │ │ │ │ │ ├── BatteryProperty.struct │ │ │ │ │ ├── BatterySaverPolicyConfig.struct │ │ │ │ │ ├── BatteryUsageStats.struct │ │ │ │ │ ├── BatteryUsageStatsQuery.struct │ │ │ │ │ ├── Bundle.struct │ │ │ │ │ ├── CombinedVibration$Mono.struct │ │ │ │ │ ├── CombinedVibration$Sequential.struct │ │ │ │ │ ├── CombinedVibration$Stereo.struct │ │ │ │ │ ├── CombinedVibration.struct │ │ │ │ │ ├── CoolingDevice.struct │ │ │ │ │ ├── CpuUsageInfo.struct │ │ │ │ │ ├── CreateAppDataArgs.struct │ │ │ │ │ ├── CreateAppDataResult.struct │ │ │ │ │ ├── ExternalVibration.struct │ │ │ │ │ ├── FabricatedOverlayInfo.struct │ │ │ │ │ ├── FabricatedOverlayInternal.struct │ │ │ │ │ ├── FabricatedOverlayInternalEntry.struct │ │ │ │ │ ├── IAidlTest.struct │ │ │ │ │ ├── IBatteryPropertiesRegistrar.struct │ │ │ │ │ ├── IBinderThreadPriorityService.struct │ │ │ │ │ ├── IBinderWorkSourceNestedService.struct │ │ │ │ │ ├── IBinderWorkSourceService.struct │ │ │ │ │ ├── ICancellationSignal.struct │ │ │ │ │ ├── IClientCallback.struct │ │ │ │ │ ├── IDeviceIdentifiersPolicyService.struct │ │ │ │ │ ├── IDeviceIdleController.struct │ │ │ │ │ ├── IDumpstate.struct │ │ │ │ │ ├── IDumpstateListener.struct │ │ │ │ │ ├── IExternalVibrationController.struct │ │ │ │ │ ├── IExternalVibratorService.struct │ │ │ │ │ ├── IHardwarePropertiesManager.struct │ │ │ │ │ ├── IHintManager.struct │ │ │ │ │ ├── IHintSession.struct │ │ │ │ │ ├── IIdmap2.struct │ │ │ │ │ ├── IIncidentAuthListener.struct │ │ │ │ │ ├── IIncidentCompanion.struct │ │ │ │ │ ├── IIncidentDumpCallback.struct │ │ │ │ │ ├── IIncidentManager.struct │ │ │ │ │ ├── IIncidentReportStatusListener.struct │ │ │ │ │ ├── IInputConstants.struct │ │ │ │ │ ├── IInputFlinger.struct │ │ │ │ │ ├── IInstalld.struct │ │ │ │ │ ├── IMessenger.struct │ │ │ │ │ ├── INetworkManagementService.struct │ │ │ │ │ ├── IPendingIntentRef.struct │ │ │ │ │ ├── IPermissionController.struct │ │ │ │ │ ├── IPowerManager.struct │ │ │ │ │ ├── IProcessInfoService.struct │ │ │ │ │ ├── IProgressListener.struct │ │ │ │ │ ├── IPullAtomCallback.struct │ │ │ │ │ ├── IPullAtomResultReceiver.struct │ │ │ │ │ ├── IRecoverySystem.struct │ │ │ │ │ ├── IRecoverySystemProgressListener.struct │ │ │ │ │ ├── IRemoteCallback.struct │ │ │ │ │ ├── ISchedulingPolicyService.struct │ │ │ │ │ ├── IServiceCallback.struct │ │ │ │ │ ├── IServiceManager.struct │ │ │ │ │ ├── ISomeService.struct │ │ │ │ │ ├── IStatsCompanionService.struct │ │ │ │ │ ├── IStatsManagerService.struct │ │ │ │ │ ├── IStatsd.struct │ │ │ │ │ ├── IStoraged.struct │ │ │ │ │ ├── ISystemConfig.struct │ │ │ │ │ ├── ISystemUpdateManager.struct │ │ │ │ │ ├── IThermalEventListener.struct │ │ │ │ │ ├── IThermalService.struct │ │ │ │ │ ├── IThermalStatusListener.struct │ │ │ │ │ ├── IUpdateEngine.struct │ │ │ │ │ ├── IUpdateEngineCallback.struct │ │ │ │ │ ├── IUpdateEngineStable.struct │ │ │ │ │ ├── IUpdateEngineStableCallback.struct │ │ │ │ │ ├── IUpdateLock.struct │ │ │ │ │ ├── IUserManager.struct │ │ │ │ │ ├── IUserRestrictionsListener.struct │ │ │ │ │ ├── IVibratorManagerService.struct │ │ │ │ │ ├── IVibratorStateListener.struct │ │ │ │ │ ├── IVold.struct │ │ │ │ │ ├── IVoldListener.struct │ │ │ │ │ ├── IVoldMountCallback.struct │ │ │ │ │ ├── IVoldTaskListener.struct │ │ │ │ │ ├── IncidentReportArgs.struct │ │ │ │ │ ├── LocaleList.struct │ │ │ │ │ ├── Message.struct │ │ │ │ │ ├── Messenger.struct │ │ │ │ │ ├── PackageTagsList.struct │ │ │ │ │ ├── ParcelDuration.struct │ │ │ │ │ ├── ParcelFileDescriptor.struct │ │ │ │ │ ├── ParcelUuid.struct │ │ │ │ │ ├── PatternMatcher.struct │ │ │ │ │ ├── PersistableBundle.struct │ │ │ │ │ ├── PowerSaveState.struct │ │ │ │ │ ├── RemoteCallback.struct │ │ │ │ │ ├── ResultReceiver.struct │ │ │ │ │ ├── ServiceDebugInfo.struct │ │ │ │ │ ├── SharedMemory.struct │ │ │ │ │ ├── StatsDimensionsValueParcel.struct │ │ │ │ │ ├── Temperature.struct │ │ │ │ │ ├── UidBatteryConsumer.struct │ │ │ │ │ ├── UserBatteryConsumer.struct │ │ │ │ │ ├── UserHandle.struct │ │ │ │ │ ├── VibrationAttributes.struct │ │ │ │ │ ├── VibratorInfo$FrequencyMapping.struct │ │ │ │ │ ├── VibratorInfo.struct │ │ │ │ │ ├── WorkSource$WorkChain.struct │ │ │ │ │ ├── WorkSource.struct │ │ │ │ │ ├── connectivity │ │ │ │ │ │ ├── CellularBatteryStats.struct │ │ │ │ │ │ ├── GpsBatteryStats.struct │ │ │ │ │ │ ├── WifiActivityEnergyInfo.struct │ │ │ │ │ │ └── WifiBatteryStats.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── ExceptionalParcelable.struct │ │ │ │ │ │ ├── IEmptyService.struct │ │ │ │ │ │ ├── IParcelExceptionService.struct │ │ │ │ │ │ ├── IParcelFileDescriptorPeer.struct │ │ │ │ │ │ ├── ISeccompIsolatedService.struct │ │ │ │ │ │ ├── ISecondary.struct │ │ │ │ │ │ └── ISharedMemoryService.struct │ │ │ │ │ ├── health │ │ │ │ │ │ └── HealthStatsParceler.struct │ │ │ │ │ ├── image │ │ │ │ │ │ └── IDynamicSystemService.struct │ │ │ │ │ ├── incremental │ │ │ │ │ │ ├── IIncrementalService.struct │ │ │ │ │ │ ├── IIncrementalServiceConnector.struct │ │ │ │ │ │ ├── IStorageHealthListener.struct │ │ │ │ │ │ ├── IStorageLoadingProgressListener.struct │ │ │ │ │ │ ├── IncrementalFileSystemControlParcel.struct │ │ │ │ │ │ ├── IncrementalNewFileParams.struct │ │ │ │ │ │ ├── PerUidReadTimeouts.struct │ │ │ │ │ │ └── StorageHealthCheckParams.struct │ │ │ │ │ ├── storage │ │ │ │ │ │ ├── CrateMetadata.struct │ │ │ │ │ │ ├── DiskInfo.struct │ │ │ │ │ │ ├── IObbActionListener.struct │ │ │ │ │ │ ├── IStorageEventListener.struct │ │ │ │ │ │ ├── IStorageManager.struct │ │ │ │ │ │ ├── IStorageShutdownObserver.struct │ │ │ │ │ │ ├── StorageVolume.struct │ │ │ │ │ │ ├── VolumeInfo.struct │ │ │ │ │ │ └── VolumeRecord.struct │ │ │ │ │ └── storaged │ │ │ │ │ │ └── IStoragedPrivate.struct │ │ │ │ ├── permission │ │ │ │ │ ├── ILegacyPermissionManager.struct │ │ │ │ │ ├── IOnPermissionsChangeListener.struct │ │ │ │ │ ├── IPermissionChecker.struct │ │ │ │ │ ├── IPermissionManager.struct │ │ │ │ │ └── cts │ │ │ │ │ │ └── appthataccesseslocation │ │ │ │ │ │ └── IAccessLocationOnCommand.struct │ │ │ │ ├── pixel │ │ │ │ │ └── perfstatsd │ │ │ │ │ │ └── IPerfstatsdPrivate.struct │ │ │ │ ├── print │ │ │ │ │ ├── ILayoutResultCallback.struct │ │ │ │ │ ├── IPrintDocumentAdapter.struct │ │ │ │ │ ├── IPrintDocumentAdapterObserver.struct │ │ │ │ │ ├── IPrintJobStateChangeListener.struct │ │ │ │ │ ├── IPrintManager.struct │ │ │ │ │ ├── IPrintServicesChangeListener.struct │ │ │ │ │ ├── IPrintSpooler.struct │ │ │ │ │ ├── IPrintSpoolerCallbacks.struct │ │ │ │ │ ├── IPrintSpoolerClient.struct │ │ │ │ │ ├── IPrinterDiscoveryObserver.struct │ │ │ │ │ ├── IWriteResultCallback.struct │ │ │ │ │ ├── PageRange.struct │ │ │ │ │ ├── PrintAttributes.struct │ │ │ │ │ ├── PrintDocumentInfo.struct │ │ │ │ │ ├── PrintJobId.struct │ │ │ │ │ ├── PrintJobInfo.struct │ │ │ │ │ └── PrinterId.struct │ │ │ │ ├── printservice │ │ │ │ │ ├── IPrintService.struct │ │ │ │ │ ├── IPrintServiceClient.struct │ │ │ │ │ ├── PrintServiceInfo.struct │ │ │ │ │ └── recommendation │ │ │ │ │ │ ├── IRecommendationService.struct │ │ │ │ │ │ ├── IRecommendationServiceCallbacks.struct │ │ │ │ │ │ ├── IRecommendationsChangeListener.struct │ │ │ │ │ │ └── RecommendationInfo.struct │ │ │ │ ├── scheduling │ │ │ │ │ ├── IRebootReadinessManager.struct │ │ │ │ │ └── IRequestRebootReadinessStatusListener.struct │ │ │ │ ├── se │ │ │ │ │ └── omapi │ │ │ │ │ │ ├── ISecureElementChannel.struct │ │ │ │ │ │ ├── ISecureElementListener.struct │ │ │ │ │ │ ├── ISecureElementReader.struct │ │ │ │ │ │ ├── ISecureElementService.struct │ │ │ │ │ │ └── ISecureElementSession.struct │ │ │ │ ├── security │ │ │ │ │ ├── AppUriAuthenticationPolicy.struct │ │ │ │ │ ├── IFileIntegrityService.struct │ │ │ │ │ ├── IGenerateRkpKeyService.struct │ │ │ │ │ ├── IKeyChainAliasCallback.struct │ │ │ │ │ ├── IKeyChainService.struct │ │ │ │ │ ├── apc │ │ │ │ │ │ ├── IConfirmationCallback.struct │ │ │ │ │ │ └── IProtectedConfirmation.struct │ │ │ │ │ ├── attestationmanager │ │ │ │ │ │ ├── ByteArray.struct │ │ │ │ │ │ └── IAttestationManager.struct │ │ │ │ │ ├── authorization │ │ │ │ │ │ ├── AuthorizationTokens.struct │ │ │ │ │ │ └── IKeystoreAuthorization.struct │ │ │ │ │ ├── compat │ │ │ │ │ │ └── IKeystoreCompatService.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── CVE_2021_0327 │ │ │ │ │ │ │ └── IBadProvider.struct │ │ │ │ │ │ ├── IBinderExchange.struct │ │ │ │ │ │ ├── IIsolatedService.struct │ │ │ │ │ │ └── activity │ │ │ │ │ │ │ └── ISecureRandomService.struct │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── AccessControlProfileParcel.struct │ │ │ │ │ │ ├── AuthKeyParcel.struct │ │ │ │ │ │ ├── EntryNamespaceParcel.struct │ │ │ │ │ │ ├── EntryParcel.struct │ │ │ │ │ │ ├── GetEntriesResultParcel.struct │ │ │ │ │ │ ├── ICredential.struct │ │ │ │ │ │ ├── ICredentialStore.struct │ │ │ │ │ │ ├── ICredentialStoreFactory.struct │ │ │ │ │ │ ├── IWritableCredential.struct │ │ │ │ │ │ ├── RequestEntryParcel.struct │ │ │ │ │ │ ├── RequestNamespaceParcel.struct │ │ │ │ │ │ ├── ResultEntryParcel.struct │ │ │ │ │ │ ├── ResultNamespaceParcel.struct │ │ │ │ │ │ └── SecurityHardwareInfoParcel.struct │ │ │ │ │ ├── keymaster │ │ │ │ │ │ ├── IKeyAttestationApplicationIdProvider.struct │ │ │ │ │ │ ├── KeyAttestationApplicationId.struct │ │ │ │ │ │ ├── KeyAttestationPackageInfo.struct │ │ │ │ │ │ └── KeymasterCertificateChain.struct │ │ │ │ │ ├── keystore │ │ │ │ │ │ ├── ParcelableKeyGenParameterSpec.struct │ │ │ │ │ │ └── recovery │ │ │ │ │ │ │ ├── KeyChainProtectionParams.struct │ │ │ │ │ │ │ ├── KeyChainSnapshot.struct │ │ │ │ │ │ │ ├── RecoveryCertPath.struct │ │ │ │ │ │ │ └── WrappedApplicationKey.struct │ │ │ │ │ ├── legacykeystore │ │ │ │ │ │ └── ILegacyKeystore.struct │ │ │ │ │ ├── maintenance │ │ │ │ │ │ └── IKeystoreMaintenance.struct │ │ │ │ │ ├── metrics │ │ │ │ │ │ ├── CrashStats.struct │ │ │ │ │ │ ├── IKeystoreMetrics.struct │ │ │ │ │ │ ├── KeyCreationWithAuthInfo.struct │ │ │ │ │ │ ├── KeyCreationWithGeneralInfo.struct │ │ │ │ │ │ ├── KeyCreationWithPurposeAndModesInfo.struct │ │ │ │ │ │ ├── KeyOperationWithGeneralInfo.struct │ │ │ │ │ │ ├── KeyOperationWithPurposeAndModesInfo.struct │ │ │ │ │ │ ├── Keystore2AtomWithOverflow.struct │ │ │ │ │ │ ├── KeystoreAtom.struct │ │ │ │ │ │ ├── RkpErrorStats.struct │ │ │ │ │ │ ├── RkpPoolStats.struct │ │ │ │ │ │ └── StorageStats.struct │ │ │ │ │ ├── provisioner │ │ │ │ │ │ └── IProvisionerService.struct │ │ │ │ │ └── remoteprovisioning │ │ │ │ │ │ ├── AttestationPoolStatus.struct │ │ │ │ │ │ ├── IRemoteProvisioning.struct │ │ │ │ │ │ └── ImplInfo.struct │ │ │ │ ├── server │ │ │ │ │ └── wm │ │ │ │ │ │ └── shared │ │ │ │ │ │ └── IUntrustedTouchTestService.struct │ │ │ │ ├── service │ │ │ │ │ ├── appprediction │ │ │ │ │ │ └── IPredictionService.struct │ │ │ │ │ ├── attention │ │ │ │ │ │ ├── IAttentionCallback.struct │ │ │ │ │ │ └── IAttentionService.struct │ │ │ │ │ ├── autofill │ │ │ │ │ │ ├── Dataset$DatasetFieldFilter.struct │ │ │ │ │ │ ├── Dataset.struct │ │ │ │ │ │ ├── FillRequest.struct │ │ │ │ │ │ ├── FillResponse.struct │ │ │ │ │ │ ├── IAutoFillService.struct │ │ │ │ │ │ ├── IAutofillFieldClassificationService.struct │ │ │ │ │ │ ├── IFillCallback.struct │ │ │ │ │ │ ├── IInlineSuggestionRenderService.struct │ │ │ │ │ │ ├── IInlineSuggestionUi.struct │ │ │ │ │ │ ├── IInlineSuggestionUiCallback.struct │ │ │ │ │ │ ├── ISaveCallback.struct │ │ │ │ │ │ ├── ISurfacePackageResultCallback.struct │ │ │ │ │ │ ├── InlinePresentation.struct │ │ │ │ │ │ ├── SaveRequest.struct │ │ │ │ │ │ ├── UserData.struct │ │ │ │ │ │ └── augmented │ │ │ │ │ │ │ ├── IAugmentedAutofillService.struct │ │ │ │ │ │ │ └── IFillCallback.struct │ │ │ │ │ ├── carrier │ │ │ │ │ │ ├── CarrierIdentifier.struct │ │ │ │ │ │ ├── IApnSourceService.struct │ │ │ │ │ │ ├── ICarrierMessagingCallback.struct │ │ │ │ │ │ ├── ICarrierMessagingClientService.struct │ │ │ │ │ │ ├── ICarrierMessagingService.struct │ │ │ │ │ │ ├── ICarrierService.struct │ │ │ │ │ │ └── MessagePdu.struct │ │ │ │ │ ├── chooser │ │ │ │ │ │ ├── ChooserTarget.struct │ │ │ │ │ │ ├── IChooserTargetResult.struct │ │ │ │ │ │ └── IChooserTargetService.struct │ │ │ │ │ ├── contentcapture │ │ │ │ │ │ ├── ActivityEvent.struct │ │ │ │ │ │ ├── FlushMetrics.struct │ │ │ │ │ │ ├── IContentCaptureService.struct │ │ │ │ │ │ ├── IContentCaptureServiceCallback.struct │ │ │ │ │ │ ├── IDataShareCallback.struct │ │ │ │ │ │ ├── IDataShareReadAdapter.struct │ │ │ │ │ │ └── SnapshotData.struct │ │ │ │ │ ├── contentsuggestions │ │ │ │ │ │ └── IContentSuggestionsService.struct │ │ │ │ │ ├── controls │ │ │ │ │ │ ├── Control.struct │ │ │ │ │ │ ├── IControlsActionCallback.struct │ │ │ │ │ │ ├── IControlsProvider.struct │ │ │ │ │ │ ├── IControlsSubscriber.struct │ │ │ │ │ │ ├── IControlsSubscription.struct │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ └── ControlActionWrapper.struct │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── ControlTemplateWrapper.struct │ │ │ │ │ ├── displayhash │ │ │ │ │ │ └── IDisplayHashingService.struct │ │ │ │ │ ├── dreams │ │ │ │ │ │ ├── IDreamManager.struct │ │ │ │ │ │ └── IDreamService.struct │ │ │ │ │ ├── euicc │ │ │ │ │ │ ├── DownloadSubscriptionResult.struct │ │ │ │ │ │ ├── EuiccProfileInfo.struct │ │ │ │ │ │ ├── GetDefaultDownloadableSubscriptionListResult.struct │ │ │ │ │ │ ├── GetDownloadableSubscriptionMetadataResult.struct │ │ │ │ │ │ ├── GetEuiccProfileInfoListResult.struct │ │ │ │ │ │ ├── IDeleteSubscriptionCallback.struct │ │ │ │ │ │ ├── IDownloadSubscriptionCallback.struct │ │ │ │ │ │ ├── IEraseSubscriptionsCallback.struct │ │ │ │ │ │ ├── IEuiccService.struct │ │ │ │ │ │ ├── IEuiccServiceDumpResultCallback.struct │ │ │ │ │ │ ├── IGetDefaultDownloadableSubscriptionListCallback.struct │ │ │ │ │ │ ├── IGetDownloadableSubscriptionMetadataCallback.struct │ │ │ │ │ │ ├── IGetEidCallback.struct │ │ │ │ │ │ ├── IGetEuiccInfoCallback.struct │ │ │ │ │ │ ├── IGetEuiccProfileInfoListCallback.struct │ │ │ │ │ │ ├── IGetOtaStatusCallback.struct │ │ │ │ │ │ ├── IOtaStatusChangedCallback.struct │ │ │ │ │ │ ├── IRetainSubscriptionsForFactoryResetCallback.struct │ │ │ │ │ │ ├── ISwitchToSubscriptionCallback.struct │ │ │ │ │ │ └── IUpdateSubscriptionNicknameCallback.struct │ │ │ │ │ ├── gatekeeper │ │ │ │ │ │ ├── GateKeeperResponse.struct │ │ │ │ │ │ └── IGateKeeperService.struct │ │ │ │ │ ├── media │ │ │ │ │ │ ├── IMediaBrowserService.struct │ │ │ │ │ │ └── IMediaBrowserServiceCallbacks.struct │ │ │ │ │ ├── notification │ │ │ │ │ │ ├── Adjustment.struct │ │ │ │ │ │ ├── Condition.struct │ │ │ │ │ │ ├── IConditionListener.struct │ │ │ │ │ │ ├── IConditionProvider.struct │ │ │ │ │ │ ├── INotificationListener.struct │ │ │ │ │ │ ├── IStatusBarNotificationHolder.struct │ │ │ │ │ │ ├── NotificationListenerFilter.struct │ │ │ │ │ │ ├── NotificationRankingUpdate.struct │ │ │ │ │ │ ├── NotificationStats.struct │ │ │ │ │ │ ├── StatusBarNotification.struct │ │ │ │ │ │ ├── ZenModeConfig$ZenRule.struct │ │ │ │ │ │ └── ZenModeConfig.struct │ │ │ │ │ ├── oemlock │ │ │ │ │ │ └── IOemLockService.struct │ │ │ │ │ ├── persistentdata │ │ │ │ │ │ └── IPersistentDataBlockService.struct │ │ │ │ │ ├── quickaccesswallet │ │ │ │ │ │ ├── GetWalletCardsError.struct │ │ │ │ │ │ ├── GetWalletCardsRequest.struct │ │ │ │ │ │ ├── GetWalletCardsResponse.struct │ │ │ │ │ │ ├── IQuickAccessWalletService.struct │ │ │ │ │ │ ├── IQuickAccessWalletServiceCallbacks.struct │ │ │ │ │ │ ├── SelectWalletCardRequest.struct │ │ │ │ │ │ ├── WalletServiceEvent.struct │ │ │ │ │ │ └── WalletServiceEventListenerRequest.struct │ │ │ │ │ ├── quicksettings │ │ │ │ │ │ ├── IQSService.struct │ │ │ │ │ │ ├── IQSTileService.struct │ │ │ │ │ │ └── Tile.struct │ │ │ │ │ ├── resolver │ │ │ │ │ │ ├── IResolverRankerResult.struct │ │ │ │ │ │ ├── IResolverRankerService.struct │ │ │ │ │ │ └── ResolverTarget.struct │ │ │ │ │ ├── resumeonreboot │ │ │ │ │ │ └── IResumeOnRebootService.struct │ │ │ │ │ ├── rotationresolver │ │ │ │ │ │ ├── IRotationResolverCallback.struct │ │ │ │ │ │ ├── IRotationResolverService.struct │ │ │ │ │ │ └── RotationResolutionRequest.struct │ │ │ │ │ ├── search │ │ │ │ │ │ └── ISearchUiService.struct │ │ │ │ │ ├── settings │ │ │ │ │ │ └── suggestions │ │ │ │ │ │ │ ├── ISuggestionService.struct │ │ │ │ │ │ │ └── Suggestion.struct │ │ │ │ │ ├── smartspace │ │ │ │ │ │ └── ISmartspaceService.struct │ │ │ │ │ ├── storage │ │ │ │ │ │ └── IExternalStorageService.struct │ │ │ │ │ ├── textclassifier │ │ │ │ │ │ ├── ITextClassifierCallback.struct │ │ │ │ │ │ └── ITextClassifierService.struct │ │ │ │ │ ├── timezone │ │ │ │ │ │ ├── ITimeZoneProvider.struct │ │ │ │ │ │ ├── ITimeZoneProviderManager.struct │ │ │ │ │ │ └── TimeZoneProviderSuggestion.struct │ │ │ │ │ ├── translation │ │ │ │ │ │ ├── ITranslationCallback.struct │ │ │ │ │ │ └── ITranslationService.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── ITrustAgentService.struct │ │ │ │ │ │ └── ITrustAgentServiceCallback.struct │ │ │ │ │ ├── voice │ │ │ │ │ │ ├── HotwordDetectedResult.struct │ │ │ │ │ │ ├── HotwordRejectedResult.struct │ │ │ │ │ │ ├── IDspHotwordDetectionCallback.struct │ │ │ │ │ │ ├── IHotwordDetectionService.struct │ │ │ │ │ │ ├── IMicrophoneHotwordDetectionVoiceInteractionCallback.struct │ │ │ │ │ │ ├── IVoiceInteractionService.struct │ │ │ │ │ │ ├── IVoiceInteractionSession.struct │ │ │ │ │ │ ├── IVoiceInteractionSessionService.struct │ │ │ │ │ │ └── VisibleActivityInfo.struct │ │ │ │ │ ├── vr │ │ │ │ │ │ ├── IPersistentVrStateCallbacks.struct │ │ │ │ │ │ ├── IVrListener.struct │ │ │ │ │ │ ├── IVrManager.struct │ │ │ │ │ │ └── IVrStateCallbacks.struct │ │ │ │ │ ├── wallpaper │ │ │ │ │ │ ├── IWallpaperConnection.struct │ │ │ │ │ │ ├── IWallpaperEngine.struct │ │ │ │ │ │ └── IWallpaperService.struct │ │ │ │ │ └── watchdog │ │ │ │ │ │ └── IExplicitHealthCheckService.struct │ │ │ │ ├── speech │ │ │ │ │ ├── IRecognitionListener.struct │ │ │ │ │ ├── IRecognitionService.struct │ │ │ │ │ ├── IRecognitionServiceManager.struct │ │ │ │ │ ├── IRecognitionServiceManagerCallback.struct │ │ │ │ │ └── tts │ │ │ │ │ │ ├── ITextToSpeechCallback.struct │ │ │ │ │ │ ├── ITextToSpeechManager.struct │ │ │ │ │ │ ├── ITextToSpeechService.struct │ │ │ │ │ │ ├── ITextToSpeechSession.struct │ │ │ │ │ │ ├── ITextToSpeechSessionCallback.struct │ │ │ │ │ │ └── Voice.struct │ │ │ │ ├── system │ │ │ │ │ ├── keystore2 │ │ │ │ │ │ ├── AuthenticatorSpec.struct │ │ │ │ │ │ ├── Authorization.struct │ │ │ │ │ │ ├── CreateOperationResponse.struct │ │ │ │ │ │ ├── EphemeralStorageKeyResponse.struct │ │ │ │ │ │ ├── IKeystoreOperation.struct │ │ │ │ │ │ ├── IKeystoreSecurityLevel.struct │ │ │ │ │ │ ├── IKeystoreService.struct │ │ │ │ │ │ ├── KeyDescriptor.struct │ │ │ │ │ │ ├── KeyEntryResponse.struct │ │ │ │ │ │ ├── KeyMetadata.struct │ │ │ │ │ │ ├── KeyParameters.struct │ │ │ │ │ │ └── OperationChallenge.struct │ │ │ │ │ ├── suspend │ │ │ │ │ │ ├── ISuspendCallback.struct │ │ │ │ │ │ ├── ISuspendControlService.struct │ │ │ │ │ │ ├── IWakelockCallback.struct │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── ISuspendControlServiceInternal.struct │ │ │ │ │ │ │ ├── SuspendInfo.struct │ │ │ │ │ │ │ ├── WakeLockInfo.struct │ │ │ │ │ │ │ └── WakeupInfo.struct │ │ │ │ │ └── virtmanager │ │ │ │ │ │ ├── IVirtManager.struct │ │ │ │ │ │ ├── IVirtualMachine.struct │ │ │ │ │ │ ├── IVirtualMachineCallback.struct │ │ │ │ │ │ └── VirtualMachineDebugInfo.struct │ │ │ │ ├── telecom │ │ │ │ │ ├── BluetoothCallQualityReport.struct │ │ │ │ │ ├── CallAudioState.struct │ │ │ │ │ ├── ConnectionRequest.struct │ │ │ │ │ ├── DisconnectCause.struct │ │ │ │ │ ├── ParcelableConference.struct │ │ │ │ │ ├── ParcelableConnection.struct │ │ │ │ │ ├── PhoneAccount.struct │ │ │ │ │ ├── PhoneAccountHandle.struct │ │ │ │ │ ├── PhoneAccountSuggestion.struct │ │ │ │ │ ├── StatusHints.struct │ │ │ │ │ ├── TelecomAnalytics$SessionTiming.struct │ │ │ │ │ ├── TelecomAnalytics.struct │ │ │ │ │ ├── VideoProfile$CameraCapabilities.struct │ │ │ │ │ ├── VideoProfile.struct │ │ │ │ │ └── cts │ │ │ │ │ │ ├── api29incallservice │ │ │ │ │ │ └── ICtsApi29InCallServiceControl.struct │ │ │ │ │ │ ├── carmodetestapp │ │ │ │ │ │ └── ICtsCarModeInCallServiceControl.struct │ │ │ │ │ │ ├── redirectiontestapp │ │ │ │ │ │ └── ICtsCallRedirectionServiceController.struct │ │ │ │ │ │ ├── screeningtestapp │ │ │ │ │ │ └── ICallScreeningControl.struct │ │ │ │ │ │ └── thirdptyincallservice │ │ │ │ │ │ └── ICtsThirdPartyInCallServiceControl.struct │ │ │ │ ├── telephony │ │ │ │ │ ├── AvailableNetworkInfo.struct │ │ │ │ │ ├── BarringInfo$BarringServiceInfo.struct │ │ │ │ │ ├── BarringInfo.struct │ │ │ │ │ ├── CallAttributes.struct │ │ │ │ │ ├── CallForwardingInfo.struct │ │ │ │ │ ├── CallQuality.struct │ │ │ │ │ ├── CarrierRestrictionRules.struct │ │ │ │ │ ├── CellIdentity.struct │ │ │ │ │ ├── CellInfo.struct │ │ │ │ │ ├── ClientRequestStats.struct │ │ │ │ │ ├── DataConnectionRealTimeInfo.struct │ │ │ │ │ ├── IBootstrapAuthenticationCallback.struct │ │ │ │ │ ├── ICellBroadcastService.struct │ │ │ │ │ ├── ICellInfoCallback.struct │ │ │ │ │ ├── INetworkService.struct │ │ │ │ │ ├── INetworkServiceCallback.struct │ │ │ │ │ ├── IccOpenLogicalChannelResponse.struct │ │ │ │ │ ├── ImsiEncryptionInfo.struct │ │ │ │ │ ├── LinkCapacityEstimate.struct │ │ │ │ │ ├── ModemActivityInfo.struct │ │ │ │ │ ├── ModemInfo.struct │ │ │ │ │ ├── NeighboringCellInfo.struct │ │ │ │ │ ├── NetworkRegistrationInfo.struct │ │ │ │ │ ├── NetworkScanRequest.struct │ │ │ │ │ ├── PhoneCapability.struct │ │ │ │ │ ├── PhoneNumberRange.struct │ │ │ │ │ ├── PhysicalChannelConfig.struct │ │ │ │ │ ├── PreciseCallState.struct │ │ │ │ │ ├── PreciseDataConnectionState.struct │ │ │ │ │ ├── RadioAccessSpecifier.struct │ │ │ │ │ ├── ServiceState.struct │ │ │ │ │ ├── SignalStrength.struct │ │ │ │ │ ├── SignalStrengthUpdateRequest.struct │ │ │ │ │ ├── SignalThresholdInfo.struct │ │ │ │ │ ├── SubscriptionInfo.struct │ │ │ │ │ ├── SubscriptionPlan.struct │ │ │ │ │ ├── TelephonyDisplayInfo.struct │ │ │ │ │ ├── TelephonyHistogram.struct │ │ │ │ │ ├── ThermalMitigationRequest.struct │ │ │ │ │ ├── UiccAccessRule.struct │ │ │ │ │ ├── UiccCardInfo.struct │ │ │ │ │ ├── UiccSlotInfo.struct │ │ │ │ │ ├── VisualVoicemailSmsFilterSettings.struct │ │ │ │ │ ├── cdma │ │ │ │ │ │ └── CdmaSmsCbProgramData.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── embmstestapp │ │ │ │ │ │ │ ├── ICtsDownloadMiddlewareControl.struct │ │ │ │ │ │ │ ├── ICtsGroupCallMiddlewareControl.struct │ │ │ │ │ │ │ └── ICtsStreamingMiddlewareControl.struct │ │ │ │ │ │ ├── externalimsservice │ │ │ │ │ │ │ └── ITestExternalImsService.struct │ │ │ │ │ │ └── locationaccessingapp │ │ │ │ │ │ │ └── ICtsLocationAccessControl.struct │ │ │ │ │ ├── data │ │ │ │ │ │ ├── ApnSetting.struct │ │ │ │ │ │ ├── DataCallResponse.struct │ │ │ │ │ │ ├── DataProfile.struct │ │ │ │ │ │ ├── EpsBearerQosSessionAttributes.struct │ │ │ │ │ │ ├── IDataService.struct │ │ │ │ │ │ ├── IDataServiceCallback.struct │ │ │ │ │ │ ├── IQualifiedNetworksService.struct │ │ │ │ │ │ ├── IQualifiedNetworksServiceCallback.struct │ │ │ │ │ │ ├── NetworkSliceInfo.struct │ │ │ │ │ │ ├── NrQosSessionAttributes.struct │ │ │ │ │ │ ├── QosBearerFilter$PortRange.struct │ │ │ │ │ │ ├── QosBearerFilter.struct │ │ │ │ │ │ ├── QosBearerSession.struct │ │ │ │ │ │ ├── ThrottleStatus.struct │ │ │ │ │ │ └── TrafficDescriptor.struct │ │ │ │ │ ├── emergency │ │ │ │ │ │ └── EmergencyNumber.struct │ │ │ │ │ ├── euicc │ │ │ │ │ │ ├── DownloadableSubscription.struct │ │ │ │ │ │ ├── EuiccInfo.struct │ │ │ │ │ │ ├── EuiccNotification.struct │ │ │ │ │ │ └── EuiccRulesAuthTable.struct │ │ │ │ │ ├── gba │ │ │ │ │ │ ├── GbaAuthRequest.struct │ │ │ │ │ │ ├── IGbaService.struct │ │ │ │ │ │ └── UaSecurityProtocolIdentifier.struct │ │ │ │ │ ├── ims │ │ │ │ │ │ ├── DelegateRegistrationState.struct │ │ │ │ │ │ ├── DelegateRequest.struct │ │ │ │ │ │ ├── FeatureTagState.struct │ │ │ │ │ │ ├── ImsCallForwardInfo.struct │ │ │ │ │ │ ├── ImsCallProfile.struct │ │ │ │ │ │ ├── ImsConferenceState.struct │ │ │ │ │ │ ├── ImsExternalCallState.struct │ │ │ │ │ │ ├── ImsReasonInfo.struct │ │ │ │ │ │ ├── ImsRegistrationAttributes.struct │ │ │ │ │ │ ├── ImsSsData.struct │ │ │ │ │ │ ├── ImsSsInfo.struct │ │ │ │ │ │ ├── ImsStreamMediaProfile.struct │ │ │ │ │ │ ├── ImsSuppServiceNotification.struct │ │ │ │ │ │ ├── RcsClientConfiguration.struct │ │ │ │ │ │ ├── RcsContactTerminatedReason.struct │ │ │ │ │ │ ├── RcsContactUceCapability.struct │ │ │ │ │ │ ├── RtpHeaderExtension.struct │ │ │ │ │ │ ├── RtpHeaderExtensionType.struct │ │ │ │ │ │ ├── SipDelegateConfiguration.struct │ │ │ │ │ │ ├── SipDelegateImsConfiguration.struct │ │ │ │ │ │ ├── SipMessage.struct │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ ├── ICapabilityExchangeEventListener.struct │ │ │ │ │ │ │ ├── IImsCallSessionListener.struct │ │ │ │ │ │ │ ├── IImsCapabilityCallback.struct │ │ │ │ │ │ │ ├── IImsConfig.struct │ │ │ │ │ │ │ ├── IImsConfigCallback.struct │ │ │ │ │ │ │ ├── IImsMmTelFeature.struct │ │ │ │ │ │ │ ├── IImsMmTelListener.struct │ │ │ │ │ │ │ ├── IImsRcsController.struct │ │ │ │ │ │ │ ├── IImsRcsFeature.struct │ │ │ │ │ │ │ ├── IImsRegistration.struct │ │ │ │ │ │ │ ├── IImsRegistrationCallback.struct │ │ │ │ │ │ │ ├── IImsServiceController.struct │ │ │ │ │ │ │ ├── IImsServiceControllerListener.struct │ │ │ │ │ │ │ ├── IImsSmsListener.struct │ │ │ │ │ │ │ ├── IOptionsRequestCallback.struct │ │ │ │ │ │ │ ├── IOptionsResponseCallback.struct │ │ │ │ │ │ │ ├── IPublishResponseCallback.struct │ │ │ │ │ │ │ ├── IRcsConfigCallback.struct │ │ │ │ │ │ │ ├── IRcsUceControllerCallback.struct │ │ │ │ │ │ │ ├── IRcsUcePublishStateCallback.struct │ │ │ │ │ │ │ ├── ISipDelegate.struct │ │ │ │ │ │ │ ├── ISipDelegateConnectionStateCallback.struct │ │ │ │ │ │ │ ├── ISipDelegateMessageCallback.struct │ │ │ │ │ │ │ ├── ISipDelegateStateCallback.struct │ │ │ │ │ │ │ ├── ISipTransport.struct │ │ │ │ │ │ │ └── ISubscribeResponseCallback.struct │ │ │ │ │ │ ├── feature │ │ │ │ │ │ │ └── CapabilityChangeRequest.struct │ │ │ │ │ │ └── stub │ │ │ │ │ │ │ └── ImsFeatureConfiguration.struct │ │ │ │ │ └── mbms │ │ │ │ │ │ ├── DownloadRequest.struct │ │ │ │ │ │ ├── FileInfo.struct │ │ │ │ │ │ ├── FileServiceInfo.struct │ │ │ │ │ │ ├── IDownloadProgressListener.struct │ │ │ │ │ │ ├── IDownloadStatusListener.struct │ │ │ │ │ │ ├── IGroupCallCallback.struct │ │ │ │ │ │ ├── IMbmsDownloadSessionCallback.struct │ │ │ │ │ │ ├── IMbmsGroupCallSessionCallback.struct │ │ │ │ │ │ ├── IMbmsStreamingSessionCallback.struct │ │ │ │ │ │ ├── IStreamingServiceCallback.struct │ │ │ │ │ │ ├── StreamingServiceInfo.struct │ │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── IMbmsDownloadService.struct │ │ │ │ │ │ ├── IMbmsGroupCallService.struct │ │ │ │ │ │ └── IMbmsStreamingService.struct │ │ │ │ ├── tests │ │ │ │ │ └── binder │ │ │ │ │ │ └── IBenchmark.struct │ │ │ │ ├── text │ │ │ │ │ ├── FontConfig$Alias.struct │ │ │ │ │ ├── FontConfig$Font.struct │ │ │ │ │ ├── FontConfig$FontFamily.struct │ │ │ │ │ └── FontConfig.struct │ │ │ │ ├── tracing │ │ │ │ │ └── ITracingServiceProxy.struct │ │ │ │ ├── util │ │ │ │ │ ├── IRemoteMemoryIntArray.struct │ │ │ │ │ ├── MemoryIntArray.struct │ │ │ │ │ ├── MergedConfiguration.struct │ │ │ │ │ └── StatsEventParcel.struct │ │ │ │ ├── uwb │ │ │ │ │ ├── IUwbAdapter.struct │ │ │ │ │ ├── IUwbAdapterStateCallbacks.struct │ │ │ │ │ ├── IUwbRangingCallbacks.struct │ │ │ │ │ ├── RangingMeasurement.struct │ │ │ │ │ ├── RangingReport.struct │ │ │ │ │ └── SessionHandle.struct │ │ │ │ ├── vendor │ │ │ │ │ └── powerstats │ │ │ │ │ │ ├── IPixelPowerStatsCallback.struct │ │ │ │ │ │ ├── IPixelPowerStatsProvider.struct │ │ │ │ │ │ ├── IPixelStateResidencyCallback.struct │ │ │ │ │ │ ├── IPixelStateResidencyProvider.struct │ │ │ │ │ │ └── StateResidencyData.struct │ │ │ │ ├── view │ │ │ │ │ ├── AppTransitionAnimationSpec.struct │ │ │ │ │ ├── DisplayInfo.struct │ │ │ │ │ ├── DragEvent.struct │ │ │ │ │ ├── IAppTransitionAnimationSpecsFuture.struct │ │ │ │ │ ├── IApplicationToken.struct │ │ │ │ │ ├── ICrossWindowBlurEnabledListener.struct │ │ │ │ │ ├── IDisplayFoldListener.struct │ │ │ │ │ ├── IDisplayWindowInsetsController.struct │ │ │ │ │ ├── IDisplayWindowListener.struct │ │ │ │ │ ├── IDisplayWindowRotationCallback.struct │ │ │ │ │ ├── IDisplayWindowRotationController.struct │ │ │ │ │ ├── IDockedStackListener.struct │ │ │ │ │ ├── IGraphicsStats.struct │ │ │ │ │ ├── IGraphicsStatsCallback.struct │ │ │ │ │ ├── IInputFilter.struct │ │ │ │ │ ├── IInputFilterHost.struct │ │ │ │ │ ├── IInputMonitorHost.struct │ │ │ │ │ ├── IOnKeyguardExitResult.struct │ │ │ │ │ ├── IPinnedTaskListener.struct │ │ │ │ │ ├── IRecentsAnimationController.struct │ │ │ │ │ ├── IRecentsAnimationRunner.struct │ │ │ │ │ ├── IRemoteAnimationFinishedCallback.struct │ │ │ │ │ ├── IRemoteAnimationRunner.struct │ │ │ │ │ ├── IRotationWatcher.struct │ │ │ │ │ ├── IScrollCaptureCallbacks.struct │ │ │ │ │ ├── IScrollCaptureConnection.struct │ │ │ │ │ ├── IScrollCaptureResponseListener.struct │ │ │ │ │ ├── ISystemGestureExclusionListener.struct │ │ │ │ │ ├── IWallpaperVisibilityListener.struct │ │ │ │ │ ├── IWindow.struct │ │ │ │ │ ├── IWindowFocusObserver.struct │ │ │ │ │ ├── IWindowId.struct │ │ │ │ │ ├── IWindowManager.struct │ │ │ │ │ ├── IWindowSession.struct │ │ │ │ │ ├── IWindowSessionCallback.struct │ │ │ │ │ ├── InputChannel.struct │ │ │ │ │ ├── InputDevice.struct │ │ │ │ │ ├── InputEvent.struct │ │ │ │ │ ├── InsetsSource.struct │ │ │ │ │ ├── InsetsSourceControl.struct │ │ │ │ │ ├── InsetsState.struct │ │ │ │ │ ├── InsetsVisibilities.struct │ │ │ │ │ ├── KeyCharacterMap.struct │ │ │ │ │ ├── KeyEvent.struct │ │ │ │ │ ├── MagnificationSpec.struct │ │ │ │ │ ├── MotionEvent.struct │ │ │ │ │ ├── PointerIcon.struct │ │ │ │ │ ├── RemoteAnimationAdapter.struct │ │ │ │ │ ├── RemoteAnimationDefinition$RemoteAnimationAdapterEntry.struct │ │ │ │ │ ├── RemoteAnimationDefinition.struct │ │ │ │ │ ├── RemoteAnimationTarget.struct │ │ │ │ │ ├── ScrollCaptureResponse.struct │ │ │ │ │ ├── Surface.struct │ │ │ │ │ ├── SurfaceControl$Transaction.struct │ │ │ │ │ ├── SurfaceControl.struct │ │ │ │ │ ├── TaskTransitionSpec.struct │ │ │ │ │ ├── VerifiedInputEvent.struct │ │ │ │ │ ├── WindowAnimationFrameStats.struct │ │ │ │ │ ├── WindowContentFrameStats.struct │ │ │ │ │ ├── accessibility │ │ │ │ │ │ ├── AccessibilityEvent.struct │ │ │ │ │ │ ├── AccessibilityNodeInfo$AccessibilityAction.struct │ │ │ │ │ │ ├── AccessibilityNodeInfo$TouchDelegateInfo.struct │ │ │ │ │ │ ├── AccessibilityNodeInfo.struct │ │ │ │ │ │ ├── AccessibilityWindowInfo$WindowListSparseArray.struct │ │ │ │ │ │ ├── AccessibilityWindowInfo.struct │ │ │ │ │ │ ├── IAccessibilityEmbeddedConnection.struct │ │ │ │ │ │ ├── IAccessibilityInteractionConnection.struct │ │ │ │ │ │ ├── IAccessibilityInteractionConnectionCallback.struct │ │ │ │ │ │ ├── IAccessibilityManager.struct │ │ │ │ │ │ ├── IAccessibilityManagerClient.struct │ │ │ │ │ │ ├── IRemoteMagnificationAnimationCallback.struct │ │ │ │ │ │ ├── IWindowMagnificationConnection.struct │ │ │ │ │ │ └── IWindowMagnificationConnectionCallback.struct │ │ │ │ │ ├── autofill │ │ │ │ │ │ ├── AutofillId.struct │ │ │ │ │ │ ├── AutofillValue.struct │ │ │ │ │ │ ├── IAugmentedAutofillManagerClient.struct │ │ │ │ │ │ ├── IAutoFillManager.struct │ │ │ │ │ │ ├── IAutoFillManagerClient.struct │ │ │ │ │ │ └── IAutofillWindowPresenter.struct │ │ │ │ │ ├── contentcapture │ │ │ │ │ │ ├── ContentCaptureCondition.struct │ │ │ │ │ │ ├── ContentCaptureContext.struct │ │ │ │ │ │ ├── DataRemovalRequest.struct │ │ │ │ │ │ ├── DataShareRequest.struct │ │ │ │ │ │ ├── IContentCaptureDirectManager.struct │ │ │ │ │ │ ├── IContentCaptureManager.struct │ │ │ │ │ │ ├── IContentCaptureOptionsCallback.struct │ │ │ │ │ │ └── IDataShareWriteAdapter.struct │ │ │ │ │ ├── displayhash │ │ │ │ │ │ ├── DisplayHash.struct │ │ │ │ │ │ └── VerifiedDisplayHash.struct │ │ │ │ │ ├── inputmethod │ │ │ │ │ │ ├── CompletionInfo.struct │ │ │ │ │ │ ├── CorrectionInfo.struct │ │ │ │ │ │ ├── CursorAnchorInfo.struct │ │ │ │ │ │ ├── EditorInfo.struct │ │ │ │ │ │ ├── ExtractedText.struct │ │ │ │ │ │ ├── ExtractedTextRequest.struct │ │ │ │ │ │ ├── InlineSuggestionsRequest.struct │ │ │ │ │ │ ├── InlineSuggestionsResponse.struct │ │ │ │ │ │ ├── InputBinding.struct │ │ │ │ │ │ ├── InputContentInfo.struct │ │ │ │ │ │ ├── InputMethodInfo.struct │ │ │ │ │ │ ├── InputMethodSubtype.struct │ │ │ │ │ │ ├── SurroundingText.struct │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── IWindowFocusStealer.struct │ │ │ │ │ ├── textclassifier │ │ │ │ │ │ ├── SelectionEvent.struct │ │ │ │ │ │ ├── TextClassificationContext.struct │ │ │ │ │ │ ├── TextClassificationSessionId.struct │ │ │ │ │ │ ├── TextClassifierEvent$ConversationActionsEvent.struct │ │ │ │ │ │ ├── TextClassifierEvent$LanguageDetectionEvent.struct │ │ │ │ │ │ ├── TextClassifierEvent$TextLinkifyEvent.struct │ │ │ │ │ │ ├── TextClassifierEvent$TextSelectionEvent.struct │ │ │ │ │ │ └── TextClassifierEvent.struct │ │ │ │ │ ├── textservice │ │ │ │ │ │ ├── SentenceSuggestionsInfo.struct │ │ │ │ │ │ ├── SpellCheckerInfo.struct │ │ │ │ │ │ ├── SpellCheckerSubtype.struct │ │ │ │ │ │ ├── SuggestionsInfo.struct │ │ │ │ │ │ └── TextInfo.struct │ │ │ │ │ └── translation │ │ │ │ │ │ ├── ITranslationDirectManager.struct │ │ │ │ │ │ ├── ITranslationManager.struct │ │ │ │ │ │ ├── ITranslationServiceCallback.struct │ │ │ │ │ │ ├── TranslationCapability.struct │ │ │ │ │ │ ├── TranslationContext.struct │ │ │ │ │ │ ├── TranslationRequest.struct │ │ │ │ │ │ ├── TranslationResponse.struct │ │ │ │ │ │ └── UiTranslationSpec.struct │ │ │ │ ├── webkit │ │ │ │ │ ├── IWebViewUpdateService.struct │ │ │ │ │ ├── WebViewProviderInfo.struct │ │ │ │ │ └── WebViewProviderResponse.struct │ │ │ │ ├── widget │ │ │ │ │ └── RemoteViews.struct │ │ │ │ └── window │ │ │ │ │ ├── ClientWindowFrames.struct │ │ │ │ │ ├── DisplayAreaAppearedInfo.struct │ │ │ │ │ ├── DisplayAreaInfo.struct │ │ │ │ │ ├── IDisplayAreaOrganizer.struct │ │ │ │ │ ├── IDisplayAreaOrganizerController.struct │ │ │ │ │ ├── IRemoteTransition.struct │ │ │ │ │ ├── IRemoteTransitionFinishedCallback.struct │ │ │ │ │ ├── ITaskFragmentOrganizer.struct │ │ │ │ │ ├── ITaskFragmentOrganizerController.struct │ │ │ │ │ ├── ITaskOrganizer.struct │ │ │ │ │ ├── ITaskOrganizerController.struct │ │ │ │ │ ├── ITransitionMetricsReporter.struct │ │ │ │ │ ├── ITransitionPlayer.struct │ │ │ │ │ ├── IWindowContainerToken.struct │ │ │ │ │ ├── IWindowContainerTransactionCallback.struct │ │ │ │ │ ├── IWindowOrganizerController.struct │ │ │ │ │ ├── PictureInPictureSurfaceTransaction.struct │ │ │ │ │ ├── SizeConfigurationBuckets.struct │ │ │ │ │ ├── StartingWindowInfo.struct │ │ │ │ │ ├── StartingWindowRemovalInfo.struct │ │ │ │ │ ├── TaskFragmentInfo.struct │ │ │ │ │ ├── TransitionFilter.struct │ │ │ │ │ ├── TransitionInfo$AnimationOptions.struct │ │ │ │ │ ├── TransitionInfo$Change.struct │ │ │ │ │ ├── TransitionInfo.struct │ │ │ │ │ ├── TransitionRequestInfo.struct │ │ │ │ │ ├── WindowContainerToken.struct │ │ │ │ │ ├── WindowContainerTransaction$Change.struct │ │ │ │ │ ├── WindowContainerTransaction$HierarchyOp.struct │ │ │ │ │ └── WindowContainerTransaction.struct │ │ │ ├── another_package │ │ │ │ └── IFaz.struct │ │ │ ├── classPaths.txt │ │ │ ├── com │ │ │ │ ├── android │ │ │ │ │ ├── bips │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ └── SizeD.struct │ │ │ │ │ │ └── render │ │ │ │ │ │ │ └── IPdfRender.struct │ │ │ │ │ ├── car │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── ICarServiceHelper.struct │ │ │ │ │ │ │ └── ICarSystemServerClient.struct │ │ │ │ │ │ ├── keventreader │ │ │ │ │ │ │ ├── IEventCallback.struct │ │ │ │ │ │ │ ├── IEventProvider.struct │ │ │ │ │ │ │ └── KeypressEvent.struct │ │ │ │ │ │ ├── procfsinspector │ │ │ │ │ │ │ ├── IProcfsInspector.struct │ │ │ │ │ │ │ └── ProcessInfo.struct │ │ │ │ │ │ ├── radio │ │ │ │ │ │ │ ├── bands │ │ │ │ │ │ │ │ ├── ProgramType.struct │ │ │ │ │ │ │ │ └── RegionConfig.struct │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ ├── IRadioAppCallback.struct │ │ │ │ │ │ │ │ ├── IRadioAppService.struct │ │ │ │ │ │ │ │ └── ITuneCallback.struct │ │ │ │ │ │ ├── setupwizardlib │ │ │ │ │ │ │ ├── IInitialLockSetupService.struct │ │ │ │ │ │ │ └── LockConfig.struct │ │ │ │ │ │ └── telemetry │ │ │ │ │ │ │ └── scriptexecutorinterface │ │ │ │ │ │ │ ├── IScriptExecutor.struct │ │ │ │ │ │ │ └── IScriptExecutorListener.struct │ │ │ │ │ ├── compatibility │ │ │ │ │ │ └── common │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── devicepolicy │ │ │ │ │ │ │ └── provisioning │ │ │ │ │ │ │ └── IBooleanCallback.struct │ │ │ │ │ ├── compos │ │ │ │ │ │ ├── ICompService.struct │ │ │ │ │ │ ├── InputFdAnnotation.struct │ │ │ │ │ │ ├── Metadata.struct │ │ │ │ │ │ └── OutputFdAnnotation.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── IBinderPermissionTestService.struct │ │ │ │ │ │ ├── appdataisolation │ │ │ │ │ │ │ └── appa │ │ │ │ │ │ │ │ └── IIsolatedService.struct │ │ │ │ │ │ ├── appsearch │ │ │ │ │ │ │ └── ICommandReceiver.struct │ │ │ │ │ │ ├── blob │ │ │ │ │ │ │ └── ICommandReceiver.struct │ │ │ │ │ │ ├── comp │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ ├── deviceowner │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ └── hostside │ │ │ │ │ │ │ │ ├── IMyService.struct │ │ │ │ │ │ │ │ ├── INetworkCallback.struct │ │ │ │ │ │ │ │ ├── INetworkStateObserver.struct │ │ │ │ │ │ │ │ └── IRemoteSocketFactory.struct │ │ │ │ │ │ └── verifier │ │ │ │ │ │ │ ├── managedprovisioning │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ │ └── projection │ │ │ │ │ │ │ └── IProjectionService.struct │ │ │ │ │ ├── development │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ ├── dialer │ │ │ │ │ │ └── simulator │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── ISimulatorService.struct │ │ │ │ │ ├── eventlib │ │ │ │ │ │ └── IQueryService.struct │ │ │ │ │ ├── frameworks │ │ │ │ │ │ ├── coretests │ │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ │ ├── IBinderProxyCountingService.struct │ │ │ │ │ │ │ │ ├── IBpcCallbackObserver.struct │ │ │ │ │ │ │ │ ├── IBpcTestAppCmdService.struct │ │ │ │ │ │ │ │ ├── IBpcTestServiceCmdService.struct │ │ │ │ │ │ │ │ ├── ICmdCallback.struct │ │ │ │ │ │ │ │ ├── ICmdReceiver.struct │ │ │ │ │ │ │ │ └── ITestRemoteCallback.struct │ │ │ │ │ │ └── perftests │ │ │ │ │ │ │ └── am │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── ICommandReceiver.struct │ │ │ │ │ │ │ └── ITimeReceiverCallback.struct │ │ │ │ │ ├── ims │ │ │ │ │ │ ├── IRcsPresenceListener.struct │ │ │ │ │ │ ├── ImsConfigListener.struct │ │ │ │ │ │ ├── ImsFeatureContainer.struct │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── IImsCallSession.struct │ │ │ │ │ │ │ ├── IImsCallSessionListener.struct │ │ │ │ │ │ │ ├── IImsConfig.struct │ │ │ │ │ │ │ ├── IImsEcbm.struct │ │ │ │ │ │ │ ├── IImsEcbmListener.struct │ │ │ │ │ │ │ ├── IImsExternalCallStateListener.struct │ │ │ │ │ │ │ ├── IImsFeatureStatusCallback.struct │ │ │ │ │ │ │ ├── IImsMMTelFeature.struct │ │ │ │ │ │ │ ├── IImsMultiEndpoint.struct │ │ │ │ │ │ │ ├── IImsRcsFeature.struct │ │ │ │ │ │ │ ├── IImsRegistrationListener.struct │ │ │ │ │ │ │ ├── IImsService.struct │ │ │ │ │ │ │ ├── IImsServiceController.struct │ │ │ │ │ │ │ ├── IImsServiceFeatureCallback.struct │ │ │ │ │ │ │ ├── IImsStreamMediaSession.struct │ │ │ │ │ │ │ ├── IImsUt.struct │ │ │ │ │ │ │ ├── IImsUtListener.struct │ │ │ │ │ │ │ ├── IImsVideoCallCallback.struct │ │ │ │ │ │ │ ├── IImsVideoCallProvider.struct │ │ │ │ │ │ │ ├── IRcsPresence.struct │ │ │ │ │ │ │ ├── IRcsService.struct │ │ │ │ │ │ │ └── uce │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── CapInfo.struct │ │ │ │ │ │ │ ├── StatusCode.struct │ │ │ │ │ │ │ └── UceLong.struct │ │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ ├── IOptionsListener.struct │ │ │ │ │ │ │ ├── IOptionsService.struct │ │ │ │ │ │ │ ├── OptionsCapInfo.struct │ │ │ │ │ │ │ ├── OptionsCmdStatus.struct │ │ │ │ │ │ │ └── OptionsSipResponse.struct │ │ │ │ │ │ │ ├── presence │ │ │ │ │ │ │ ├── IPresenceListener.struct │ │ │ │ │ │ │ ├── IPresenceService.struct │ │ │ │ │ │ │ ├── PresCapInfo.struct │ │ │ │ │ │ │ ├── PresCmdStatus.struct │ │ │ │ │ │ │ ├── PresPublishTriggerType.struct │ │ │ │ │ │ │ ├── PresResInfo.struct │ │ │ │ │ │ │ ├── PresRlmiInfo.struct │ │ │ │ │ │ │ ├── PresServiceInfo.struct │ │ │ │ │ │ │ ├── PresSipResponse.struct │ │ │ │ │ │ │ └── PresTupleInfo.struct │ │ │ │ │ │ │ └── uceservice │ │ │ │ │ │ │ ├── IUceListener.struct │ │ │ │ │ │ │ └── IUceService.struct │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── IAppOpsActiveCallback.struct │ │ │ │ │ │ │ ├── IAppOpsAsyncNotedCallback.struct │ │ │ │ │ │ │ ├── IAppOpsCallback.struct │ │ │ │ │ │ │ ├── IAppOpsNotedCallback.struct │ │ │ │ │ │ │ ├── IAppOpsService.struct │ │ │ │ │ │ │ ├── IAppOpsStartedCallback.struct │ │ │ │ │ │ │ ├── IBatteryStats.struct │ │ │ │ │ │ │ ├── IHotwordRecognitionStatusCallback.struct │ │ │ │ │ │ │ ├── IMediaContainerService.struct │ │ │ │ │ │ │ ├── ISoundTriggerService.struct │ │ │ │ │ │ │ ├── ISoundTriggerSession.struct │ │ │ │ │ │ │ ├── IVoiceActionCheckCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractionManagerService.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSessionListener.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSessionShowCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSoundTriggerSession.struct │ │ │ │ │ │ │ ├── IVoiceInteractor.struct │ │ │ │ │ │ │ ├── IVoiceInteractorCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractorRequest.struct │ │ │ │ │ │ │ ├── MessageSamplingConfig.struct │ │ │ │ │ │ │ └── procstats │ │ │ │ │ │ │ │ ├── IProcessStats.struct │ │ │ │ │ │ │ │ └── ProcessStats.struct │ │ │ │ │ │ ├── appwidget │ │ │ │ │ │ │ ├── IAppWidgetHost.struct │ │ │ │ │ │ │ └── IAppWidgetService.struct │ │ │ │ │ │ ├── backup │ │ │ │ │ │ │ ├── IBackupTransport.struct │ │ │ │ │ │ │ └── IObbBackupService.struct │ │ │ │ │ │ ├── compat │ │ │ │ │ │ │ ├── CompatibilityChangeConfig.struct │ │ │ │ │ │ │ ├── CompatibilityChangeInfo.struct │ │ │ │ │ │ │ ├── CompatibilityOverrideConfig.struct │ │ │ │ │ │ │ ├── CompatibilityOverridesToRemoveConfig.struct │ │ │ │ │ │ │ ├── IOverrideValidator.struct │ │ │ │ │ │ │ ├── IPlatformCompat.struct │ │ │ │ │ │ │ ├── IPlatformCompatNative.struct │ │ │ │ │ │ │ └── OverrideAllowedState.struct │ │ │ │ │ │ ├── graphics │ │ │ │ │ │ │ └── fonts │ │ │ │ │ │ │ │ └── IFontManager.struct │ │ │ │ │ │ ├── infra │ │ │ │ │ │ │ ├── AndroidFuture.struct │ │ │ │ │ │ │ └── IAndroidFuture.struct │ │ │ │ │ │ ├── inputmethod │ │ │ │ │ │ │ ├── IBooleanResultCallback.struct │ │ │ │ │ │ │ ├── ICharSequenceResultCallback.struct │ │ │ │ │ │ │ ├── IExtractedTextResultCallback.struct │ │ │ │ │ │ │ ├── IIInputContentUriTokenResultCallback.struct │ │ │ │ │ │ │ ├── IInputBindResultResultCallback.struct │ │ │ │ │ │ │ ├── IInputContentUriToken.struct │ │ │ │ │ │ │ ├── IInputMethodInfoListResultCallback.struct │ │ │ │ │ │ │ ├── IInputMethodPrivilegedOperations.struct │ │ │ │ │ │ │ ├── IInputMethodSubtypeListResultCallback.struct │ │ │ │ │ │ │ ├── IInputMethodSubtypeResultCallback.struct │ │ │ │ │ │ │ ├── IIntResultCallback.struct │ │ │ │ │ │ │ ├── IMultiClientInputMethod.struct │ │ │ │ │ │ │ ├── IMultiClientInputMethodPrivilegedOperations.struct │ │ │ │ │ │ │ ├── IMultiClientInputMethodSession.struct │ │ │ │ │ │ │ ├── ISurroundingTextResultCallback.struct │ │ │ │ │ │ │ ├── IVoidResultCallback.struct │ │ │ │ │ │ │ └── ThrowableHolder.struct │ │ │ │ │ │ ├── logging │ │ │ │ │ │ │ └── InstanceId.struct │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ ├── INetworkWatchlistManager.struct │ │ │ │ │ │ │ ├── IOemNetd.struct │ │ │ │ │ │ │ ├── IOemNetdUnsolicitedEventListener.struct │ │ │ │ │ │ │ ├── LegacyVpnInfo.struct │ │ │ │ │ │ │ ├── VpnConfig.struct │ │ │ │ │ │ │ └── VpnProfile.struct │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ ├── AppFuseMount.struct │ │ │ │ │ │ │ ├── IDropBoxManagerService.struct │ │ │ │ │ │ │ ├── IParcelFileDescriptorFactory.struct │ │ │ │ │ │ │ ├── IResultReceiver.struct │ │ │ │ │ │ │ └── IShellCallback.struct │ │ │ │ │ │ ├── policy │ │ │ │ │ │ │ ├── IKeyguardDismissCallback.struct │ │ │ │ │ │ │ ├── IKeyguardDrawnCallback.struct │ │ │ │ │ │ │ ├── IKeyguardExitCallback.struct │ │ │ │ │ │ │ ├── IKeyguardService.struct │ │ │ │ │ │ │ ├── IKeyguardStateCallback.struct │ │ │ │ │ │ │ └── IShortcutService.struct │ │ │ │ │ │ ├── statusbar │ │ │ │ │ │ │ ├── IStatusBar.struct │ │ │ │ │ │ │ ├── IStatusBarService.struct │ │ │ │ │ │ │ ├── NotificationVisibility.struct │ │ │ │ │ │ │ ├── RegisterStatusBarResult.struct │ │ │ │ │ │ │ └── StatusBarIcon.struct │ │ │ │ │ │ ├── telecom │ │ │ │ │ │ │ ├── ICallDiagnosticService.struct │ │ │ │ │ │ │ ├── ICallDiagnosticServiceAdapter.struct │ │ │ │ │ │ │ ├── ICallRedirectionAdapter.struct │ │ │ │ │ │ │ ├── ICallRedirectionService.struct │ │ │ │ │ │ │ ├── ICallScreeningAdapter.struct │ │ │ │ │ │ │ ├── ICallScreeningService.struct │ │ │ │ │ │ │ ├── IConnectionService.struct │ │ │ │ │ │ │ ├── IConnectionServiceAdapter.struct │ │ │ │ │ │ │ ├── IDeviceIdleControllerAdapter.struct │ │ │ │ │ │ │ ├── IInCallAdapter.struct │ │ │ │ │ │ │ ├── IInCallService.struct │ │ │ │ │ │ │ ├── IInternalServiceRetriever.struct │ │ │ │ │ │ │ ├── IPhoneAccountSuggestionCallback.struct │ │ │ │ │ │ │ ├── IPhoneAccountSuggestionService.struct │ │ │ │ │ │ │ ├── ITelecomLoader.struct │ │ │ │ │ │ │ ├── ITelecomService.struct │ │ │ │ │ │ │ ├── IVideoCallback.struct │ │ │ │ │ │ │ ├── IVideoProvider.struct │ │ │ │ │ │ │ └── RemoteServiceCallback.struct │ │ │ │ │ │ ├── telephony │ │ │ │ │ │ │ ├── CellNetworkScanResult.struct │ │ │ │ │ │ │ ├── IBooleanConsumer.struct │ │ │ │ │ │ │ ├── ICallForwardingInfoCallback.struct │ │ │ │ │ │ │ ├── ICarrierConfigLoader.struct │ │ │ │ │ │ │ ├── IIccPhoneBook.struct │ │ │ │ │ │ │ ├── IIntegerConsumer.struct │ │ │ │ │ │ │ ├── IMms.struct │ │ │ │ │ │ │ ├── INumberVerificationCallback.struct │ │ │ │ │ │ │ ├── IOnSubscriptionsChangedListener.struct │ │ │ │ │ │ │ ├── IOns.struct │ │ │ │ │ │ │ ├── IPhoneStateListener.struct │ │ │ │ │ │ │ ├── IPhoneSubInfo.struct │ │ │ │ │ │ │ ├── ISetOpportunisticDataCallback.struct │ │ │ │ │ │ │ ├── ISms.struct │ │ │ │ │ │ │ ├── ISub.struct │ │ │ │ │ │ │ ├── ITelephony.struct │ │ │ │ │ │ │ ├── ITelephonyRegistry.struct │ │ │ │ │ │ │ ├── IUpdateAvailableNetworksCallback.struct │ │ │ │ │ │ │ ├── IWapPushManager.struct │ │ │ │ │ │ │ ├── OperatorInfo.struct │ │ │ │ │ │ │ ├── SmsRawData.struct │ │ │ │ │ │ │ ├── euicc │ │ │ │ │ │ │ │ ├── IAuthenticateServerCallback.struct │ │ │ │ │ │ │ │ ├── ICancelSessionCallback.struct │ │ │ │ │ │ │ │ ├── IDeleteProfileCallback.struct │ │ │ │ │ │ │ │ ├── IDisableProfileCallback.struct │ │ │ │ │ │ │ │ ├── IEuiccCardController.struct │ │ │ │ │ │ │ │ ├── IEuiccController.struct │ │ │ │ │ │ │ │ ├── IGetAllProfilesCallback.struct │ │ │ │ │ │ │ │ ├── IGetDefaultSmdpAddressCallback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccChallengeCallback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccInfo1Callback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccInfo2Callback.struct │ │ │ │ │ │ │ │ ├── IGetProfileCallback.struct │ │ │ │ │ │ │ │ ├── IGetRulesAuthTableCallback.struct │ │ │ │ │ │ │ │ ├── IGetSmdsAddressCallback.struct │ │ │ │ │ │ │ │ ├── IListNotificationsCallback.struct │ │ │ │ │ │ │ │ ├── ILoadBoundProfilePackageCallback.struct │ │ │ │ │ │ │ │ ├── IPrepareDownloadCallback.struct │ │ │ │ │ │ │ │ ├── IRemoveNotificationFromListCallback.struct │ │ │ │ │ │ │ │ ├── IResetMemoryCallback.struct │ │ │ │ │ │ │ │ ├── IRetrieveNotificationCallback.struct │ │ │ │ │ │ │ │ ├── IRetrieveNotificationListCallback.struct │ │ │ │ │ │ │ │ ├── ISetDefaultSmdpAddressCallback.struct │ │ │ │ │ │ │ │ ├── ISetNicknameCallback.struct │ │ │ │ │ │ │ │ └── ISwitchToProfileCallback.struct │ │ │ │ │ │ │ └── uicc │ │ │ │ │ │ │ │ ├── AdnCapacity.struct │ │ │ │ │ │ │ │ └── AdnRecord.struct │ │ │ │ │ │ ├── textservice │ │ │ │ │ │ │ ├── ISpellCheckerService.struct │ │ │ │ │ │ │ ├── ISpellCheckerServiceCallback.struct │ │ │ │ │ │ │ ├── ISpellCheckerSession.struct │ │ │ │ │ │ │ ├── ISpellCheckerSessionListener.struct │ │ │ │ │ │ │ ├── ITextServicesManager.struct │ │ │ │ │ │ │ └── ITextServicesSessionListener.struct │ │ │ │ │ │ ├── view │ │ │ │ │ │ │ ├── AppearanceRegion.struct │ │ │ │ │ │ │ ├── IDragAndDropPermissions.struct │ │ │ │ │ │ │ ├── IInlineSuggestionsRequestCallback.struct │ │ │ │ │ │ │ ├── IInlineSuggestionsResponseCallback.struct │ │ │ │ │ │ │ ├── IInputContext.struct │ │ │ │ │ │ │ ├── IInputMethod.struct │ │ │ │ │ │ │ ├── IInputMethodClient.struct │ │ │ │ │ │ │ ├── IInputMethodManager.struct │ │ │ │ │ │ │ ├── IInputMethodSession.struct │ │ │ │ │ │ │ ├── IInputSessionCallback.struct │ │ │ │ │ │ │ ├── InputBindResult.struct │ │ │ │ │ │ │ └── inline │ │ │ │ │ │ │ │ ├── IInlineContentCallback.struct │ │ │ │ │ │ │ │ └── IInlineContentProvider.struct │ │ │ │ │ │ └── widget │ │ │ │ │ │ │ ├── ICheckCredentialProgressCallback.struct │ │ │ │ │ │ │ ├── ILockSettings.struct │ │ │ │ │ │ │ ├── IRemoteViewsFactory.struct │ │ │ │ │ │ │ ├── LockscreenCredential.struct │ │ │ │ │ │ │ └── VerifyCredentialResponse.struct │ │ │ │ │ ├── keychain │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ └── IKeyChainServiceTestSupport.struct │ │ │ │ │ ├── net │ │ │ │ │ │ ├── IProxyCallback.struct │ │ │ │ │ │ ├── IProxyPortListener.struct │ │ │ │ │ │ └── IProxyService.struct │ │ │ │ │ ├── onemedia │ │ │ │ │ │ ├── IPlayerCallback.struct │ │ │ │ │ │ ├── IPlayerService.struct │ │ │ │ │ │ └── playback │ │ │ │ │ │ │ └── IRequestCallback.struct │ │ │ │ │ ├── printspooler │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ ├── IPdfEditor.struct │ │ │ │ │ │ │ └── IPdfRenderer.struct │ │ │ │ │ ├── server │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ └── integrationtests │ │ │ │ │ │ │ │ └── INetworkStackInstrumentation.struct │ │ │ │ │ │ └── profcollect │ │ │ │ │ │ │ └── IProfCollectd.struct │ │ │ │ │ ├── servicestests │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ ├── ICmdReceiverService.struct │ │ │ │ │ │ │ └── INetworkStateObserver.struct │ │ │ │ │ ├── smspush │ │ │ │ │ │ └── unitTests │ │ │ │ │ │ │ └── IDataVerify.struct │ │ │ │ │ ├── suspendapps │ │ │ │ │ │ └── suspendtestapp │ │ │ │ │ │ │ ├── IBroadcastReporter.struct │ │ │ │ │ │ │ └── ITestService.struct │ │ │ │ │ ├── systemui │ │ │ │ │ │ ├── assist │ │ │ │ │ │ │ └── IAssistHandleService.struct │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ ├── recents │ │ │ │ │ │ │ ├── IOverviewProxy.struct │ │ │ │ │ │ │ └── ISystemUiProxy.struct │ │ │ │ │ │ │ └── system │ │ │ │ │ │ │ └── smartspace │ │ │ │ │ │ │ ├── ISmartspaceCallback.struct │ │ │ │ │ │ │ └── ISmartspaceTransitionController.struct │ │ │ │ │ ├── test │ │ │ │ │ │ └── notificationlistener │ │ │ │ │ │ │ └── INotificationUriAccessService.struct │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ │ └── basicprojectwithaidl │ │ │ │ │ │ │ ├── ITest.struct │ │ │ │ │ │ │ └── Rect.struct │ │ │ │ │ ├── tv │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ │ ├── ISettingsService.struct │ │ │ │ │ │ │ │ ├── ISettingsServiceListener.struct │ │ │ │ │ │ │ │ └── PreferenceParcelable.struct │ │ │ │ │ │ │ ├── users │ │ │ │ │ │ │ │ └── IRestrictedProfilePinService.struct │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ └── IActivityTransitionBitmapProvider.struct │ │ │ │ │ │ └── testing │ │ │ │ │ │ │ └── testinput │ │ │ │ │ │ │ ├── ChannelStateData.struct │ │ │ │ │ │ │ └── ITestInputControl.struct │ │ │ │ │ ├── virt │ │ │ │ │ │ └── fs │ │ │ │ │ │ │ └── IVirtFdService.struct │ │ │ │ │ └── wm │ │ │ │ │ │ └── shell │ │ │ │ │ │ ├── onehanded │ │ │ │ │ │ └── IOneHanded.struct │ │ │ │ │ │ ├── pip │ │ │ │ │ │ ├── IPip.struct │ │ │ │ │ │ └── IPipAnimationListener.struct │ │ │ │ │ │ ├── recents │ │ │ │ │ │ ├── IRecentTasks.struct │ │ │ │ │ │ └── IRecentTasksListener.struct │ │ │ │ │ │ ├── splitscreen │ │ │ │ │ │ ├── ISplitScreen.struct │ │ │ │ │ │ └── ISplitScreenListener.struct │ │ │ │ │ │ ├── stagesplit │ │ │ │ │ │ ├── ISplitScreen.struct │ │ │ │ │ │ └── ISplitScreenListener.struct │ │ │ │ │ │ ├── startingsurface │ │ │ │ │ │ ├── IStartingWindow.struct │ │ │ │ │ │ └── IStartingWindowListener.struct │ │ │ │ │ │ ├── transition │ │ │ │ │ │ └── IShellTransitions.struct │ │ │ │ │ │ └── util │ │ │ │ │ │ └── GroupedRecentTaskInfo.struct │ │ │ │ ├── example │ │ │ │ │ └── android │ │ │ │ │ │ └── apis │ │ │ │ │ │ └── app │ │ │ │ │ │ ├── IRemoteService.struct │ │ │ │ │ │ ├── IRemoteServiceCallback.struct │ │ │ │ │ │ └── ISecondary.struct │ │ │ │ ├── google │ │ │ │ │ ├── android │ │ │ │ │ │ ├── enterprise │ │ │ │ │ │ │ └── connectedapps │ │ │ │ │ │ │ │ ├── ICrossProfileCallback.struct │ │ │ │ │ │ │ │ └── ICrossProfileService.struct │ │ │ │ │ │ ├── setupcompat │ │ │ │ │ │ │ ├── ISetupCompatService.struct │ │ │ │ │ │ │ └── portal │ │ │ │ │ │ │ │ ├── IPortalProgressCallback.struct │ │ │ │ │ │ │ │ ├── IPortalProgressService.struct │ │ │ │ │ │ │ │ ├── IPortalRegisterResultListener.struct │ │ │ │ │ │ │ │ ├── ISetupNotificationService.struct │ │ │ │ │ │ │ │ ├── ISetupNotificationServicePortalExtension.struct │ │ │ │ │ │ │ │ ├── NotificationComponent.struct │ │ │ │ │ │ │ │ ├── ProgressServiceComponent.struct │ │ │ │ │ │ │ │ └── TaskComponent.struct │ │ │ │ │ │ ├── setupwizard │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ └── INetworkInterceptService.struct │ │ │ │ │ │ └── startop │ │ │ │ │ │ │ └── iorap │ │ │ │ │ │ │ ├── ActivityInfo.struct │ │ │ │ │ │ │ ├── AppIntentEvent.struct │ │ │ │ │ │ │ ├── AppLaunchEvent.struct │ │ │ │ │ │ │ ├── DexOptEvent.struct │ │ │ │ │ │ │ ├── IIorap.struct │ │ │ │ │ │ │ ├── ITaskListener.struct │ │ │ │ │ │ │ ├── JobScheduledEvent.struct │ │ │ │ │ │ │ ├── PackageEvent.struct │ │ │ │ │ │ │ ├── RequestId.struct │ │ │ │ │ │ │ ├── SystemServiceEvent.struct │ │ │ │ │ │ │ ├── SystemServiceUserEvent.struct │ │ │ │ │ │ │ └── TaskResult.struct │ │ │ │ │ └── hardware │ │ │ │ │ │ └── pixel │ │ │ │ │ │ └── display │ │ │ │ │ │ └── IDisplay.struct │ │ │ │ └── mediatek │ │ │ │ │ └── tunerservice │ │ │ │ │ └── IMtkTuner.struct │ │ │ ├── google │ │ │ │ └── hardware │ │ │ │ │ └── power │ │ │ │ │ └── extension │ │ │ │ │ └── pixel │ │ │ │ │ └── IPowerExt.struct │ │ │ ├── hidl2aidl │ │ │ │ ├── test │ │ │ │ │ ├── ArrayFoo.struct │ │ │ │ │ ├── IBar.struct │ │ │ │ │ ├── IBarInner.struct │ │ │ │ │ ├── IFoo.struct │ │ │ │ │ ├── IFooBigStruct.struct │ │ │ │ │ ├── NameCollision.struct │ │ │ │ │ ├── OnlyIn10.struct │ │ │ │ │ ├── OnlyIn11.struct │ │ │ │ │ ├── Outer.struct │ │ │ │ │ ├── OuterInner.struct │ │ │ │ │ ├── OverrideMe.struct │ │ │ │ │ ├── SafeUnionBarInnerStructBar.struct │ │ │ │ │ ├── VectorFoo.struct │ │ │ │ │ └── extension │ │ │ │ │ │ ├── ArrayFoo.struct │ │ │ │ │ │ └── IFoo.struct │ │ │ │ └── test2 │ │ │ │ │ └── IFoo.struct │ │ │ ├── org │ │ │ │ └── chromium │ │ │ │ │ └── base │ │ │ │ │ ├── ITestCallback.struct │ │ │ │ │ ├── ITestController.struct │ │ │ │ │ └── process_launcher │ │ │ │ │ └── ICallbackInt.struct │ │ │ ├── other_package │ │ │ │ └── IBaz.struct │ │ │ ├── some_package │ │ │ │ ├── IBar.struct │ │ │ │ ├── IFoo.struct │ │ │ │ ├── Thing.struct │ │ │ │ └── sub_package │ │ │ │ │ ├── IFoo.struct │ │ │ │ │ └── SubThing.struct │ │ │ ├── src │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── commands │ │ │ │ │ └── uinput │ │ │ │ │ └── InputAbsInfo.struct │ │ │ ├── test │ │ │ │ └── ParcelableTest.struct │ │ │ ├── test_package │ │ │ │ ├── Bar.struct │ │ │ │ ├── Baz.struct │ │ │ │ ├── ExtendableParcelable.struct │ │ │ │ ├── FixedSize.struct │ │ │ │ ├── Foo.struct │ │ │ │ ├── IBaz.struct │ │ │ │ ├── ICompatTest.struct │ │ │ │ ├── IEmpty.struct │ │ │ │ ├── MyExt.struct │ │ │ │ └── RegularPolygon.struct │ │ │ └── tests_transitive_parcel │ │ │ │ ├── a │ │ │ │ └── IA.struct │ │ │ │ ├── b │ │ │ │ └── B.struct │ │ │ │ └── c │ │ │ │ └── C.struct │ │ ├── android-14.0.0_r28 │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ ├── AB.struct │ │ │ │ │ └── AB2.struct │ │ │ ├── aaudio │ │ │ │ ├── Endpoint.struct │ │ │ │ ├── IAAudioClient.struct │ │ │ │ ├── IAAudioService.struct │ │ │ │ ├── RingBuffer.struct │ │ │ │ ├── SharedRegion.struct │ │ │ │ ├── StreamParameters.struct │ │ │ │ └── StreamRequest.struct │ │ │ ├── aidl │ │ │ │ ├── TestStableLargeParcelable.struct │ │ │ │ ├── TestStableLargeParcelableVector.struct │ │ │ │ └── TestStableParcelable.struct │ │ │ ├── android │ │ │ │ ├── IDataSource.struct │ │ │ │ ├── IGraphicBufferSource.struct │ │ │ │ ├── IMediaExtractor.struct │ │ │ │ ├── IMediaExtractorService.struct │ │ │ │ ├── IOMXBufferSource.struct │ │ │ │ ├── IOMXNode.struct │ │ │ │ ├── accessibilityservice │ │ │ │ │ ├── IAccessibilityServiceClient.struct │ │ │ │ │ ├── IAccessibilityServiceConnection.struct │ │ │ │ │ └── MagnificationConfig.struct │ │ │ │ ├── accounts │ │ │ │ │ ├── AuthenticatorDescription.struct │ │ │ │ │ ├── IAccountAuthenticator.struct │ │ │ │ │ ├── IAccountAuthenticatorResponse.struct │ │ │ │ │ ├── IAccountManager.struct │ │ │ │ │ └── IAccountManagerResponse.struct │ │ │ │ ├── adservices │ │ │ │ │ ├── adid │ │ │ │ │ │ ├── GetAdIdParam.struct │ │ │ │ │ │ ├── IAdIdProviderService.struct │ │ │ │ │ │ ├── IAdIdService.struct │ │ │ │ │ │ ├── IGetAdIdCallback.struct │ │ │ │ │ │ └── IGetAdIdProviderCallback.struct │ │ │ │ │ ├── adselection │ │ │ │ │ │ ├── AdSelectionCallback.struct │ │ │ │ │ │ ├── AdSelectionOverrideCallback.struct │ │ │ │ │ │ ├── AdSelectionService.struct │ │ │ │ │ │ ├── ReportImpressionCallback.struct │ │ │ │ │ │ ├── ReportInteractionCallback.struct │ │ │ │ │ │ ├── ReportInteractionInput.struct │ │ │ │ │ │ ├── SetAppInstallAdvertisersCallback.struct │ │ │ │ │ │ └── UpdateAdCounterHistogramCallback.struct │ │ │ │ │ ├── appsetid │ │ │ │ │ │ ├── GetAppSetIdParam.struct │ │ │ │ │ │ ├── IAppSetIdProviderService.struct │ │ │ │ │ │ ├── IAppSetIdService.struct │ │ │ │ │ │ ├── IGetAppSetIdCallback.struct │ │ │ │ │ │ └── IGetAppSetIdProviderCallback.struct │ │ │ │ │ ├── common │ │ │ │ │ │ ├── AdSelectionSignals.struct │ │ │ │ │ │ ├── AdTechIdentifier.struct │ │ │ │ │ │ ├── CallerMetadata.struct │ │ │ │ │ │ ├── FledgeErrorResponse.struct │ │ │ │ │ │ ├── IAdServicesCommonCallback.struct │ │ │ │ │ │ ├── IAdServicesCommonService.struct │ │ │ │ │ │ └── IsAdServicesEnabledResult.struct │ │ │ │ │ ├── customaudience │ │ │ │ │ │ ├── CustomAudienceOverrideCallback.struct │ │ │ │ │ │ ├── ICustomAudienceCallback.struct │ │ │ │ │ │ └── ICustomAudienceService.struct │ │ │ │ │ ├── measurement │ │ │ │ │ │ ├── IMeasurementApiStatusCallback.struct │ │ │ │ │ │ ├── IMeasurementCallback.struct │ │ │ │ │ │ ├── IMeasurementService.struct │ │ │ │ │ │ ├── Measurement.struct │ │ │ │ │ │ ├── MeasurementErrorResponse.struct │ │ │ │ │ │ ├── RegistrationRequest.struct │ │ │ │ │ │ └── StatusParam.struct │ │ │ │ │ └── topics │ │ │ │ │ │ ├── GetTopicsParam.struct │ │ │ │ │ │ ├── IGetTopicsCallback.struct │ │ │ │ │ │ └── ITopicsService.struct │ │ │ │ ├── aidl │ │ │ │ │ ├── loggable │ │ │ │ │ │ ├── Data.struct │ │ │ │ │ │ ├── ILoggableInterface.struct │ │ │ │ │ │ └── ISub.struct │ │ │ │ │ ├── sdkversion │ │ │ │ │ │ ├── ITestService.struct │ │ │ │ │ │ └── TypedObject.struct │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── CircularParcelable.struct │ │ │ │ │ │ ├── DeprecatedParcelable.struct │ │ │ │ │ │ ├── ICircular.struct │ │ │ │ │ │ ├── IDeprecated.struct │ │ │ │ │ │ ├── INamedCallback.struct │ │ │ │ │ │ ├── INewName.struct │ │ │ │ │ │ ├── IOldName.struct │ │ │ │ │ │ ├── OtherParcelableForToString.struct │ │ │ │ │ │ ├── RecursiveList.struct │ │ │ │ │ │ ├── extension │ │ │ │ │ │ │ ├── ExtendableParcelable.struct │ │ │ │ │ │ │ ├── MyExt.struct │ │ │ │ │ │ │ ├── MyExt2.struct │ │ │ │ │ │ │ └── MyExtLike.struct │ │ │ │ │ │ ├── generic │ │ │ │ │ │ │ └── Baz.struct │ │ │ │ │ │ ├── immutable │ │ │ │ │ │ │ ├── Bar.struct │ │ │ │ │ │ │ ├── Foo.struct │ │ │ │ │ │ │ └── IBaz.struct │ │ │ │ │ │ ├── map │ │ │ │ │ │ │ ├── Bar.struct │ │ │ │ │ │ │ ├── Foo.struct │ │ │ │ │ │ │ └── IEmpty.struct │ │ │ │ │ │ ├── nested │ │ │ │ │ │ │ ├── ICallback.struct │ │ │ │ │ │ │ ├── INestedService.struct │ │ │ │ │ │ │ └── Result.struct │ │ │ │ │ │ ├── nonvintf │ │ │ │ │ │ │ ├── NonVintfExtendableParcelable.struct │ │ │ │ │ │ │ └── NonVintfParcelable.struct │ │ │ │ │ │ ├── permission │ │ │ │ │ │ │ ├── INoPermission.struct │ │ │ │ │ │ │ ├── IProtected.struct │ │ │ │ │ │ │ ├── IProtectedInterface.struct │ │ │ │ │ │ │ └── platform │ │ │ │ │ │ │ │ └── IProtected.struct │ │ │ │ │ │ ├── unstable │ │ │ │ │ │ │ ├── UnstableExtendableParcelable.struct │ │ │ │ │ │ │ └── UnstableParcelable.struct │ │ │ │ │ │ └── vintf │ │ │ │ │ │ │ ├── VintfExtendableParcelable.struct │ │ │ │ │ │ │ └── VintfParcelable.struct │ │ │ │ │ └── versioned │ │ │ │ │ │ └── tests │ │ │ │ │ │ ├── Foo.struct │ │ │ │ │ │ └── IFooInterface.struct │ │ │ │ ├── apex │ │ │ │ │ ├── ApexInfo.struct │ │ │ │ │ ├── ApexInfoList.struct │ │ │ │ │ ├── ApexSessionInfo.struct │ │ │ │ │ ├── ApexSessionParams.struct │ │ │ │ │ ├── CompressedApexInfo.struct │ │ │ │ │ └── CompressedApexInfoList.struct │ │ │ │ ├── app │ │ │ │ │ ├── GameModeConfiguration.struct │ │ │ │ │ ├── GameState.struct │ │ │ │ │ ├── IActivityClientController.struct │ │ │ │ │ ├── IActivityController.struct │ │ │ │ │ ├── IActivityManager.struct │ │ │ │ │ ├── IActivityPendingResult.struct │ │ │ │ │ ├── IActivityTaskManager.struct │ │ │ │ │ ├── IAlarmCompleteListener.struct │ │ │ │ │ ├── IAlarmListener.struct │ │ │ │ │ ├── IAlarmManager.struct │ │ │ │ │ ├── IAppTask.struct │ │ │ │ │ ├── IAppTraceRetriever.struct │ │ │ │ │ ├── IApplicationStartInfoCompleteListener.struct │ │ │ │ │ ├── IApplicationThread.struct │ │ │ │ │ ├── IAssistDataReceiver.struct │ │ │ │ │ ├── ICompatCameraControlCallback.struct │ │ │ │ │ ├── IEphemeralResolver.struct │ │ │ │ │ ├── IForegroundServiceObserver.struct │ │ │ │ │ ├── IGameManager.struct │ │ │ │ │ ├── IGameManagerService.struct │ │ │ │ │ ├── IGameModeListener.struct │ │ │ │ │ ├── IGrammaticalInflectionManager.struct │ │ │ │ │ ├── IInstantAppResolver.struct │ │ │ │ │ ├── IInstrumentationWatcher.struct │ │ │ │ │ ├── ILocalWallpaperColorConsumer.struct │ │ │ │ │ ├── ILocaleManager.struct │ │ │ │ │ ├── INotificationManager.struct │ │ │ │ │ ├── IOnProjectionStateChangedListener.struct │ │ │ │ │ ├── IParcelFileDescriptorRetriever.struct │ │ │ │ │ ├── IProcessObserver.struct │ │ │ │ │ ├── IRequestFinishCallback.struct │ │ │ │ │ ├── IScreenCaptureObserver.struct │ │ │ │ │ ├── ISearchManager.struct │ │ │ │ │ ├── ISearchManagerCallback.struct │ │ │ │ │ ├── IServiceConnection.struct │ │ │ │ │ ├── IStopUserCallback.struct │ │ │ │ │ ├── ITaskStackListener.struct │ │ │ │ │ ├── ITransientNotification.struct │ │ │ │ │ ├── ITransientNotificationCallback.struct │ │ │ │ │ ├── IUiAutomationConnection.struct │ │ │ │ │ ├── IUiModeManager.struct │ │ │ │ │ ├── IUiModeManagerCallback.struct │ │ │ │ │ ├── IUidFrozenStateChangedCallback.struct │ │ │ │ │ ├── IUidObserver.struct │ │ │ │ │ ├── IUnsafeIntentStrictModeCallback.struct │ │ │ │ │ ├── IUriGrantsManager.struct │ │ │ │ │ ├── IUserSwitchObserver.struct │ │ │ │ │ ├── IWallpaperManager.struct │ │ │ │ │ ├── IWallpaperManagerCallback.struct │ │ │ │ │ ├── IWindowToken.struct │ │ │ │ │ ├── PendingIntent.struct │ │ │ │ │ ├── PictureInPictureUiState.struct │ │ │ │ │ ├── ProfilerInfo.struct │ │ │ │ │ ├── ReceiverInfo.struct │ │ │ │ │ ├── RemoteAction.struct │ │ │ │ │ ├── RemoteLockscreenValidationResult.struct │ │ │ │ │ ├── RemoteLockscreenValidationSession.struct │ │ │ │ │ ├── Vr2dDisplayProperties.struct │ │ │ │ │ ├── WaitResult.struct │ │ │ │ │ ├── WallpaperInfo.struct │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── IDeviceAdminService.struct │ │ │ │ │ │ ├── IKeyguardCallback.struct │ │ │ │ │ │ ├── IKeyguardClient.struct │ │ │ │ │ │ └── StartInstallingUpdateCallback.struct │ │ │ │ │ ├── adservices │ │ │ │ │ │ ├── IAdServicesManager.struct │ │ │ │ │ │ ├── consent │ │ │ │ │ │ │ └── ConsentParcel.struct │ │ │ │ │ │ └── topics │ │ │ │ │ │ │ └── TopicParcel.struct │ │ │ │ │ ├── ambientcontext │ │ │ │ │ │ ├── IAmbientContextManager.struct │ │ │ │ │ │ └── IAmbientContextObserver.struct │ │ │ │ │ ├── appops │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ ├── IAppOpsForegroundControlService.struct │ │ │ │ │ │ │ ├── IAppOpsUserClient.struct │ │ │ │ │ │ │ └── IAppOpsUserService.struct │ │ │ │ │ ├── appsearch │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ ├── IAppSearchBatchResultCallback.struct │ │ │ │ │ │ │ ├── IAppSearchObserverProxy.struct │ │ │ │ │ │ │ └── IAppSearchResultCallback.struct │ │ │ │ │ ├── assist │ │ │ │ │ │ ├── AssistContent.struct │ │ │ │ │ │ └── AssistStructure.struct │ │ │ │ │ ├── backup │ │ │ │ │ │ ├── BackupProgress.struct │ │ │ │ │ │ ├── IBackupCallback.struct │ │ │ │ │ │ ├── IBackupManager.struct │ │ │ │ │ │ ├── IBackupManagerMonitor.struct │ │ │ │ │ │ ├── IBackupObserver.struct │ │ │ │ │ │ ├── IFullBackupRestoreObserver.struct │ │ │ │ │ │ ├── IRestoreObserver.struct │ │ │ │ │ │ ├── IRestoreSession.struct │ │ │ │ │ │ ├── ISelectBackupTransportCallback.struct │ │ │ │ │ │ └── RestoreSet.struct │ │ │ │ │ ├── blob │ │ │ │ │ │ ├── BlobHandle.struct │ │ │ │ │ │ ├── BlobInfo.struct │ │ │ │ │ │ ├── IBlobCommitCallback.struct │ │ │ │ │ │ ├── IBlobStoreManager.struct │ │ │ │ │ │ ├── IBlobStoreSession.struct │ │ │ │ │ │ └── LeaseInfo.struct │ │ │ │ │ ├── contentsuggestions │ │ │ │ │ │ ├── ContentClassification.struct │ │ │ │ │ │ ├── ContentSelection.struct │ │ │ │ │ │ ├── IClassificationsCallback.struct │ │ │ │ │ │ ├── IContentSuggestionsManager.struct │ │ │ │ │ │ └── ISelectionsCallback.struct │ │ │ │ │ ├── job │ │ │ │ │ │ ├── IJobCallback.struct │ │ │ │ │ │ ├── IJobScheduler.struct │ │ │ │ │ │ ├── IJobService.struct │ │ │ │ │ │ ├── IUserVisibleJobObserver.struct │ │ │ │ │ │ ├── JobWorkItem.struct │ │ │ │ │ │ └── UserVisibleJobSummary.struct │ │ │ │ │ ├── ondevicepersonalization │ │ │ │ │ │ ├── IOnDevicePersonalizationSystemService.struct │ │ │ │ │ │ └── IOnDevicePersonalizationSystemServiceCallback.struct │ │ │ │ │ ├── people │ │ │ │ │ │ ├── IConversationListener.struct │ │ │ │ │ │ └── IPeopleManager.struct │ │ │ │ │ ├── prediction │ │ │ │ │ │ ├── AppPredictionContext.struct │ │ │ │ │ │ ├── AppPredictionSessionId.struct │ │ │ │ │ │ ├── IPredictionCallback.struct │ │ │ │ │ │ └── IPredictionManager.struct │ │ │ │ │ ├── role │ │ │ │ │ │ ├── IOnRoleHoldersChangedListener.struct │ │ │ │ │ │ ├── IRoleController.struct │ │ │ │ │ │ └── IRoleManager.struct │ │ │ │ │ ├── sdksandbox │ │ │ │ │ │ ├── ILoadSdkCallback.struct │ │ │ │ │ │ ├── IRequestSurfacePackageCallback.struct │ │ │ │ │ │ ├── ISdkSandboxManager.struct │ │ │ │ │ │ ├── ISdkSandboxProcessDeathCallback.struct │ │ │ │ │ │ ├── ISdkToServiceCallback.struct │ │ │ │ │ │ ├── ISharedPreferencesSyncCallback.struct │ │ │ │ │ │ ├── LoadSdkException.struct │ │ │ │ │ │ ├── SandboxedSdk.struct │ │ │ │ │ │ ├── interfaces │ │ │ │ │ │ │ ├── IActivityStarter.struct │ │ │ │ │ │ │ ├── ISdkApi.struct │ │ │ │ │ │ │ └── IWebViewSdkApi.struct │ │ │ │ │ │ └── testutils │ │ │ │ │ │ │ └── testscenario │ │ │ │ │ │ │ ├── ISdkSandboxResultCallback.struct │ │ │ │ │ │ │ └── ISdkSandboxTestExecutor.struct │ │ │ │ │ ├── search │ │ │ │ │ │ ├── ISearchCallback.struct │ │ │ │ │ │ ├── ISearchUiManager.struct │ │ │ │ │ │ ├── Query.struct │ │ │ │ │ │ ├── SearchContext.struct │ │ │ │ │ │ └── SearchSessionId.struct │ │ │ │ │ ├── slice │ │ │ │ │ │ ├── ISliceListener.struct │ │ │ │ │ │ ├── ISliceManager.struct │ │ │ │ │ │ └── SliceSpec.struct │ │ │ │ │ ├── smartspace │ │ │ │ │ │ ├── ISmartspaceCallback.struct │ │ │ │ │ │ ├── ISmartspaceManager.struct │ │ │ │ │ │ └── SmartspaceConfig.struct │ │ │ │ │ ├── stubs │ │ │ │ │ │ ├── ICallback.struct │ │ │ │ │ │ ├── IHeartbeat.struct │ │ │ │ │ │ ├── ISecondary.struct │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ └── ICloseSystemDialogsTestsService.struct │ │ │ │ │ ├── tare │ │ │ │ │ │ └── IEconomyManager.struct │ │ │ │ │ ├── time │ │ │ │ │ │ ├── ITimeDetectorListener.struct │ │ │ │ │ │ ├── ITimeZoneDetectorListener.struct │ │ │ │ │ │ └── UnixEpochTime.struct │ │ │ │ │ ├── timedetector │ │ │ │ │ │ └── ITimeDetectorService.struct │ │ │ │ │ ├── timezonedetector │ │ │ │ │ │ └── ITimeZoneDetectorService.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── IStrongAuthTracker.struct │ │ │ │ │ │ ├── ITrustListener.struct │ │ │ │ │ │ └── ITrustManager.struct │ │ │ │ │ ├── usage │ │ │ │ │ │ ├── ExternalStorageStats.struct │ │ │ │ │ │ ├── ICacheQuotaService.struct │ │ │ │ │ │ ├── IStorageStatsManager.struct │ │ │ │ │ │ ├── IUsageStatsManager.struct │ │ │ │ │ │ ├── StorageStats.struct │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ └── ITestReceiver.struct │ │ │ │ │ ├── wallpapereffectsgeneration │ │ │ │ │ │ ├── CinematicEffectRequest.struct │ │ │ │ │ │ ├── ICinematicEffectListener.struct │ │ │ │ │ │ └── IWallpaperEffectsGenerationManager.struct │ │ │ │ │ └── wearable │ │ │ │ │ │ └── IWearableSensingManager.struct │ │ │ │ ├── apphibernation │ │ │ │ │ └── IAppHibernationService.struct │ │ │ │ ├── appsecurity │ │ │ │ │ └── cts │ │ │ │ │ │ └── keyrotationtest │ │ │ │ │ │ └── service │ │ │ │ │ │ └── ISignatureQueryService.struct │ │ │ │ ├── automotive │ │ │ │ │ ├── computepipe │ │ │ │ │ │ ├── registry │ │ │ │ │ │ │ ├── IClientInfo.struct │ │ │ │ │ │ │ ├── IPipeQuery.struct │ │ │ │ │ │ │ └── IPipeRegistration.struct │ │ │ │ │ │ └── runner │ │ │ │ │ │ │ ├── IPipeDebugger.struct │ │ │ │ │ │ │ ├── IPipeRunner.struct │ │ │ │ │ │ │ ├── IPipeStateCallback.struct │ │ │ │ │ │ │ ├── IPipeStream.struct │ │ │ │ │ │ │ ├── PacketDescriptor.struct │ │ │ │ │ │ │ ├── PipeDescriptor.struct │ │ │ │ │ │ │ ├── PipeInputConfig.struct │ │ │ │ │ │ │ ├── PipeInputConfigCameraDesc.struct │ │ │ │ │ │ │ ├── PipeInputConfigImageFileDesc.struct │ │ │ │ │ │ │ ├── PipeInputConfigInputSourceDesc.struct │ │ │ │ │ │ │ ├── PipeInputConfigVideoFileDesc.struct │ │ │ │ │ │ │ ├── PipeOffloadConfig.struct │ │ │ │ │ │ │ ├── PipeOffloadConfigOffloadDesc.struct │ │ │ │ │ │ │ ├── PipeOutputConfig.struct │ │ │ │ │ │ │ ├── PipeOutputConfigOutputDesc.struct │ │ │ │ │ │ │ ├── PipeTerminationConfig.struct │ │ │ │ │ │ │ ├── PipeTerminationConfigTerminationDesc.struct │ │ │ │ │ │ │ └── ProfilingData.struct │ │ │ │ │ ├── telemetry │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── CarDataInternal.struct │ │ │ │ │ │ │ ├── ICarDataListener.struct │ │ │ │ │ │ │ └── ICarTelemetryInternal.struct │ │ │ │ │ └── watchdog │ │ │ │ │ │ ├── ICarWatchdog.struct │ │ │ │ │ │ ├── ICarWatchdogClient.struct │ │ │ │ │ │ ├── ICarWatchdogMonitor.struct │ │ │ │ │ │ ├── IResourceOveruseListener.struct │ │ │ │ │ │ ├── IoOveruseStats.struct │ │ │ │ │ │ ├── PerStateBytes.struct │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── CpuUsageStats.struct │ │ │ │ │ │ ├── ICarWatchdog.struct │ │ │ │ │ │ ├── ICarWatchdogMonitor.struct │ │ │ │ │ │ ├── ICarWatchdogServiceForSystem.struct │ │ │ │ │ │ ├── IoOveruseAlertThreshold.struct │ │ │ │ │ │ ├── IoOveruseConfiguration.struct │ │ │ │ │ │ ├── IoUsageStats.struct │ │ │ │ │ │ ├── PackageIdentifier.struct │ │ │ │ │ │ ├── PackageInfo.struct │ │ │ │ │ │ ├── PackageIoOveruseStats.struct │ │ │ │ │ │ ├── PackageMetadata.struct │ │ │ │ │ │ ├── PerStateIoOveruseThreshold.struct │ │ │ │ │ │ ├── ProcessCpuUsageStats.struct │ │ │ │ │ │ ├── ProcessIdentifier.struct │ │ │ │ │ │ ├── ResourceOveruseConfiguration.struct │ │ │ │ │ │ ├── ResourceOveruseStats.struct │ │ │ │ │ │ ├── ResourceStats.struct │ │ │ │ │ │ ├── ResourceUsageStats.struct │ │ │ │ │ │ ├── SystemSummaryUsageStats.struct │ │ │ │ │ │ ├── ThreadPolicyWithPriority.struct │ │ │ │ │ │ ├── UidIoUsageStats.struct │ │ │ │ │ │ ├── UidResourceUsageStats.struct │ │ │ │ │ │ └── UserPackageIoUsageStats.struct │ │ │ │ ├── binderdebug │ │ │ │ │ └── test │ │ │ │ │ │ └── IControl.struct │ │ │ │ ├── bluetooth │ │ │ │ │ ├── BluetoothCodecConfig.struct │ │ │ │ │ ├── BluetoothDevice.struct │ │ │ │ │ ├── BluetoothHapPresetInfo.struct │ │ │ │ │ ├── BluetoothHidDeviceAppQosSettings.struct │ │ │ │ │ ├── BluetoothHidDeviceAppSdpSettings.struct │ │ │ │ │ ├── BluetoothLeAudioCodecConfig.struct │ │ │ │ │ ├── BluetoothLeCall.struct │ │ │ │ │ ├── BluetoothSinkAudioPolicy.struct │ │ │ │ │ ├── IBluetooth.struct │ │ │ │ │ ├── IBluetoothA2dp.struct │ │ │ │ │ ├── IBluetoothA2dpSink.struct │ │ │ │ │ ├── IBluetoothActivityEnergyInfoListener.struct │ │ │ │ │ ├── IBluetoothAvrcpController.struct │ │ │ │ │ ├── IBluetoothAvrcpTarget.struct │ │ │ │ │ ├── IBluetoothBattery.struct │ │ │ │ │ ├── IBluetoothCallback.struct │ │ │ │ │ ├── IBluetoothConnectionCallback.struct │ │ │ │ │ ├── IBluetoothCsipSetCoordinator.struct │ │ │ │ │ ├── IBluetoothCsipSetCoordinatorCallback.struct │ │ │ │ │ ├── IBluetoothCsipSetCoordinatorLockCallback.struct │ │ │ │ │ ├── IBluetoothGatt.struct │ │ │ │ │ ├── IBluetoothGattCallback.struct │ │ │ │ │ ├── IBluetoothGattServerCallback.struct │ │ │ │ │ ├── IBluetoothHapClient.struct │ │ │ │ │ ├── IBluetoothHapClientCallback.struct │ │ │ │ │ ├── IBluetoothHeadset.struct │ │ │ │ │ ├── IBluetoothHeadsetClient.struct │ │ │ │ │ ├── IBluetoothHearingAid.struct │ │ │ │ │ ├── IBluetoothHidDevice.struct │ │ │ │ │ ├── IBluetoothHidDeviceCallback.struct │ │ │ │ │ ├── IBluetoothHidHost.struct │ │ │ │ │ ├── IBluetoothLeAudio.struct │ │ │ │ │ ├── IBluetoothLeAudioCallback.struct │ │ │ │ │ ├── IBluetoothLeBroadcastAssistant.struct │ │ │ │ │ ├── IBluetoothLeBroadcastAssistantCallback.struct │ │ │ │ │ ├── IBluetoothLeBroadcastCallback.struct │ │ │ │ │ ├── IBluetoothLeCallControl.struct │ │ │ │ │ ├── IBluetoothLeCallControlCallback.struct │ │ │ │ │ ├── IBluetoothManager.struct │ │ │ │ │ ├── IBluetoothManagerCallback.struct │ │ │ │ │ ├── IBluetoothMap.struct │ │ │ │ │ ├── IBluetoothMapClient.struct │ │ │ │ │ ├── IBluetoothMcpServiceManager.struct │ │ │ │ │ ├── IBluetoothMetadataListener.struct │ │ │ │ │ ├── IBluetoothOobDataCallback.struct │ │ │ │ │ ├── IBluetoothPan.struct │ │ │ │ │ ├── IBluetoothPanCallback.struct │ │ │ │ │ ├── IBluetoothPbap.struct │ │ │ │ │ ├── IBluetoothPbapClient.struct │ │ │ │ │ ├── IBluetoothPreferredAudioProfilesCallback.struct │ │ │ │ │ ├── IBluetoothProfileServiceConnection.struct │ │ │ │ │ ├── IBluetoothQualityReportReadyCallback.struct │ │ │ │ │ ├── IBluetoothSap.struct │ │ │ │ │ ├── IBluetoothSocketManager.struct │ │ │ │ │ ├── IBluetoothStateChangeCallback.struct │ │ │ │ │ ├── IBluetoothVolumeControl.struct │ │ │ │ │ ├── IBluetoothVolumeControlCallback.struct │ │ │ │ │ ├── IncomingRfcommSocketInfo.struct │ │ │ │ │ ├── OobData.struct │ │ │ │ │ └── le │ │ │ │ │ │ ├── AdvertisingSetParameters.struct │ │ │ │ │ │ ├── IAdvertisingSetCallback.struct │ │ │ │ │ │ ├── IDistanceMeasurementCallback.struct │ │ │ │ │ │ ├── IPeriodicAdvertisingCallback.struct │ │ │ │ │ │ ├── IScannerCallback.struct │ │ │ │ │ │ ├── PeriodicAdvertisingParameters.struct │ │ │ │ │ │ └── ScanSettings.struct │ │ │ │ ├── car │ │ │ │ │ ├── IAppFocus.struct │ │ │ │ │ ├── IAppFocusListener.struct │ │ │ │ │ ├── IAppFocusOwnershipCallback.struct │ │ │ │ │ ├── ICar.struct │ │ │ │ │ ├── ICarBluetoothUserService.struct │ │ │ │ │ ├── ICarBugreportCallback.struct │ │ │ │ │ ├── ICarBugreportService.struct │ │ │ │ │ ├── ICarConnectionListener.struct │ │ │ │ │ ├── ICarInfo.struct │ │ │ │ │ ├── ICarOccupantZone.struct │ │ │ │ │ ├── ICarOccupantZoneCallback.struct │ │ │ │ │ ├── ICarPerUserService.struct │ │ │ │ │ ├── ICarProjection.struct │ │ │ │ │ ├── ICarProjectionKeyEventHandler.struct │ │ │ │ │ ├── ICarProjectionStatusListener.struct │ │ │ │ │ ├── ICarResultReceiver.struct │ │ │ │ │ ├── ICarUserService.struct │ │ │ │ │ ├── IExperimentalCar.struct │ │ │ │ │ ├── IExperimentalCarHelper.struct │ │ │ │ │ ├── IExperimentalCarKeyguardLockedStateListener.struct │ │ │ │ │ ├── IExperimentalCarKeyguardService.struct │ │ │ │ │ ├── IExperimentalCarUserService.struct │ │ │ │ │ ├── ILocationManagerProxy.struct │ │ │ │ │ ├── IResultCallback.struct │ │ │ │ │ ├── admin │ │ │ │ │ │ └── ICarDevicePolicyService.struct │ │ │ │ │ ├── apitest │ │ │ │ │ │ ├── IStableAIDLTestBinder.struct │ │ │ │ │ │ ├── IStableAIDLTestCallback.struct │ │ │ │ │ │ └── StableAIDLTestLargeParcelable.struct │ │ │ │ │ ├── app │ │ │ │ │ │ ├── ICarActivityService.struct │ │ │ │ │ │ ├── ICarSystemUIProxy.struct │ │ │ │ │ │ ├── ICarSystemUIProxyCallback.struct │ │ │ │ │ │ ├── ICarTaskViewClient.struct │ │ │ │ │ │ └── ICarTaskViewHost.struct │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── ClusterState.struct │ │ │ │ │ │ ├── IClusterHomeService.struct │ │ │ │ │ │ ├── IClusterNavigationStateListener.struct │ │ │ │ │ │ ├── IClusterStateListener.struct │ │ │ │ │ │ ├── IInstrumentClusterManagerCallback.struct │ │ │ │ │ │ ├── IInstrumentClusterManagerService.struct │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ ├── IInstrumentCluster.struct │ │ │ │ │ │ │ ├── IInstrumentClusterHelper.struct │ │ │ │ │ │ │ └── IInstrumentClusterNavigation.struct │ │ │ │ │ ├── content │ │ │ │ │ │ └── pm │ │ │ │ │ │ │ ├── ICarAppBlockingPolicy.struct │ │ │ │ │ │ │ ├── ICarAppBlockingPolicySetter.struct │ │ │ │ │ │ │ └── ICarPackageManager.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ └── builtin │ │ │ │ │ │ │ └── os │ │ │ │ │ │ │ ├── IServiceManagerTestService.struct │ │ │ │ │ │ │ └── ISharedMemoryTestService.struct │ │ │ │ │ ├── diagnostic │ │ │ │ │ │ ├── ICarDiagnostic.struct │ │ │ │ │ │ └── ICarDiagnosticEventListener.struct │ │ │ │ │ ├── drivingstate │ │ │ │ │ │ ├── CarDrivingStateEvent.struct │ │ │ │ │ │ ├── CarUxRestrictions.struct │ │ │ │ │ │ ├── ICarDrivingState.struct │ │ │ │ │ │ ├── ICarDrivingStateChangeListener.struct │ │ │ │ │ │ ├── ICarUxRestrictionsChangeListener.struct │ │ │ │ │ │ └── ICarUxRestrictionsManager.struct │ │ │ │ │ ├── evs │ │ │ │ │ │ ├── CarEvsStatus.struct │ │ │ │ │ │ ├── ICarEvsService.struct │ │ │ │ │ │ ├── ICarEvsStatusListener.struct │ │ │ │ │ │ └── ICarEvsStreamCallback.struct │ │ │ │ │ ├── experimental │ │ │ │ │ │ ├── DriverAwarenessEvent.struct │ │ │ │ │ │ ├── DriverAwarenessSupplierConfig.struct │ │ │ │ │ │ ├── DriverDistractionChangeEvent.struct │ │ │ │ │ │ ├── IDriverAwarenessSupplier.struct │ │ │ │ │ │ ├── IDriverAwarenessSupplierCallback.struct │ │ │ │ │ │ ├── IDriverDistractionChangeListener.struct │ │ │ │ │ │ ├── IDriverDistractionManager.struct │ │ │ │ │ │ └── ITestDemoExperimental.struct │ │ │ │ │ ├── hardware │ │ │ │ │ │ ├── CarSensorConfig.struct │ │ │ │ │ │ ├── CarSensorEvent.struct │ │ │ │ │ │ ├── ICarSensor.struct │ │ │ │ │ │ ├── ICarSensorEventListener.struct │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── ICarPower.struct │ │ │ │ │ │ │ ├── ICarPowerPolicyListener.struct │ │ │ │ │ │ │ └── ICarPowerStateListener.struct │ │ │ │ │ │ └── property │ │ │ │ │ │ │ ├── ICarProperty.struct │ │ │ │ │ │ │ └── ICarPropertyEventListener.struct │ │ │ │ │ ├── input │ │ │ │ │ │ ├── CustomInputEvent.struct │ │ │ │ │ │ ├── ICarInput.struct │ │ │ │ │ │ ├── ICarInputCallback.struct │ │ │ │ │ │ └── ICarInputListener.struct │ │ │ │ │ ├── media │ │ │ │ │ │ ├── CarAudioPatchHandle.struct │ │ │ │ │ │ ├── CarAudioZoneConfigInfo.struct │ │ │ │ │ │ ├── IAudioZonesMirrorStatusCallback.struct │ │ │ │ │ │ ├── ICarAudio.struct │ │ │ │ │ │ ├── ICarMedia.struct │ │ │ │ │ │ ├── ICarMediaSourceListener.struct │ │ │ │ │ │ ├── ICarVolumeCallback.struct │ │ │ │ │ │ ├── ICarVolumeEventCallback.struct │ │ │ │ │ │ ├── IMediaAudioRequestStatusCallback.struct │ │ │ │ │ │ ├── IPrimaryZoneMediaAudioRequestCallback.struct │ │ │ │ │ │ └── ISwitchAudioZoneConfigCallback.struct │ │ │ │ │ ├── occupantawareness │ │ │ │ │ │ ├── IOccupantAwarenessEventCallback.struct │ │ │ │ │ │ ├── IOccupantAwarenessManager.struct │ │ │ │ │ │ └── SystemStatusEvent.struct │ │ │ │ │ ├── occupantconnection │ │ │ │ │ │ ├── IBackendConnectionResponder.struct │ │ │ │ │ │ ├── IBackendReceiver.struct │ │ │ │ │ │ ├── ICarOccupantConnection.struct │ │ │ │ │ │ ├── ICarRemoteDevice.struct │ │ │ │ │ │ ├── IConnectionRequestCallback.struct │ │ │ │ │ │ ├── IPayloadCallback.struct │ │ │ │ │ │ ├── IPayloadTestBinder.struct │ │ │ │ │ │ ├── IStateCallback.struct │ │ │ │ │ │ └── Payload.struct │ │ │ │ │ ├── oem │ │ │ │ │ │ ├── IOemCarAudioDuckingService.struct │ │ │ │ │ │ ├── IOemCarAudioVolumeService.struct │ │ │ │ │ │ ├── IOemCarService.struct │ │ │ │ │ │ └── IOemCarServiceCallback.struct │ │ │ │ │ ├── os │ │ │ │ │ │ └── ICarPerformanceService.struct │ │ │ │ │ ├── remoteaccess │ │ │ │ │ │ ├── ICarRemoteAccessCallback.struct │ │ │ │ │ │ └── ICarRemoteAccessService.struct │ │ │ │ │ ├── storagemonitoring │ │ │ │ │ │ ├── ICarStorageMonitoring.struct │ │ │ │ │ │ ├── IIoStatsListener.struct │ │ │ │ │ │ └── IoStatsEntry.struct │ │ │ │ │ ├── telemetry │ │ │ │ │ │ ├── ICarTelemetryReportListener.struct │ │ │ │ │ │ ├── ICarTelemetryReportReadyListener.struct │ │ │ │ │ │ └── ICarTelemetryService.struct │ │ │ │ │ ├── test │ │ │ │ │ │ └── ICarTest.struct │ │ │ │ │ ├── user │ │ │ │ │ │ ├── IUserNotice.struct │ │ │ │ │ │ ├── IUserNoticeUI.struct │ │ │ │ │ │ ├── UserCreationRequest.struct │ │ │ │ │ │ ├── UserIdentificationAssociationResponse.struct │ │ │ │ │ │ └── UserLifecycleEventFilter.struct │ │ │ │ │ ├── util │ │ │ │ │ │ └── concurrent │ │ │ │ │ │ │ └── IAndroidFuture.struct │ │ │ │ │ ├── vms │ │ │ │ │ │ ├── IVmsBrokerService.struct │ │ │ │ │ │ ├── IVmsClientCallback.struct │ │ │ │ │ │ ├── VmsLayer.struct │ │ │ │ │ │ └── VmsProviderInfo.struct │ │ │ │ │ └── watchdog │ │ │ │ │ │ ├── ICarWatchdogService.struct │ │ │ │ │ │ ├── ICarWatchdogServiceCallback.struct │ │ │ │ │ │ └── IResourceOveruseListener.struct │ │ │ │ ├── companion │ │ │ │ │ ├── IAssociationRequestCallback.struct │ │ │ │ │ ├── ICompanionDeviceDiscoveryService.struct │ │ │ │ │ ├── ICompanionDeviceManager.struct │ │ │ │ │ ├── ICompanionDeviceService.struct │ │ │ │ │ ├── IOnAssociationsChangedListener.struct │ │ │ │ │ ├── IOnMessageReceivedListener.struct │ │ │ │ │ ├── IOnTransportsChangedListener.struct │ │ │ │ │ ├── ISystemDataTransferCallback.struct │ │ │ │ │ └── virtual │ │ │ │ │ │ ├── IVirtualDevice.struct │ │ │ │ │ │ ├── IVirtualDeviceActivityListener.struct │ │ │ │ │ │ ├── IVirtualDeviceIntentInterceptor.struct │ │ │ │ │ │ ├── IVirtualDeviceManager.struct │ │ │ │ │ │ ├── IVirtualDeviceSoundEffectListener.struct │ │ │ │ │ │ ├── VirtualDevice.struct │ │ │ │ │ │ ├── audio │ │ │ │ │ │ ├── IAudioConfigChangedCallback.struct │ │ │ │ │ │ └── IAudioRoutingCallback.struct │ │ │ │ │ │ └── sensor │ │ │ │ │ │ ├── IVirtualSensorCallback.struct │ │ │ │ │ │ └── VirtualSensorEvent.struct │ │ │ │ ├── content │ │ │ │ │ ├── AttributionSourceState.struct │ │ │ │ │ ├── ContentCaptureOptions.struct │ │ │ │ │ ├── IClipboard.struct │ │ │ │ │ ├── IContentService.struct │ │ │ │ │ ├── ICrossUserContentService.struct │ │ │ │ │ ├── IIntentReceiver.struct │ │ │ │ │ ├── IIntentSender.struct │ │ │ │ │ ├── IOnPrimaryClipChangedListener.struct │ │ │ │ │ ├── IRestrictionsManager.struct │ │ │ │ │ ├── ISyncAdapter.struct │ │ │ │ │ ├── ISyncAdapterUnsyncableAccountCallback.struct │ │ │ │ │ ├── ISyncContext.struct │ │ │ │ │ ├── ISyncServiceAdapter.struct │ │ │ │ │ ├── ISyncStatusObserver.struct │ │ │ │ │ ├── IntentSender.struct │ │ │ │ │ ├── LocusId.struct │ │ │ │ │ ├── SyncAdapterType.struct │ │ │ │ │ ├── SyncStatusInfo.struct │ │ │ │ │ ├── integrity │ │ │ │ │ │ └── IAppIntegrityManager.struct │ │ │ │ │ ├── om │ │ │ │ │ │ ├── IOverlayManager.struct │ │ │ │ │ │ ├── OverlayIdentifier.struct │ │ │ │ │ │ └── OverlayInfo.struct │ │ │ │ │ ├── pm │ │ │ │ │ │ ├── ApexStagedEvent.struct │ │ │ │ │ │ ├── ChangedPackages.struct │ │ │ │ │ │ ├── ConfigurationInfo.struct │ │ │ │ │ │ ├── DataLoaderParamsParcel.struct │ │ │ │ │ │ ├── FileSystemControlParcel.struct │ │ │ │ │ │ ├── IBackgroundInstallControlService.struct │ │ │ │ │ │ ├── ICrossProfileApps.struct │ │ │ │ │ │ ├── IDataLoader.struct │ │ │ │ │ │ ├── IDataLoaderManager.struct │ │ │ │ │ │ ├── IDataLoaderStatusListener.struct │ │ │ │ │ │ ├── IDexModuleRegisterCallback.struct │ │ │ │ │ │ ├── IOnAppsChangedListener.struct │ │ │ │ │ │ ├── IOnChecksumsReadyListener.struct │ │ │ │ │ │ ├── IOtaDexopt.struct │ │ │ │ │ │ ├── IPackageDataObserver.struct │ │ │ │ │ │ ├── IPackageDeleteObserver.struct │ │ │ │ │ │ ├── IPackageDeleteObserver2.struct │ │ │ │ │ │ ├── IPackageInstallObserver2.struct │ │ │ │ │ │ ├── IPackageInstaller.struct │ │ │ │ │ │ ├── IPackageInstallerCallback.struct │ │ │ │ │ │ ├── IPackageInstallerSession.struct │ │ │ │ │ │ ├── IPackageInstallerSessionFileSystemConnector.struct │ │ │ │ │ │ ├── IPackageLoadingProgressCallback.struct │ │ │ │ │ │ ├── IPackageManager.struct │ │ │ │ │ │ ├── IPackageManagerNative.struct │ │ │ │ │ │ ├── IPackageMoveObserver.struct │ │ │ │ │ │ ├── IPackageStatsObserver.struct │ │ │ │ │ │ ├── IPinItemRequest.struct │ │ │ │ │ │ ├── IShortcutChangeCallback.struct │ │ │ │ │ │ ├── IShortcutService.struct │ │ │ │ │ │ ├── IStagedApexObserver.struct │ │ │ │ │ │ ├── InstallationFileParcel.struct │ │ │ │ │ │ ├── InstrumentationInfo.struct │ │ │ │ │ │ ├── ModuleInfo.struct │ │ │ │ │ │ ├── PackageInfoLite.struct │ │ │ │ │ │ ├── PackageStats.struct │ │ │ │ │ │ ├── PermissionGroupInfo.struct │ │ │ │ │ │ ├── ResolveInfo.struct │ │ │ │ │ │ ├── ServiceInfo.struct │ │ │ │ │ │ ├── SigningInfo.struct │ │ │ │ │ │ ├── StagedApexInfo.struct │ │ │ │ │ │ ├── SuspendDialogInfo.struct │ │ │ │ │ │ ├── UserInfo.struct │ │ │ │ │ │ ├── UserProperties.struct │ │ │ │ │ │ ├── VerifierDeviceIdentity.struct │ │ │ │ │ │ ├── VersionedPackage.struct │ │ │ │ │ │ ├── dex │ │ │ │ │ │ │ ├── IArtManager.struct │ │ │ │ │ │ │ └── ISnapshotRuntimeProfileCallback.struct │ │ │ │ │ │ ├── permission │ │ │ │ │ │ │ └── IRuntimePermissionPresenter.struct │ │ │ │ │ │ └── verify │ │ │ │ │ │ │ └── domain │ │ │ │ │ │ │ └── IDomainVerificationManager.struct │ │ │ │ │ ├── res │ │ │ │ │ │ ├── CompatibilityInfo.struct │ │ │ │ │ │ ├── IResourcesManager.struct │ │ │ │ │ │ └── ObbInfo.struct │ │ │ │ │ └── rollback │ │ │ │ │ │ └── IRollbackManager.struct │ │ │ │ ├── contentcaptureservice │ │ │ │ │ └── cts │ │ │ │ │ │ └── IOutOfProcessDataSharingService.struct │ │ │ │ ├── credentials │ │ │ │ │ ├── IClearCredentialStateCallback.struct │ │ │ │ │ ├── ICreateCredentialCallback.struct │ │ │ │ │ ├── ICredentialManager.struct │ │ │ │ │ ├── IGetCredentialCallback.struct │ │ │ │ │ ├── IPrepareGetCredentialCallback.struct │ │ │ │ │ └── ISetEnabledProvidersCallback.struct │ │ │ │ ├── database │ │ │ │ │ └── IContentObserver.struct │ │ │ │ ├── debug │ │ │ │ │ ├── FingerprintAndPairDevice.struct │ │ │ │ │ ├── IAdbCallback.struct │ │ │ │ │ ├── IAdbManager.struct │ │ │ │ │ ├── IAdbTransport.struct │ │ │ │ │ └── PairDevice.struct │ │ │ │ ├── devicelock │ │ │ │ │ ├── IDeviceLockService.struct │ │ │ │ │ ├── IGetDeviceIdCallback.struct │ │ │ │ │ ├── IGetKioskAppsCallback.struct │ │ │ │ │ ├── IIsDeviceLockedCallback.struct │ │ │ │ │ └── ILockUnlockDeviceCallback.struct │ │ │ │ ├── dvr │ │ │ │ │ └── IVirtualTouchpadService.struct │ │ │ │ ├── federatedcompute │ │ │ │ │ └── aidl │ │ │ │ │ │ ├── IExampleStoreCallback.struct │ │ │ │ │ │ ├── IExampleStoreIterator.struct │ │ │ │ │ │ ├── IExampleStoreIteratorCallback.struct │ │ │ │ │ │ ├── IExampleStoreService.struct │ │ │ │ │ │ ├── IFederatedComputeCallback.struct │ │ │ │ │ │ ├── IFederatedComputeService.struct │ │ │ │ │ │ └── IResultHandlingService.struct │ │ │ │ ├── fmq │ │ │ │ │ └── test │ │ │ │ │ │ └── FixedParcelable.struct │ │ │ │ ├── frameworks │ │ │ │ │ ├── automotive │ │ │ │ │ │ ├── display │ │ │ │ │ │ │ ├── DisplayDesc.struct │ │ │ │ │ │ │ └── ICarDisplayProxy.struct │ │ │ │ │ │ ├── powerpolicy │ │ │ │ │ │ │ ├── CarPowerPolicy.struct │ │ │ │ │ │ │ ├── CarPowerPolicyFilter.struct │ │ │ │ │ │ │ ├── ICarPowerPolicyChangeCallback.struct │ │ │ │ │ │ │ ├── ICarPowerPolicyServer.struct │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ │ ├── ICarPowerPolicySystemNotification.struct │ │ │ │ │ │ │ │ └── PolicyState.struct │ │ │ │ │ │ └── telemetry │ │ │ │ │ │ │ ├── CallbackConfig.struct │ │ │ │ │ │ │ ├── CarData.struct │ │ │ │ │ │ │ ├── ICarTelemetry.struct │ │ │ │ │ │ │ └── ICarTelemetryCallback.struct │ │ │ │ │ ├── cameraservice │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── ProviderIdAndVendorTagSections.struct │ │ │ │ │ │ │ ├── VendorTag.struct │ │ │ │ │ │ │ └── VendorTagSection.struct │ │ │ │ │ │ ├── device │ │ │ │ │ │ │ ├── CameraMetadata.struct │ │ │ │ │ │ │ ├── CaptureRequest.struct │ │ │ │ │ │ │ ├── CaptureResultExtras.struct │ │ │ │ │ │ │ ├── ICameraDeviceCallback.struct │ │ │ │ │ │ │ ├── OutputConfiguration.struct │ │ │ │ │ │ │ ├── PhysicalCameraSettings.struct │ │ │ │ │ │ │ ├── PhysicalCaptureResultInfo.struct │ │ │ │ │ │ │ ├── SessionConfiguration.struct │ │ │ │ │ │ │ ├── StreamAndWindowId.struct │ │ │ │ │ │ │ └── SubmitInfo.struct │ │ │ │ │ │ └── service │ │ │ │ │ │ │ ├── CameraStatusAndId.struct │ │ │ │ │ │ │ ├── ICameraService.struct │ │ │ │ │ │ │ └── ICameraServiceListener.struct │ │ │ │ │ ├── location │ │ │ │ │ │ └── altitude │ │ │ │ │ │ │ ├── AddMslAltitudeToLocationRequest.struct │ │ │ │ │ │ │ ├── AddMslAltitudeToLocationResponse.struct │ │ │ │ │ │ │ └── IAltitudeService.struct │ │ │ │ │ ├── sensorservice │ │ │ │ │ │ ├── IDirectReportChannel.struct │ │ │ │ │ │ ├── IEventQueue.struct │ │ │ │ │ │ ├── IEventQueueCallback.struct │ │ │ │ │ │ └── ISensorManager.struct │ │ │ │ │ └── stats │ │ │ │ │ │ ├── Annotation.struct │ │ │ │ │ │ ├── AnnotationSet.struct │ │ │ │ │ │ ├── IStats.struct │ │ │ │ │ │ └── VendorAtom.struct │ │ │ │ ├── graphics │ │ │ │ │ └── Insets.struct │ │ │ │ ├── gsi │ │ │ │ │ ├── AvbPublicKey.struct │ │ │ │ │ ├── GsiProgress.struct │ │ │ │ │ ├── IGsiService.struct │ │ │ │ │ ├── IGsiServiceCallback.struct │ │ │ │ │ ├── IImageService.struct │ │ │ │ │ ├── IProgressCallback.struct │ │ │ │ │ └── MappedImage.struct │ │ │ │ ├── gui │ │ │ │ │ ├── ARect.struct │ │ │ │ │ ├── Color.struct │ │ │ │ │ ├── CompositionPreference.struct │ │ │ │ │ ├── ContentSamplingAttributes.struct │ │ │ │ │ ├── CreateSurfaceResult.struct │ │ │ │ │ ├── DisplayBrightness.struct │ │ │ │ │ ├── DisplayDecorationSupport.struct │ │ │ │ │ ├── DisplayMode.struct │ │ │ │ │ ├── DisplayStatInfo.struct │ │ │ │ │ ├── DisplayState.struct │ │ │ │ │ ├── DisplayedFrameStats.struct │ │ │ │ │ ├── DynamicDisplayInfo.struct │ │ │ │ │ ├── FocusRequest.struct │ │ │ │ │ ├── FrameStats.struct │ │ │ │ │ ├── FrameTimelineInfo.struct │ │ │ │ │ ├── HdrCapabilities.struct │ │ │ │ │ ├── HdrConversionCapability.struct │ │ │ │ │ ├── IDisplayEventConnection.struct │ │ │ │ │ ├── IFpsListener.struct │ │ │ │ │ ├── IHdrConversionConstants.struct │ │ │ │ │ ├── IHdrLayerInfoListener.struct │ │ │ │ │ ├── IRegionSamplingListener.struct │ │ │ │ │ ├── IScreenCaptureListener.struct │ │ │ │ │ ├── ISurfaceComposer.struct │ │ │ │ │ ├── ISurfaceComposerClient.struct │ │ │ │ │ ├── ITunnelModeEnabledListener.struct │ │ │ │ │ ├── IWindowInfosListener.struct │ │ │ │ │ ├── IWindowInfosPublisher.struct │ │ │ │ │ ├── IWindowInfosReportedListener.struct │ │ │ │ │ ├── InputApplicationInfo.struct │ │ │ │ │ ├── PullAtomData.struct │ │ │ │ │ ├── Size.struct │ │ │ │ │ ├── StaticDisplayInfo.struct │ │ │ │ │ ├── TrustedPresentationThresholds.struct │ │ │ │ │ └── WindowInfosListenerInfo.struct │ │ │ │ ├── hardware │ │ │ │ │ ├── ICamera.struct │ │ │ │ │ ├── ICameraClient.struct │ │ │ │ │ ├── ICameraService.struct │ │ │ │ │ ├── ICameraServiceListener.struct │ │ │ │ │ ├── ICameraServiceProxy.struct │ │ │ │ │ ├── IConsumerIrService.struct │ │ │ │ │ ├── ISensorPrivacyListener.struct │ │ │ │ │ ├── ISensorPrivacyManager.struct │ │ │ │ │ ├── ISerialManager.struct │ │ │ │ │ ├── audio │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── AudioOffloadMetadata.struct │ │ │ │ │ │ │ ├── PlaybackTrackMetadata.struct │ │ │ │ │ │ │ ├── RecordTrackMetadata.struct │ │ │ │ │ │ │ ├── SinkMetadata.struct │ │ │ │ │ │ │ └── SourceMetadata.struct │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── AudioPatch.struct │ │ │ │ │ │ │ ├── AudioRoute.struct │ │ │ │ │ │ │ ├── IBluetoothA2dp.struct │ │ │ │ │ │ │ ├── IBluetoothLe.struct │ │ │ │ │ │ │ ├── IConfig.struct │ │ │ │ │ │ │ ├── IHalSoundDoseCallback.struct │ │ │ │ │ │ │ ├── ISoundDose.struct │ │ │ │ │ │ │ ├── IStreamCallback.struct │ │ │ │ │ │ │ ├── IStreamCommon.struct │ │ │ │ │ │ │ ├── IStreamIn.struct │ │ │ │ │ │ │ ├── IStreamOut.struct │ │ │ │ │ │ │ ├── IStreamOutEventCallback.struct │ │ │ │ │ │ │ ├── ITelephony.struct │ │ │ │ │ │ │ ├── MelRecord.struct │ │ │ │ │ │ │ ├── MmapBufferDescriptor.struct │ │ │ │ │ │ │ ├── ModuleDebug.struct │ │ │ │ │ │ │ ├── TelecomConfig.struct │ │ │ │ │ │ │ ├── VendorParameter.struct │ │ │ │ │ │ │ └── sounddose │ │ │ │ │ │ │ │ ├── IHalSoundDoseCallback.struct │ │ │ │ │ │ │ │ ├── ISoundDose.struct │ │ │ │ │ │ │ │ └── MelRecord.struct │ │ │ │ │ │ ├── effect │ │ │ │ │ │ │ ├── Capability.struct │ │ │ │ │ │ │ ├── DefaultExtension.struct │ │ │ │ │ │ │ ├── Flags.struct │ │ │ │ │ │ │ ├── IFactory.struct │ │ │ │ │ │ │ └── VendorExtension.struct │ │ │ │ │ │ └── sounddose │ │ │ │ │ │ │ └── ISoundDoseFactory.struct │ │ │ │ │ ├── authsecret │ │ │ │ │ │ └── IAuthSecret.struct │ │ │ │ │ ├── automotive │ │ │ │ │ │ ├── audiocontrol │ │ │ │ │ │ │ ├── AudioGainConfigInfo.struct │ │ │ │ │ │ │ ├── DuckingInfo.struct │ │ │ │ │ │ │ ├── IAudioControl.struct │ │ │ │ │ │ │ ├── IAudioGainCallback.struct │ │ │ │ │ │ │ ├── IFocusListener.struct │ │ │ │ │ │ │ ├── IModuleChangeCallback.struct │ │ │ │ │ │ │ └── MutingInfo.struct │ │ │ │ │ │ ├── can │ │ │ │ │ │ │ ├── ICanController.struct │ │ │ │ │ │ │ ├── IndexedInterface.struct │ │ │ │ │ │ │ └── VirtualInterface.struct │ │ │ │ │ │ ├── evs │ │ │ │ │ │ │ ├── BufferDesc.struct │ │ │ │ │ │ │ ├── CameraDesc.struct │ │ │ │ │ │ │ ├── DeviceStatus.struct │ │ │ │ │ │ │ ├── DisplayDesc.struct │ │ │ │ │ │ │ ├── EmbeddedData.struct │ │ │ │ │ │ │ ├── EvsEventDesc.struct │ │ │ │ │ │ │ ├── GridStatisticDesc.struct │ │ │ │ │ │ │ ├── GridStatistics.struct │ │ │ │ │ │ │ ├── Histogram.struct │ │ │ │ │ │ │ ├── IEvsCamera.struct │ │ │ │ │ │ │ ├── IEvsCameraStream.struct │ │ │ │ │ │ │ ├── IEvsDisplay.struct │ │ │ │ │ │ │ ├── IEvsEnumerator.struct │ │ │ │ │ │ │ ├── IEvsEnumeratorStatusCallback.struct │ │ │ │ │ │ │ ├── IEvsUltrasonicsArray.struct │ │ │ │ │ │ │ ├── IEvsUltrasonicsArrayStream.struct │ │ │ │ │ │ │ ├── ParameterRange.struct │ │ │ │ │ │ │ ├── RotationQuaternion.struct │ │ │ │ │ │ │ ├── SensorPose.struct │ │ │ │ │ │ │ ├── Size.struct │ │ │ │ │ │ │ ├── Stream.struct │ │ │ │ │ │ │ ├── Translation.struct │ │ │ │ │ │ │ ├── UltrasonicSensor.struct │ │ │ │ │ │ │ ├── UltrasonicsArrayDesc.struct │ │ │ │ │ │ │ └── UltrasonicsDataFrameDesc.struct │ │ │ │ │ │ ├── ivn │ │ │ │ │ │ │ ├── EndpointInfo.struct │ │ │ │ │ │ │ ├── HardwareIdentifiers.struct │ │ │ │ │ │ │ ├── IIvnAndroidDevice.struct │ │ │ │ │ │ │ └── OccupantZoneInfo.struct │ │ │ │ │ │ ├── occupant_awareness │ │ │ │ │ │ │ ├── DriverMonitoringDetection.struct │ │ │ │ │ │ │ ├── GazeDetection.struct │ │ │ │ │ │ │ ├── IOccupantAwareness.struct │ │ │ │ │ │ │ ├── IOccupantAwarenessClientCallback.struct │ │ │ │ │ │ │ ├── OccupantDetection.struct │ │ │ │ │ │ │ ├── OccupantDetections.struct │ │ │ │ │ │ │ └── PresenceDetection.struct │ │ │ │ │ │ ├── remoteaccess │ │ │ │ │ │ │ ├── ApState.struct │ │ │ │ │ │ │ ├── IRemoteAccess.struct │ │ │ │ │ │ │ └── IRemoteTaskCallback.struct │ │ │ │ │ │ └── vehicle │ │ │ │ │ │ │ ├── CreateUserRequest.struct │ │ │ │ │ │ │ ├── CreateUserResponse.struct │ │ │ │ │ │ │ ├── GetValueRequest.struct │ │ │ │ │ │ │ ├── GetValueRequests.struct │ │ │ │ │ │ │ ├── GetValueResult.struct │ │ │ │ │ │ │ ├── GetValueResults.struct │ │ │ │ │ │ │ ├── IVehicle.struct │ │ │ │ │ │ │ ├── IVehicleCallback.struct │ │ │ │ │ │ │ ├── InitialUserInfoRequest.struct │ │ │ │ │ │ │ ├── InitialUserInfoResponse.struct │ │ │ │ │ │ │ ├── RawPropValues.struct │ │ │ │ │ │ │ ├── RemoveUserRequest.struct │ │ │ │ │ │ │ ├── SetValueRequest.struct │ │ │ │ │ │ │ ├── SetValueRequests.struct │ │ │ │ │ │ │ ├── SetValueResult.struct │ │ │ │ │ │ │ ├── SetValueResults.struct │ │ │ │ │ │ │ ├── SubscribeOptions.struct │ │ │ │ │ │ │ ├── SwitchUserRequest.struct │ │ │ │ │ │ │ ├── SwitchUserResponse.struct │ │ │ │ │ │ │ ├── UserIdentificationAssociation.struct │ │ │ │ │ │ │ ├── UserIdentificationGetRequest.struct │ │ │ │ │ │ │ ├── UserIdentificationResponse.struct │ │ │ │ │ │ │ ├── UserIdentificationSetAssociation.struct │ │ │ │ │ │ │ ├── UserIdentificationSetRequest.struct │ │ │ │ │ │ │ ├── UserInfo.struct │ │ │ │ │ │ │ ├── UsersInfo.struct │ │ │ │ │ │ │ ├── VehicleAreaConfig.struct │ │ │ │ │ │ │ ├── VehiclePropConfig.struct │ │ │ │ │ │ │ ├── VehiclePropConfigs.struct │ │ │ │ │ │ │ ├── VehiclePropError.struct │ │ │ │ │ │ │ ├── VehiclePropErrors.struct │ │ │ │ │ │ │ ├── VehiclePropValue.struct │ │ │ │ │ │ │ └── VehiclePropValues.struct │ │ │ │ │ ├── biometrics │ │ │ │ │ │ ├── IAuthService.struct │ │ │ │ │ │ ├── IBiometricAuthenticator.struct │ │ │ │ │ │ ├── IBiometricContextListener.struct │ │ │ │ │ │ ├── IBiometricEnabledOnKeyguardCallback.struct │ │ │ │ │ │ ├── IBiometricSensorReceiver.struct │ │ │ │ │ │ ├── IBiometricService.struct │ │ │ │ │ │ ├── IBiometricServiceLockoutResetCallback.struct │ │ │ │ │ │ ├── IBiometricServiceReceiver.struct │ │ │ │ │ │ ├── IBiometricStateListener.struct │ │ │ │ │ │ ├── IBiometricSysuiReceiver.struct │ │ │ │ │ │ ├── IInvalidationCallback.struct │ │ │ │ │ │ ├── ITestSession.struct │ │ │ │ │ │ ├── ITestSessionCallback.struct │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── CommonProps.struct │ │ │ │ │ │ │ ├── ComponentInfo.struct │ │ │ │ │ │ │ ├── ICancellationSignal.struct │ │ │ │ │ │ │ └── OperationContext.struct │ │ │ │ │ │ ├── face │ │ │ │ │ │ │ ├── AuthenticationFrame.struct │ │ │ │ │ │ │ ├── BaseFrame.struct │ │ │ │ │ │ │ ├── Cell.struct │ │ │ │ │ │ │ ├── EnrollmentFrame.struct │ │ │ │ │ │ │ ├── EnrollmentStageConfig.struct │ │ │ │ │ │ │ ├── IFace.struct │ │ │ │ │ │ │ ├── ISession.struct │ │ │ │ │ │ │ ├── ISessionCallback.struct │ │ │ │ │ │ │ └── SensorProps.struct │ │ │ │ │ │ └── fingerprint │ │ │ │ │ │ │ ├── IFingerprint.struct │ │ │ │ │ │ │ ├── ISession.struct │ │ │ │ │ │ │ ├── ISessionCallback.struct │ │ │ │ │ │ │ ├── PointerContext.struct │ │ │ │ │ │ │ ├── SensorLocation.struct │ │ │ │ │ │ │ ├── SensorProps.struct │ │ │ │ │ │ │ └── TouchDetectionParameters.struct │ │ │ │ │ ├── bluetooth │ │ │ │ │ │ ├── IBluetoothHci.struct │ │ │ │ │ │ ├── IBluetoothHciCallbacks.struct │ │ │ │ │ │ └── audio │ │ │ │ │ │ │ ├── AacCapabilities.struct │ │ │ │ │ │ │ ├── AacConfiguration.struct │ │ │ │ │ │ │ ├── AptxAdaptiveCapabilities.struct │ │ │ │ │ │ │ ├── AptxAdaptiveConfiguration.struct │ │ │ │ │ │ │ ├── AptxAdaptiveLeCapabilities.struct │ │ │ │ │ │ │ ├── AptxAdaptiveLeConfiguration.struct │ │ │ │ │ │ │ ├── AptxAdaptiveTimeToPlay.struct │ │ │ │ │ │ │ ├── AptxCapabilities.struct │ │ │ │ │ │ │ ├── AptxConfiguration.struct │ │ │ │ │ │ │ ├── AptxSinkBuffering.struct │ │ │ │ │ │ │ ├── IBluetoothAudioPort.struct │ │ │ │ │ │ │ ├── IBluetoothAudioProviderFactory.struct │ │ │ │ │ │ │ ├── Lc3Capabilities.struct │ │ │ │ │ │ │ ├── Lc3Configuration.struct │ │ │ │ │ │ │ ├── LdacCapabilities.struct │ │ │ │ │ │ │ ├── LdacConfiguration.struct │ │ │ │ │ │ │ ├── LeAudioCodecCapabilitiesSetting.struct │ │ │ │ │ │ │ ├── OpusCapabilities.struct │ │ │ │ │ │ │ ├── OpusConfiguration.struct │ │ │ │ │ │ │ ├── PcmCapabilities.struct │ │ │ │ │ │ │ ├── PcmConfiguration.struct │ │ │ │ │ │ │ ├── SbcCapabilities.struct │ │ │ │ │ │ │ └── SbcConfiguration.struct │ │ │ │ │ ├── boot │ │ │ │ │ │ └── IBootControl.struct │ │ │ │ │ ├── broadcastradio │ │ │ │ │ │ ├── AmFmBandRange.struct │ │ │ │ │ │ ├── AmFmRegionConfig.struct │ │ │ │ │ │ ├── Announcement.struct │ │ │ │ │ │ ├── DabTableEntry.struct │ │ │ │ │ │ ├── IAnnouncementListener.struct │ │ │ │ │ │ ├── IBroadcastRadio.struct │ │ │ │ │ │ ├── ICloseHandle.struct │ │ │ │ │ │ ├── ITunerCallback.struct │ │ │ │ │ │ ├── ProgramFilter.struct │ │ │ │ │ │ ├── ProgramIdentifier.struct │ │ │ │ │ │ ├── ProgramInfo.struct │ │ │ │ │ │ ├── ProgramListChunk.struct │ │ │ │ │ │ ├── ProgramSelector.struct │ │ │ │ │ │ ├── Properties.struct │ │ │ │ │ │ └── VendorKeyValue.struct │ │ │ │ │ ├── camera │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── CameraResourceCost.struct │ │ │ │ │ │ │ ├── VendorTag.struct │ │ │ │ │ │ │ └── VendorTagSection.struct │ │ │ │ │ │ ├── device │ │ │ │ │ │ │ ├── BufferCache.struct │ │ │ │ │ │ │ ├── BufferRequest.struct │ │ │ │ │ │ │ ├── CameraBlob.struct │ │ │ │ │ │ │ ├── CameraMetadata.struct │ │ │ │ │ │ │ ├── CameraOfflineSessionInfo.struct │ │ │ │ │ │ │ ├── CaptureRequest.struct │ │ │ │ │ │ │ ├── CaptureResult.struct │ │ │ │ │ │ │ ├── ErrorMsg.struct │ │ │ │ │ │ │ ├── HalStream.struct │ │ │ │ │ │ │ ├── ICameraDevice.struct │ │ │ │ │ │ │ ├── ICameraDeviceCallback.struct │ │ │ │ │ │ │ ├── ICameraInjectionSession.struct │ │ │ │ │ │ │ ├── OfflineRequest.struct │ │ │ │ │ │ │ ├── OfflineStream.struct │ │ │ │ │ │ │ ├── PhysicalCameraMetadata.struct │ │ │ │ │ │ │ ├── PhysicalCameraSetting.struct │ │ │ │ │ │ │ ├── ShutterMsg.struct │ │ │ │ │ │ │ ├── Stream.struct │ │ │ │ │ │ │ ├── StreamBuffer.struct │ │ │ │ │ │ │ ├── StreamBufferRet.struct │ │ │ │ │ │ │ └── StreamConfiguration.struct │ │ │ │ │ │ └── provider │ │ │ │ │ │ │ ├── CameraIdAndStreamCombination.struct │ │ │ │ │ │ │ ├── ConcurrentCameraIdCombination.struct │ │ │ │ │ │ │ ├── ICameraProvider.struct │ │ │ │ │ │ │ └── ICameraProviderCallback.struct │ │ │ │ │ ├── camera2 │ │ │ │ │ │ ├── ICameraDeviceCallbacks.struct │ │ │ │ │ │ ├── ICameraDeviceUser.struct │ │ │ │ │ │ ├── ICameraInjectionCallback.struct │ │ │ │ │ │ ├── ICameraInjectionSession.struct │ │ │ │ │ │ ├── ICameraOfflineSession.struct │ │ │ │ │ │ ├── extension │ │ │ │ │ │ │ ├── IAdvancedExtenderImpl.struct │ │ │ │ │ │ │ ├── ICameraExtensionsProxyService.struct │ │ │ │ │ │ │ ├── ICaptureCallback.struct │ │ │ │ │ │ │ ├── ICaptureProcessorImpl.struct │ │ │ │ │ │ │ ├── IImageCaptureExtenderImpl.struct │ │ │ │ │ │ │ ├── IImageProcessorImpl.struct │ │ │ │ │ │ │ ├── IInitializeSessionCallback.struct │ │ │ │ │ │ │ ├── IOutputSurfaceConfiguration.struct │ │ │ │ │ │ │ ├── IPreviewExtenderImpl.struct │ │ │ │ │ │ │ ├── IPreviewImageProcessorImpl.struct │ │ │ │ │ │ │ ├── IProcessResultImpl.struct │ │ │ │ │ │ │ ├── IRequestCallback.struct │ │ │ │ │ │ │ ├── IRequestProcessorImpl.struct │ │ │ │ │ │ │ ├── IRequestUpdateProcessorImpl.struct │ │ │ │ │ │ │ └── ISessionProcessorImpl.struct │ │ │ │ │ │ └── params │ │ │ │ │ │ │ ├── VendorTagDescriptor.struct │ │ │ │ │ │ │ └── VendorTagDescriptorCache.struct │ │ │ │ │ ├── cas │ │ │ │ │ │ ├── AidlCasPluginDescriptor.struct │ │ │ │ │ │ ├── ICas.struct │ │ │ │ │ │ ├── ICasListener.struct │ │ │ │ │ │ ├── IDescrambler.struct │ │ │ │ │ │ ├── IMediaCasService.struct │ │ │ │ │ │ ├── SharedBuffer.struct │ │ │ │ │ │ ├── Status.struct │ │ │ │ │ │ └── SubSample.struct │ │ │ │ │ ├── common │ │ │ │ │ │ ├── Ashmem.struct │ │ │ │ │ │ ├── MappableFile.struct │ │ │ │ │ │ ├── NativeHandle.struct │ │ │ │ │ │ └── fmq │ │ │ │ │ │ │ └── GrantorDescriptor.struct │ │ │ │ │ ├── confirmationui │ │ │ │ │ │ ├── IConfirmationResultCallback.struct │ │ │ │ │ │ └── IConfirmationUI.struct │ │ │ │ │ ├── contexthub │ │ │ │ │ │ ├── ContextHubInfo.struct │ │ │ │ │ │ ├── ContextHubMessage.struct │ │ │ │ │ │ ├── HostEndpointInfo.struct │ │ │ │ │ │ ├── IContextHub.struct │ │ │ │ │ │ ├── IContextHubCallback.struct │ │ │ │ │ │ ├── NanSessionRequest.struct │ │ │ │ │ │ ├── NanSessionStateUpdate.struct │ │ │ │ │ │ ├── NanoappBinary.struct │ │ │ │ │ │ ├── NanoappInfo.struct │ │ │ │ │ │ └── NanoappRpcService.struct │ │ │ │ │ ├── devicestate │ │ │ │ │ │ ├── DeviceStateInfo.struct │ │ │ │ │ │ ├── IDeviceStateManager.struct │ │ │ │ │ │ └── IDeviceStateManagerCallback.struct │ │ │ │ │ ├── display │ │ │ │ │ │ ├── BrightnessInfo.struct │ │ │ │ │ │ ├── Curve.struct │ │ │ │ │ │ ├── HdrConversionMode.struct │ │ │ │ │ │ ├── IColorDisplayManager.struct │ │ │ │ │ │ ├── IDeviceProductInfoConstants.struct │ │ │ │ │ │ ├── IDisplayManager.struct │ │ │ │ │ │ ├── IDisplayManagerCallback.struct │ │ │ │ │ │ ├── IVirtualDisplayCallback.struct │ │ │ │ │ │ └── Time.struct │ │ │ │ │ ├── drm │ │ │ │ │ │ ├── CryptoSchemes.struct │ │ │ │ │ │ ├── DecryptArgs.struct │ │ │ │ │ │ ├── DrmMetric.struct │ │ │ │ │ │ ├── DrmMetricGroup.struct │ │ │ │ │ │ ├── DrmMetricNamedValue.struct │ │ │ │ │ │ ├── HdcpLevels.struct │ │ │ │ │ │ ├── ICryptoPlugin.struct │ │ │ │ │ │ ├── IDrmFactory.struct │ │ │ │ │ │ ├── IDrmPlugin.struct │ │ │ │ │ │ ├── IDrmPluginListener.struct │ │ │ │ │ │ ├── KeyRequest.struct │ │ │ │ │ │ ├── KeySetId.struct │ │ │ │ │ │ ├── KeyStatus.struct │ │ │ │ │ │ ├── KeyValue.struct │ │ │ │ │ │ ├── LogMessage.struct │ │ │ │ │ │ ├── NumberOfSessions.struct │ │ │ │ │ │ ├── OpaqueData.struct │ │ │ │ │ │ ├── Pattern.struct │ │ │ │ │ │ ├── ProvideProvisionResponseResult.struct │ │ │ │ │ │ ├── ProvisionRequest.struct │ │ │ │ │ │ ├── SecureStop.struct │ │ │ │ │ │ ├── SecureStopId.struct │ │ │ │ │ │ ├── SharedBuffer.struct │ │ │ │ │ │ ├── SubSample.struct │ │ │ │ │ │ └── SupportedContentType.struct │ │ │ │ │ ├── dumpstate │ │ │ │ │ │ └── IDumpstateDevice.struct │ │ │ │ │ ├── face │ │ │ │ │ │ ├── Face.struct │ │ │ │ │ │ ├── FaceSensorPropertiesInternal.struct │ │ │ │ │ │ ├── IFaceAuthenticatorsRegisteredCallback.struct │ │ │ │ │ │ ├── IFaceService.struct │ │ │ │ │ │ └── IFaceServiceReceiver.struct │ │ │ │ │ ├── fastboot │ │ │ │ │ │ └── IFastboot.struct │ │ │ │ │ ├── fingerprint │ │ │ │ │ │ ├── Fingerprint.struct │ │ │ │ │ │ ├── IFingerprintAuthenticatorsRegisteredCallback.struct │ │ │ │ │ │ ├── IFingerprintClientActiveCallback.struct │ │ │ │ │ │ ├── IFingerprintService.struct │ │ │ │ │ │ ├── IFingerprintServiceReceiver.struct │ │ │ │ │ │ ├── ISidefpsController.struct │ │ │ │ │ │ ├── IUdfpsOverlay.struct │ │ │ │ │ │ ├── IUdfpsOverlayController.struct │ │ │ │ │ │ ├── IUdfpsOverlayControllerCallback.struct │ │ │ │ │ │ └── IUdfpsRefreshRateRequestCallback.struct │ │ │ │ │ ├── gatekeeper │ │ │ │ │ │ ├── GatekeeperEnrollResponse.struct │ │ │ │ │ │ ├── GatekeeperVerifyResponse.struct │ │ │ │ │ │ └── IGatekeeper.struct │ │ │ │ │ ├── gnss │ │ │ │ │ │ ├── BlocklistedSource.struct │ │ │ │ │ │ ├── CorrelationVector.struct │ │ │ │ │ │ ├── ElapsedRealtime.struct │ │ │ │ │ │ ├── GnssClock.struct │ │ │ │ │ │ ├── GnssData.struct │ │ │ │ │ │ ├── GnssLocation.struct │ │ │ │ │ │ ├── GnssMeasurement.struct │ │ │ │ │ │ ├── GnssNavigationMessage.struct │ │ │ │ │ │ ├── GnssPowerStats.struct │ │ │ │ │ │ ├── GnssSignalType.struct │ │ │ │ │ │ ├── IAGnss.struct │ │ │ │ │ │ ├── IAGnssCallback.struct │ │ │ │ │ │ ├── IAGnssRilCallback.struct │ │ │ │ │ │ ├── IGnss.struct │ │ │ │ │ │ ├── IGnssAntennaInfo.struct │ │ │ │ │ │ ├── IGnssBatching.struct │ │ │ │ │ │ ├── IGnssBatchingCallback.struct │ │ │ │ │ │ ├── IGnssCallback.struct │ │ │ │ │ │ ├── IGnssConfiguration.struct │ │ │ │ │ │ ├── IGnssGeofence.struct │ │ │ │ │ │ ├── IGnssGeofenceCallback.struct │ │ │ │ │ │ ├── IGnssMeasurementCallback.struct │ │ │ │ │ │ ├── IGnssMeasurementInterface.struct │ │ │ │ │ │ ├── IGnssNavigationMessageCallback.struct │ │ │ │ │ │ ├── IGnssNavigationMessageInterface.struct │ │ │ │ │ │ ├── IGnssPowerIndication.struct │ │ │ │ │ │ ├── IGnssPowerIndicationCallback.struct │ │ │ │ │ │ ├── IGnssPsds.struct │ │ │ │ │ │ ├── IGnssPsdsCallback.struct │ │ │ │ │ │ ├── Options.struct │ │ │ │ │ │ ├── PositionModeOptions.struct │ │ │ │ │ │ ├── SatelliteClockInfo.struct │ │ │ │ │ │ ├── SatellitePositionEcef.struct │ │ │ │ │ │ ├── SatellitePvt.struct │ │ │ │ │ │ ├── SatelliteVelocityEcef.struct │ │ │ │ │ │ ├── measurement_corrections │ │ │ │ │ │ │ ├── IMeasurementCorrectionsCallback.struct │ │ │ │ │ │ │ ├── IMeasurementCorrectionsInterface.struct │ │ │ │ │ │ │ ├── MeasurementCorrections.struct │ │ │ │ │ │ │ └── ReflectingPlane.struct │ │ │ │ │ │ └── visibility_control │ │ │ │ │ │ │ ├── IGnssVisibilityControl.struct │ │ │ │ │ │ │ ├── IGnssVisibilityControlCallback.struct │ │ │ │ │ │ │ └── NfwNotification.struct │ │ │ │ │ ├── graphics │ │ │ │ │ │ ├── allocator │ │ │ │ │ │ │ ├── AllocationResult.struct │ │ │ │ │ │ │ └── IAllocator.struct │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── Cta861_3.struct │ │ │ │ │ │ │ ├── DisplayDecorationSupport.struct │ │ │ │ │ │ │ ├── ExtendableType.struct │ │ │ │ │ │ │ ├── FRect.struct │ │ │ │ │ │ │ ├── HardwareBuffer.struct │ │ │ │ │ │ │ ├── HardwareBufferDescription.struct │ │ │ │ │ │ │ ├── HdrConversionCapability.struct │ │ │ │ │ │ │ ├── PlaneLayout.struct │ │ │ │ │ │ │ ├── PlaneLayoutComponent.struct │ │ │ │ │ │ │ ├── Point.struct │ │ │ │ │ │ │ ├── Rect.struct │ │ │ │ │ │ │ ├── Smpte2086.struct │ │ │ │ │ │ │ └── XyColor.struct │ │ │ │ │ │ └── composer3 │ │ │ │ │ │ │ ├── Buffer.struct │ │ │ │ │ │ │ ├── ChangedCompositionLayer.struct │ │ │ │ │ │ │ ├── ChangedCompositionTypes.struct │ │ │ │ │ │ │ ├── ClientTarget.struct │ │ │ │ │ │ │ ├── ClientTargetProperty.struct │ │ │ │ │ │ │ ├── ClientTargetPropertyWithBrightness.struct │ │ │ │ │ │ │ ├── ClockMonotonicTimestamp.struct │ │ │ │ │ │ │ ├── Color.struct │ │ │ │ │ │ │ ├── CommandError.struct │ │ │ │ │ │ │ ├── DisplayBrightness.struct │ │ │ │ │ │ │ ├── DisplayCommand.struct │ │ │ │ │ │ │ ├── DisplayContentSample.struct │ │ │ │ │ │ │ ├── DisplayContentSamplingAttributes.struct │ │ │ │ │ │ │ ├── DisplayIdentification.struct │ │ │ │ │ │ │ ├── HdrCapabilities.struct │ │ │ │ │ │ │ ├── IComposer.struct │ │ │ │ │ │ │ ├── IComposerCallback.struct │ │ │ │ │ │ │ ├── IComposerClient.struct │ │ │ │ │ │ │ ├── LayerBrightness.struct │ │ │ │ │ │ │ ├── LayerCommand.struct │ │ │ │ │ │ │ ├── ParcelableBlendMode.struct │ │ │ │ │ │ │ ├── ParcelableComposition.struct │ │ │ │ │ │ │ ├── ParcelableDataspace.struct │ │ │ │ │ │ │ ├── ParcelableTransform.struct │ │ │ │ │ │ │ ├── PerFrameMetadata.struct │ │ │ │ │ │ │ ├── PerFrameMetadataBlob.struct │ │ │ │ │ │ │ ├── PlaneAlpha.struct │ │ │ │ │ │ │ ├── PresentFence.struct │ │ │ │ │ │ │ ├── PresentOrValidate.struct │ │ │ │ │ │ │ ├── ReadbackBufferAttributes.struct │ │ │ │ │ │ │ ├── RefreshRateChangedDebugData.struct │ │ │ │ │ │ │ ├── VirtualDisplay.struct │ │ │ │ │ │ │ ├── VsyncPeriodChangeConstraints.struct │ │ │ │ │ │ │ ├── VsyncPeriodChangeTimeline.struct │ │ │ │ │ │ │ └── ZOrder.struct │ │ │ │ │ ├── hdmi │ │ │ │ │ │ ├── HdmiDeviceInfo.struct │ │ │ │ │ │ ├── HdmiHotplugEvent.struct │ │ │ │ │ │ ├── HdmiPortInfo.struct │ │ │ │ │ │ ├── IHdmiCecSettingChangeListener.struct │ │ │ │ │ │ ├── IHdmiCecVolumeControlFeatureListener.struct │ │ │ │ │ │ ├── IHdmiControlCallback.struct │ │ │ │ │ │ ├── IHdmiControlService.struct │ │ │ │ │ │ ├── IHdmiControlStatusChangeListener.struct │ │ │ │ │ │ ├── IHdmiDeviceEventListener.struct │ │ │ │ │ │ ├── IHdmiHotplugEventListener.struct │ │ │ │ │ │ ├── IHdmiInputChangeListener.struct │ │ │ │ │ │ ├── IHdmiMhlVendorCommandListener.struct │ │ │ │ │ │ ├── IHdmiRecordListener.struct │ │ │ │ │ │ ├── IHdmiSystemAudioModeChangeListener.struct │ │ │ │ │ │ └── IHdmiVendorCommandListener.struct │ │ │ │ │ ├── health │ │ │ │ │ │ ├── BatteryHealthData.struct │ │ │ │ │ │ ├── DiskStats.struct │ │ │ │ │ │ ├── HealthInfo.struct │ │ │ │ │ │ ├── IHealth.struct │ │ │ │ │ │ ├── IHealthInfoCallback.struct │ │ │ │ │ │ ├── StorageInfo.struct │ │ │ │ │ │ └── storage │ │ │ │ │ │ │ ├── IGarbageCollectCallback.struct │ │ │ │ │ │ │ └── IStorage.struct │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── Certificate.struct │ │ │ │ │ │ ├── HardwareInformation.struct │ │ │ │ │ │ ├── IIdentityCredential.struct │ │ │ │ │ │ ├── IIdentityCredentialStore.struct │ │ │ │ │ │ ├── IPresentationSession.struct │ │ │ │ │ │ ├── IWritableIdentityCredential.struct │ │ │ │ │ │ ├── RequestDataItem.struct │ │ │ │ │ │ ├── RequestNamespace.struct │ │ │ │ │ │ └── SecureAccessControlProfile.struct │ │ │ │ │ ├── input │ │ │ │ │ │ ├── HostUsiVersion.struct │ │ │ │ │ │ ├── IInputDeviceBatteryListener.struct │ │ │ │ │ │ ├── IInputDeviceBatteryState.struct │ │ │ │ │ │ ├── IInputDevicesChangedListener.struct │ │ │ │ │ │ ├── IInputManager.struct │ │ │ │ │ │ ├── IInputSensorEventListener.struct │ │ │ │ │ │ ├── IKeyboardBacklightListener.struct │ │ │ │ │ │ ├── IKeyboardBacklightState.struct │ │ │ │ │ │ ├── ITabletModeChangedListener.struct │ │ │ │ │ │ ├── InputDeviceIdentifier.struct │ │ │ │ │ │ ├── TouchCalibration.struct │ │ │ │ │ │ ├── VirtualDpadConfig.struct │ │ │ │ │ │ ├── VirtualKeyEvent.struct │ │ │ │ │ │ ├── VirtualKeyboardConfig.struct │ │ │ │ │ │ ├── VirtualMouseButtonEvent.struct │ │ │ │ │ │ ├── VirtualMouseConfig.struct │ │ │ │ │ │ ├── VirtualMouseRelativeEvent.struct │ │ │ │ │ │ ├── VirtualMouseScrollEvent.struct │ │ │ │ │ │ ├── VirtualNavigationTouchpadConfig.struct │ │ │ │ │ │ ├── VirtualTouchEvent.struct │ │ │ │ │ │ ├── VirtualTouchscreenConfig.struct │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── MotionEvent.struct │ │ │ │ │ │ │ ├── PointerCoords.struct │ │ │ │ │ │ │ ├── PointerProperties.struct │ │ │ │ │ │ │ └── VideoFrame.struct │ │ │ │ │ │ └── processor │ │ │ │ │ │ │ └── IInputProcessor.struct │ │ │ │ │ ├── ir │ │ │ │ │ │ ├── ConsumerIrFreqRange.struct │ │ │ │ │ │ └── IConsumerIr.struct │ │ │ │ │ ├── iris │ │ │ │ │ │ └── IIrisService.struct │ │ │ │ │ ├── keymaster │ │ │ │ │ │ ├── HardwareAuthToken.struct │ │ │ │ │ │ ├── Timestamp.struct │ │ │ │ │ │ └── VerificationToken.struct │ │ │ │ │ ├── light │ │ │ │ │ │ ├── HwLight.struct │ │ │ │ │ │ ├── HwLightState.struct │ │ │ │ │ │ └── ILights.struct │ │ │ │ │ ├── lights │ │ │ │ │ │ ├── ILightsManager.struct │ │ │ │ │ │ ├── Light.struct │ │ │ │ │ │ └── LightState.struct │ │ │ │ │ ├── location │ │ │ │ │ │ ├── ContextHubMessage.struct │ │ │ │ │ │ ├── IActivityRecognitionHardware.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareClient.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareSink.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareWatcher.struct │ │ │ │ │ │ ├── IContextHubCallback.struct │ │ │ │ │ │ ├── IContextHubClient.struct │ │ │ │ │ │ ├── IContextHubClientCallback.struct │ │ │ │ │ │ ├── IContextHubService.struct │ │ │ │ │ │ ├── IContextHubTransactionCallback.struct │ │ │ │ │ │ ├── IGeofenceHardware.struct │ │ │ │ │ │ ├── IGeofenceHardwareCallback.struct │ │ │ │ │ │ ├── IGeofenceHardwareMonitorCallback.struct │ │ │ │ │ │ ├── NanoApp.struct │ │ │ │ │ │ ├── NanoAppBinary.struct │ │ │ │ │ │ ├── NanoAppFilter.struct │ │ │ │ │ │ ├── NanoAppInstanceInfo.struct │ │ │ │ │ │ └── NanoAppMessage.struct │ │ │ │ │ ├── media │ │ │ │ │ │ ├── bufferpool2 │ │ │ │ │ │ │ ├── Buffer.struct │ │ │ │ │ │ │ ├── BufferInvalidationMessage.struct │ │ │ │ │ │ │ ├── BufferStatusMessage.struct │ │ │ │ │ │ │ ├── ConnectionInfo.struct │ │ │ │ │ │ │ ├── IAccessor.struct │ │ │ │ │ │ │ ├── IClientManager.struct │ │ │ │ │ │ │ ├── IObserver.struct │ │ │ │ │ │ │ ├── Registration.struct │ │ │ │ │ │ │ └── ResultStatus.struct │ │ │ │ │ │ └── c2 │ │ │ │ │ │ │ ├── Block.struct │ │ │ │ │ │ │ ├── BlockPool.struct │ │ │ │ │ │ │ ├── Buffer.struct │ │ │ │ │ │ │ ├── ComponentTraits.struct │ │ │ │ │ │ │ ├── ConfigResult.struct │ │ │ │ │ │ │ ├── FieldId.struct │ │ │ │ │ │ │ ├── FieldSupportedValuesQuery.struct │ │ │ │ │ │ │ ├── FieldSupportedValuesQueryResult.struct │ │ │ │ │ │ │ ├── FrameData.struct │ │ │ │ │ │ │ ├── IComponent.struct │ │ │ │ │ │ │ ├── IComponentInterface.struct │ │ │ │ │ │ │ ├── IComponentStore.struct │ │ │ │ │ │ │ ├── IConfigurable.struct │ │ │ │ │ │ │ ├── InfoBuffer.struct │ │ │ │ │ │ │ ├── ParamDescriptor.struct │ │ │ │ │ │ │ ├── ParamField.struct │ │ │ │ │ │ │ ├── ParamFieldValues.struct │ │ │ │ │ │ │ ├── Params.struct │ │ │ │ │ │ │ ├── SettingResult.struct │ │ │ │ │ │ │ ├── Status.struct │ │ │ │ │ │ │ ├── StructDescriptor.struct │ │ │ │ │ │ │ ├── SurfaceSyncObj.struct │ │ │ │ │ │ │ ├── ValueRange.struct │ │ │ │ │ │ │ ├── Work.struct │ │ │ │ │ │ │ ├── WorkBundle.struct │ │ │ │ │ │ │ ├── WorkOrdinal.struct │ │ │ │ │ │ │ └── Worklet.struct │ │ │ │ │ ├── memtrack │ │ │ │ │ │ ├── DeviceInfo.struct │ │ │ │ │ │ ├── IMemtrack.struct │ │ │ │ │ │ └── MemtrackRecord.struct │ │ │ │ │ ├── net │ │ │ │ │ │ └── nlinterceptor │ │ │ │ │ │ │ ├── IInterceptor.struct │ │ │ │ │ │ │ └── InterceptedSocket.struct │ │ │ │ │ ├── neuralnetworks │ │ │ │ │ │ ├── BufferDesc.struct │ │ │ │ │ │ ├── BufferRole.struct │ │ │ │ │ │ ├── Capabilities.struct │ │ │ │ │ │ ├── DataLocation.struct │ │ │ │ │ │ ├── DeviceBuffer.struct │ │ │ │ │ │ ├── ExecutionConfig.struct │ │ │ │ │ │ ├── ExecutionResult.struct │ │ │ │ │ │ ├── Extension.struct │ │ │ │ │ │ ├── ExtensionNameAndPrefix.struct │ │ │ │ │ │ ├── ExtensionOperandTypeInformation.struct │ │ │ │ │ │ ├── FencedExecutionResult.struct │ │ │ │ │ │ ├── IBuffer.struct │ │ │ │ │ │ ├── IBurst.struct │ │ │ │ │ │ ├── IDevice.struct │ │ │ │ │ │ ├── IExecution.struct │ │ │ │ │ │ ├── IFencedExecutionCallback.struct │ │ │ │ │ │ ├── IPreparedModel.struct │ │ │ │ │ │ ├── IPreparedModelCallback.struct │ │ │ │ │ │ ├── IPreparedModelParcel.struct │ │ │ │ │ │ ├── Model.struct │ │ │ │ │ │ ├── NumberOfCacheFiles.struct │ │ │ │ │ │ ├── Operand.struct │ │ │ │ │ │ ├── OperandPerformance.struct │ │ │ │ │ │ ├── Operation.struct │ │ │ │ │ │ ├── OutputShape.struct │ │ │ │ │ │ ├── PerformanceInfo.struct │ │ │ │ │ │ ├── Request.struct │ │ │ │ │ │ ├── RequestArgument.struct │ │ │ │ │ │ ├── Subgraph.struct │ │ │ │ │ │ ├── SymmPerChannelQuantParams.struct │ │ │ │ │ │ ├── Timing.struct │ │ │ │ │ │ └── TokenValuePair.struct │ │ │ │ │ ├── nfc │ │ │ │ │ │ ├── INfc.struct │ │ │ │ │ │ ├── INfcClientCallback.struct │ │ │ │ │ │ ├── NfcConfig.struct │ │ │ │ │ │ └── ProtocolDiscoveryConfig.struct │ │ │ │ │ ├── oemlock │ │ │ │ │ │ └── IOemLock.struct │ │ │ │ │ ├── power │ │ │ │ │ │ ├── IPower.struct │ │ │ │ │ │ ├── IPowerHintSession.struct │ │ │ │ │ │ ├── WorkDuration.struct │ │ │ │ │ │ └── stats │ │ │ │ │ │ │ ├── Channel.struct │ │ │ │ │ │ │ ├── EnergyConsumer.struct │ │ │ │ │ │ │ ├── EnergyConsumerAttribution.struct │ │ │ │ │ │ │ ├── EnergyConsumerResult.struct │ │ │ │ │ │ │ ├── EnergyMeasurement.struct │ │ │ │ │ │ │ ├── IPowerStats.struct │ │ │ │ │ │ │ ├── PowerEntity.struct │ │ │ │ │ │ │ ├── State.struct │ │ │ │ │ │ │ ├── StateResidency.struct │ │ │ │ │ │ │ └── StateResidencyResult.struct │ │ │ │ │ ├── radio │ │ │ │ │ │ ├── IAnnouncementListener.struct │ │ │ │ │ │ ├── ICloseHandle.struct │ │ │ │ │ │ ├── IRadioService.struct │ │ │ │ │ │ ├── ITuner.struct │ │ │ │ │ │ ├── ITunerCallback.struct │ │ │ │ │ │ ├── RadioConst.struct │ │ │ │ │ │ ├── RadioResponseInfo.struct │ │ │ │ │ │ ├── RadioResponseInfoModem.struct │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── IRadioConfig.struct │ │ │ │ │ │ │ ├── IRadioConfigIndication.struct │ │ │ │ │ │ │ ├── IRadioConfigResponse.struct │ │ │ │ │ │ │ ├── PhoneCapability.struct │ │ │ │ │ │ │ ├── SimPortInfo.struct │ │ │ │ │ │ │ ├── SimSlotStatus.struct │ │ │ │ │ │ │ └── SlotPortMapping.struct │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── DataProfileInfo.struct │ │ │ │ │ │ │ ├── EpsQos.struct │ │ │ │ │ │ │ ├── IRadioData.struct │ │ │ │ │ │ │ ├── IRadioDataIndication.struct │ │ │ │ │ │ │ ├── IRadioDataResponse.struct │ │ │ │ │ │ │ ├── KeepaliveRequest.struct │ │ │ │ │ │ │ ├── KeepaliveStatus.struct │ │ │ │ │ │ │ ├── LinkAddress.struct │ │ │ │ │ │ │ ├── NrQos.struct │ │ │ │ │ │ │ ├── OsAppId.struct │ │ │ │ │ │ │ ├── PcoDataInfo.struct │ │ │ │ │ │ │ ├── PortRange.struct │ │ │ │ │ │ │ ├── QosBandwidth.struct │ │ │ │ │ │ │ ├── QosFilter.struct │ │ │ │ │ │ │ ├── QosSession.struct │ │ │ │ │ │ │ ├── RouteSelectionDescriptor.struct │ │ │ │ │ │ │ ├── SetupDataCallResult.struct │ │ │ │ │ │ │ ├── SliceInfo.struct │ │ │ │ │ │ │ ├── SlicingConfig.struct │ │ │ │ │ │ │ ├── TrafficDescriptor.struct │ │ │ │ │ │ │ └── UrspRule.struct │ │ │ │ │ │ ├── ims │ │ │ │ │ │ │ ├── ConnectionFailureInfo.struct │ │ │ │ │ │ │ ├── IRadioIms.struct │ │ │ │ │ │ │ ├── IRadioImsIndication.struct │ │ │ │ │ │ │ ├── IRadioImsResponse.struct │ │ │ │ │ │ │ ├── ImsCall.struct │ │ │ │ │ │ │ ├── ImsRegistration.struct │ │ │ │ │ │ │ ├── SrvccCall.struct │ │ │ │ │ │ │ └── media │ │ │ │ │ │ │ │ ├── AmrParams.struct │ │ │ │ │ │ │ │ ├── AnbrMode.struct │ │ │ │ │ │ │ │ ├── CallQuality.struct │ │ │ │ │ │ │ │ ├── CodecParams.struct │ │ │ │ │ │ │ │ ├── DtmfParams.struct │ │ │ │ │ │ │ │ ├── EvsParams.struct │ │ │ │ │ │ │ │ ├── IImsMedia.struct │ │ │ │ │ │ │ │ ├── IImsMediaListener.struct │ │ │ │ │ │ │ │ ├── IImsMediaSession.struct │ │ │ │ │ │ │ │ ├── IImsMediaSessionListener.struct │ │ │ │ │ │ │ │ ├── LocalEndPoint.struct │ │ │ │ │ │ │ │ ├── MediaQualityStatus.struct │ │ │ │ │ │ │ │ ├── MediaQualityThreshold.struct │ │ │ │ │ │ │ │ ├── RtcpConfig.struct │ │ │ │ │ │ │ │ ├── RtpAddress.struct │ │ │ │ │ │ │ │ ├── RtpConfig.struct │ │ │ │ │ │ │ │ ├── RtpHeaderExtension.struct │ │ │ │ │ │ │ │ └── RtpSessionParams.struct │ │ │ │ │ │ ├── messaging │ │ │ │ │ │ │ ├── CdmaBroadcastSmsConfigInfo.struct │ │ │ │ │ │ │ ├── CdmaSmsAck.struct │ │ │ │ │ │ │ ├── CdmaSmsAddress.struct │ │ │ │ │ │ │ ├── CdmaSmsMessage.struct │ │ │ │ │ │ │ ├── CdmaSmsSubaddress.struct │ │ │ │ │ │ │ ├── CdmaSmsWriteArgs.struct │ │ │ │ │ │ │ ├── GsmBroadcastSmsConfigInfo.struct │ │ │ │ │ │ │ ├── GsmSmsMessage.struct │ │ │ │ │ │ │ ├── IRadioMessaging.struct │ │ │ │ │ │ │ ├── IRadioMessagingIndication.struct │ │ │ │ │ │ │ ├── IRadioMessagingResponse.struct │ │ │ │ │ │ │ ├── ImsSmsMessage.struct │ │ │ │ │ │ │ ├── SendSmsResult.struct │ │ │ │ │ │ │ └── SmsWriteArgs.struct │ │ │ │ │ │ ├── modem │ │ │ │ │ │ │ ├── ActivityStatsInfo.struct │ │ │ │ │ │ │ ├── ActivityStatsTechSpecificInfo.struct │ │ │ │ │ │ │ ├── HardwareConfig.struct │ │ │ │ │ │ │ ├── HardwareConfigModem.struct │ │ │ │ │ │ │ ├── HardwareConfigSim.struct │ │ │ │ │ │ │ ├── IRadioModem.struct │ │ │ │ │ │ │ ├── IRadioModemIndication.struct │ │ │ │ │ │ │ ├── IRadioModemResponse.struct │ │ │ │ │ │ │ ├── ImeiInfo.struct │ │ │ │ │ │ │ ├── NvWriteItem.struct │ │ │ │ │ │ │ └── RadioCapability.struct │ │ │ │ │ │ ├── network │ │ │ │ │ │ │ ├── BarringInfo.struct │ │ │ │ │ │ │ ├── BarringTypeSpecificInfo.struct │ │ │ │ │ │ │ ├── Cdma2000RegistrationInfo.struct │ │ │ │ │ │ │ ├── CdmaSignalStrength.struct │ │ │ │ │ │ │ ├── CellIdentityCdma.struct │ │ │ │ │ │ │ ├── CellIdentityGsm.struct │ │ │ │ │ │ │ ├── CellIdentityLte.struct │ │ │ │ │ │ │ ├── CellIdentityNr.struct │ │ │ │ │ │ │ ├── CellIdentityTdscdma.struct │ │ │ │ │ │ │ ├── CellIdentityWcdma.struct │ │ │ │ │ │ │ ├── CellInfo.struct │ │ │ │ │ │ │ ├── CellInfoCdma.struct │ │ │ │ │ │ │ ├── CellInfoGsm.struct │ │ │ │ │ │ │ ├── CellInfoLte.struct │ │ │ │ │ │ │ ├── CellInfoNr.struct │ │ │ │ │ │ │ ├── CellInfoTdscdma.struct │ │ │ │ │ │ │ ├── CellInfoWcdma.struct │ │ │ │ │ │ │ ├── ClosedSubscriberGroupInfo.struct │ │ │ │ │ │ │ ├── EmergencyNetworkScanTrigger.struct │ │ │ │ │ │ │ ├── EmergencyRegResult.struct │ │ │ │ │ │ │ ├── EutranRegistrationInfo.struct │ │ │ │ │ │ │ ├── EvdoSignalStrength.struct │ │ │ │ │ │ │ ├── GsmSignalStrength.struct │ │ │ │ │ │ │ ├── IRadioNetwork.struct │ │ │ │ │ │ │ ├── IRadioNetworkIndication.struct │ │ │ │ │ │ │ ├── IRadioNetworkResponse.struct │ │ │ │ │ │ │ ├── LceDataInfo.struct │ │ │ │ │ │ │ ├── LinkCapacityEstimate.struct │ │ │ │ │ │ │ ├── LteSignalStrength.struct │ │ │ │ │ │ │ ├── LteVopsInfo.struct │ │ │ │ │ │ │ ├── NetworkScanRequest.struct │ │ │ │ │ │ │ ├── NetworkScanResult.struct │ │ │ │ │ │ │ ├── NrIndicators.struct │ │ │ │ │ │ │ ├── NrSignalStrength.struct │ │ │ │ │ │ │ ├── NrVopsInfo.struct │ │ │ │ │ │ │ ├── OperatorInfo.struct │ │ │ │ │ │ │ ├── PhysicalChannelConfig.struct │ │ │ │ │ │ │ ├── RadioAccessSpecifier.struct │ │ │ │ │ │ │ ├── RegStateResult.struct │ │ │ │ │ │ │ ├── SignalStrength.struct │ │ │ │ │ │ │ ├── SignalThresholdInfo.struct │ │ │ │ │ │ │ ├── SuppSvcNotification.struct │ │ │ │ │ │ │ ├── TdscdmaSignalStrength.struct │ │ │ │ │ │ │ └── WcdmaSignalStrength.struct │ │ │ │ │ │ ├── sap │ │ │ │ │ │ │ ├── ISap.struct │ │ │ │ │ │ │ └── ISapCallback.struct │ │ │ │ │ │ ├── sim │ │ │ │ │ │ │ ├── AppStatus.struct │ │ │ │ │ │ │ ├── CardStatus.struct │ │ │ │ │ │ │ ├── Carrier.struct │ │ │ │ │ │ │ ├── CarrierRestrictions.struct │ │ │ │ │ │ │ ├── IRadioSim.struct │ │ │ │ │ │ │ ├── IRadioSimIndication.struct │ │ │ │ │ │ │ ├── IRadioSimResponse.struct │ │ │ │ │ │ │ ├── IccIo.struct │ │ │ │ │ │ │ ├── IccIoResult.struct │ │ │ │ │ │ │ ├── ImsiEncryptionInfo.struct │ │ │ │ │ │ │ ├── PhonebookCapacity.struct │ │ │ │ │ │ │ ├── PhonebookRecordInfo.struct │ │ │ │ │ │ │ ├── SelectUiccSub.struct │ │ │ │ │ │ │ ├── SessionInfo.struct │ │ │ │ │ │ │ ├── SimApdu.struct │ │ │ │ │ │ │ └── SimRefreshResult.struct │ │ │ │ │ │ └── voice │ │ │ │ │ │ │ ├── Call.struct │ │ │ │ │ │ │ ├── CallForwardInfo.struct │ │ │ │ │ │ │ ├── CdmaCallWaiting.struct │ │ │ │ │ │ │ ├── CdmaDisplayInfoRecord.struct │ │ │ │ │ │ │ ├── CdmaInformationRecord.struct │ │ │ │ │ │ │ ├── CdmaLineControlInfoRecord.struct │ │ │ │ │ │ │ ├── CdmaNumberInfoRecord.struct │ │ │ │ │ │ │ ├── CdmaRedirectingNumberInfoRecord.struct │ │ │ │ │ │ │ ├── CdmaSignalInfoRecord.struct │ │ │ │ │ │ │ ├── CdmaT53AudioControlInfoRecord.struct │ │ │ │ │ │ │ ├── CdmaT53ClirInfoRecord.struct │ │ │ │ │ │ │ ├── CfData.struct │ │ │ │ │ │ │ ├── Dial.struct │ │ │ │ │ │ │ ├── EmergencyNumber.struct │ │ │ │ │ │ │ ├── IRadioVoice.struct │ │ │ │ │ │ │ ├── IRadioVoiceIndication.struct │ │ │ │ │ │ │ ├── IRadioVoiceResponse.struct │ │ │ │ │ │ │ ├── LastCallFailCauseInfo.struct │ │ │ │ │ │ │ ├── SsInfoData.struct │ │ │ │ │ │ │ ├── StkCcUnsolSsResult.struct │ │ │ │ │ │ │ └── UusInfo.struct │ │ │ │ │ ├── rebootescrow │ │ │ │ │ │ └── IRebootEscrow.struct │ │ │ │ │ ├── secure_element │ │ │ │ │ │ ├── ISecureElement.struct │ │ │ │ │ │ ├── ISecureElementCallback.struct │ │ │ │ │ │ └── LogicalChannelResponse.struct │ │ │ │ │ ├── security │ │ │ │ │ │ ├── keymint │ │ │ │ │ │ │ ├── AttestationKey.struct │ │ │ │ │ │ │ ├── BeginResult.struct │ │ │ │ │ │ │ ├── Certificate.struct │ │ │ │ │ │ │ ├── DeviceInfo.struct │ │ │ │ │ │ │ ├── HardwareAuthToken.struct │ │ │ │ │ │ │ ├── IKeyMintDevice.struct │ │ │ │ │ │ │ ├── IKeyMintOperation.struct │ │ │ │ │ │ │ ├── IRemotelyProvisionedComponent.struct │ │ │ │ │ │ │ ├── KeyCharacteristics.struct │ │ │ │ │ │ │ ├── KeyCreationResult.struct │ │ │ │ │ │ │ ├── KeyMintHardwareInfo.struct │ │ │ │ │ │ │ ├── KeyParameter.struct │ │ │ │ │ │ │ ├── MacedPublicKey.struct │ │ │ │ │ │ │ ├── ProtectedData.struct │ │ │ │ │ │ │ └── RpcHardwareInfo.struct │ │ │ │ │ │ ├── secureclock │ │ │ │ │ │ │ ├── ISecureClock.struct │ │ │ │ │ │ │ ├── TimeStampToken.struct │ │ │ │ │ │ │ └── Timestamp.struct │ │ │ │ │ │ └── sharedsecret │ │ │ │ │ │ │ ├── ISharedSecret.struct │ │ │ │ │ │ │ └── SharedSecretParameters.struct │ │ │ │ │ ├── sensors │ │ │ │ │ │ ├── ISensorsCallback.struct │ │ │ │ │ │ └── SensorInfo.struct │ │ │ │ │ ├── soundtrigger │ │ │ │ │ │ └── IRecognitionStatusCallback.struct │ │ │ │ │ ├── soundtrigger3 │ │ │ │ │ │ ├── ISoundTriggerHw.struct │ │ │ │ │ │ ├── ISoundTriggerHwCallback.struct │ │ │ │ │ │ └── ISoundTriggerHwGlobalCallback.struct │ │ │ │ │ ├── tests │ │ │ │ │ │ └── extension │ │ │ │ │ │ │ └── vibrator │ │ │ │ │ │ │ └── ICustomVibrator.struct │ │ │ │ │ ├── tetheroffload │ │ │ │ │ │ ├── ForwardedStats.struct │ │ │ │ │ │ ├── IOffload.struct │ │ │ │ │ │ ├── IPv4AddrPortPair.struct │ │ │ │ │ │ ├── ITetheringOffloadCallback.struct │ │ │ │ │ │ └── NatTimeoutUpdate.struct │ │ │ │ │ ├── thermal │ │ │ │ │ │ ├── CoolingDevice.struct │ │ │ │ │ │ ├── IThermal.struct │ │ │ │ │ │ ├── IThermalChangedCallback.struct │ │ │ │ │ │ ├── Temperature.struct │ │ │ │ │ │ └── TemperatureThreshold.struct │ │ │ │ │ ├── threadnetwork │ │ │ │ │ │ ├── IThreadChip.struct │ │ │ │ │ │ └── IThreadChipCallback.struct │ │ │ │ │ ├── tv │ │ │ │ │ │ ├── hdmi │ │ │ │ │ │ │ ├── cec │ │ │ │ │ │ │ │ ├── CecMessage.struct │ │ │ │ │ │ │ │ ├── IHdmiCec.struct │ │ │ │ │ │ │ │ └── IHdmiCecCallback.struct │ │ │ │ │ │ │ ├── connection │ │ │ │ │ │ │ │ ├── HdmiPortInfo.struct │ │ │ │ │ │ │ │ ├── IHdmiConnection.struct │ │ │ │ │ │ │ │ └── IHdmiConnectionCallback.struct │ │ │ │ │ │ │ └── earc │ │ │ │ │ │ │ │ ├── IEArc.struct │ │ │ │ │ │ │ │ └── IEArcCallback.struct │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── ITvInputCallback.struct │ │ │ │ │ │ │ ├── TvInputDeviceInfo.struct │ │ │ │ │ │ │ ├── TvInputEvent.struct │ │ │ │ │ │ │ ├── TvMessage.struct │ │ │ │ │ │ │ ├── TvMessageEvent.struct │ │ │ │ │ │ │ └── TvStreamConfig.struct │ │ │ │ │ │ └── tuner │ │ │ │ │ │ │ ├── AudioExtraMetaData.struct │ │ │ │ │ │ │ ├── AudioPreselection.struct │ │ │ │ │ │ │ ├── AudioPreselectionLabel.struct │ │ │ │ │ │ │ ├── AudioPresentation.struct │ │ │ │ │ │ │ ├── DemuxAlpFilterSettings.struct │ │ │ │ │ │ │ ├── DemuxCapabilities.struct │ │ │ │ │ │ │ ├── DemuxFilterAvSettings.struct │ │ │ │ │ │ │ ├── DemuxFilterDownloadEvent.struct │ │ │ │ │ │ │ ├── DemuxFilterDownloadSettings.struct │ │ │ │ │ │ │ ├── DemuxFilterIpPayloadEvent.struct │ │ │ │ │ │ │ ├── DemuxFilterMediaEvent.struct │ │ │ │ │ │ │ ├── DemuxFilterMmtpRecordEvent.struct │ │ │ │ │ │ │ ├── DemuxFilterPesDataSettings.struct │ │ │ │ │ │ │ ├── DemuxFilterPesEvent.struct │ │ │ │ │ │ │ ├── DemuxFilterRecordSettings.struct │ │ │ │ │ │ │ ├── DemuxFilterSectionBits.struct │ │ │ │ │ │ │ ├── DemuxFilterSectionEvent.struct │ │ │ │ │ │ │ ├── DemuxFilterSectionSettings.struct │ │ │ │ │ │ │ ├── DemuxFilterSectionSettingsConditionTableInfo.struct │ │ │ │ │ │ │ ├── DemuxFilterTemiEvent.struct │ │ │ │ │ │ │ ├── DemuxFilterTsRecordEvent.struct │ │ │ │ │ │ │ ├── DemuxFilterType.struct │ │ │ │ │ │ │ ├── DemuxInfo.struct │ │ │ │ │ │ │ ├── DemuxIpAddress.struct │ │ │ │ │ │ │ ├── DemuxIpFilterSettings.struct │ │ │ │ │ │ │ ├── DemuxMmtpFilterSettings.struct │ │ │ │ │ │ │ ├── DemuxTlvFilterSettings.struct │ │ │ │ │ │ │ ├── DemuxTsFilterSettings.struct │ │ │ │ │ │ │ ├── FilterDelayHint.struct │ │ │ │ │ │ │ ├── FrontendAnalogCapabilities.struct │ │ │ │ │ │ │ ├── FrontendAnalogSettings.struct │ │ │ │ │ │ │ ├── FrontendAtsc3Capabilities.struct │ │ │ │ │ │ │ ├── FrontendAtsc3PlpSettings.struct │ │ │ │ │ │ │ ├── FrontendAtsc3Settings.struct │ │ │ │ │ │ │ ├── FrontendAtscCapabilities.struct │ │ │ │ │ │ │ ├── FrontendAtscSettings.struct │ │ │ │ │ │ │ ├── FrontendDtmbCapabilities.struct │ │ │ │ │ │ │ ├── FrontendDtmbSettings.struct │ │ │ │ │ │ │ ├── FrontendDvbcCapabilities.struct │ │ │ │ │ │ │ ├── FrontendDvbcSettings.struct │ │ │ │ │ │ │ ├── FrontendDvbsCapabilities.struct │ │ │ │ │ │ │ ├── FrontendDvbsCodeRate.struct │ │ │ │ │ │ │ ├── FrontendDvbsSettings.struct │ │ │ │ │ │ │ ├── FrontendDvbtCapabilities.struct │ │ │ │ │ │ │ ├── FrontendDvbtSettings.struct │ │ │ │ │ │ │ ├── FrontendInfo.struct │ │ │ │ │ │ │ ├── FrontendIptvCapabilities.struct │ │ │ │ │ │ │ ├── FrontendIptvSettings.struct │ │ │ │ │ │ │ ├── FrontendIptvSettingsFec.struct │ │ │ │ │ │ │ ├── FrontendIsdbs3Capabilities.struct │ │ │ │ │ │ │ ├── FrontendIsdbs3Settings.struct │ │ │ │ │ │ │ ├── FrontendIsdbsCapabilities.struct │ │ │ │ │ │ │ ├── FrontendIsdbsSettings.struct │ │ │ │ │ │ │ ├── FrontendIsdbtCapabilities.struct │ │ │ │ │ │ │ ├── FrontendIsdbtLayerSettings.struct │ │ │ │ │ │ │ ├── FrontendIsdbtSettings.struct │ │ │ │ │ │ │ ├── FrontendScanAtsc3PlpInfo.struct │ │ │ │ │ │ │ ├── FrontendStatusAtsc3PlpInfo.struct │ │ │ │ │ │ │ ├── IDemux.struct │ │ │ │ │ │ │ ├── IDescrambler.struct │ │ │ │ │ │ │ ├── IDvrCallback.struct │ │ │ │ │ │ │ ├── IFilterCallback.struct │ │ │ │ │ │ │ ├── IFrontend.struct │ │ │ │ │ │ │ ├── IFrontendCallback.struct │ │ │ │ │ │ │ ├── ILnb.struct │ │ │ │ │ │ │ ├── ILnbCallback.struct │ │ │ │ │ │ │ ├── ITimeFilter.struct │ │ │ │ │ │ │ ├── ITuner.struct │ │ │ │ │ │ │ ├── PlaybackSettings.struct │ │ │ │ │ │ │ └── RecordSettings.struct │ │ │ │ │ ├── usb │ │ │ │ │ │ ├── DisplayPortAltModeInfo.struct │ │ │ │ │ │ ├── IDisplayPortAltModeInfoListener.struct │ │ │ │ │ │ ├── IUsb.struct │ │ │ │ │ │ ├── IUsbCallback.struct │ │ │ │ │ │ ├── IUsbManager.struct │ │ │ │ │ │ ├── IUsbOperationInternal.struct │ │ │ │ │ │ ├── IUsbSerialReader.struct │ │ │ │ │ │ ├── ParcelableUsbPort.struct │ │ │ │ │ │ ├── PortStatus.struct │ │ │ │ │ │ ├── UsbPortStatus.struct │ │ │ │ │ │ └── gadget │ │ │ │ │ │ │ ├── GadgetFunction.struct │ │ │ │ │ │ │ ├── IUsbGadget.struct │ │ │ │ │ │ │ └── IUsbGadgetCallback.struct │ │ │ │ │ ├── uwb │ │ │ │ │ │ ├── IUwb.struct │ │ │ │ │ │ ├── IUwbChip.struct │ │ │ │ │ │ └── IUwbClientCallback.struct │ │ │ │ │ ├── vibrator │ │ │ │ │ │ ├── ActivePwle.struct │ │ │ │ │ │ ├── BrakingPwle.struct │ │ │ │ │ │ ├── CompositeEffect.struct │ │ │ │ │ │ ├── IVibrator.struct │ │ │ │ │ │ ├── IVibratorCallback.struct │ │ │ │ │ │ └── IVibratorManager.struct │ │ │ │ │ ├── weaver │ │ │ │ │ │ ├── IWeaver.struct │ │ │ │ │ │ ├── WeaverConfig.struct │ │ │ │ │ │ └── WeaverReadResponse.struct │ │ │ │ │ └── wifi │ │ │ │ │ │ ├── AfcChannelAllowance.struct │ │ │ │ │ │ ├── AvailableAfcChannelInfo.struct │ │ │ │ │ │ ├── AvailableAfcFrequencyInfo.struct │ │ │ │ │ │ ├── IWifi.struct │ │ │ │ │ │ ├── IWifiEventCallback.struct │ │ │ │ │ │ ├── IWifiNanIface.struct │ │ │ │ │ │ ├── IWifiNanIfaceEventCallback.struct │ │ │ │ │ │ ├── IWifiP2pIface.struct │ │ │ │ │ │ ├── IWifiRttController.struct │ │ │ │ │ │ ├── IWifiRttControllerEventCallback.struct │ │ │ │ │ │ ├── NanBandSpecificConfig.struct │ │ │ │ │ │ ├── NanBootstrappingConfirmInd.struct │ │ │ │ │ │ ├── NanBootstrappingResponse.struct │ │ │ │ │ │ ├── NanCapabilities.struct │ │ │ │ │ │ ├── NanConfigRequestSupplemental.struct │ │ │ │ │ │ ├── NanDataPathChannelInfo.struct │ │ │ │ │ │ ├── NanDiscoveryCommonConfig.struct │ │ │ │ │ │ ├── NanPairingConfig.struct │ │ │ │ │ │ ├── NanPairingConfirmInd.struct │ │ │ │ │ │ ├── NanRespondToDataPathIndicationRequest.struct │ │ │ │ │ │ ├── NanStatus.struct │ │ │ │ │ │ ├── NanSuspensionModeChangeInd.struct │ │ │ │ │ │ ├── RttCapabilities.struct │ │ │ │ │ │ ├── RttLciInformation.struct │ │ │ │ │ │ ├── RttResponder.struct │ │ │ │ │ │ ├── StaApfPacketFilterCapabilities.struct │ │ │ │ │ │ ├── StaBackgroundScanBucketParameters.struct │ │ │ │ │ │ ├── StaBackgroundScanCapabilities.struct │ │ │ │ │ │ ├── StaBackgroundScanParameters.struct │ │ │ │ │ │ ├── StaLinkLayerIfaceContentionTimeStats.struct │ │ │ │ │ │ ├── StaLinkLayerIfacePacketStats.struct │ │ │ │ │ │ ├── StaLinkLayerIfaceStats.struct │ │ │ │ │ │ ├── StaLinkLayerLinkStats.struct │ │ │ │ │ │ ├── StaLinkLayerRadioStats.struct │ │ │ │ │ │ ├── StaLinkLayerStats.struct │ │ │ │ │ │ ├── StaPeerInfo.struct │ │ │ │ │ │ ├── StaRateStat.struct │ │ │ │ │ │ ├── StaRoamingCapabilities.struct │ │ │ │ │ │ ├── StaRoamingConfig.struct │ │ │ │ │ │ ├── StaScanData.struct │ │ │ │ │ │ ├── WifiChannelInfo.struct │ │ │ │ │ │ ├── WifiChannelStats.struct │ │ │ │ │ │ ├── WifiChipCapabilities.struct │ │ │ │ │ │ ├── WifiDebugHostWakeReasonRxIcmpPacketDetails.struct │ │ │ │ │ │ ├── WifiDebugHostWakeReasonRxMulticastPacketDetails.struct │ │ │ │ │ │ ├── WifiDebugHostWakeReasonRxPacketDetails.struct │ │ │ │ │ │ ├── WifiDebugHostWakeReasonStats.struct │ │ │ │ │ │ ├── WifiDebugPacketFateFrameInfo.struct │ │ │ │ │ │ ├── WifiDebugRingBufferStatus.struct │ │ │ │ │ │ ├── WifiDebugRxPacketFateReport.struct │ │ │ │ │ │ ├── WifiDebugTxPacketFateReport.struct │ │ │ │ │ │ ├── WifiInformationElement.struct │ │ │ │ │ │ ├── WifiRadioCombination.struct │ │ │ │ │ │ ├── WifiRadioConfiguration.struct │ │ │ │ │ │ ├── WifiRateInfo.struct │ │ │ │ │ │ ├── WifiUsableChannel.struct │ │ │ │ │ │ ├── hostapd │ │ │ │ │ │ ├── ApInfo.struct │ │ │ │ │ │ ├── ChannelParams.struct │ │ │ │ │ │ ├── ClientInfo.struct │ │ │ │ │ │ ├── FrequencyRange.struct │ │ │ │ │ │ ├── HwModeParams.struct │ │ │ │ │ │ ├── IHostapd.struct │ │ │ │ │ │ ├── IHostapdCallback.struct │ │ │ │ │ │ ├── IfaceParams.struct │ │ │ │ │ │ └── NetworkParams.struct │ │ │ │ │ │ └── supplicant │ │ │ │ │ │ ├── AnqpData.struct │ │ │ │ │ │ ├── AssociationRejectionData.struct │ │ │ │ │ │ ├── BssTmData.struct │ │ │ │ │ │ ├── ConnectionCapabilities.struct │ │ │ │ │ │ ├── DppConfigurationData.struct │ │ │ │ │ │ ├── DppConnectionKeys.struct │ │ │ │ │ │ ├── DppResponderBootstrapInfo.struct │ │ │ │ │ │ ├── FreqRange.struct │ │ │ │ │ │ ├── GsmRand.struct │ │ │ │ │ │ ├── Hs20AnqpData.struct │ │ │ │ │ │ ├── INonStandardCertCallback.struct │ │ │ │ │ │ ├── ISupplicant.struct │ │ │ │ │ │ ├── ISupplicantCallback.struct │ │ │ │ │ │ ├── ISupplicantP2pIface.struct │ │ │ │ │ │ ├── ISupplicantP2pIfaceCallback.struct │ │ │ │ │ │ ├── ISupplicantP2pNetwork.struct │ │ │ │ │ │ ├── ISupplicantStaIface.struct │ │ │ │ │ │ ├── ISupplicantStaIfaceCallback.struct │ │ │ │ │ │ ├── ISupplicantStaNetwork.struct │ │ │ │ │ │ ├── ISupplicantStaNetworkCallback.struct │ │ │ │ │ │ ├── IfaceInfo.struct │ │ │ │ │ │ ├── MacAddress.struct │ │ │ │ │ │ ├── MloLink.struct │ │ │ │ │ │ ├── MloLinksInfo.struct │ │ │ │ │ │ ├── NetworkRequestEapSimGsmAuthParams.struct │ │ │ │ │ │ ├── NetworkRequestEapSimUmtsAuthParams.struct │ │ │ │ │ │ ├── NetworkResponseEapSimGsmAuthParams.struct │ │ │ │ │ │ ├── NetworkResponseEapSimUmtsAuthParams.struct │ │ │ │ │ │ ├── OceRssiBasedAssocRejectAttr.struct │ │ │ │ │ │ ├── P2pClientEapolIpAddressInfo.struct │ │ │ │ │ │ ├── PortRange.struct │ │ │ │ │ │ ├── QosPolicyClassifierParams.struct │ │ │ │ │ │ ├── QosPolicyData.struct │ │ │ │ │ │ ├── QosPolicyScsData.struct │ │ │ │ │ │ ├── QosPolicyScsRequestStatus.struct │ │ │ │ │ │ ├── QosPolicyScsResponseStatus.struct │ │ │ │ │ │ ├── QosPolicyStatus.struct │ │ │ │ │ │ └── SignalPollResult.struct │ │ │ │ ├── health │ │ │ │ │ └── connect │ │ │ │ │ │ ├── HealthConnectDataState.struct │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ ├── AggregateDataRequestParcel.struct │ │ │ │ │ │ ├── GetPriorityResponseParcel.struct │ │ │ │ │ │ ├── HealthConnectExceptionParcel.struct │ │ │ │ │ │ ├── IAccessLogsResponseCallback.struct │ │ │ │ │ │ ├── IActivityDatesResponseCallback.struct │ │ │ │ │ │ ├── IAggregateRecordsResponseCallback.struct │ │ │ │ │ │ ├── IApplicationInfoResponseCallback.struct │ │ │ │ │ │ ├── IChangeLogsResponseCallback.struct │ │ │ │ │ │ ├── IDataStagingFinishedCallback.struct │ │ │ │ │ │ ├── IEmptyResponseCallback.struct │ │ │ │ │ │ ├── IGetChangeLogTokenCallback.struct │ │ │ │ │ │ ├── IGetHealthConnectDataStateCallback.struct │ │ │ │ │ │ ├── IGetHealthConnectMigrationUiStateCallback.struct │ │ │ │ │ │ ├── IGetPriorityResponseCallback.struct │ │ │ │ │ │ ├── IHealthConnectService.struct │ │ │ │ │ │ ├── IInsertRecordsResponseCallback.struct │ │ │ │ │ │ ├── IMigrationCallback.struct │ │ │ │ │ │ ├── IReadRecordsResponseCallback.struct │ │ │ │ │ │ ├── IRecordTypeInfoResponseCallback.struct │ │ │ │ │ │ ├── InsertRecordsResponseParcel.struct │ │ │ │ │ │ └── UpdatePriorityRequestParcel.struct │ │ │ │ │ │ ├── changelog │ │ │ │ │ │ ├── ChangeLogTokenRequest.struct │ │ │ │ │ │ ├── ChangeLogTokenResponse.struct │ │ │ │ │ │ └── ChangeLogsRequest.struct │ │ │ │ │ │ └── migration │ │ │ │ │ │ ├── HealthConnectMigrationUiState.struct │ │ │ │ │ │ └── MigrationException.struct │ │ │ │ ├── location │ │ │ │ │ ├── Country.struct │ │ │ │ │ ├── Criteria.struct │ │ │ │ │ ├── GeocoderParams.struct │ │ │ │ │ ├── Geofence.struct │ │ │ │ │ ├── GnssMeasurementRequest.struct │ │ │ │ │ ├── GnssStatus.struct │ │ │ │ │ ├── ICountryDetector.struct │ │ │ │ │ ├── ICountryListener.struct │ │ │ │ │ ├── IFusedGeofenceHardware.struct │ │ │ │ │ ├── IGeocodeListener.struct │ │ │ │ │ ├── IGeocodeProvider.struct │ │ │ │ │ ├── IGeofenceProvider.struct │ │ │ │ │ ├── IGnssAntennaInfoListener.struct │ │ │ │ │ ├── IGnssMeasurementsListener.struct │ │ │ │ │ ├── IGnssNavigationMessageListener.struct │ │ │ │ │ ├── IGnssNmeaListener.struct │ │ │ │ │ ├── IGnssStatusListener.struct │ │ │ │ │ ├── IGpsGeofenceHardware.struct │ │ │ │ │ ├── ILocationCallback.struct │ │ │ │ │ ├── ILocationListener.struct │ │ │ │ │ ├── ILocationManager.struct │ │ │ │ │ ├── INetInitiatedListener.struct │ │ │ │ │ ├── LastLocationRequest.struct │ │ │ │ │ ├── LocationTime.struct │ │ │ │ │ └── provider │ │ │ │ │ │ ├── ILocationProvider.struct │ │ │ │ │ │ ├── ILocationProviderManager.struct │ │ │ │ │ │ ├── IProviderRequestListener.struct │ │ │ │ │ │ ├── ProviderProperties.struct │ │ │ │ │ │ └── ProviderRequest.struct │ │ │ │ ├── lpdump │ │ │ │ │ └── ILpdump.struct │ │ │ │ ├── media │ │ │ │ │ ├── AudioAttributesEx.struct │ │ │ │ │ ├── AudioAttributesInternal.struct │ │ │ │ │ ├── AudioClient.struct │ │ │ │ │ ├── AudioFormat.struct │ │ │ │ │ ├── AudioGainSys.struct │ │ │ │ │ ├── AudioHwModule.struct │ │ │ │ │ ├── AudioIoDescriptor.struct │ │ │ │ │ ├── AudioMix.struct │ │ │ │ │ ├── AudioMixMatchCriterion.struct │ │ │ │ │ ├── AudioMixerAttributesInternal.struct │ │ │ │ │ ├── AudioPatchFw.struct │ │ │ │ │ ├── AudioPolicyConfig.struct │ │ │ │ │ ├── AudioPortConfigFw.struct │ │ │ │ │ ├── AudioPortConfigSys.struct │ │ │ │ │ ├── AudioPortDeviceExtSys.struct │ │ │ │ │ ├── AudioPortFw.struct │ │ │ │ │ ├── AudioPortMixExtSys.struct │ │ │ │ │ ├── AudioPortSys.struct │ │ │ │ │ ├── AudioProductStrategy.struct │ │ │ │ │ ├── AudioProfileSys.struct │ │ │ │ │ ├── AudioRoute.struct │ │ │ │ │ ├── AudioRoutesInfo.struct │ │ │ │ │ ├── AudioTimestampInternal.struct │ │ │ │ │ ├── AudioVibratorInfo.struct │ │ │ │ │ ├── AudioVolumeGroup.struct │ │ │ │ │ ├── BluetoothProfileConnectionInfo.struct │ │ │ │ │ ├── ClientConfigParcel.struct │ │ │ │ │ ├── ClientInfoParcel.struct │ │ │ │ │ ├── CreateEffectRequest.struct │ │ │ │ │ ├── CreateEffectResponse.struct │ │ │ │ │ ├── CreateRecordRequest.struct │ │ │ │ │ ├── CreateRecordResponse.struct │ │ │ │ │ ├── CreateTrackRequest.struct │ │ │ │ │ ├── CreateTrackResponse.struct │ │ │ │ │ ├── EffectConfig.struct │ │ │ │ │ ├── EffectDescriptor.struct │ │ │ │ │ ├── GetInputForAttrResponse.struct │ │ │ │ │ ├── GetOutputForAttrResponse.struct │ │ │ │ │ ├── GetSpatializerResponse.struct │ │ │ │ │ ├── IAudioDeviceVolumeDispatcher.struct │ │ │ │ │ ├── IAudioFlingerClient.struct │ │ │ │ │ ├── IAudioFocusDispatcher.struct │ │ │ │ │ ├── IAudioModeDispatcher.struct │ │ │ │ │ ├── IAudioPolicyServiceClient.struct │ │ │ │ │ ├── IAudioRecord.struct │ │ │ │ │ ├── IAudioRoutesObserver.struct │ │ │ │ │ ├── IAudioServerStateDispatcher.struct │ │ │ │ │ ├── IAudioService.struct │ │ │ │ │ ├── IAudioTrack.struct │ │ │ │ │ ├── IAudioTrackCallback.struct │ │ │ │ │ ├── ICapturePresetDevicesRoleDispatcher.struct │ │ │ │ │ ├── ICaptureStateListener.struct │ │ │ │ │ ├── ICommunicationDeviceDispatcher.struct │ │ │ │ │ ├── IDeviceVolumeBehaviorDispatcher.struct │ │ │ │ │ ├── IDevicesForAttributesCallback.struct │ │ │ │ │ ├── IEffect.struct │ │ │ │ │ ├── IEffectClient.struct │ │ │ │ │ ├── IMediaCommunicationService.struct │ │ │ │ │ ├── IMediaCommunicationServiceCallback.struct │ │ │ │ │ ├── IMediaController2.struct │ │ │ │ │ ├── IMediaHTTPConnection.struct │ │ │ │ │ ├── IMediaHTTPService.struct │ │ │ │ │ ├── IMediaMetricsService.struct │ │ │ │ │ ├── IMediaResourceMonitor.struct │ │ │ │ │ ├── IMediaRoute2ProviderService.struct │ │ │ │ │ ├── IMediaRoute2ProviderServiceCallback.struct │ │ │ │ │ ├── IMediaRouter2.struct │ │ │ │ │ ├── IMediaRouter2Manager.struct │ │ │ │ │ ├── IMediaRouterClient.struct │ │ │ │ │ ├── IMediaRouterService.struct │ │ │ │ │ ├── IMediaScannerListener.struct │ │ │ │ │ ├── IMediaScannerService.struct │ │ │ │ │ ├── IMediaSession2.struct │ │ │ │ │ ├── IMediaSession2Service.struct │ │ │ │ │ ├── IMediaTranscodingService.struct │ │ │ │ │ ├── IMuteAwaitConnectionCallback.struct │ │ │ │ │ ├── INativeSpatializerCallback.struct │ │ │ │ │ ├── INearbyMediaDevicesProvider.struct │ │ │ │ │ ├── INearbyMediaDevicesUpdateCallback.struct │ │ │ │ │ ├── IPlaybackConfigDispatcher.struct │ │ │ │ │ ├── IPlayer.struct │ │ │ │ │ ├── IPreferredMixerAttributesDispatcher.struct │ │ │ │ │ ├── IRecordingConfigDispatcher.struct │ │ │ │ │ ├── IRemoteDisplayCallback.struct │ │ │ │ │ ├── IRemoteDisplayProvider.struct │ │ │ │ │ ├── IRemoteSessionCallback.struct │ │ │ │ │ ├── IRemoteVolumeObserver.struct │ │ │ │ │ ├── IResourceManagerClient.struct │ │ │ │ │ ├── IResourceManagerService.struct │ │ │ │ │ ├── IResourceObserver.struct │ │ │ │ │ ├── IResourceObserverService.struct │ │ │ │ │ ├── IRingtonePlayer.struct │ │ │ │ │ ├── ISoundDose.struct │ │ │ │ │ ├── ISoundDoseCallback.struct │ │ │ │ │ ├── ISpatializer.struct │ │ │ │ │ ├── ISpatializerCallback.struct │ │ │ │ │ ├── ISpatializerHeadToSoundStagePoseCallback.struct │ │ │ │ │ ├── ISpatializerHeadTrackerAvailableCallback.struct │ │ │ │ │ ├── ISpatializerHeadTrackingCallback.struct │ │ │ │ │ ├── ISpatializerHeadTrackingModeCallback.struct │ │ │ │ │ ├── ISpatializerOutputCallback.struct │ │ │ │ │ ├── IStrategyNonDefaultDevicesDispatcher.struct │ │ │ │ │ ├── IStrategyPreferredDevicesDispatcher.struct │ │ │ │ │ ├── IStreamAliasingDispatcher.struct │ │ │ │ │ ├── ITranscodingClient.struct │ │ │ │ │ ├── ITranscodingClientCallback.struct │ │ │ │ │ ├── IVolumeController.struct │ │ │ │ │ ├── InterpolatorConfig.struct │ │ │ │ │ ├── MediaObservableFilter.struct │ │ │ │ │ ├── MediaObservableParcel.struct │ │ │ │ │ ├── MediaResourceParcel.struct │ │ │ │ │ ├── MediaResourcePolicyParcel.struct │ │ │ │ │ ├── MicrophoneInfoFw.struct │ │ │ │ │ ├── NearbyDevice.struct │ │ │ │ │ ├── OpenInputRequest.struct │ │ │ │ │ ├── OpenInputResponse.struct │ │ │ │ │ ├── OpenOutputRequest.struct │ │ │ │ │ ├── OpenOutputResponse.struct │ │ │ │ │ ├── PlaybackParams.struct │ │ │ │ │ ├── Rating.struct │ │ │ │ │ ├── RecordClientInfo.struct │ │ │ │ │ ├── RenderPosition.struct │ │ │ │ │ ├── RouteDiscoveryPreference.struct │ │ │ │ │ ├── Session2Command.struct │ │ │ │ │ ├── SharedFileRegion.struct │ │ │ │ │ ├── SoundDoseRecord.struct │ │ │ │ │ ├── SoundTriggerSession.struct │ │ │ │ │ ├── TrackSecondaryOutputInfo.struct │ │ │ │ │ ├── TranscodingRequestParcel.struct │ │ │ │ │ ├── TranscodingResultParcel.struct │ │ │ │ │ ├── TranscodingSessionParcel.struct │ │ │ │ │ ├── TranscodingSessionStats.struct │ │ │ │ │ ├── TranscodingTestConfig.struct │ │ │ │ │ ├── TranscodingVideoTrackFormat.struct │ │ │ │ │ ├── VolumeInfo.struct │ │ │ │ │ ├── VolumePolicy.struct │ │ │ │ │ ├── VolumeShaperConfiguration.struct │ │ │ │ │ ├── VolumeShaperOperation.struct │ │ │ │ │ ├── VolumeShaperState.struct │ │ │ │ │ ├── audio │ │ │ │ │ │ └── common │ │ │ │ │ │ │ ├── AudioAttributes.struct │ │ │ │ │ │ │ ├── AudioConfig.struct │ │ │ │ │ │ │ ├── AudioConfigBase.struct │ │ │ │ │ │ │ ├── AudioDevice.struct │ │ │ │ │ │ │ ├── AudioDeviceDescription.struct │ │ │ │ │ │ │ ├── AudioFormatDescription.struct │ │ │ │ │ │ │ ├── AudioGain.struct │ │ │ │ │ │ │ ├── AudioGainConfig.struct │ │ │ │ │ │ │ ├── AudioHalAttributesGroup.struct │ │ │ │ │ │ │ ├── AudioHalCapCriterion.struct │ │ │ │ │ │ │ ├── AudioHalCapCriterionType.struct │ │ │ │ │ │ │ ├── AudioHalProductStrategy.struct │ │ │ │ │ │ │ ├── AudioHalVolumeGroup.struct │ │ │ │ │ │ │ ├── AudioMMapPolicyInfo.struct │ │ │ │ │ │ │ ├── AudioOffloadInfo.struct │ │ │ │ │ │ │ ├── AudioPlaybackRate.struct │ │ │ │ │ │ │ ├── AudioPort.struct │ │ │ │ │ │ │ ├── AudioPortConfig.struct │ │ │ │ │ │ │ ├── AudioPortDeviceExt.struct │ │ │ │ │ │ │ ├── AudioPortMixExt.struct │ │ │ │ │ │ │ ├── AudioProfile.struct │ │ │ │ │ │ │ ├── AudioUuid.struct │ │ │ │ │ │ │ ├── Boolean.struct │ │ │ │ │ │ │ ├── Byte.struct │ │ │ │ │ │ │ ├── Double.struct │ │ │ │ │ │ │ ├── ExtraAudioDescriptor.struct │ │ │ │ │ │ │ ├── Float.struct │ │ │ │ │ │ │ ├── Int.struct │ │ │ │ │ │ │ ├── Long.struct │ │ │ │ │ │ │ ├── MicrophoneDynamicInfo.struct │ │ │ │ │ │ │ └── Void.struct │ │ │ │ │ ├── audiopolicy │ │ │ │ │ │ ├── AudioProductStrategy.struct │ │ │ │ │ │ └── IAudioPolicyCallback.struct │ │ │ │ │ ├── bettertogether │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ ├── eco │ │ │ │ │ │ ├── IECOService.struct │ │ │ │ │ │ ├── IECOServiceInfoListener.struct │ │ │ │ │ │ ├── IECOServiceStatsProvider.struct │ │ │ │ │ │ └── IECOSession.struct │ │ │ │ │ ├── metrics │ │ │ │ │ │ ├── IMediaMetricsManager.struct │ │ │ │ │ │ ├── NetworkEvent.struct │ │ │ │ │ │ ├── PlaybackErrorEvent.struct │ │ │ │ │ │ ├── PlaybackStateEvent.struct │ │ │ │ │ │ └── TrackChangeEvent.struct │ │ │ │ │ ├── midi │ │ │ │ │ │ ├── IBluetoothMidiService.struct │ │ │ │ │ │ ├── IMidiDeviceListener.struct │ │ │ │ │ │ ├── IMidiDeviceOpenCallback.struct │ │ │ │ │ │ ├── IMidiDeviceServer.struct │ │ │ │ │ │ ├── IMidiManager.struct │ │ │ │ │ │ └── MidiDeviceInfo.struct │ │ │ │ │ ├── musicrecognition │ │ │ │ │ │ ├── IMusicRecognitionAttributionTagCallback.struct │ │ │ │ │ │ ├── IMusicRecognitionManager.struct │ │ │ │ │ │ ├── IMusicRecognitionManagerCallback.struct │ │ │ │ │ │ ├── IMusicRecognitionService.struct │ │ │ │ │ │ └── IMusicRecognitionServiceCallback.struct │ │ │ │ │ ├── permission │ │ │ │ │ │ └── Identity.struct │ │ │ │ │ ├── projection │ │ │ │ │ │ ├── IMediaProjection.struct │ │ │ │ │ │ ├── IMediaProjectionCallback.struct │ │ │ │ │ │ ├── IMediaProjectionManager.struct │ │ │ │ │ │ ├── IMediaProjectionWatcherCallback.struct │ │ │ │ │ │ └── MediaProjectionInfo.struct │ │ │ │ │ ├── session │ │ │ │ │ │ ├── IActiveSessionsListener.struct │ │ │ │ │ │ ├── IOnMediaKeyEventDispatchedListener.struct │ │ │ │ │ │ ├── IOnMediaKeyEventSessionChangedListener.struct │ │ │ │ │ │ ├── IOnMediaKeyListener.struct │ │ │ │ │ │ ├── IOnVolumeKeyLongPressListener.struct │ │ │ │ │ │ ├── ISession.struct │ │ │ │ │ │ ├── ISession2TokensListener.struct │ │ │ │ │ │ ├── ISessionCallback.struct │ │ │ │ │ │ ├── ISessionController.struct │ │ │ │ │ │ ├── ISessionControllerCallback.struct │ │ │ │ │ │ └── ISessionManager.struct │ │ │ │ │ ├── soundtrigger │ │ │ │ │ │ ├── ConfidenceLevel.struct │ │ │ │ │ │ ├── ISoundTriggerDetectionService.struct │ │ │ │ │ │ ├── ISoundTriggerDetectionServiceClient.struct │ │ │ │ │ │ ├── ModelParameterRange.struct │ │ │ │ │ │ ├── Phrase.struct │ │ │ │ │ │ ├── PhraseRecognitionEvent.struct │ │ │ │ │ │ ├── PhraseRecognitionExtra.struct │ │ │ │ │ │ ├── PhraseSoundModel.struct │ │ │ │ │ │ ├── Properties.struct │ │ │ │ │ │ ├── RecognitionConfig.struct │ │ │ │ │ │ ├── RecognitionEvent.struct │ │ │ │ │ │ └── SoundModel.struct │ │ │ │ │ ├── soundtrigger_middleware │ │ │ │ │ │ ├── IAcknowledgeEvent.struct │ │ │ │ │ │ ├── IInjectGlobalEvent.struct │ │ │ │ │ │ ├── IInjectModelEvent.struct │ │ │ │ │ │ ├── IInjectRecognitionEvent.struct │ │ │ │ │ │ ├── ISoundTriggerCallback.struct │ │ │ │ │ │ ├── ISoundTriggerInjection.struct │ │ │ │ │ │ ├── ISoundTriggerMiddlewareService.struct │ │ │ │ │ │ ├── ISoundTriggerModule.struct │ │ │ │ │ │ ├── PhraseRecognitionEventSys.struct │ │ │ │ │ │ ├── RecognitionEventSys.struct │ │ │ │ │ │ └── SoundTriggerModuleDescriptor.struct │ │ │ │ │ └── tv │ │ │ │ │ │ ├── AdRequest.struct │ │ │ │ │ │ ├── AdResponse.struct │ │ │ │ │ │ ├── AitInfo.struct │ │ │ │ │ │ ├── BroadcastInfoRequest.struct │ │ │ │ │ │ ├── BroadcastInfoResponse.struct │ │ │ │ │ │ ├── DvbDeviceInfo.struct │ │ │ │ │ │ ├── ITvInputClient.struct │ │ │ │ │ │ ├── ITvInputHardware.struct │ │ │ │ │ │ ├── ITvInputHardwareCallback.struct │ │ │ │ │ │ ├── ITvInputManager.struct │ │ │ │ │ │ ├── ITvInputManagerCallback.struct │ │ │ │ │ │ ├── ITvInputService.struct │ │ │ │ │ │ ├── ITvInputServiceCallback.struct │ │ │ │ │ │ ├── ITvInputSession.struct │ │ │ │ │ │ ├── ITvInputSessionCallback.struct │ │ │ │ │ │ ├── ITvRemoteProvider.struct │ │ │ │ │ │ ├── ITvRemoteServiceInput.struct │ │ │ │ │ │ ├── TvTrackInfo.struct │ │ │ │ │ │ ├── interactive │ │ │ │ │ │ ├── ITvInteractiveAppClient.struct │ │ │ │ │ │ ├── ITvInteractiveAppManager.struct │ │ │ │ │ │ ├── ITvInteractiveAppManagerCallback.struct │ │ │ │ │ │ ├── ITvInteractiveAppService.struct │ │ │ │ │ │ ├── ITvInteractiveAppServiceCallback.struct │ │ │ │ │ │ ├── ITvInteractiveAppSession.struct │ │ │ │ │ │ └── ITvInteractiveAppSessionCallback.struct │ │ │ │ │ │ ├── tuner │ │ │ │ │ │ ├── ITunerDemux.struct │ │ │ │ │ │ ├── ITunerDescrambler.struct │ │ │ │ │ │ ├── ITunerDvrCallback.struct │ │ │ │ │ │ ├── ITunerFilterCallback.struct │ │ │ │ │ │ ├── ITunerFrontend.struct │ │ │ │ │ │ ├── ITunerFrontendCallback.struct │ │ │ │ │ │ ├── ITunerLnb.struct │ │ │ │ │ │ ├── ITunerLnbCallback.struct │ │ │ │ │ │ ├── ITunerService.struct │ │ │ │ │ │ ├── ITunerTimeFilter.struct │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ ├── ISharedFilterTestServer.struct │ │ │ │ │ │ │ └── ITunerResourceTestServer.struct │ │ │ │ │ │ └── tunerresourcemanager │ │ │ │ │ │ ├── CasSessionRequest.struct │ │ │ │ │ │ ├── IResourcesReclaimListener.struct │ │ │ │ │ │ ├── ITunerResourceManager.struct │ │ │ │ │ │ ├── ResourceClientProfile.struct │ │ │ │ │ │ ├── TunerCiCamRequest.struct │ │ │ │ │ │ ├── TunerDemuxInfo.struct │ │ │ │ │ │ ├── TunerDemuxRequest.struct │ │ │ │ │ │ ├── TunerDescramblerRequest.struct │ │ │ │ │ │ ├── TunerFrontendInfo.struct │ │ │ │ │ │ ├── TunerFrontendRequest.struct │ │ │ │ │ │ └── TunerLnbRequest.struct │ │ │ │ ├── nearby │ │ │ │ │ ├── IBroadcastListener.struct │ │ │ │ │ ├── IFastPairHalfSheetCallback.struct │ │ │ │ │ ├── INearbyManager.struct │ │ │ │ │ ├── IScanListener.struct │ │ │ │ │ ├── OffloadCapability.struct │ │ │ │ │ ├── PairStatusMetadata.struct │ │ │ │ │ └── aidl │ │ │ │ │ │ ├── ByteArrayParcel.struct │ │ │ │ │ │ ├── FastPairAccountDevicesMetadataRequestParcel.struct │ │ │ │ │ │ ├── FastPairAccountKeyDeviceMetadataParcel.struct │ │ │ │ │ │ ├── FastPairAntispoofKeyDeviceMetadataParcel.struct │ │ │ │ │ │ ├── FastPairAntispoofKeyDeviceMetadataRequestParcel.struct │ │ │ │ │ │ ├── FastPairDeviceMetadataParcel.struct │ │ │ │ │ │ ├── FastPairDiscoveryItemParcel.struct │ │ │ │ │ │ ├── FastPairEligibleAccountParcel.struct │ │ │ │ │ │ ├── FastPairEligibleAccountsRequestParcel.struct │ │ │ │ │ │ ├── FastPairManageAccountDeviceRequestParcel.struct │ │ │ │ │ │ ├── FastPairManageAccountRequestParcel.struct │ │ │ │ │ │ ├── IFastPairAccountDevicesMetadataCallback.struct │ │ │ │ │ │ ├── IFastPairAntispoofKeyDeviceMetadataCallback.struct │ │ │ │ │ │ ├── IFastPairDataProvider.struct │ │ │ │ │ │ ├── IFastPairEligibleAccountsCallback.struct │ │ │ │ │ │ ├── IFastPairManageAccountCallback.struct │ │ │ │ │ │ ├── IFastPairManageAccountDeviceCallback.struct │ │ │ │ │ │ ├── IFastPairStatusCallback.struct │ │ │ │ │ │ ├── IFastPairUiService.struct │ │ │ │ │ │ └── IOffloadCallback.struct │ │ │ │ ├── net │ │ │ │ │ ├── CaptivePortalData.struct │ │ │ │ │ ├── ConnectivityMetricsEvent.struct │ │ │ │ │ ├── DataStallReportParcelable.struct │ │ │ │ │ ├── DhcpInfo.struct │ │ │ │ │ ├── DhcpOption.struct │ │ │ │ │ ├── DhcpResultsParcelable.struct │ │ │ │ │ ├── EthernetNetworkManagementException.struct │ │ │ │ │ ├── ICaptivePortal.struct │ │ │ │ │ ├── IConnectivityDiagnosticsCallback.struct │ │ │ │ │ ├── IDnsResolver.struct │ │ │ │ │ ├── IEthernetManager.struct │ │ │ │ │ ├── IEthernetServiceListener.struct │ │ │ │ │ ├── IIntResultListener.struct │ │ │ │ │ ├── IIpConnectivityMetrics.struct │ │ │ │ │ ├── IIpMemoryStore.struct │ │ │ │ │ ├── IIpMemoryStoreCallbacks.struct │ │ │ │ │ ├── IIpSecService.struct │ │ │ │ │ ├── INetd.struct │ │ │ │ │ ├── INetdEventCallback.struct │ │ │ │ │ ├── INetdUnsolicitedEventListener.struct │ │ │ │ │ ├── INetworkActivityListener.struct │ │ │ │ │ ├── INetworkAgent.struct │ │ │ │ │ ├── INetworkAgentRegistry.struct │ │ │ │ │ ├── INetworkInterfaceOutcomeReceiver.struct │ │ │ │ │ ├── INetworkManagementEventObserver.struct │ │ │ │ │ ├── INetworkMonitor.struct │ │ │ │ │ ├── INetworkMonitorCallbacks.struct │ │ │ │ │ ├── INetworkOfferCallback.struct │ │ │ │ │ ├── INetworkPolicyListener.struct │ │ │ │ │ ├── INetworkPolicyManager.struct │ │ │ │ │ ├── INetworkRecommendationProvider.struct │ │ │ │ │ ├── INetworkScoreCache.struct │ │ │ │ │ ├── INetworkScoreService.struct │ │ │ │ │ ├── INetworkStackConnector.struct │ │ │ │ │ ├── INetworkStackStatusCallback.struct │ │ │ │ │ ├── INetworkStatsService.struct │ │ │ │ │ ├── INetworkStatsSession.struct │ │ │ │ │ ├── IOnCompleteListener.struct │ │ │ │ │ ├── IPacProxyInstalledListener.struct │ │ │ │ │ ├── IPacProxyManager.struct │ │ │ │ │ ├── IQosCallback.struct │ │ │ │ │ ├── ISocketKeepaliveCallback.struct │ │ │ │ │ ├── ITestNetworkManager.struct │ │ │ │ │ ├── ITetheredInterfaceCallback.struct │ │ │ │ │ ├── ITetheringConnector.struct │ │ │ │ │ ├── ITetheringEventCallback.struct │ │ │ │ │ ├── ITetheringStatsProvider.struct │ │ │ │ │ ├── IVpnManager.struct │ │ │ │ │ ├── InformationElementParcelable.struct │ │ │ │ │ ├── InitialConfigurationParcelable.struct │ │ │ │ │ ├── InterfaceConfigurationParcel.struct │ │ │ │ │ ├── IpPrefix.struct │ │ │ │ │ ├── IpSecMigrateInfoParcel.struct │ │ │ │ │ ├── IpSecSpiResponse.struct │ │ │ │ │ ├── IpSecTransformResponse.struct │ │ │ │ │ ├── IpSecTunnelInterfaceResponse.struct │ │ │ │ │ ├── Layer2InformationParcelable.struct │ │ │ │ │ ├── Layer2PacketParcelable.struct │ │ │ │ │ ├── MacAddress.struct │ │ │ │ │ ├── MarkMaskParcel.struct │ │ │ │ │ ├── NativeNetworkConfig.struct │ │ │ │ │ ├── NattKeepalivePacketDataParcelable.struct │ │ │ │ │ ├── Network.struct │ │ │ │ │ ├── NetworkAgentConfig.struct │ │ │ │ │ ├── NetworkKey.struct │ │ │ │ │ ├── NetworkScore.struct │ │ │ │ │ ├── NetworkScorerAppData.struct │ │ │ │ │ ├── NetworkStats.struct │ │ │ │ │ ├── NetworkTemplate.struct │ │ │ │ │ ├── NetworkTestResultParcelable.struct │ │ │ │ │ ├── PrivateDnsConfigParcel.struct │ │ │ │ │ ├── ProvisioningConfigurationParcelable.struct │ │ │ │ │ ├── ProxyInfo.struct │ │ │ │ │ ├── QosFilterParcelable.struct │ │ │ │ │ ├── QosSession.struct │ │ │ │ │ ├── ResolverHostsParcel.struct │ │ │ │ │ ├── ResolverOptionsParcel.struct │ │ │ │ │ ├── ResolverParamsParcel.struct │ │ │ │ │ ├── RouteInfo.struct │ │ │ │ │ ├── RouteInfoParcel.struct │ │ │ │ │ ├── RssiCurve.struct │ │ │ │ │ ├── ScanResultInfoParcelable.struct │ │ │ │ │ ├── ScoredNetwork.struct │ │ │ │ │ ├── TcpKeepalivePacketDataParcelable.struct │ │ │ │ │ ├── TetherConfigParcel.struct │ │ │ │ │ ├── TetherOffloadRuleParcel.struct │ │ │ │ │ ├── TetherStatesParcel.struct │ │ │ │ │ ├── TetherStatsParcel.struct │ │ │ │ │ ├── TetheredClient.struct │ │ │ │ │ ├── TetheringCallbackStartedParcel.struct │ │ │ │ │ ├── TetheringConfigurationParcel.struct │ │ │ │ │ ├── TetheringInterface.struct │ │ │ │ │ ├── TetheringRequestParcel.struct │ │ │ │ │ ├── UidRangeParcel.struct │ │ │ │ │ ├── Uri.struct │ │ │ │ │ ├── VpnProfileState.struct │ │ │ │ │ ├── apf │ │ │ │ │ │ └── ApfCapabilities.struct │ │ │ │ │ ├── connectivity │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ └── ConnectivityNative.struct │ │ │ │ │ ├── dhcp │ │ │ │ │ │ ├── DhcpLeaseParcelable.struct │ │ │ │ │ │ ├── DhcpServingParamsParcel.struct │ │ │ │ │ │ ├── IDhcpEventCallbacks.struct │ │ │ │ │ │ ├── IDhcpServer.struct │ │ │ │ │ │ └── IDhcpServerCallbacks.struct │ │ │ │ │ ├── ip │ │ │ │ │ │ ├── IIpClient.struct │ │ │ │ │ │ └── IIpClientCallbacks.struct │ │ │ │ │ ├── ipmemorystore │ │ │ │ │ │ ├── Blob.struct │ │ │ │ │ │ ├── IOnBlobRetrievedListener.struct │ │ │ │ │ │ ├── IOnL2KeyResponseListener.struct │ │ │ │ │ │ ├── IOnNetworkAttributesRetrievedListener.struct │ │ │ │ │ │ ├── IOnSameL3NetworkResponseListener.struct │ │ │ │ │ │ ├── IOnStatusAndCountListener.struct │ │ │ │ │ │ ├── IOnStatusListener.struct │ │ │ │ │ │ ├── NetworkAttributesParcelable.struct │ │ │ │ │ │ ├── SameL3NetworkResponseParcelable.struct │ │ │ │ │ │ └── StatusParcelable.struct │ │ │ │ │ ├── mdns │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ ├── DiscoveryInfo.struct │ │ │ │ │ │ │ ├── GetAddressInfo.struct │ │ │ │ │ │ │ ├── IMDns.struct │ │ │ │ │ │ │ ├── IMDnsEventListener.struct │ │ │ │ │ │ │ ├── RegistrationInfo.struct │ │ │ │ │ │ │ └── ResolutionInfo.struct │ │ │ │ │ ├── metrics │ │ │ │ │ │ └── INetdEventListener.struct │ │ │ │ │ ├── netd │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ └── NativeUidRangeConfig.struct │ │ │ │ │ ├── netstats │ │ │ │ │ │ ├── IUsageCallback.struct │ │ │ │ │ │ └── provider │ │ │ │ │ │ │ ├── INetworkStatsProvider.struct │ │ │ │ │ │ │ └── INetworkStatsProviderCallback.struct │ │ │ │ │ ├── networkstack │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ ├── NetworkMonitorParameters.struct │ │ │ │ │ │ │ ├── dhcp │ │ │ │ │ │ │ └── DhcpOption.struct │ │ │ │ │ │ │ ├── ip │ │ │ │ │ │ │ └── ReachabilityLossInfoParcelable.struct │ │ │ │ │ │ │ └── quirks │ │ │ │ │ │ │ └── IPv6ProvisioningLossQuirkParcelable.struct │ │ │ │ │ ├── nsd │ │ │ │ │ │ ├── INsdManager.struct │ │ │ │ │ │ ├── INsdManagerCallback.struct │ │ │ │ │ │ └── INsdServiceConnector.struct │ │ │ │ │ ├── resolv │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ ├── DnsHealthEventParcel.struct │ │ │ │ │ │ │ ├── IDnsResolverUnsolicitedEventListener.struct │ │ │ │ │ │ │ ├── Nat64PrefixEventParcel.struct │ │ │ │ │ │ │ └── PrivateDnsValidationEventParcel.struct │ │ │ │ │ ├── sip │ │ │ │ │ │ ├── ISipService.struct │ │ │ │ │ │ ├── ISipSession.struct │ │ │ │ │ │ ├── ISipSessionListener.struct │ │ │ │ │ │ └── SipProfile.struct │ │ │ │ │ ├── vcn │ │ │ │ │ │ ├── IVcnManagementService.struct │ │ │ │ │ │ ├── IVcnStatusCallback.struct │ │ │ │ │ │ ├── IVcnUnderlyingNetworkPolicyListener.struct │ │ │ │ │ │ └── VcnConfig.struct │ │ │ │ │ ├── wear │ │ │ │ │ │ └── ICompanionDeviceManagerProxy.struct │ │ │ │ │ └── wifi │ │ │ │ │ │ ├── CoexUnsafeChannel.struct │ │ │ │ │ │ ├── IActionListener.struct │ │ │ │ │ │ ├── IBooleanListener.struct │ │ │ │ │ │ ├── ICoexCallback.struct │ │ │ │ │ │ ├── IDppCallback.struct │ │ │ │ │ │ ├── IIntegerListener.struct │ │ │ │ │ │ ├── IInterfaceCreationInfoCallback.struct │ │ │ │ │ │ ├── ILastCallerListener.struct │ │ │ │ │ │ ├── IListListener.struct │ │ │ │ │ │ ├── ILocalOnlyConnectionStatusListener.struct │ │ │ │ │ │ ├── ILocalOnlyHotspotCallback.struct │ │ │ │ │ │ ├── INetworkRequestMatchCallback.struct │ │ │ │ │ │ ├── INetworkRequestUserSelectionCallback.struct │ │ │ │ │ │ ├── IOnWifiActivityEnergyInfoListener.struct │ │ │ │ │ │ ├── IOnWifiDriverCountryCodeChangedListener.struct │ │ │ │ │ │ ├── IOnWifiUsabilityStatsListener.struct │ │ │ │ │ │ ├── IPnoScanResultsCallback.struct │ │ │ │ │ │ ├── IScanResultsCallback.struct │ │ │ │ │ │ ├── IScanResultsListener.struct │ │ │ │ │ │ ├── IScoreUpdateObserver.struct │ │ │ │ │ │ ├── IStringListener.struct │ │ │ │ │ │ ├── ISubsystemRestartCallback.struct │ │ │ │ │ │ ├── ISuggestionConnectionStatusListener.struct │ │ │ │ │ │ ├── ISuggestionUserApprovalStatusListener.struct │ │ │ │ │ │ ├── ITrafficStateCallback.struct │ │ │ │ │ │ ├── IWifiBandsListener.struct │ │ │ │ │ │ ├── IWifiConnectedNetworkScorer.struct │ │ │ │ │ │ ├── IWifiLowLatencyLockListener.struct │ │ │ │ │ │ ├── IWifiManager.struct │ │ │ │ │ │ ├── IWifiNetworkSelectionConfigListener.struct │ │ │ │ │ │ ├── IWifiNetworkStateChangedListener.struct │ │ │ │ │ │ ├── IWifiScanner.struct │ │ │ │ │ │ ├── IWifiScannerListener.struct │ │ │ │ │ │ ├── IWifiVerboseLoggingStatusChangedListener.struct │ │ │ │ │ │ ├── WifiBands.struct │ │ │ │ │ │ ├── WifiConnectedSessionInfo.struct │ │ │ │ │ │ ├── WifiNetworkSuggestion.struct │ │ │ │ │ │ ├── WifiSsid.struct │ │ │ │ │ │ ├── aware │ │ │ │ │ │ ├── AwarePairingConfig.struct │ │ │ │ │ │ ├── AwareParams.struct │ │ │ │ │ │ ├── AwareResources.struct │ │ │ │ │ │ ├── ConfigRequest.struct │ │ │ │ │ │ ├── IWifiAwareDiscoverySessionCallback.struct │ │ │ │ │ │ ├── IWifiAwareEventCallback.struct │ │ │ │ │ │ ├── IWifiAwareMacAddressProvider.struct │ │ │ │ │ │ ├── IWifiAwareManager.struct │ │ │ │ │ │ └── MacAddrMapping.struct │ │ │ │ │ │ ├── hotspot2 │ │ │ │ │ │ └── IProvisioningCallback.struct │ │ │ │ │ │ ├── nl80211 │ │ │ │ │ │ ├── DeviceWiphyCapabilities.struct │ │ │ │ │ │ ├── IApInterface.struct │ │ │ │ │ │ ├── IApInterfaceEventCallback.struct │ │ │ │ │ │ ├── IClientInterface.struct │ │ │ │ │ │ ├── IInterfaceEventCallback.struct │ │ │ │ │ │ ├── IPnoScanEvent.struct │ │ │ │ │ │ ├── IScanEvent.struct │ │ │ │ │ │ ├── ISendMgmtFrameEvent.struct │ │ │ │ │ │ ├── IWifiScannerImpl.struct │ │ │ │ │ │ ├── IWificond.struct │ │ │ │ │ │ └── IWificondEventCallback.struct │ │ │ │ │ │ ├── p2p │ │ │ │ │ │ └── IWifiP2pManager.struct │ │ │ │ │ │ ├── rtt │ │ │ │ │ │ ├── IRttCallback.struct │ │ │ │ │ │ ├── IWifiRttManager.struct │ │ │ │ │ │ └── RangingRequest.struct │ │ │ │ │ │ └── sharedconnectivity │ │ │ │ │ │ └── service │ │ │ │ │ │ ├── ISharedConnectivityCallback.struct │ │ │ │ │ │ └── ISharedConnectivityService.struct │ │ │ │ ├── nfc │ │ │ │ │ ├── IAppCallback.struct │ │ │ │ │ ├── INfcAdapter.struct │ │ │ │ │ ├── INfcAdapterExtras.struct │ │ │ │ │ ├── INfcCardEmulation.struct │ │ │ │ │ ├── INfcControllerAlwaysOnListener.struct │ │ │ │ │ ├── INfcDta.struct │ │ │ │ │ ├── INfcFCardEmulation.struct │ │ │ │ │ ├── INfcTag.struct │ │ │ │ │ ├── INfcUnlockHandler.struct │ │ │ │ │ ├── ITagRemovedCallback.struct │ │ │ │ │ ├── TechListParcel.struct │ │ │ │ │ ├── TransceiveResult.struct │ │ │ │ │ └── cardemulation │ │ │ │ │ │ └── NfcFServiceInfo.struct │ │ │ │ ├── ondevicepersonalization │ │ │ │ │ └── aidl │ │ │ │ │ │ ├── IDataAccessService.struct │ │ │ │ │ │ ├── IDataAccessServiceCallback.struct │ │ │ │ │ │ ├── IExecuteCallback.struct │ │ │ │ │ │ ├── IIsolatedComputationService.struct │ │ │ │ │ │ ├── IIsolatedComputationServiceCallback.struct │ │ │ │ │ │ ├── IOnDevicePersonalizationManagingService.struct │ │ │ │ │ │ ├── IPrivacyStatusService.struct │ │ │ │ │ │ ├── IPrivacyStatusServiceCallback.struct │ │ │ │ │ │ └── IRequestSurfacePackageCallback.struct │ │ │ │ ├── os │ │ │ │ │ ├── BatteryUsageStatsQuery.struct │ │ │ │ │ ├── Bundle.struct │ │ │ │ │ ├── ConnectionInfo.struct │ │ │ │ │ ├── CoolingDevice.struct │ │ │ │ │ ├── CreateAppDataArgs.struct │ │ │ │ │ ├── CreateAppDataResult.struct │ │ │ │ │ ├── ExternalVibration.struct │ │ │ │ │ ├── FabricatedOverlayInfo.struct │ │ │ │ │ ├── FabricatedOverlayInternal.struct │ │ │ │ │ ├── FabricatedOverlayInternalEntry.struct │ │ │ │ │ ├── IAidlTest.struct │ │ │ │ │ ├── IBatteryPropertiesRegistrar.struct │ │ │ │ │ ├── IBinderThreadPriorityService.struct │ │ │ │ │ ├── IBinderWorkSourceNestedService.struct │ │ │ │ │ ├── IBinderWorkSourceService.struct │ │ │ │ │ ├── ICancellationSignal.struct │ │ │ │ │ ├── IClientCallback.struct │ │ │ │ │ ├── IDeviceIdentifiersPolicyService.struct │ │ │ │ │ ├── IDeviceIdleController.struct │ │ │ │ │ ├── IDumpstate.struct │ │ │ │ │ ├── IDumpstateListener.struct │ │ │ │ │ ├── IExternalVibrationController.struct │ │ │ │ │ ├── IExternalVibratorService.struct │ │ │ │ │ ├── IHardwarePropertiesManager.struct │ │ │ │ │ ├── IHintManager.struct │ │ │ │ │ ├── IHintSession.struct │ │ │ │ │ ├── IIdmap2.struct │ │ │ │ │ ├── IIncidentAuthListener.struct │ │ │ │ │ ├── IIncidentCompanion.struct │ │ │ │ │ ├── IIncidentDumpCallback.struct │ │ │ │ │ ├── IIncidentManager.struct │ │ │ │ │ ├── IIncidentReportStatusListener.struct │ │ │ │ │ ├── IInputConstants.struct │ │ │ │ │ ├── IInputFlinger.struct │ │ │ │ │ ├── IInstalld.struct │ │ │ │ │ ├── ILogd.struct │ │ │ │ │ ├── IMessenger.struct │ │ │ │ │ ├── INetworkManagementService.struct │ │ │ │ │ ├── IPendingIntentRef.struct │ │ │ │ │ ├── IPermissionController.struct │ │ │ │ │ ├── IProcessInfoService.struct │ │ │ │ │ ├── IProgressListener.struct │ │ │ │ │ ├── IPullAtomCallback.struct │ │ │ │ │ ├── IPullAtomResultReceiver.struct │ │ │ │ │ ├── IRecoverySystem.struct │ │ │ │ │ ├── IRecoverySystemProgressListener.struct │ │ │ │ │ ├── IRemoteCallback.struct │ │ │ │ │ ├── ISchedulingPolicyService.struct │ │ │ │ │ ├── IServiceCallback.struct │ │ │ │ │ ├── IServiceManager.struct │ │ │ │ │ ├── ISomeService.struct │ │ │ │ │ ├── IStatsBootstrapAtomService.struct │ │ │ │ │ ├── IStatsCompanionService.struct │ │ │ │ │ ├── IStatsManagerService.struct │ │ │ │ │ ├── IStatsQueryCallback.struct │ │ │ │ │ ├── IStatsSubscriptionCallback.struct │ │ │ │ │ ├── IStatsd.struct │ │ │ │ │ ├── IStoraged.struct │ │ │ │ │ ├── ISystemConfig.struct │ │ │ │ │ ├── ISystemUpdateManager.struct │ │ │ │ │ ├── IThermalEventListener.struct │ │ │ │ │ ├── IThermalService.struct │ │ │ │ │ ├── IThermalStatusListener.struct │ │ │ │ │ ├── IUpdateEngine.struct │ │ │ │ │ ├── IUpdateEngineCallback.struct │ │ │ │ │ ├── IUpdateEngineStable.struct │ │ │ │ │ ├── IUpdateEngineStableCallback.struct │ │ │ │ │ ├── IUpdateLock.struct │ │ │ │ │ ├── IUserManager.struct │ │ │ │ │ ├── IUserRestrictionsListener.struct │ │ │ │ │ ├── IVibratorManagerService.struct │ │ │ │ │ ├── IVibratorStateListener.struct │ │ │ │ │ ├── IVold.struct │ │ │ │ │ ├── IVoldListener.struct │ │ │ │ │ ├── IVoldMountCallback.struct │ │ │ │ │ ├── IVoldTaskListener.struct │ │ │ │ │ ├── IWakeLockCallback.struct │ │ │ │ │ ├── Messenger.struct │ │ │ │ │ ├── ParcelDuration.struct │ │ │ │ │ ├── ParcelFileDescriptor.struct │ │ │ │ │ ├── ParcelUuid.struct │ │ │ │ │ ├── PersistableBundle.struct │ │ │ │ │ ├── ReconcileSdkDataArgs.struct │ │ │ │ │ ├── ServiceDebugInfo.struct │ │ │ │ │ ├── SharedMemory.struct │ │ │ │ │ ├── StatsBootstrapAtom.struct │ │ │ │ │ ├── StatsDimensionsValueParcel.struct │ │ │ │ │ ├── Temperature.struct │ │ │ │ │ ├── UserHandle.struct │ │ │ │ │ ├── VibrationAttributes.struct │ │ │ │ │ ├── VibratorInfo.struct │ │ │ │ │ ├── connectivity │ │ │ │ │ │ ├── CellularBatteryStats.struct │ │ │ │ │ │ ├── GpsBatteryStats.struct │ │ │ │ │ │ ├── WifiActivityEnergyInfo.struct │ │ │ │ │ │ └── WifiBatteryStats.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── ExceptionalParcelable.struct │ │ │ │ │ │ ├── IEmptyService.struct │ │ │ │ │ │ ├── IParcelExceptionService.struct │ │ │ │ │ │ ├── IParcelFileDescriptorPeer.struct │ │ │ │ │ │ ├── ISeccompIsolatedService.struct │ │ │ │ │ │ ├── ISecondary.struct │ │ │ │ │ │ └── ISharedMemoryService.struct │ │ │ │ │ ├── image │ │ │ │ │ │ └── IDynamicSystemService.struct │ │ │ │ │ ├── incremental │ │ │ │ │ │ ├── IIncrementalService.struct │ │ │ │ │ │ ├── IIncrementalServiceConnector.struct │ │ │ │ │ │ ├── IStorageHealthListener.struct │ │ │ │ │ │ ├── IStorageLoadingProgressListener.struct │ │ │ │ │ │ ├── IncrementalFileSystemControlParcel.struct │ │ │ │ │ │ ├── IncrementalNewFileParams.struct │ │ │ │ │ │ ├── PerUidReadTimeouts.struct │ │ │ │ │ │ └── StorageHealthCheckParams.struct │ │ │ │ │ ├── logcat │ │ │ │ │ │ └── ILogcatManagerService.struct │ │ │ │ │ ├── storage │ │ │ │ │ │ ├── CrateMetadata.struct │ │ │ │ │ │ ├── DiskInfo.struct │ │ │ │ │ │ ├── IObbActionListener.struct │ │ │ │ │ │ ├── IStorageEventListener.struct │ │ │ │ │ │ ├── IStorageManager.struct │ │ │ │ │ │ ├── IStorageShutdownObserver.struct │ │ │ │ │ │ ├── VolumeInfo.struct │ │ │ │ │ │ └── VolumeRecord.struct │ │ │ │ │ └── storaged │ │ │ │ │ │ └── IStoragedPrivate.struct │ │ │ │ ├── permission │ │ │ │ │ ├── ILegacyPermissionManager.struct │ │ │ │ │ ├── IOnPermissionsChangeListener.struct │ │ │ │ │ ├── IPermissionChecker.struct │ │ │ │ │ ├── IPermissionManager.struct │ │ │ │ │ └── cts │ │ │ │ │ │ └── appthataccesseslocation │ │ │ │ │ │ └── IAccessLocationOnCommand.struct │ │ │ │ ├── pixel │ │ │ │ │ └── perfstatsd │ │ │ │ │ │ └── IPerfstatsdPrivate.struct │ │ │ │ ├── print │ │ │ │ │ ├── ILayoutResultCallback.struct │ │ │ │ │ ├── IPrintDocumentAdapter.struct │ │ │ │ │ ├── IPrintDocumentAdapterObserver.struct │ │ │ │ │ ├── IPrintJobStateChangeListener.struct │ │ │ │ │ ├── IPrintManager.struct │ │ │ │ │ ├── IPrintServicesChangeListener.struct │ │ │ │ │ ├── IPrintSpooler.struct │ │ │ │ │ ├── IPrintSpoolerCallbacks.struct │ │ │ │ │ ├── IPrintSpoolerClient.struct │ │ │ │ │ ├── IPrinterDiscoveryObserver.struct │ │ │ │ │ ├── IWriteResultCallback.struct │ │ │ │ │ ├── PageRange.struct │ │ │ │ │ └── PrintAttributes.struct │ │ │ │ ├── printservice │ │ │ │ │ ├── IPrintService.struct │ │ │ │ │ ├── IPrintServiceClient.struct │ │ │ │ │ └── recommendation │ │ │ │ │ │ ├── IRecommendationService.struct │ │ │ │ │ │ ├── IRecommendationServiceCallbacks.struct │ │ │ │ │ │ ├── IRecommendationsChangeListener.struct │ │ │ │ │ │ └── RecommendationInfo.struct │ │ │ │ ├── provider │ │ │ │ │ ├── IAsyncContentProvider.struct │ │ │ │ │ ├── ICloudMediaSurfaceController.struct │ │ │ │ │ └── ICloudMediaSurfaceStateChangedCallback.struct │ │ │ │ ├── safetycenter │ │ │ │ │ ├── IOnSafetyCenterDataChangedListener.struct │ │ │ │ │ └── ISafetyCenterManager.struct │ │ │ │ ├── scheduling │ │ │ │ │ ├── IRebootReadinessManager.struct │ │ │ │ │ └── IRequestRebootReadinessStatusListener.struct │ │ │ │ ├── se │ │ │ │ │ └── omapi │ │ │ │ │ │ ├── ISecureElementChannel.struct │ │ │ │ │ │ ├── ISecureElementListener.struct │ │ │ │ │ │ ├── ISecureElementReader.struct │ │ │ │ │ │ ├── ISecureElementService.struct │ │ │ │ │ │ └── ISecureElementSession.struct │ │ │ │ ├── security │ │ │ │ │ ├── IFileIntegrityService.struct │ │ │ │ │ ├── IKeyChainAliasCallback.struct │ │ │ │ │ ├── IKeyChainService.struct │ │ │ │ │ ├── apc │ │ │ │ │ │ ├── IConfirmationCallback.struct │ │ │ │ │ │ └── IProtectedConfirmation.struct │ │ │ │ │ ├── attestationmanager │ │ │ │ │ │ ├── ByteArray.struct │ │ │ │ │ │ └── IAttestationManager.struct │ │ │ │ │ ├── attestationverification │ │ │ │ │ │ ├── IAttestationVerificationManagerService.struct │ │ │ │ │ │ ├── IAttestationVerificationService.struct │ │ │ │ │ │ └── IVerificationResult.struct │ │ │ │ │ ├── authorization │ │ │ │ │ │ ├── AuthorizationTokens.struct │ │ │ │ │ │ └── IKeystoreAuthorization.struct │ │ │ │ │ ├── compat │ │ │ │ │ │ └── IKeystoreCompatService.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── BitmapWrapper.struct │ │ │ │ │ │ ├── CVE_2021_0327 │ │ │ │ │ │ │ └── IBadProvider.struct │ │ │ │ │ │ ├── IBinderExchange.struct │ │ │ │ │ │ ├── IBitmapService.struct │ │ │ │ │ │ ├── IIsolatedService.struct │ │ │ │ │ │ └── activity │ │ │ │ │ │ │ └── ISecureRandomService.struct │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── AccessControlProfileParcel.struct │ │ │ │ │ │ ├── AuthKeyParcel.struct │ │ │ │ │ │ ├── EntryNamespaceParcel.struct │ │ │ │ │ │ ├── EntryParcel.struct │ │ │ │ │ │ ├── GetEntriesResultParcel.struct │ │ │ │ │ │ ├── ICredential.struct │ │ │ │ │ │ ├── ICredentialStore.struct │ │ │ │ │ │ ├── ICredentialStoreFactory.struct │ │ │ │ │ │ ├── ISession.struct │ │ │ │ │ │ ├── IWritableCredential.struct │ │ │ │ │ │ ├── RequestEntryParcel.struct │ │ │ │ │ │ ├── RequestNamespaceParcel.struct │ │ │ │ │ │ ├── ResultEntryParcel.struct │ │ │ │ │ │ ├── ResultNamespaceParcel.struct │ │ │ │ │ │ └── SecurityHardwareInfoParcel.struct │ │ │ │ │ ├── keymaster │ │ │ │ │ │ └── IKeyAttestationApplicationIdProvider.struct │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── recovery │ │ │ │ │ │ │ ├── RecoveryCertPath.struct │ │ │ │ │ │ │ └── WrappedApplicationKey.struct │ │ │ │ │ ├── legacykeystore │ │ │ │ │ │ └── ILegacyKeystore.struct │ │ │ │ │ ├── maintenance │ │ │ │ │ │ └── IKeystoreMaintenance.struct │ │ │ │ │ ├── metrics │ │ │ │ │ │ ├── CrashStats.struct │ │ │ │ │ │ ├── IKeystoreMetrics.struct │ │ │ │ │ │ ├── KeyCreationWithAuthInfo.struct │ │ │ │ │ │ ├── KeyCreationWithGeneralInfo.struct │ │ │ │ │ │ ├── KeyCreationWithPurposeAndModesInfo.struct │ │ │ │ │ │ ├── KeyOperationWithGeneralInfo.struct │ │ │ │ │ │ ├── KeyOperationWithPurposeAndModesInfo.struct │ │ │ │ │ │ ├── Keystore2AtomWithOverflow.struct │ │ │ │ │ │ ├── KeystoreAtom.struct │ │ │ │ │ │ ├── RkpErrorStats.struct │ │ │ │ │ │ └── StorageStats.struct │ │ │ │ │ ├── provisioner │ │ │ │ │ │ └── IProvisionerService.struct │ │ │ │ │ └── rkp │ │ │ │ │ │ ├── IGetKeyCallback.struct │ │ │ │ │ │ ├── IGetRegistrationCallback.struct │ │ │ │ │ │ ├── IRegistration.struct │ │ │ │ │ │ ├── IRemoteProvisioning.struct │ │ │ │ │ │ ├── IStoreUpgradedKeyCallback.struct │ │ │ │ │ │ └── RemotelyProvisionedKey.struct │ │ │ │ ├── server │ │ │ │ │ └── wm │ │ │ │ │ │ ├── backgroundactivity │ │ │ │ │ │ └── appa │ │ │ │ │ │ │ └── IBackgroundActivityTestService.struct │ │ │ │ │ │ ├── scvh │ │ │ │ │ │ └── IAttachEmbeddedWindow.struct │ │ │ │ │ │ └── shared │ │ │ │ │ │ ├── ICrossProcessSurfaceControlViewHostTestService.struct │ │ │ │ │ │ └── IUntrustedTouchTestService.struct │ │ │ │ ├── service │ │ │ │ │ ├── ambientcontext │ │ │ │ │ │ └── IAmbientContextDetectionService.struct │ │ │ │ │ ├── appprediction │ │ │ │ │ │ └── IPredictionService.struct │ │ │ │ │ ├── assist │ │ │ │ │ │ └── classification │ │ │ │ │ │ │ ├── IFieldClassificationCallback.struct │ │ │ │ │ │ │ └── IFieldClassificationService.struct │ │ │ │ │ ├── attention │ │ │ │ │ │ ├── IAttentionCallback.struct │ │ │ │ │ │ ├── IAttentionService.struct │ │ │ │ │ │ └── IProximityUpdateCallback.struct │ │ │ │ │ ├── autofill │ │ │ │ │ │ ├── IAutoFillService.struct │ │ │ │ │ │ ├── IAutofillFieldClassificationService.struct │ │ │ │ │ │ ├── IFillCallback.struct │ │ │ │ │ │ ├── IInlineSuggestionRenderService.struct │ │ │ │ │ │ ├── IInlineSuggestionUi.struct │ │ │ │ │ │ ├── IInlineSuggestionUiCallback.struct │ │ │ │ │ │ ├── ISaveCallback.struct │ │ │ │ │ │ ├── ISurfacePackageResultCallback.struct │ │ │ │ │ │ └── augmented │ │ │ │ │ │ │ ├── IAugmentedAutofillService.struct │ │ │ │ │ │ │ └── IFillCallback.struct │ │ │ │ │ ├── carrier │ │ │ │ │ │ ├── IApnSourceService.struct │ │ │ │ │ │ ├── ICarrierMessagingCallback.struct │ │ │ │ │ │ ├── ICarrierMessagingClientService.struct │ │ │ │ │ │ ├── ICarrierMessagingService.struct │ │ │ │ │ │ ├── ICarrierService.struct │ │ │ │ │ │ └── MessagePdu.struct │ │ │ │ │ ├── chooser │ │ │ │ │ │ ├── ChooserTarget.struct │ │ │ │ │ │ ├── IChooserTargetResult.struct │ │ │ │ │ │ └── IChooserTargetService.struct │ │ │ │ │ ├── contentcapture │ │ │ │ │ │ ├── FlushMetrics.struct │ │ │ │ │ │ ├── IContentCaptureService.struct │ │ │ │ │ │ ├── IContentCaptureServiceCallback.struct │ │ │ │ │ │ ├── IDataShareCallback.struct │ │ │ │ │ │ └── IDataShareReadAdapter.struct │ │ │ │ │ ├── contentsuggestions │ │ │ │ │ │ └── IContentSuggestionsService.struct │ │ │ │ │ ├── controls │ │ │ │ │ │ ├── Control.struct │ │ │ │ │ │ ├── IControlsActionCallback.struct │ │ │ │ │ │ ├── IControlsProvider.struct │ │ │ │ │ │ ├── IControlsSubscriber.struct │ │ │ │ │ │ └── IControlsSubscription.struct │ │ │ │ │ ├── credentials │ │ │ │ │ │ ├── IBeginCreateCredentialCallback.struct │ │ │ │ │ │ ├── IBeginGetCredentialCallback.struct │ │ │ │ │ │ ├── IClearCredentialStateCallback.struct │ │ │ │ │ │ └── ICredentialProviderService.struct │ │ │ │ │ ├── displayhash │ │ │ │ │ │ └── IDisplayHashingService.struct │ │ │ │ │ ├── dreams │ │ │ │ │ │ ├── IDreamManager.struct │ │ │ │ │ │ ├── IDreamOverlay.struct │ │ │ │ │ │ ├── IDreamOverlayCallback.struct │ │ │ │ │ │ ├── IDreamOverlayClient.struct │ │ │ │ │ │ ├── IDreamOverlayClientCallback.struct │ │ │ │ │ │ └── IDreamService.struct │ │ │ │ │ ├── euicc │ │ │ │ │ │ ├── DownloadSubscriptionResult.struct │ │ │ │ │ │ ├── IDeleteSubscriptionCallback.struct │ │ │ │ │ │ ├── IDownloadSubscriptionCallback.struct │ │ │ │ │ │ ├── IEraseSubscriptionsCallback.struct │ │ │ │ │ │ ├── IEuiccService.struct │ │ │ │ │ │ ├── IEuiccServiceDumpResultCallback.struct │ │ │ │ │ │ ├── IGetDefaultDownloadableSubscriptionListCallback.struct │ │ │ │ │ │ ├── IGetDownloadableSubscriptionMetadataCallback.struct │ │ │ │ │ │ ├── IGetEidCallback.struct │ │ │ │ │ │ ├── IGetEuiccInfoCallback.struct │ │ │ │ │ │ ├── IGetEuiccProfileInfoListCallback.struct │ │ │ │ │ │ ├── IGetOtaStatusCallback.struct │ │ │ │ │ │ ├── IOtaStatusChangedCallback.struct │ │ │ │ │ │ ├── IRetainSubscriptionsForFactoryResetCallback.struct │ │ │ │ │ │ ├── ISwitchToSubscriptionCallback.struct │ │ │ │ │ │ └── IUpdateSubscriptionNicknameCallback.struct │ │ │ │ │ ├── games │ │ │ │ │ │ ├── GameStartedEvent.struct │ │ │ │ │ │ ├── IGameService.struct │ │ │ │ │ │ ├── IGameServiceController.struct │ │ │ │ │ │ ├── IGameSession.struct │ │ │ │ │ │ ├── IGameSessionController.struct │ │ │ │ │ │ └── testing │ │ │ │ │ │ │ ├── GameSessionEventInfo.struct │ │ │ │ │ │ │ ├── IGameServiceTestService.struct │ │ │ │ │ │ │ └── OnSystemBarVisibilityChangedInfo.struct │ │ │ │ │ ├── gatekeeper │ │ │ │ │ │ └── IGateKeeperService.struct │ │ │ │ │ ├── media │ │ │ │ │ │ ├── IMediaBrowserService.struct │ │ │ │ │ │ └── IMediaBrowserServiceCallbacks.struct │ │ │ │ │ ├── notification │ │ │ │ │ │ ├── Adjustment.struct │ │ │ │ │ │ ├── Condition.struct │ │ │ │ │ │ ├── IConditionListener.struct │ │ │ │ │ │ ├── IConditionProvider.struct │ │ │ │ │ │ ├── INotificationListener.struct │ │ │ │ │ │ ├── IStatusBarNotificationHolder.struct │ │ │ │ │ │ └── NotificationStats.struct │ │ │ │ │ ├── oemlock │ │ │ │ │ │ └── IOemLockService.struct │ │ │ │ │ ├── persistentdata │ │ │ │ │ │ └── IPersistentDataBlockService.struct │ │ │ │ │ ├── quickaccesswallet │ │ │ │ │ │ ├── GetWalletCardsRequest.struct │ │ │ │ │ │ ├── IQuickAccessWalletService.struct │ │ │ │ │ │ ├── IQuickAccessWalletServiceCallbacks.struct │ │ │ │ │ │ ├── SelectWalletCardRequest.struct │ │ │ │ │ │ └── WalletServiceEvent.struct │ │ │ │ │ ├── quicksettings │ │ │ │ │ │ ├── IQSService.struct │ │ │ │ │ │ └── IQSTileService.struct │ │ │ │ │ ├── remotelockscreenvalidation │ │ │ │ │ │ ├── IRemoteLockscreenValidationCallback.struct │ │ │ │ │ │ └── IRemoteLockscreenValidationService.struct │ │ │ │ │ ├── resolver │ │ │ │ │ │ ├── IResolverRankerResult.struct │ │ │ │ │ │ ├── IResolverRankerService.struct │ │ │ │ │ │ └── ResolverTarget.struct │ │ │ │ │ ├── resumeonreboot │ │ │ │ │ │ └── IResumeOnRebootService.struct │ │ │ │ │ ├── rotationresolver │ │ │ │ │ │ ├── IRotationResolverCallback.struct │ │ │ │ │ │ └── IRotationResolverService.struct │ │ │ │ │ ├── search │ │ │ │ │ │ └── ISearchUiService.struct │ │ │ │ │ ├── selectiontoolbar │ │ │ │ │ │ ├── ISelectionToolbarRenderService.struct │ │ │ │ │ │ └── ISelectionToolbarRenderServiceCallback.struct │ │ │ │ │ ├── settings │ │ │ │ │ │ └── suggestions │ │ │ │ │ │ │ └── ISuggestionService.struct │ │ │ │ │ ├── smartspace │ │ │ │ │ │ └── ISmartspaceService.struct │ │ │ │ │ ├── storage │ │ │ │ │ │ └── IExternalStorageService.struct │ │ │ │ │ ├── textclassifier │ │ │ │ │ │ ├── ITextClassifierCallback.struct │ │ │ │ │ │ └── ITextClassifierService.struct │ │ │ │ │ ├── timezone │ │ │ │ │ │ ├── ITimeZoneProvider.struct │ │ │ │ │ │ └── ITimeZoneProviderManager.struct │ │ │ │ │ ├── translation │ │ │ │ │ │ ├── ITranslationCallback.struct │ │ │ │ │ │ └── ITranslationService.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── ITrustAgentService.struct │ │ │ │ │ │ └── ITrustAgentServiceCallback.struct │ │ │ │ │ ├── voice │ │ │ │ │ │ ├── HotwordDetectionServiceFailure.struct │ │ │ │ │ │ ├── HotwordRejectedResult.struct │ │ │ │ │ │ ├── IDetectorSessionVisualQueryDetectionCallback.struct │ │ │ │ │ │ ├── IDspHotwordDetectionCallback.struct │ │ │ │ │ │ ├── IMicrophoneHotwordDetectionVoiceInteractionCallback.struct │ │ │ │ │ │ ├── ISandboxedDetectionService.struct │ │ │ │ │ │ ├── IVisualQueryDetectionVoiceInteractionCallback.struct │ │ │ │ │ │ ├── IVoiceInteractionService.struct │ │ │ │ │ │ ├── IVoiceInteractionSession.struct │ │ │ │ │ │ ├── IVoiceInteractionSessionService.struct │ │ │ │ │ │ ├── SoundTriggerFailure.struct │ │ │ │ │ │ └── VisualQueryDetectionServiceFailure.struct │ │ │ │ │ ├── vr │ │ │ │ │ │ ├── IPersistentVrStateCallbacks.struct │ │ │ │ │ │ ├── IVrListener.struct │ │ │ │ │ │ ├── IVrManager.struct │ │ │ │ │ │ └── IVrStateCallbacks.struct │ │ │ │ │ ├── wallpaper │ │ │ │ │ │ ├── IWallpaperConnection.struct │ │ │ │ │ │ ├── IWallpaperEngine.struct │ │ │ │ │ │ └── IWallpaperService.struct │ │ │ │ │ ├── wallpapereffectsgeneration │ │ │ │ │ │ └── IWallpaperEffectsGenerationService.struct │ │ │ │ │ ├── watchdog │ │ │ │ │ │ └── IExplicitHealthCheckService.struct │ │ │ │ │ └── wearable │ │ │ │ │ │ └── IWearableSensingService.struct │ │ │ │ ├── speech │ │ │ │ │ ├── IModelDownloadListener.struct │ │ │ │ │ ├── IRecognitionListener.struct │ │ │ │ │ ├── IRecognitionService.struct │ │ │ │ │ ├── IRecognitionServiceManager.struct │ │ │ │ │ ├── IRecognitionServiceManagerCallback.struct │ │ │ │ │ ├── IRecognitionSupportCallback.struct │ │ │ │ │ └── tts │ │ │ │ │ │ ├── ITextToSpeechCallback.struct │ │ │ │ │ │ ├── ITextToSpeechManager.struct │ │ │ │ │ │ ├── ITextToSpeechService.struct │ │ │ │ │ │ ├── ITextToSpeechSession.struct │ │ │ │ │ │ └── ITextToSpeechSessionCallback.struct │ │ │ │ ├── system │ │ │ │ │ ├── composd │ │ │ │ │ │ ├── ICompilationTask.struct │ │ │ │ │ │ ├── ICompilationTaskCallback.struct │ │ │ │ │ │ └── IIsolatedCompilationService.struct │ │ │ │ │ ├── keystore2 │ │ │ │ │ │ ├── AuthenticatorSpec.struct │ │ │ │ │ │ ├── Authorization.struct │ │ │ │ │ │ ├── CreateOperationResponse.struct │ │ │ │ │ │ ├── EphemeralStorageKeyResponse.struct │ │ │ │ │ │ ├── IKeystoreOperation.struct │ │ │ │ │ │ ├── IKeystoreSecurityLevel.struct │ │ │ │ │ │ ├── IKeystoreService.struct │ │ │ │ │ │ ├── KeyDescriptor.struct │ │ │ │ │ │ ├── KeyEntryResponse.struct │ │ │ │ │ │ ├── KeyMetadata.struct │ │ │ │ │ │ ├── KeyParameters.struct │ │ │ │ │ │ └── OperationChallenge.struct │ │ │ │ │ ├── net │ │ │ │ │ │ └── netd │ │ │ │ │ │ │ ├── INetd.struct │ │ │ │ │ │ │ └── OemNetwork.struct │ │ │ │ │ ├── suspend │ │ │ │ │ │ ├── ISuspendCallback.struct │ │ │ │ │ │ ├── ISuspendControlService.struct │ │ │ │ │ │ ├── ISystemSuspend.struct │ │ │ │ │ │ ├── IWakeLock.struct │ │ │ │ │ │ ├── IWakelockCallback.struct │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── ISuspendControlServiceInternal.struct │ │ │ │ │ │ │ ├── SuspendInfo.struct │ │ │ │ │ │ │ ├── WakeLockInfo.struct │ │ │ │ │ │ │ └── WakeupInfo.struct │ │ │ │ │ ├── virtualization │ │ │ │ │ │ └── payload │ │ │ │ │ │ │ └── IVmPayloadService.struct │ │ │ │ │ ├── virtualizationservice │ │ │ │ │ │ ├── DiskImage.struct │ │ │ │ │ │ ├── IVirtualMachine.struct │ │ │ │ │ │ ├── IVirtualMachineCallback.struct │ │ │ │ │ │ ├── IVirtualizationService.struct │ │ │ │ │ │ ├── Partition.struct │ │ │ │ │ │ ├── VirtualMachineDebugInfo.struct │ │ │ │ │ │ ├── VirtualMachinePayloadConfig.struct │ │ │ │ │ │ └── VirtualMachineRawConfig.struct │ │ │ │ │ ├── virtualizationservice_internal │ │ │ │ │ │ ├── AtomVmBooted.struct │ │ │ │ │ │ ├── AtomVmCreationRequested.struct │ │ │ │ │ │ ├── AtomVmExited.struct │ │ │ │ │ │ ├── IGlobalVmContext.struct │ │ │ │ │ │ └── IVirtualizationServiceInternal.struct │ │ │ │ │ └── virtualmachineservice │ │ │ │ │ │ └── IVirtualMachineService.struct │ │ │ │ ├── telecom │ │ │ │ │ ├── BluetoothCallQualityReport.struct │ │ │ │ │ ├── CallEndpoint.struct │ │ │ │ │ ├── CallException.struct │ │ │ │ │ ├── VideoProfile.struct │ │ │ │ │ └── cts │ │ │ │ │ │ ├── ITestInterface.struct │ │ │ │ │ │ ├── api29incallservice │ │ │ │ │ │ └── ICtsApi29InCallServiceControl.struct │ │ │ │ │ │ ├── carmodetestapp │ │ │ │ │ │ └── ICtsCarModeInCallServiceControl.struct │ │ │ │ │ │ ├── redirectiontestapp │ │ │ │ │ │ └── ICtsCallRedirectionServiceController.struct │ │ │ │ │ │ ├── screeningtestapp │ │ │ │ │ │ └── ICallScreeningControl.struct │ │ │ │ │ │ ├── selfmanagedcstestapp │ │ │ │ │ │ └── ICtsSelfManagedConnectionServiceControl.struct │ │ │ │ │ │ ├── streamingtestapp │ │ │ │ │ │ └── ICtsCallStreamingServiceControl.struct │ │ │ │ │ │ └── thirdptyincallservice │ │ │ │ │ │ └── ICtsThirdPartyInCallServiceControl.struct │ │ │ │ ├── telephony │ │ │ │ │ ├── CallForwardingInfo.struct │ │ │ │ │ ├── CallQuality.struct │ │ │ │ │ ├── CellBroadcastIdRange.struct │ │ │ │ │ ├── CellIdentity.struct │ │ │ │ │ ├── CellInfo.struct │ │ │ │ │ ├── DataConnectionRealTimeInfo.struct │ │ │ │ │ ├── IBootstrapAuthenticationCallback.struct │ │ │ │ │ ├── ICellBroadcastService.struct │ │ │ │ │ ├── ICellInfoCallback.struct │ │ │ │ │ ├── INetworkService.struct │ │ │ │ │ ├── INetworkServiceCallback.struct │ │ │ │ │ ├── IccOpenLogicalChannelResponse.struct │ │ │ │ │ ├── LinkCapacityEstimate.struct │ │ │ │ │ ├── NeighboringCellInfo.struct │ │ │ │ │ ├── PhoneNumberRange.struct │ │ │ │ │ ├── PhysicalChannelConfig.struct │ │ │ │ │ ├── PreciseCallState.struct │ │ │ │ │ ├── RadioAccessSpecifier.struct │ │ │ │ │ ├── ServiceState.struct │ │ │ │ │ ├── TelephonyDisplayInfo.struct │ │ │ │ │ ├── TelephonyHistogram.struct │ │ │ │ │ ├── UiccSlotMapping.struct │ │ │ │ │ ├── cdma │ │ │ │ │ │ └── CdmaSmsCbProgramData.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── embmstestapp │ │ │ │ │ │ │ ├── ICtsDownloadMiddlewareControl.struct │ │ │ │ │ │ │ ├── ICtsGroupCallMiddlewareControl.struct │ │ │ │ │ │ │ └── ICtsStreamingMiddlewareControl.struct │ │ │ │ │ │ ├── externalimsservice │ │ │ │ │ │ │ └── ITestExternalImsService.struct │ │ │ │ │ │ └── locationaccessingapp │ │ │ │ │ │ │ └── ICtsLocationAccessControl.struct │ │ │ │ │ ├── data │ │ │ │ │ │ ├── IDataService.struct │ │ │ │ │ │ ├── IDataServiceCallback.struct │ │ │ │ │ │ ├── IQualifiedNetworksService.struct │ │ │ │ │ │ ├── IQualifiedNetworksServiceCallback.struct │ │ │ │ │ │ ├── NetworkSliceInfo.struct │ │ │ │ │ │ ├── ThrottleStatus.struct │ │ │ │ │ │ └── TrafficDescriptor.struct │ │ │ │ │ ├── emergency │ │ │ │ │ │ └── EmergencyNumber.struct │ │ │ │ │ ├── euicc │ │ │ │ │ │ ├── EuiccInfo.struct │ │ │ │ │ │ └── EuiccNotification.struct │ │ │ │ │ ├── gba │ │ │ │ │ │ ├── IGbaService.struct │ │ │ │ │ │ └── UaSecurityProtocolIdentifier.struct │ │ │ │ │ ├── ims │ │ │ │ │ │ ├── FeatureTagState.struct │ │ │ │ │ │ ├── ImsReasonInfo.struct │ │ │ │ │ │ ├── ImsSuppServiceNotification.struct │ │ │ │ │ │ ├── MediaQualityStatus.struct │ │ │ │ │ │ ├── MediaThreshold.struct │ │ │ │ │ │ ├── RcsClientConfiguration.struct │ │ │ │ │ │ ├── RtpHeaderExtension.struct │ │ │ │ │ │ ├── SipDelegateImsConfiguration.struct │ │ │ │ │ │ ├── SipDetails.struct │ │ │ │ │ │ ├── SipDialogState.struct │ │ │ │ │ │ ├── SipMessage.struct │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ ├── ICapabilityExchangeEventListener.struct │ │ │ │ │ │ │ ├── IFeatureProvisioningCallback.struct │ │ │ │ │ │ │ ├── IImsCallSessionListener.struct │ │ │ │ │ │ │ ├── IImsCapabilityCallback.struct │ │ │ │ │ │ │ ├── IImsConfig.struct │ │ │ │ │ │ │ ├── IImsConfigCallback.struct │ │ │ │ │ │ │ ├── IImsMmTelFeature.struct │ │ │ │ │ │ │ ├── IImsMmTelListener.struct │ │ │ │ │ │ │ ├── IImsRcsController.struct │ │ │ │ │ │ │ ├── IImsRcsFeature.struct │ │ │ │ │ │ │ ├── IImsRegistration.struct │ │ │ │ │ │ │ ├── IImsRegistrationCallback.struct │ │ │ │ │ │ │ ├── IImsServiceController.struct │ │ │ │ │ │ │ ├── IImsServiceControllerListener.struct │ │ │ │ │ │ │ ├── IImsSmsListener.struct │ │ │ │ │ │ │ ├── IImsTrafficSessionCallback.struct │ │ │ │ │ │ │ ├── IOptionsRequestCallback.struct │ │ │ │ │ │ │ ├── IOptionsResponseCallback.struct │ │ │ │ │ │ │ ├── IPublishResponseCallback.struct │ │ │ │ │ │ │ ├── IRcsConfigCallback.struct │ │ │ │ │ │ │ ├── IRcsUceControllerCallback.struct │ │ │ │ │ │ │ ├── IRcsUcePublishStateCallback.struct │ │ │ │ │ │ │ ├── ISipDelegate.struct │ │ │ │ │ │ │ ├── ISipDelegateConnectionStateCallback.struct │ │ │ │ │ │ │ ├── ISipDelegateMessageCallback.struct │ │ │ │ │ │ │ ├── ISipDelegateStateCallback.struct │ │ │ │ │ │ │ ├── ISipTransport.struct │ │ │ │ │ │ │ ├── ISrvccStartedCallback.struct │ │ │ │ │ │ │ └── ISubscribeResponseCallback.struct │ │ │ │ │ │ ├── feature │ │ │ │ │ │ │ ├── CapabilityChangeRequest.struct │ │ │ │ │ │ │ └── ConnectionFailureInfo.struct │ │ │ │ │ │ └── stub │ │ │ │ │ │ │ └── ImsFeatureConfiguration.struct │ │ │ │ │ ├── imsmedia │ │ │ │ │ │ ├── IImsAudioSession.struct │ │ │ │ │ │ ├── IImsAudioSessionCallback.struct │ │ │ │ │ │ ├── IImsMedia.struct │ │ │ │ │ │ ├── IImsMediaCallback.struct │ │ │ │ │ │ ├── IImsTextSession.struct │ │ │ │ │ │ ├── IImsTextSessionCallback.struct │ │ │ │ │ │ ├── IImsVideoSession.struct │ │ │ │ │ │ ├── IImsVideoSessionCallback.struct │ │ │ │ │ │ ├── MediaQualityStatus.struct │ │ │ │ │ │ ├── MediaQualityThreshold.struct │ │ │ │ │ │ ├── RtpConfig.struct │ │ │ │ │ │ ├── TextConfig.struct │ │ │ │ │ │ └── VideoConfig.struct │ │ │ │ │ ├── mbms │ │ │ │ │ │ ├── IDownloadProgressListener.struct │ │ │ │ │ │ ├── IDownloadStatusListener.struct │ │ │ │ │ │ ├── IGroupCallCallback.struct │ │ │ │ │ │ ├── IMbmsDownloadSessionCallback.struct │ │ │ │ │ │ ├── IMbmsGroupCallSessionCallback.struct │ │ │ │ │ │ ├── IMbmsStreamingSessionCallback.struct │ │ │ │ │ │ ├── IStreamingServiceCallback.struct │ │ │ │ │ │ ├── StreamingServiceInfo.struct │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── IMbmsDownloadService.struct │ │ │ │ │ │ │ ├── IMbmsGroupCallService.struct │ │ │ │ │ │ │ └── IMbmsStreamingService.struct │ │ │ │ │ └── satellite │ │ │ │ │ │ ├── ISatelliteDatagramCallback.struct │ │ │ │ │ │ ├── ISatelliteProvisionStateCallback.struct │ │ │ │ │ │ ├── ISatelliteStateCallback.struct │ │ │ │ │ │ ├── ISatelliteTransmissionUpdateCallback.struct │ │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── ILocalSatelliteGatewayListener.struct │ │ │ │ │ │ └── ILocalSatelliteListener.struct │ │ │ │ │ │ └── stub │ │ │ │ │ │ ├── ISatellite.struct │ │ │ │ │ │ ├── ISatelliteCapabilitiesConsumer.struct │ │ │ │ │ │ ├── ISatelliteGateway.struct │ │ │ │ │ │ ├── ISatelliteListener.struct │ │ │ │ │ │ ├── PointingInfo.struct │ │ │ │ │ │ ├── SatelliteCapabilities.struct │ │ │ │ │ │ └── SatelliteDatagram.struct │ │ │ │ ├── tests │ │ │ │ │ ├── binder │ │ │ │ │ │ └── IBenchmark.struct │ │ │ │ │ └── enforcepermission │ │ │ │ │ │ ├── INested.struct │ │ │ │ │ │ └── IProtected.struct │ │ │ │ ├── tracing │ │ │ │ │ ├── ITracingServiceProxy.struct │ │ │ │ │ └── TraceReportParams.struct │ │ │ │ ├── trusty │ │ │ │ │ └── stats │ │ │ │ │ │ └── nw │ │ │ │ │ │ └── setter │ │ │ │ │ │ └── IStatsSetter.struct │ │ │ │ ├── util │ │ │ │ │ ├── IRemoteMemoryIntArray.struct │ │ │ │ │ ├── PropertyParcel.struct │ │ │ │ │ └── StatsEventParcel.struct │ │ │ │ ├── uwb │ │ │ │ │ ├── IOnUwbActivityEnergyInfoListener.struct │ │ │ │ │ ├── IUwbAdapter.struct │ │ │ │ │ ├── IUwbAdapterStateCallbacks.struct │ │ │ │ │ ├── IUwbAdfProvisionStateCallbacks.struct │ │ │ │ │ ├── IUwbOemExtensionCallback.struct │ │ │ │ │ ├── IUwbRangingCallbacks.struct │ │ │ │ │ ├── IUwbVendorUciCallback.struct │ │ │ │ │ ├── SessionHandle.struct │ │ │ │ │ └── UwbAddress.struct │ │ │ │ ├── vendor │ │ │ │ │ └── powerstats │ │ │ │ │ │ ├── IPixelPowerStatsCallback.struct │ │ │ │ │ │ ├── IPixelPowerStatsProvider.struct │ │ │ │ │ │ ├── IPixelStateResidencyCallback.struct │ │ │ │ │ │ ├── IPixelStateResidencyProvider.struct │ │ │ │ │ │ └── StateResidencyData.struct │ │ │ │ ├── view │ │ │ │ │ ├── ContentRecordingSession.struct │ │ │ │ │ ├── IAppTransitionAnimationSpecsFuture.struct │ │ │ │ │ ├── ICrossWindowBlurEnabledListener.struct │ │ │ │ │ ├── IDisplayChangeWindowCallback.struct │ │ │ │ │ ├── IDisplayChangeWindowController.struct │ │ │ │ │ ├── IDisplayFoldListener.struct │ │ │ │ │ ├── IDisplayWindowInsetsController.struct │ │ │ │ │ ├── IDisplayWindowListener.struct │ │ │ │ │ ├── IDockedStackListener.struct │ │ │ │ │ ├── IGraphicsStats.struct │ │ │ │ │ ├── IGraphicsStatsCallback.struct │ │ │ │ │ ├── IInputFilter.struct │ │ │ │ │ ├── IInputFilterHost.struct │ │ │ │ │ ├── IInputMonitorHost.struct │ │ │ │ │ ├── IOnKeyguardExitResult.struct │ │ │ │ │ ├── IPinnedTaskListener.struct │ │ │ │ │ ├── IRecentsAnimationController.struct │ │ │ │ │ ├── IRecentsAnimationRunner.struct │ │ │ │ │ ├── IRemoteAnimationFinishedCallback.struct │ │ │ │ │ ├── IRemoteAnimationRunner.struct │ │ │ │ │ ├── IRotationWatcher.struct │ │ │ │ │ ├── IScrollCaptureCallbacks.struct │ │ │ │ │ ├── IScrollCaptureConnection.struct │ │ │ │ │ ├── IScrollCaptureResponseListener.struct │ │ │ │ │ ├── ISurfaceControlViewHost.struct │ │ │ │ │ ├── ISystemGestureExclusionListener.struct │ │ │ │ │ ├── IWallpaperVisibilityListener.struct │ │ │ │ │ ├── IWindow.struct │ │ │ │ │ ├── IWindowFocusObserver.struct │ │ │ │ │ ├── IWindowId.struct │ │ │ │ │ ├── IWindowManager.struct │ │ │ │ │ ├── IWindowSession.struct │ │ │ │ │ ├── IWindowSessionCallback.struct │ │ │ │ │ ├── KeyEvent.struct │ │ │ │ │ ├── TaskTransitionSpec.struct │ │ │ │ │ ├── WindowAnimationFrameStats.struct │ │ │ │ │ ├── WindowContentFrameStats.struct │ │ │ │ │ ├── accessibility │ │ │ │ │ │ ├── IAccessibilityEmbeddedConnection.struct │ │ │ │ │ │ ├── IAccessibilityInteractionConnection.struct │ │ │ │ │ │ ├── IAccessibilityInteractionConnectionCallback.struct │ │ │ │ │ │ ├── IAccessibilityManager.struct │ │ │ │ │ │ ├── IAccessibilityManagerClient.struct │ │ │ │ │ │ ├── IRemoteMagnificationAnimationCallback.struct │ │ │ │ │ │ ├── IWindowMagnificationConnection.struct │ │ │ │ │ │ ├── IWindowMagnificationConnectionCallback.struct │ │ │ │ │ │ └── WindowTransformationSpec.struct │ │ │ │ │ ├── autofill │ │ │ │ │ │ ├── AutofillId.struct │ │ │ │ │ │ ├── AutofillValue.struct │ │ │ │ │ │ ├── IAugmentedAutofillManagerClient.struct │ │ │ │ │ │ ├── IAutoFillManager.struct │ │ │ │ │ │ ├── IAutoFillManagerClient.struct │ │ │ │ │ │ └── IAutofillWindowPresenter.struct │ │ │ │ │ ├── contentcapture │ │ │ │ │ │ ├── DataRemovalRequest.struct │ │ │ │ │ │ ├── IContentCaptureDirectManager.struct │ │ │ │ │ │ ├── IContentCaptureManager.struct │ │ │ │ │ │ ├── IContentCaptureOptionsCallback.struct │ │ │ │ │ │ └── IDataShareWriteAdapter.struct │ │ │ │ │ ├── inputmethod │ │ │ │ │ │ ├── CompletionInfo.struct │ │ │ │ │ │ ├── CorrectionInfo.struct │ │ │ │ │ │ ├── ExtractedText.struct │ │ │ │ │ │ ├── ExtractedTextRequest.struct │ │ │ │ │ │ ├── InputMethodSubtype.struct │ │ │ │ │ │ ├── TextAttribute.struct │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── IWindowFocusStealer.struct │ │ │ │ │ ├── selectiontoolbar │ │ │ │ │ │ ├── ISelectionToolbarCallback.struct │ │ │ │ │ │ └── ISelectionToolbarManager.struct │ │ │ │ │ ├── textclassifier │ │ │ │ │ │ └── TextClassificationSessionId.struct │ │ │ │ │ ├── textservice │ │ │ │ │ │ ├── SuggestionsInfo.struct │ │ │ │ │ │ └── TextInfo.struct │ │ │ │ │ └── translation │ │ │ │ │ │ ├── ITranslationDirectManager.struct │ │ │ │ │ │ ├── ITranslationManager.struct │ │ │ │ │ │ ├── ITranslationServiceCallback.struct │ │ │ │ │ │ └── UiTranslationSpec.struct │ │ │ │ ├── virtualdevice │ │ │ │ │ └── cts │ │ │ │ │ │ └── IStreamedTestApp.struct │ │ │ │ ├── voiceinteraction │ │ │ │ │ └── service │ │ │ │ │ │ ├── IProxyAlwaysOnHotwordDetector.struct │ │ │ │ │ │ ├── IProxyDetectorCallback.struct │ │ │ │ │ │ ├── IProxyKeyphraseModelManager.struct │ │ │ │ │ │ ├── ITestVoiceInteractionService.struct │ │ │ │ │ │ ├── ITestVoiceInteractionServiceListener.struct │ │ │ │ │ │ └── IVoiceInteractionServiceBindingHelper.struct │ │ │ │ ├── webkit │ │ │ │ │ ├── IWebViewUpdateService.struct │ │ │ │ │ └── cts │ │ │ │ │ │ ├── HttpHeader.struct │ │ │ │ │ │ ├── HttpRequest.struct │ │ │ │ │ │ ├── IHostAppInvoker.struct │ │ │ │ │ │ ├── ITestProcessService.struct │ │ │ │ │ │ └── IWebServer.struct │ │ │ │ └── window │ │ │ │ │ ├── AddToSurfaceSyncGroupResult.struct │ │ │ │ │ ├── DisplayAreaInfo.struct │ │ │ │ │ ├── IBackAnimationFinishedCallback.struct │ │ │ │ │ ├── IBackAnimationRunner.struct │ │ │ │ │ ├── IDisplayAreaOrganizer.struct │ │ │ │ │ ├── IDisplayAreaOrganizerController.struct │ │ │ │ │ ├── IDumpCallback.struct │ │ │ │ │ ├── IOnBackInvokedCallback.struct │ │ │ │ │ ├── IRemoteTransition.struct │ │ │ │ │ ├── IRemoteTransitionFinishedCallback.struct │ │ │ │ │ ├── ISurfaceSyncGroup.struct │ │ │ │ │ ├── ISurfaceSyncGroupCompletedListener.struct │ │ │ │ │ ├── ITaskFpsCallback.struct │ │ │ │ │ ├── ITaskFragmentOrganizer.struct │ │ │ │ │ ├── ITaskFragmentOrganizerController.struct │ │ │ │ │ ├── ITaskOrganizer.struct │ │ │ │ │ ├── ITaskOrganizerController.struct │ │ │ │ │ ├── ITransactionReadyCallback.struct │ │ │ │ │ ├── ITransitionMetricsReporter.struct │ │ │ │ │ ├── ITransitionPlayer.struct │ │ │ │ │ ├── IWindowContainerToken.struct │ │ │ │ │ ├── IWindowContainerTransactionCallback.struct │ │ │ │ │ ├── IWindowOrganizerController.struct │ │ │ │ │ ├── IWindowlessStartingSurfaceCallback.struct │ │ │ │ │ └── SizeConfigurationBuckets.struct │ │ │ ├── androidx │ │ │ │ ├── camera │ │ │ │ │ └── extensions │ │ │ │ │ │ └── impl │ │ │ │ │ │ └── service │ │ │ │ │ │ ├── IAdvancedExtenderImpl.struct │ │ │ │ │ │ ├── ICaptureCallback.struct │ │ │ │ │ │ ├── ICaptureProcessorImpl.struct │ │ │ │ │ │ ├── IExtensionsService.struct │ │ │ │ │ │ ├── IImageCaptureExtenderImpl.struct │ │ │ │ │ │ ├── IImageProcessorImpl.struct │ │ │ │ │ │ ├── IOnExtensionsDeinitializedCallback.struct │ │ │ │ │ │ ├── IOnExtensionsInitializedCallback.struct │ │ │ │ │ │ ├── IPreviewExtenderImpl.struct │ │ │ │ │ │ ├── IPreviewImageProcessorImpl.struct │ │ │ │ │ │ ├── IProcessResultImpl.struct │ │ │ │ │ │ ├── IRequestCallback.struct │ │ │ │ │ │ ├── IRequestProcessorImpl.struct │ │ │ │ │ │ ├── IRequestUpdateProcessorImpl.struct │ │ │ │ │ │ ├── ISessionProcessorImpl.struct │ │ │ │ │ │ └── OutputSurface.struct │ │ │ │ └── core │ │ │ │ │ └── uwb │ │ │ │ │ └── backend │ │ │ │ │ ├── IRangingSessionCallback.struct │ │ │ │ │ ├── IUwb.struct │ │ │ │ │ ├── IUwbClient.struct │ │ │ │ │ ├── RangingCapabilities.struct │ │ │ │ │ ├── RangingMeasurement.struct │ │ │ │ │ ├── RangingParameters.struct │ │ │ │ │ ├── RangingPosition.struct │ │ │ │ │ ├── UwbAddress.struct │ │ │ │ │ ├── UwbComplexChannel.struct │ │ │ │ │ └── UwbDevice.struct │ │ │ ├── another_package │ │ │ │ └── IFaz.struct │ │ │ ├── c │ │ │ │ └── d │ │ │ │ │ ├── ABCD.struct │ │ │ │ │ ├── CD.struct │ │ │ │ │ └── CD2.struct │ │ │ ├── classPaths.txt │ │ │ ├── com │ │ │ │ ├── android │ │ │ │ │ ├── app │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ └── broadcasts │ │ │ │ │ │ │ ├── BroadcastReceipt.struct │ │ │ │ │ │ │ └── ICommandReceiver.struct │ │ │ │ │ ├── bips │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ └── SizeD.struct │ │ │ │ │ │ └── render │ │ │ │ │ │ │ └── IPdfRender.struct │ │ │ │ │ ├── car │ │ │ │ │ │ ├── cartelemetryapp │ │ │ │ │ │ │ ├── ICarMetricsCollectorService.struct │ │ │ │ │ │ │ ├── IConfigData.struct │ │ │ │ │ │ │ ├── IConfigStateListener.struct │ │ │ │ │ │ │ └── IResultListener.struct │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── ICarServiceHelper.struct │ │ │ │ │ │ │ ├── ICarSystemServerClient.struct │ │ │ │ │ │ │ ├── LargeParcelable.struct │ │ │ │ │ │ │ ├── property │ │ │ │ │ │ │ │ ├── AsyncPropertyServiceRequestList.struct │ │ │ │ │ │ │ │ ├── CarPropertyConfigList.struct │ │ │ │ │ │ │ │ ├── GetSetValueResultList.struct │ │ │ │ │ │ │ │ └── IAsyncPropertyResultCallback.struct │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── IJavaTestBinder.struct │ │ │ │ │ │ │ │ └── TestLargeParcelable.struct │ │ │ │ │ │ ├── keventreader │ │ │ │ │ │ │ ├── IEventCallback.struct │ │ │ │ │ │ │ ├── IEventProvider.struct │ │ │ │ │ │ │ └── KeypressEvent.struct │ │ │ │ │ │ ├── procfsinspector │ │ │ │ │ │ │ ├── IProcfsInspector.struct │ │ │ │ │ │ │ └── ProcessInfo.struct │ │ │ │ │ │ ├── radio │ │ │ │ │ │ │ ├── bands │ │ │ │ │ │ │ │ └── ProgramType.struct │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ ├── IRadioAppCallback.struct │ │ │ │ │ │ │ │ ├── IRadioAppService.struct │ │ │ │ │ │ │ │ └── ITuneCallback.struct │ │ │ │ │ │ ├── setupwizardlib │ │ │ │ │ │ │ └── IInitialLockSetupService.struct │ │ │ │ │ │ ├── telemetry │ │ │ │ │ │ │ └── scriptexecutorinterface │ │ │ │ │ │ │ │ ├── BundleList.struct │ │ │ │ │ │ │ │ ├── IScriptExecutor.struct │ │ │ │ │ │ │ │ └── IScriptExecutorListener.struct │ │ │ │ │ │ └── testdpc │ │ │ │ │ │ │ └── remotedpm │ │ │ │ │ │ │ └── IRemoteDevicePolicyManager.struct │ │ │ │ │ ├── compatibility │ │ │ │ │ │ └── common │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── devicepolicy │ │ │ │ │ │ │ └── provisioning │ │ │ │ │ │ │ └── IBooleanCallback.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── IBinderPermissionTestService.struct │ │ │ │ │ │ ├── appdataisolation │ │ │ │ │ │ │ └── appa │ │ │ │ │ │ │ │ └── IIsolatedService.struct │ │ │ │ │ │ ├── appsearch │ │ │ │ │ │ │ └── ICommandReceiver.struct │ │ │ │ │ │ ├── blob │ │ │ │ │ │ │ └── ICommandReceiver.struct │ │ │ │ │ │ ├── comp │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ ├── deviceowner │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ └── hostside │ │ │ │ │ │ │ │ ├── IMyService.struct │ │ │ │ │ │ │ │ ├── INetworkCallback.struct │ │ │ │ │ │ │ │ ├── INetworkStateObserver.struct │ │ │ │ │ │ │ │ └── IRemoteSocketFactory.struct │ │ │ │ │ │ ├── verifier │ │ │ │ │ │ │ ├── managedprovisioning │ │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ │ └── projection │ │ │ │ │ │ │ │ └── IProjectionService.struct │ │ │ │ │ │ └── voiceinteraction │ │ │ │ │ │ │ ├── IProxyAlwaysOnHotwordDetector.struct │ │ │ │ │ │ │ ├── IProxyDetectorCallback.struct │ │ │ │ │ │ │ ├── IProxyKeyphraseModelManager.struct │ │ │ │ │ │ │ ├── ITestVoiceInteractionService.struct │ │ │ │ │ │ │ └── ITestVoiceInteractionServiceListener.struct │ │ │ │ │ ├── ctssdkprovider │ │ │ │ │ │ ├── IActivityStarter.struct │ │ │ │ │ │ └── ICtsSdkProviderApi.struct │ │ │ │ │ ├── development │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ ├── devicelockcontroller │ │ │ │ │ │ ├── IDeviceLockControllerService.struct │ │ │ │ │ │ └── storage │ │ │ │ │ │ │ ├── IGlobalParametersService.struct │ │ │ │ │ │ │ └── ISetupParametersService.struct │ │ │ │ │ ├── dialer │ │ │ │ │ │ └── simulator │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── ISimulatorService.struct │ │ │ │ │ ├── eventlib │ │ │ │ │ │ └── IQueryService.struct │ │ │ │ │ ├── frameworks │ │ │ │ │ │ ├── coretests │ │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ │ ├── IBinderProxyCountingService.struct │ │ │ │ │ │ │ │ ├── IBpcCallbackObserver.struct │ │ │ │ │ │ │ │ ├── IBpcTestAppCmdService.struct │ │ │ │ │ │ │ │ ├── IBpcTestServiceCmdService.struct │ │ │ │ │ │ │ │ ├── ICmdCallback.struct │ │ │ │ │ │ │ │ ├── ICmdReceiver.struct │ │ │ │ │ │ │ │ ├── ITestRemoteCallback.struct │ │ │ │ │ │ │ │ └── ITestServiceConnectorService.struct │ │ │ │ │ │ └── perftests │ │ │ │ │ │ │ └── am │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── ICommandReceiver.struct │ │ │ │ │ │ │ └── ITimeReceiverCallback.struct │ │ │ │ │ ├── ims │ │ │ │ │ │ ├── IRcsPresenceListener.struct │ │ │ │ │ │ ├── ImsConfigListener.struct │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── IImsCallSession.struct │ │ │ │ │ │ │ ├── IImsCallSessionListener.struct │ │ │ │ │ │ │ ├── IImsConfig.struct │ │ │ │ │ │ │ ├── IImsEcbm.struct │ │ │ │ │ │ │ ├── IImsEcbmListener.struct │ │ │ │ │ │ │ ├── IImsExternalCallStateListener.struct │ │ │ │ │ │ │ ├── IImsFeatureStatusCallback.struct │ │ │ │ │ │ │ ├── IImsMMTelFeature.struct │ │ │ │ │ │ │ ├── IImsMultiEndpoint.struct │ │ │ │ │ │ │ ├── IImsRcsFeature.struct │ │ │ │ │ │ │ ├── IImsRegistrationListener.struct │ │ │ │ │ │ │ ├── IImsService.struct │ │ │ │ │ │ │ ├── IImsServiceController.struct │ │ │ │ │ │ │ ├── IImsServiceFeatureCallback.struct │ │ │ │ │ │ │ ├── IImsStreamMediaSession.struct │ │ │ │ │ │ │ ├── IImsUt.struct │ │ │ │ │ │ │ ├── IImsUtListener.struct │ │ │ │ │ │ │ ├── IImsVideoCallCallback.struct │ │ │ │ │ │ │ ├── IImsVideoCallProvider.struct │ │ │ │ │ │ │ ├── IRcsPresence.struct │ │ │ │ │ │ │ ├── IRcsService.struct │ │ │ │ │ │ │ └── uce │ │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ ├── IOptionsListener.struct │ │ │ │ │ │ │ └── IOptionsService.struct │ │ │ │ │ │ │ ├── presence │ │ │ │ │ │ │ ├── IPresenceListener.struct │ │ │ │ │ │ │ └── IPresenceService.struct │ │ │ │ │ │ │ └── uceservice │ │ │ │ │ │ │ ├── IUceListener.struct │ │ │ │ │ │ │ └── IUceService.struct │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── IAppOpsActiveCallback.struct │ │ │ │ │ │ │ ├── IAppOpsAsyncNotedCallback.struct │ │ │ │ │ │ │ ├── IAppOpsCallback.struct │ │ │ │ │ │ │ ├── IAppOpsNotedCallback.struct │ │ │ │ │ │ │ ├── IAppOpsService.struct │ │ │ │ │ │ │ ├── IAppOpsStartedCallback.struct │ │ │ │ │ │ │ ├── IBatteryStats.struct │ │ │ │ │ │ │ ├── IHotwordRecognitionStatusCallback.struct │ │ │ │ │ │ │ ├── ILogAccessDialogCallback.struct │ │ │ │ │ │ │ ├── IMediaContainerService.struct │ │ │ │ │ │ │ ├── ISoundTriggerService.struct │ │ │ │ │ │ │ ├── ISoundTriggerSession.struct │ │ │ │ │ │ │ ├── IVisualQueryDetectionAttentionListener.struct │ │ │ │ │ │ │ ├── IVoiceActionCheckCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractionManagerService.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSessionListener.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSessionShowCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSoundTriggerSession.struct │ │ │ │ │ │ │ ├── IVoiceInteractor.struct │ │ │ │ │ │ │ ├── IVoiceInteractorCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractorRequest.struct │ │ │ │ │ │ │ └── procstats │ │ │ │ │ │ │ │ └── IProcessStats.struct │ │ │ │ │ │ ├── appwidget │ │ │ │ │ │ │ ├── IAppWidgetHost.struct │ │ │ │ │ │ │ └── IAppWidgetService.struct │ │ │ │ │ │ ├── backup │ │ │ │ │ │ │ ├── IObbBackupService.struct │ │ │ │ │ │ │ └── ITransportStatusCallback.struct │ │ │ │ │ │ ├── compat │ │ │ │ │ │ │ ├── CompatibilityChangeConfig.struct │ │ │ │ │ │ │ ├── CompatibilityChangeInfo.struct │ │ │ │ │ │ │ ├── IOverrideValidator.struct │ │ │ │ │ │ │ ├── IPlatformCompat.struct │ │ │ │ │ │ │ ├── IPlatformCompatNative.struct │ │ │ │ │ │ │ └── OverrideAllowedState.struct │ │ │ │ │ │ ├── graphics │ │ │ │ │ │ │ └── fonts │ │ │ │ │ │ │ │ └── IFontManager.struct │ │ │ │ │ │ ├── infra │ │ │ │ │ │ │ └── IAndroidFuture.struct │ │ │ │ │ │ ├── inputmethod │ │ │ │ │ │ │ ├── IAccessibilityInputMethodSession.struct │ │ │ │ │ │ │ ├── IAccessibilityInputMethodSessionCallback.struct │ │ │ │ │ │ │ ├── IImeTracker.struct │ │ │ │ │ │ │ ├── IInlineSuggestionsRequestCallback.struct │ │ │ │ │ │ │ ├── IInlineSuggestionsResponseCallback.struct │ │ │ │ │ │ │ ├── IInputContentUriToken.struct │ │ │ │ │ │ │ ├── IInputMethodClient.struct │ │ │ │ │ │ │ ├── IInputMethodPrivilegedOperations.struct │ │ │ │ │ │ │ ├── IInputMethodSession.struct │ │ │ │ │ │ │ ├── IInputMethodSessionCallback.struct │ │ │ │ │ │ │ ├── IRemoteAccessibilityInputConnection.struct │ │ │ │ │ │ │ ├── IRemoteInputConnection.struct │ │ │ │ │ │ │ └── InputConnectionCommandHeader.struct │ │ │ │ │ │ ├── logging │ │ │ │ │ │ │ └── InstanceId.struct │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ ├── INetworkWatchlistManager.struct │ │ │ │ │ │ │ ├── IOemNetd.struct │ │ │ │ │ │ │ └── IOemNetdUnsolicitedEventListener.struct │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ ├── IDropBoxManagerService.struct │ │ │ │ │ │ │ ├── IParcelFileDescriptorFactory.struct │ │ │ │ │ │ │ ├── IResultReceiver.struct │ │ │ │ │ │ │ └── IShellCallback.struct │ │ │ │ │ │ ├── policy │ │ │ │ │ │ │ ├── IKeyguardDismissCallback.struct │ │ │ │ │ │ │ ├── IKeyguardDrawnCallback.struct │ │ │ │ │ │ │ ├── IKeyguardExitCallback.struct │ │ │ │ │ │ │ ├── IKeyguardLockedStateListener.struct │ │ │ │ │ │ │ ├── IKeyguardService.struct │ │ │ │ │ │ │ ├── IKeyguardStateCallback.struct │ │ │ │ │ │ │ └── IShortcutService.struct │ │ │ │ │ │ ├── statusbar │ │ │ │ │ │ │ ├── IAddTileResultCallback.struct │ │ │ │ │ │ │ ├── IAppClipsService.struct │ │ │ │ │ │ │ ├── ISessionListener.struct │ │ │ │ │ │ │ ├── IStatusBar.struct │ │ │ │ │ │ │ ├── IStatusBarService.struct │ │ │ │ │ │ │ └── IUndoMediaTransferCallback.struct │ │ │ │ │ │ ├── telecom │ │ │ │ │ │ │ ├── ICallControl.struct │ │ │ │ │ │ │ ├── ICallDiagnosticService.struct │ │ │ │ │ │ │ ├── ICallDiagnosticServiceAdapter.struct │ │ │ │ │ │ │ ├── ICallEventCallback.struct │ │ │ │ │ │ │ ├── ICallRedirectionAdapter.struct │ │ │ │ │ │ │ ├── ICallRedirectionService.struct │ │ │ │ │ │ │ ├── ICallScreeningAdapter.struct │ │ │ │ │ │ │ ├── ICallScreeningService.struct │ │ │ │ │ │ │ ├── ICallStreamingService.struct │ │ │ │ │ │ │ ├── IConnectionService.struct │ │ │ │ │ │ │ ├── IConnectionServiceAdapter.struct │ │ │ │ │ │ │ ├── IDeviceIdleControllerAdapter.struct │ │ │ │ │ │ │ ├── IInCallAdapter.struct │ │ │ │ │ │ │ ├── IInCallService.struct │ │ │ │ │ │ │ ├── IInternalServiceRetriever.struct │ │ │ │ │ │ │ ├── IPhoneAccountSuggestionCallback.struct │ │ │ │ │ │ │ ├── IPhoneAccountSuggestionService.struct │ │ │ │ │ │ │ ├── IStreamingCallAdapter.struct │ │ │ │ │ │ │ ├── ITelecomLoader.struct │ │ │ │ │ │ │ ├── ITelecomService.struct │ │ │ │ │ │ │ ├── IVideoCallback.struct │ │ │ │ │ │ │ ├── IVideoProvider.struct │ │ │ │ │ │ │ └── RemoteServiceCallback.struct │ │ │ │ │ │ ├── telephony │ │ │ │ │ │ │ ├── IBooleanConsumer.struct │ │ │ │ │ │ │ ├── ICallForwardingInfoCallback.struct │ │ │ │ │ │ │ ├── ICarrierConfigChangeListener.struct │ │ │ │ │ │ │ ├── ICarrierConfigLoader.struct │ │ │ │ │ │ │ ├── ICarrierPrivilegesCallback.struct │ │ │ │ │ │ │ ├── IDomainSelectionServiceController.struct │ │ │ │ │ │ │ ├── IDomainSelector.struct │ │ │ │ │ │ │ ├── IIccPhoneBook.struct │ │ │ │ │ │ │ ├── IImsStateCallback.struct │ │ │ │ │ │ │ ├── IIntegerConsumer.struct │ │ │ │ │ │ │ ├── ILongConsumer.struct │ │ │ │ │ │ │ ├── IMms.struct │ │ │ │ │ │ │ ├── INumberVerificationCallback.struct │ │ │ │ │ │ │ ├── IOnSubscriptionsChangedListener.struct │ │ │ │ │ │ │ ├── IOns.struct │ │ │ │ │ │ │ ├── IPhoneStateListener.struct │ │ │ │ │ │ │ ├── IPhoneSubInfo.struct │ │ │ │ │ │ │ ├── ISetOpportunisticDataCallback.struct │ │ │ │ │ │ │ ├── ISipDialogStateCallback.struct │ │ │ │ │ │ │ ├── ISms.struct │ │ │ │ │ │ │ ├── ISub.struct │ │ │ │ │ │ │ ├── ITelephony.struct │ │ │ │ │ │ │ ├── ITelephonyRegistry.struct │ │ │ │ │ │ │ ├── ITransportSelectorCallback.struct │ │ │ │ │ │ │ ├── ITransportSelectorResultCallback.struct │ │ │ │ │ │ │ ├── IUpdateAvailableNetworksCallback.struct │ │ │ │ │ │ │ ├── IVoidConsumer.struct │ │ │ │ │ │ │ ├── IWapPushManager.struct │ │ │ │ │ │ │ ├── IWwanSelectorCallback.struct │ │ │ │ │ │ │ ├── IWwanSelectorResultCallback.struct │ │ │ │ │ │ │ ├── IccLogicalChannelRequest.struct │ │ │ │ │ │ │ ├── SmsRawData.struct │ │ │ │ │ │ │ ├── euicc │ │ │ │ │ │ │ │ ├── IAuthenticateServerCallback.struct │ │ │ │ │ │ │ │ ├── ICancelSessionCallback.struct │ │ │ │ │ │ │ │ ├── IDeleteProfileCallback.struct │ │ │ │ │ │ │ │ ├── IDisableProfileCallback.struct │ │ │ │ │ │ │ │ ├── IEuiccCardController.struct │ │ │ │ │ │ │ │ ├── IEuiccController.struct │ │ │ │ │ │ │ │ ├── IGetAllProfilesCallback.struct │ │ │ │ │ │ │ │ ├── IGetDefaultSmdpAddressCallback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccChallengeCallback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccInfo1Callback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccInfo2Callback.struct │ │ │ │ │ │ │ │ ├── IGetProfileCallback.struct │ │ │ │ │ │ │ │ ├── IGetRulesAuthTableCallback.struct │ │ │ │ │ │ │ │ ├── IGetSmdsAddressCallback.struct │ │ │ │ │ │ │ │ ├── IListNotificationsCallback.struct │ │ │ │ │ │ │ │ ├── ILoadBoundProfilePackageCallback.struct │ │ │ │ │ │ │ │ ├── IPrepareDownloadCallback.struct │ │ │ │ │ │ │ │ ├── IRemoveNotificationFromListCallback.struct │ │ │ │ │ │ │ │ ├── IResetMemoryCallback.struct │ │ │ │ │ │ │ │ ├── IRetrieveNotificationCallback.struct │ │ │ │ │ │ │ │ ├── IRetrieveNotificationListCallback.struct │ │ │ │ │ │ │ │ ├── ISetDefaultSmdpAddressCallback.struct │ │ │ │ │ │ │ │ ├── ISetNicknameCallback.struct │ │ │ │ │ │ │ │ └── ISwitchToProfileCallback.struct │ │ │ │ │ │ │ └── uicc │ │ │ │ │ │ │ │ ├── AdnCapacity.struct │ │ │ │ │ │ │ │ └── AdnRecord.struct │ │ │ │ │ │ ├── textservice │ │ │ │ │ │ │ ├── ISpellCheckerService.struct │ │ │ │ │ │ │ ├── ISpellCheckerServiceCallback.struct │ │ │ │ │ │ │ ├── ISpellCheckerSession.struct │ │ │ │ │ │ │ ├── ISpellCheckerSessionListener.struct │ │ │ │ │ │ │ ├── ITextServicesManager.struct │ │ │ │ │ │ │ └── ITextServicesSessionListener.struct │ │ │ │ │ │ ├── view │ │ │ │ │ │ │ ├── IDragAndDropPermissions.struct │ │ │ │ │ │ │ ├── IInputMethodManager.struct │ │ │ │ │ │ │ └── inline │ │ │ │ │ │ │ │ ├── IInlineContentCallback.struct │ │ │ │ │ │ │ │ └── IInlineContentProvider.struct │ │ │ │ │ │ └── widget │ │ │ │ │ │ │ ├── ICheckCredentialProgressCallback.struct │ │ │ │ │ │ │ ├── ILockSettings.struct │ │ │ │ │ │ │ ├── IRemoteViewsFactory.struct │ │ │ │ │ │ │ ├── IWeakEscrowTokenActivatedListener.struct │ │ │ │ │ │ │ ├── IWeakEscrowTokenRemovedListener.struct │ │ │ │ │ │ │ ├── LockscreenCredential.struct │ │ │ │ │ │ │ └── VerifyCredentialResponse.struct │ │ │ │ │ ├── keychain │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ └── IKeyChainServiceTestSupport.struct │ │ │ │ │ ├── microdroid │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── vmshare │ │ │ │ │ │ │ │ └── IVmShareTestService.struct │ │ │ │ │ │ └── testservice │ │ │ │ │ │ │ ├── IAppCallback.struct │ │ │ │ │ │ │ ├── IBenchmarkService.struct │ │ │ │ │ │ │ ├── ITestService.struct │ │ │ │ │ │ │ └── IVmCallback.struct │ │ │ │ │ ├── minidroid │ │ │ │ │ │ └── testservice │ │ │ │ │ │ │ └── ITestService.struct │ │ │ │ │ ├── modules │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── ISynchronousResultReceiver.struct │ │ │ │ │ ├── net │ │ │ │ │ │ ├── IProxyCallback.struct │ │ │ │ │ │ ├── IProxyPortListener.struct │ │ │ │ │ │ └── IProxyService.struct │ │ │ │ │ ├── ondevicepersonalization │ │ │ │ │ │ └── libraries │ │ │ │ │ │ │ └── plugin │ │ │ │ │ │ │ ├── FailureType.struct │ │ │ │ │ │ │ ├── PluginState.struct │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── IPluginCallback.struct │ │ │ │ │ │ │ ├── IPluginExecutorService.struct │ │ │ │ │ │ │ └── IPluginStateCallback.struct │ │ │ │ │ ├── onemedia │ │ │ │ │ │ ├── IPlayerCallback.struct │ │ │ │ │ │ ├── IPlayerService.struct │ │ │ │ │ │ └── playback │ │ │ │ │ │ │ └── IRequestCallback.struct │ │ │ │ │ ├── printspooler │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ ├── IPdfEditor.struct │ │ │ │ │ │ │ └── IPdfRenderer.struct │ │ │ │ │ ├── rkpdapp │ │ │ │ │ │ ├── IGetKeyCallback.struct │ │ │ │ │ │ ├── IGetRegistrationCallback.struct │ │ │ │ │ │ ├── IRegistration.struct │ │ │ │ │ │ ├── IRemoteProvisioning.struct │ │ │ │ │ │ ├── IRemotelyProvisionedKeyPool.struct │ │ │ │ │ │ ├── IStoreUpgradedKeyCallback.struct │ │ │ │ │ │ └── RemotelyProvisionedKey.struct │ │ │ │ │ ├── sdksandbox │ │ │ │ │ │ ├── IComputeSdkStorageCallback.struct │ │ │ │ │ │ ├── ILoadSdkInSandboxCallback.struct │ │ │ │ │ │ ├── IRequestSurfacePackageFromSdkCallback.struct │ │ │ │ │ │ ├── ISdkSandboxDisabledCallback.struct │ │ │ │ │ │ ├── ISdkSandboxManagerToSdkSandboxCallback.struct │ │ │ │ │ │ ├── ISdkSandboxService.struct │ │ │ │ │ │ ├── IUnloadSdkCallback.struct │ │ │ │ │ │ ├── SandboxLatencyInfo.struct │ │ │ │ │ │ ├── cts │ │ │ │ │ │ │ └── provider │ │ │ │ │ │ │ │ ├── dataisolationtest │ │ │ │ │ │ │ │ └── IDataIsolationTestSdkApi.struct │ │ │ │ │ │ │ │ ├── mediationtest │ │ │ │ │ │ │ │ └── IMediationTestSdkApi.struct │ │ │ │ │ │ │ │ └── storagetest │ │ │ │ │ │ │ │ └── IStorageTestSdkApi.struct │ │ │ │ │ │ └── uiprovider │ │ │ │ │ │ │ └── IUiProviderApi.struct │ │ │ │ │ ├── server │ │ │ │ │ │ ├── art │ │ │ │ │ │ │ ├── ArtConstants.struct │ │ │ │ │ │ │ ├── ArtdDexoptResult.struct │ │ │ │ │ │ │ ├── ArtifactsPath.struct │ │ │ │ │ │ │ ├── DexMetadataPath.struct │ │ │ │ │ │ │ ├── DexoptOptions.struct │ │ │ │ │ │ │ ├── FsPermission.struct │ │ │ │ │ │ │ ├── GetDexoptNeededResult.struct │ │ │ │ │ │ │ ├── GetDexoptStatusResult.struct │ │ │ │ │ │ │ ├── IArtd.struct │ │ │ │ │ │ │ ├── IArtdCancellationSignal.struct │ │ │ │ │ │ │ ├── MergeProfileOptions.struct │ │ │ │ │ │ │ └── OutputProfile.struct │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ └── integrationtests │ │ │ │ │ │ │ │ └── INetworkStackInstrumentation.struct │ │ │ │ │ │ └── profcollect │ │ │ │ │ │ │ ├── IProfCollectd.struct │ │ │ │ │ │ │ └── IProviderStatusCallback.struct │ │ │ │ │ ├── smspush │ │ │ │ │ │ └── unitTests │ │ │ │ │ │ │ └── IDataVerify.struct │ │ │ │ │ ├── suspendapps │ │ │ │ │ │ └── suspendtestapp │ │ │ │ │ │ │ ├── IBroadcastReporter.struct │ │ │ │ │ │ │ └── ITestService.struct │ │ │ │ │ ├── systemui │ │ │ │ │ │ ├── assist │ │ │ │ │ │ │ └── IAssistHandleService.struct │ │ │ │ │ │ ├── screenshot │ │ │ │ │ │ │ ├── ICrossProfileService.struct │ │ │ │ │ │ │ ├── IOnDoneCallback.struct │ │ │ │ │ │ │ ├── IScreenshotProxy.struct │ │ │ │ │ │ │ └── appclips │ │ │ │ │ │ │ │ └── IAppClipsScreenshotHelperService.struct │ │ │ │ │ │ ├── shared │ │ │ │ │ │ │ ├── recents │ │ │ │ │ │ │ │ ├── IOverviewProxy.struct │ │ │ │ │ │ │ │ └── ISystemUiProxy.struct │ │ │ │ │ │ │ └── system │ │ │ │ │ │ │ │ └── smartspace │ │ │ │ │ │ │ │ ├── ILauncherUnlockAnimationController.struct │ │ │ │ │ │ │ │ └── ISysuiUnlockAnimationController.struct │ │ │ │ │ │ ├── unfold │ │ │ │ │ │ │ └── progress │ │ │ │ │ │ │ │ ├── IUnfoldAnimation.struct │ │ │ │ │ │ │ │ └── IUnfoldTransitionListener.struct │ │ │ │ │ │ └── wallet │ │ │ │ │ │ │ └── controller │ │ │ │ │ │ │ ├── IWalletCardsUpdatedListener.struct │ │ │ │ │ │ │ └── IWalletContextualLocationsService.struct │ │ │ │ │ ├── test │ │ │ │ │ │ ├── inputinjection │ │ │ │ │ │ │ └── IInputInjectionTestCallbacks.struct │ │ │ │ │ │ ├── notificationlistener │ │ │ │ │ │ │ ├── INLSControlService.struct │ │ │ │ │ │ │ └── INotificationUriAccessService.struct │ │ │ │ │ │ └── viewembed │ │ │ │ │ │ │ ├── IAttachEmbeddedWindow.struct │ │ │ │ │ │ │ └── IAttachEmbeddedWindowCallback.struct │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ │ ├── basicprojectwithaidl │ │ │ │ │ │ │ └── ITest.struct │ │ │ │ │ │ ├── codeprovider │ │ │ │ │ │ │ └── storagetest_1 │ │ │ │ │ │ │ │ └── IStorageTestSdk1Api.struct │ │ │ │ │ │ └── sdkprovider │ │ │ │ │ │ │ ├── crashtest │ │ │ │ │ │ │ └── ICrashTestSdkApi.struct │ │ │ │ │ │ │ └── restrictions │ │ │ │ │ │ │ ├── broadcasts │ │ │ │ │ │ │ └── IBroadcastSdkApi.struct │ │ │ │ │ │ │ └── contentproviders │ │ │ │ │ │ │ └── IContentProvidersSdkApi.struct │ │ │ │ │ ├── textclassifier │ │ │ │ │ │ └── downloader │ │ │ │ │ │ │ ├── IModelDownloaderCallback.struct │ │ │ │ │ │ │ └── IModelDownloaderService.struct │ │ │ │ │ ├── trusty │ │ │ │ │ │ └── binder │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── ITestService.struct │ │ │ │ │ ├── tv │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ ├── users │ │ │ │ │ │ │ │ └── IRestrictedProfilePinService.struct │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ └── IActivityTransitionBitmapProvider.struct │ │ │ │ │ │ └── testing │ │ │ │ │ │ │ └── testinput │ │ │ │ │ │ │ └── ITestInputControl.struct │ │ │ │ │ ├── virt │ │ │ │ │ │ └── fs │ │ │ │ │ │ │ ├── FsStat.struct │ │ │ │ │ │ │ ├── IAuthFs.struct │ │ │ │ │ │ │ ├── IAuthFsService.struct │ │ │ │ │ │ │ └── IVirtFdService.struct │ │ │ │ │ └── wm │ │ │ │ │ │ └── shell │ │ │ │ │ │ ├── back │ │ │ │ │ │ └── IBackAnimation.struct │ │ │ │ │ │ ├── bubbles │ │ │ │ │ │ ├── IBubbles.struct │ │ │ │ │ │ └── IBubblesListener.struct │ │ │ │ │ │ ├── desktopmode │ │ │ │ │ │ └── IDesktopMode.struct │ │ │ │ │ │ ├── draganddrop │ │ │ │ │ │ └── IDragAndDrop.struct │ │ │ │ │ │ ├── onehanded │ │ │ │ │ │ └── IOneHanded.struct │ │ │ │ │ │ ├── pip │ │ │ │ │ │ ├── IPip.struct │ │ │ │ │ │ └── IPipAnimationListener.struct │ │ │ │ │ │ ├── recents │ │ │ │ │ │ ├── IRecentTasks.struct │ │ │ │ │ │ └── IRecentTasksListener.struct │ │ │ │ │ │ ├── splitscreen │ │ │ │ │ │ ├── ISplitScreen.struct │ │ │ │ │ │ └── ISplitScreenListener.struct │ │ │ │ │ │ ├── startingsurface │ │ │ │ │ │ ├── IStartingWindow.struct │ │ │ │ │ │ └── IStartingWindowListener.struct │ │ │ │ │ │ └── transition │ │ │ │ │ │ └── IShellTransitions.struct │ │ │ │ ├── example │ │ │ │ │ └── android │ │ │ │ │ │ └── apis │ │ │ │ │ │ └── app │ │ │ │ │ │ ├── IRemoteService.struct │ │ │ │ │ │ ├── IRemoteServiceCallback.struct │ │ │ │ │ │ └── ISecondary.struct │ │ │ │ ├── google │ │ │ │ │ ├── android │ │ │ │ │ │ ├── enterprise │ │ │ │ │ │ │ └── connectedapps │ │ │ │ │ │ │ │ ├── ICrossProfileCallback.struct │ │ │ │ │ │ │ │ └── ICrossProfileService.struct │ │ │ │ │ │ ├── setupcompat │ │ │ │ │ │ │ ├── ISetupCompatService.struct │ │ │ │ │ │ │ ├── bts │ │ │ │ │ │ │ │ ├── IBtsTaskService.struct │ │ │ │ │ │ │ │ └── IBtsTaskServiceCallback.struct │ │ │ │ │ │ │ └── portal │ │ │ │ │ │ │ │ ├── IPortalProgressCallback.struct │ │ │ │ │ │ │ │ ├── IPortalProgressService.struct │ │ │ │ │ │ │ │ ├── IPortalRegisterResultListener.struct │ │ │ │ │ │ │ │ ├── ISetupNotificationService.struct │ │ │ │ │ │ │ │ └── ISetupNotificationServicePortalExtension.struct │ │ │ │ │ │ └── setupwizard │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── INetworkInterceptService.struct │ │ │ │ │ └── hardware │ │ │ │ │ │ └── pixel │ │ │ │ │ │ └── display │ │ │ │ │ │ ├── IDisplay.struct │ │ │ │ │ │ └── Weight.struct │ │ │ │ └── mediatek │ │ │ │ │ └── tunerservice │ │ │ │ │ └── IMtkTuner.struct │ │ │ ├── cts │ │ │ │ └── android │ │ │ │ │ └── hardware │ │ │ │ │ └── IHardwareBufferTestService.struct │ │ │ ├── device │ │ │ │ ├── generic │ │ │ │ │ └── car │ │ │ │ │ │ └── emulator │ │ │ │ │ │ ├── IVehicleBus.struct │ │ │ │ │ │ └── IVehicleBusCallback.struct │ │ │ │ └── google │ │ │ │ │ └── atv │ │ │ │ │ └── audio_proxy │ │ │ │ │ ├── AudioConfig.struct │ │ │ │ │ ├── IAudioProxy.struct │ │ │ │ │ ├── IStreamProvider.struct │ │ │ │ │ ├── MmapBufferInfo.struct │ │ │ │ │ ├── PresentationPosition.struct │ │ │ │ │ ├── TimeSpec.struct │ │ │ │ │ └── WriteStatus.struct │ │ │ ├── foo │ │ │ │ └── IFoo.struct │ │ │ ├── fuzztest │ │ │ │ └── ITestService.struct │ │ │ ├── google │ │ │ │ └── hardware │ │ │ │ │ ├── power │ │ │ │ │ └── extension │ │ │ │ │ │ └── pixel │ │ │ │ │ │ └── IPowerExt.struct │ │ │ │ │ └── thermal │ │ │ │ │ └── extension │ │ │ │ │ └── pixel │ │ │ │ │ └── IThermalExt.struct │ │ │ ├── hardware │ │ │ │ └── google │ │ │ │ │ ├── bluetooth │ │ │ │ │ └── ccc │ │ │ │ │ │ └── Timestamp.struct │ │ │ │ │ └── ril_ext │ │ │ │ │ ├── IRilExt.struct │ │ │ │ │ ├── IRilExtIndication.struct │ │ │ │ │ ├── IRilExtResponse.struct │ │ │ │ │ └── RilResponseInfo.struct │ │ │ ├── hidl2aidl │ │ │ │ ├── test │ │ │ │ │ ├── BigStruct.struct │ │ │ │ │ ├── IBar.struct │ │ │ │ │ ├── IFoo.struct │ │ │ │ │ ├── Inner.struct │ │ │ │ │ ├── NameCollision.struct │ │ │ │ │ ├── OnlyIn10.struct │ │ │ │ │ ├── OnlyIn11.struct │ │ │ │ │ ├── OverrideMe.struct │ │ │ │ │ ├── VectorFoo.struct │ │ │ │ │ └── extension │ │ │ │ │ │ └── IFoo.struct │ │ │ │ └── test2 │ │ │ │ │ └── IFoo.struct │ │ │ ├── org │ │ │ │ └── chromium │ │ │ │ │ ├── base │ │ │ │ │ ├── ITestCallback.struct │ │ │ │ │ ├── ITestController.struct │ │ │ │ │ └── process_launcher │ │ │ │ │ │ ├── ICallbackInt.struct │ │ │ │ │ │ ├── IChildProcessService.struct │ │ │ │ │ │ └── IParentProcess.struct │ │ │ │ │ └── net │ │ │ │ │ └── test │ │ │ │ │ ├── IConnectionListener.struct │ │ │ │ │ └── IEmbeddedTestServerImpl.struct │ │ │ ├── other_package │ │ │ │ └── IBaz.struct │ │ │ ├── parcelables │ │ │ │ └── EmptyParcelable.struct │ │ │ ├── some_package │ │ │ │ ├── IBar.struct │ │ │ │ ├── IFoo.struct │ │ │ │ ├── Thing.struct │ │ │ │ └── sub_package │ │ │ │ │ ├── IFoo.struct │ │ │ │ │ └── SubThing.struct │ │ │ ├── src │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── commands │ │ │ │ │ └── uinput │ │ │ │ │ └── InputAbsInfo.struct │ │ │ ├── test6 │ │ │ │ ├── Bar.struct │ │ │ │ └── Foo.struct │ │ │ ├── test_package │ │ │ │ ├── Bar.struct │ │ │ │ ├── Baz.struct │ │ │ │ ├── ExtendableParcelable.struct │ │ │ │ ├── FixedSize.struct │ │ │ │ ├── Foo.struct │ │ │ │ ├── IBaz.struct │ │ │ │ ├── ICompatTest.struct │ │ │ │ ├── IEmpty.struct │ │ │ │ ├── MyExt.struct │ │ │ │ └── RegularPolygon.struct │ │ │ ├── tests_transitive_parcel │ │ │ │ ├── a │ │ │ │ │ └── IA.struct │ │ │ │ ├── b │ │ │ │ │ └── B.struct │ │ │ │ └── c │ │ │ │ │ └── C.struct │ │ │ └── vendor │ │ │ │ └── nxp │ │ │ │ └── nxpnfc_aidl │ │ │ │ └── INxpNfc.struct │ │ ├── android-8.1.0_r81 │ │ │ ├── android │ │ │ │ ├── IGraphicBufferSource.struct │ │ │ │ ├── IOMXBufferSource.struct │ │ │ │ ├── IOMXNode.struct │ │ │ │ ├── accessibilityservice │ │ │ │ │ ├── IAccessibilityServiceClient.struct │ │ │ │ │ └── IAccessibilityServiceConnection.struct │ │ │ │ ├── accounts │ │ │ │ │ ├── AuthenticatorDescription.struct │ │ │ │ │ ├── IAccountAuthenticator.struct │ │ │ │ │ ├── IAccountAuthenticatorResponse.struct │ │ │ │ │ ├── IAccountManager.struct │ │ │ │ │ └── IAccountManagerResponse.struct │ │ │ │ ├── aidl │ │ │ │ │ └── tests │ │ │ │ │ │ └── INamedCallback.struct │ │ │ │ ├── app │ │ │ │ │ ├── AutomaticZenRule.struct │ │ │ │ │ ├── IActivityController.struct │ │ │ │ │ ├── IActivityManager.struct │ │ │ │ │ ├── IActivityPendingResult.struct │ │ │ │ │ ├── IAlarmCompleteListener.struct │ │ │ │ │ ├── IAlarmListener.struct │ │ │ │ │ ├── IAlarmManager.struct │ │ │ │ │ ├── IAppTask.struct │ │ │ │ │ ├── IApplicationThread.struct │ │ │ │ │ ├── IBackupAgent.struct │ │ │ │ │ ├── IEphemeralResolver.struct │ │ │ │ │ ├── IInputForwarder.struct │ │ │ │ │ ├── IInstantAppResolver.struct │ │ │ │ │ ├── IInstrumentationWatcher.struct │ │ │ │ │ ├── INotificationManager.struct │ │ │ │ │ ├── IProcessObserver.struct │ │ │ │ │ ├── ISearchManager.struct │ │ │ │ │ ├── ISearchManagerCallback.struct │ │ │ │ │ ├── IServiceConnection.struct │ │ │ │ │ ├── IStopUserCallback.struct │ │ │ │ │ ├── ITaskStackListener.struct │ │ │ │ │ ├── ITransientNotification.struct │ │ │ │ │ ├── IUiAutomationConnection.struct │ │ │ │ │ ├── IUiModeManager.struct │ │ │ │ │ ├── IUidObserver.struct │ │ │ │ │ ├── IUserSwitchObserver.struct │ │ │ │ │ ├── IWallpaperManager.struct │ │ │ │ │ ├── IWallpaperManagerCallback.struct │ │ │ │ │ ├── NotificationChannel.struct │ │ │ │ │ ├── PendingIntent.struct │ │ │ │ │ ├── ProfilerInfo.struct │ │ │ │ │ ├── ResultInfo.struct │ │ │ │ │ ├── Vr2dDisplayProperties.struct │ │ │ │ │ ├── WaitResult.struct │ │ │ │ │ ├── WallpaperInfo.struct │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── IDeviceAdminService.struct │ │ │ │ │ │ ├── IDevicePolicyManager.struct │ │ │ │ │ │ ├── NetworkEvent.struct │ │ │ │ │ │ ├── PasswordMetrics.struct │ │ │ │ │ │ ├── SystemUpdateInfo.struct │ │ │ │ │ │ └── SystemUpdatePolicy.struct │ │ │ │ │ ├── assist │ │ │ │ │ │ ├── AssistContent.struct │ │ │ │ │ │ └── AssistStructure.struct │ │ │ │ │ ├── backup │ │ │ │ │ │ ├── BackupProgress.struct │ │ │ │ │ │ ├── IBackupManager.struct │ │ │ │ │ │ ├── IBackupManagerMonitor.struct │ │ │ │ │ │ ├── IBackupObserver.struct │ │ │ │ │ │ ├── IFullBackupRestoreObserver.struct │ │ │ │ │ │ ├── IRestoreObserver.struct │ │ │ │ │ │ ├── IRestoreSession.struct │ │ │ │ │ │ ├── ISelectBackupTransportCallback.struct │ │ │ │ │ │ ├── RestoreDescription.struct │ │ │ │ │ │ └── RestoreSet.struct │ │ │ │ │ ├── job │ │ │ │ │ │ ├── IJobCallback.struct │ │ │ │ │ │ ├── IJobScheduler.struct │ │ │ │ │ │ ├── IJobService.struct │ │ │ │ │ │ └── JobWorkItem.struct │ │ │ │ │ ├── stubs │ │ │ │ │ │ └── ISecondary.struct │ │ │ │ │ ├── timezone │ │ │ │ │ │ ├── ICallback.struct │ │ │ │ │ │ └── IRulesManager.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── IStrongAuthTracker.struct │ │ │ │ │ │ ├── ITrustListener.struct │ │ │ │ │ │ └── ITrustManager.struct │ │ │ │ │ └── usage │ │ │ │ │ │ ├── ExternalStorageStats.struct │ │ │ │ │ │ ├── ICacheQuotaService.struct │ │ │ │ │ │ ├── IStorageStatsManager.struct │ │ │ │ │ │ ├── IUsageStatsManager.struct │ │ │ │ │ │ └── StorageStats.struct │ │ │ │ ├── bluetooth │ │ │ │ │ ├── BluetoothAudioConfig.struct │ │ │ │ │ ├── BluetoothCodecConfig.struct │ │ │ │ │ ├── BluetoothDevice.struct │ │ │ │ │ ├── BluetoothGattDescriptor.struct │ │ │ │ │ ├── BluetoothGattIncludedService.struct │ │ │ │ │ ├── BluetoothHealthAppConfiguration.struct │ │ │ │ │ ├── BluetoothHidDeviceAppConfiguration.struct │ │ │ │ │ ├── BluetoothHidDeviceAppQosSettings.struct │ │ │ │ │ ├── BluetoothHidDeviceAppSdpSettings.struct │ │ │ │ │ ├── IBluetooth.struct │ │ │ │ │ ├── IBluetoothA2dp.struct │ │ │ │ │ ├── IBluetoothA2dpSink.struct │ │ │ │ │ ├── IBluetoothAvrcpController.struct │ │ │ │ │ ├── IBluetoothCallback.struct │ │ │ │ │ ├── IBluetoothGatt.struct │ │ │ │ │ ├── IBluetoothGattCallback.struct │ │ │ │ │ ├── IBluetoothGattClient.struct │ │ │ │ │ ├── IBluetoothGattClientCallback.struct │ │ │ │ │ ├── IBluetoothGattServer.struct │ │ │ │ │ ├── IBluetoothGattServerCallback.struct │ │ │ │ │ ├── IBluetoothHeadset.struct │ │ │ │ │ ├── IBluetoothHeadsetClient.struct │ │ │ │ │ ├── IBluetoothHeadsetPhone.struct │ │ │ │ │ ├── IBluetoothHealth.struct │ │ │ │ │ ├── IBluetoothHidDeviceCallback.struct │ │ │ │ │ ├── IBluetoothInputDevice.struct │ │ │ │ │ ├── IBluetoothInputHost.struct │ │ │ │ │ ├── IBluetoothLeAdvertiser.struct │ │ │ │ │ ├── IBluetoothLeAdvertiserCallback.struct │ │ │ │ │ ├── IBluetoothLeScanner.struct │ │ │ │ │ ├── IBluetoothLeScannerCallback.struct │ │ │ │ │ ├── IBluetoothLowEnergy.struct │ │ │ │ │ ├── IBluetoothLowEnergyCallback.struct │ │ │ │ │ ├── IBluetoothManager.struct │ │ │ │ │ ├── IBluetoothManagerCallback.struct │ │ │ │ │ ├── IBluetoothMap.struct │ │ │ │ │ ├── IBluetoothMapClient.struct │ │ │ │ │ ├── IBluetoothPan.struct │ │ │ │ │ ├── IBluetoothPbap.struct │ │ │ │ │ ├── IBluetoothPbapClient.struct │ │ │ │ │ ├── IBluetoothProfileServiceConnection.struct │ │ │ │ │ ├── IBluetoothSap.struct │ │ │ │ │ ├── IBluetoothStateChangeCallback.struct │ │ │ │ │ └── le │ │ │ │ │ │ ├── AdvertisingSetParameters.struct │ │ │ │ │ │ ├── IAdvertisingSetCallback.struct │ │ │ │ │ │ ├── IPeriodicAdvertisingCallback.struct │ │ │ │ │ │ ├── IScannerCallback.struct │ │ │ │ │ │ ├── PeriodicAdvertisingParameters.struct │ │ │ │ │ │ └── ScanSettings.struct │ │ │ │ ├── brillo │ │ │ │ │ ├── IUpdateEngine.struct │ │ │ │ │ └── brilloaudioservice │ │ │ │ │ │ ├── IAudioServiceCallback.struct │ │ │ │ │ │ └── IBrilloAudioService.struct │ │ │ │ ├── car │ │ │ │ │ ├── IAppFocus.struct │ │ │ │ │ ├── IAppFocusListener.struct │ │ │ │ │ ├── IAppFocusOwnershipCallback.struct │ │ │ │ │ ├── ICar.struct │ │ │ │ │ ├── ICarBluetooth.struct │ │ │ │ │ ├── ICarBluetoothUserService.struct │ │ │ │ │ ├── ICarConnectionListener.struct │ │ │ │ │ ├── ICarInfo.struct │ │ │ │ │ ├── ICarProjection.struct │ │ │ │ │ ├── ICarProjectionCallback.struct │ │ │ │ │ ├── ICarUserService.struct │ │ │ │ │ ├── IUsbAoapSupportCheckService.struct │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── IInstrumentClusterManagerCallback.struct │ │ │ │ │ │ ├── IInstrumentClusterManagerService.struct │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ ├── IInstrumentCluster.struct │ │ │ │ │ │ │ ├── IInstrumentClusterCallback.struct │ │ │ │ │ │ │ └── IInstrumentClusterNavigation.struct │ │ │ │ │ ├── content │ │ │ │ │ │ └── pm │ │ │ │ │ │ │ ├── ICarAppBlockingPolicy.struct │ │ │ │ │ │ │ ├── ICarAppBlockingPolicySetter.struct │ │ │ │ │ │ │ └── ICarPackageManager.struct │ │ │ │ │ ├── diagnostic │ │ │ │ │ │ ├── ICarDiagnostic.struct │ │ │ │ │ │ └── ICarDiagnosticEventListener.struct │ │ │ │ │ ├── hardware │ │ │ │ │ │ ├── CarSensorConfig.struct │ │ │ │ │ │ ├── CarSensorEvent.struct │ │ │ │ │ │ ├── ICarSensor.struct │ │ │ │ │ │ ├── ICarSensorEventListener.struct │ │ │ │ │ │ ├── property │ │ │ │ │ │ │ ├── ICarProperty.struct │ │ │ │ │ │ │ └── ICarPropertyEventListener.struct │ │ │ │ │ │ └── radio │ │ │ │ │ │ │ ├── CarRadioPreset.struct │ │ │ │ │ │ │ ├── ICarRadio.struct │ │ │ │ │ │ │ └── ICarRadioEventListener.struct │ │ │ │ │ ├── input │ │ │ │ │ │ └── ICarInputListener.struct │ │ │ │ │ ├── media │ │ │ │ │ │ ├── ICarAudio.struct │ │ │ │ │ │ └── ICarAudioCallback.struct │ │ │ │ │ └── test │ │ │ │ │ │ └── ICarTest.struct │ │ │ │ ├── companion │ │ │ │ │ ├── ICompanionDeviceDiscoveryService.struct │ │ │ │ │ ├── ICompanionDeviceDiscoveryServiceCallback.struct │ │ │ │ │ ├── ICompanionDeviceManager.struct │ │ │ │ │ └── IFindDeviceCallback.struct │ │ │ │ ├── content │ │ │ │ │ ├── ClipDescription.struct │ │ │ │ │ ├── ComponentName.struct │ │ │ │ │ ├── ContentValues.struct │ │ │ │ │ ├── IClipboard.struct │ │ │ │ │ ├── IContentService.struct │ │ │ │ │ ├── ICrossUserContentService.struct │ │ │ │ │ ├── IIntentReceiver.struct │ │ │ │ │ ├── IIntentSender.struct │ │ │ │ │ ├── IOnPrimaryClipChangedListener.struct │ │ │ │ │ ├── IRestrictionsManager.struct │ │ │ │ │ ├── ISyncAdapter.struct │ │ │ │ │ ├── ISyncContext.struct │ │ │ │ │ ├── ISyncServiceAdapter.struct │ │ │ │ │ ├── ISyncStatusObserver.struct │ │ │ │ │ ├── IntentSender.struct │ │ │ │ │ ├── PeriodicSync.struct │ │ │ │ │ ├── SyncAdapterType.struct │ │ │ │ │ ├── SyncStatusInfo.struct │ │ │ │ │ ├── om │ │ │ │ │ │ ├── IOverlayManager.struct │ │ │ │ │ │ └── OverlayInfo.struct │ │ │ │ │ ├── pm │ │ │ │ │ │ ├── ChangedPackages.struct │ │ │ │ │ │ ├── ConfigurationInfo.struct │ │ │ │ │ │ ├── IDexModuleRegisterCallback.struct │ │ │ │ │ │ ├── ILauncherApps.struct │ │ │ │ │ │ ├── IOnAppsChangedListener.struct │ │ │ │ │ │ ├── IOnPermissionsChangeListener.struct │ │ │ │ │ │ ├── IOtaDexopt.struct │ │ │ │ │ │ ├── IPackageDataObserver.struct │ │ │ │ │ │ ├── IPackageDeleteObserver.struct │ │ │ │ │ │ ├── IPackageDeleteObserver2.struct │ │ │ │ │ │ ├── IPackageInstallObserver.struct │ │ │ │ │ │ ├── IPackageInstallObserver2.struct │ │ │ │ │ │ ├── IPackageInstaller.struct │ │ │ │ │ │ ├── IPackageInstallerCallback.struct │ │ │ │ │ │ ├── IPackageInstallerSession.struct │ │ │ │ │ │ ├── IPackageManager.struct │ │ │ │ │ │ ├── IPackageManagerNative.struct │ │ │ │ │ │ ├── IPackageMoveObserver.struct │ │ │ │ │ │ ├── IPackageStatsObserver.struct │ │ │ │ │ │ ├── IPinItemRequest.struct │ │ │ │ │ │ ├── IShortcutService.struct │ │ │ │ │ │ ├── InstrumentationInfo.struct │ │ │ │ │ │ ├── PackageCleanItem.struct │ │ │ │ │ │ ├── PackageInfoLite.struct │ │ │ │ │ │ ├── PackageStats.struct │ │ │ │ │ │ ├── PermissionGroupInfo.struct │ │ │ │ │ │ ├── PermissionInfo.struct │ │ │ │ │ │ ├── ResolveInfo.struct │ │ │ │ │ │ ├── ServiceInfo.struct │ │ │ │ │ │ ├── UserInfo.struct │ │ │ │ │ │ ├── VerifierDeviceIdentity.struct │ │ │ │ │ │ ├── VersionedPackage.struct │ │ │ │ │ │ └── permission │ │ │ │ │ │ │ └── IRuntimePermissionPresenter.struct │ │ │ │ │ └── res │ │ │ │ │ │ ├── CompatibilityInfo.struct │ │ │ │ │ │ └── ObbInfo.struct │ │ │ │ ├── database │ │ │ │ │ └── IContentObserver.struct │ │ │ │ ├── dvr │ │ │ │ │ ├── IVrComposer.struct │ │ │ │ │ ├── IVrComposerCallback.struct │ │ │ │ │ └── VirtualTouchpadService.struct │ │ │ │ ├── hardware │ │ │ │ │ ├── ICamera.struct │ │ │ │ │ ├── ICameraClient.struct │ │ │ │ │ ├── ICameraService.struct │ │ │ │ │ ├── ICameraServiceListener.struct │ │ │ │ │ ├── ICameraServiceProxy.struct │ │ │ │ │ ├── IConsumerIrService.struct │ │ │ │ │ ├── ISerialManager.struct │ │ │ │ │ ├── camera2 │ │ │ │ │ │ ├── ICameraDeviceCallbacks.struct │ │ │ │ │ │ ├── ICameraDeviceUser.struct │ │ │ │ │ │ └── params │ │ │ │ │ │ │ ├── VendorTagDescriptor.struct │ │ │ │ │ │ │ └── VendorTagDescriptorCache.struct │ │ │ │ │ ├── display │ │ │ │ │ │ ├── IDisplayManager.struct │ │ │ │ │ │ ├── IDisplayManagerCallback.struct │ │ │ │ │ │ └── IVirtualDisplayCallback.struct │ │ │ │ │ ├── fingerprint │ │ │ │ │ │ ├── Fingerprint.struct │ │ │ │ │ │ ├── IFingerprintClientActiveCallback.struct │ │ │ │ │ │ ├── IFingerprintService.struct │ │ │ │ │ │ ├── IFingerprintServiceLockoutResetCallback.struct │ │ │ │ │ │ └── IFingerprintServiceReceiver.struct │ │ │ │ │ ├── hdmi │ │ │ │ │ │ ├── HdmiDeviceInfo.struct │ │ │ │ │ │ ├── HdmiHotplugEvent.struct │ │ │ │ │ │ ├── HdmiPortInfo.struct │ │ │ │ │ │ ├── IHdmiControlCallback.struct │ │ │ │ │ │ ├── IHdmiControlService.struct │ │ │ │ │ │ ├── IHdmiDeviceEventListener.struct │ │ │ │ │ │ ├── IHdmiHotplugEventListener.struct │ │ │ │ │ │ ├── IHdmiInputChangeListener.struct │ │ │ │ │ │ ├── IHdmiMhlVendorCommandListener.struct │ │ │ │ │ │ ├── IHdmiRecordListener.struct │ │ │ │ │ │ ├── IHdmiSystemAudioModeChangeListener.struct │ │ │ │ │ │ └── IHdmiVendorCommandListener.struct │ │ │ │ │ ├── input │ │ │ │ │ │ ├── IInputDevicesChangedListener.struct │ │ │ │ │ │ ├── IInputManager.struct │ │ │ │ │ │ ├── ITabletModeChangedListener.struct │ │ │ │ │ │ ├── InputDeviceIdentifier.struct │ │ │ │ │ │ ├── KeyboardLayout.struct │ │ │ │ │ │ └── TouchCalibration.struct │ │ │ │ │ ├── location │ │ │ │ │ │ ├── ContextHubMessage.struct │ │ │ │ │ │ ├── IActivityRecognitionHardware.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareClient.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareSink.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareWatcher.struct │ │ │ │ │ │ ├── IContextHubCallback.struct │ │ │ │ │ │ ├── IContextHubService.struct │ │ │ │ │ │ ├── IFusedLocationHardware.struct │ │ │ │ │ │ ├── IFusedLocationHardwareSink.struct │ │ │ │ │ │ ├── IGeofenceHardware.struct │ │ │ │ │ │ ├── IGeofenceHardwareCallback.struct │ │ │ │ │ │ ├── IGeofenceHardwareMonitorCallback.struct │ │ │ │ │ │ ├── NanoApp.struct │ │ │ │ │ │ ├── NanoAppFilter.struct │ │ │ │ │ │ └── NanoAppInstanceInfo.struct │ │ │ │ │ ├── radio │ │ │ │ │ │ ├── IRadioService.struct │ │ │ │ │ │ ├── ITuner.struct │ │ │ │ │ │ └── ITunerCallback.struct │ │ │ │ │ ├── soundtrigger │ │ │ │ │ │ └── IRecognitionStatusCallback.struct │ │ │ │ │ └── usb │ │ │ │ │ │ ├── IUsbManager.struct │ │ │ │ │ │ ├── UsbAccessory.struct │ │ │ │ │ │ ├── UsbPort.struct │ │ │ │ │ │ └── UsbPortStatus.struct │ │ │ │ ├── location │ │ │ │ │ ├── Country.struct │ │ │ │ │ ├── Criteria.struct │ │ │ │ │ ├── GeocoderParams.struct │ │ │ │ │ ├── Geofence.struct │ │ │ │ │ ├── IBatchedLocationCallback.struct │ │ │ │ │ ├── ICountryDetector.struct │ │ │ │ │ ├── ICountryListener.struct │ │ │ │ │ ├── IFusedGeofenceHardware.struct │ │ │ │ │ ├── IFusedProvider.struct │ │ │ │ │ ├── IGeocodeProvider.struct │ │ │ │ │ ├── IGeofenceProvider.struct │ │ │ │ │ ├── IGnssMeasurementsListener.struct │ │ │ │ │ ├── IGnssNavigationMessageListener.struct │ │ │ │ │ ├── IGnssStatusListener.struct │ │ │ │ │ ├── IGnssStatusProvider.struct │ │ │ │ │ ├── IGpsGeofenceHardware.struct │ │ │ │ │ ├── ILocationListener.struct │ │ │ │ │ ├── ILocationManager.struct │ │ │ │ │ └── INetInitiatedListener.struct │ │ │ │ ├── media │ │ │ │ │ ├── AudioFocusInfo.struct │ │ │ │ │ ├── AudioFormat.struct │ │ │ │ │ ├── AudioRecordingConfiguration.struct │ │ │ │ │ ├── AudioRoutesInfo.struct │ │ │ │ │ ├── IAudioFocusDispatcher.struct │ │ │ │ │ ├── IAudioRoutesObserver.struct │ │ │ │ │ ├── IAudioService.struct │ │ │ │ │ ├── IMediaHTTPConnection.struct │ │ │ │ │ ├── IMediaHTTPService.struct │ │ │ │ │ ├── IMediaResourceMonitor.struct │ │ │ │ │ ├── IMediaRouterClient.struct │ │ │ │ │ ├── IMediaRouterService.struct │ │ │ │ │ ├── IMediaScannerListener.struct │ │ │ │ │ ├── IMediaScannerService.struct │ │ │ │ │ ├── IPlaybackConfigDispatcher.struct │ │ │ │ │ ├── IPlayer.struct │ │ │ │ │ ├── IRecordingConfigDispatcher.struct │ │ │ │ │ ├── IRemoteDisplayCallback.struct │ │ │ │ │ ├── IRemoteDisplayProvider.struct │ │ │ │ │ ├── IRemoteVolumeController.struct │ │ │ │ │ ├── IRemoteVolumeObserver.struct │ │ │ │ │ ├── IRingtonePlayer.struct │ │ │ │ │ ├── IVolumeController.struct │ │ │ │ │ ├── PlaybackParams.struct │ │ │ │ │ ├── Rating.struct │ │ │ │ │ ├── VolumePolicy.struct │ │ │ │ │ ├── audiopolicy │ │ │ │ │ │ └── IAudioPolicyCallback.struct │ │ │ │ │ ├── midi │ │ │ │ │ │ ├── IBluetoothMidiService.struct │ │ │ │ │ │ ├── IMidiDeviceListener.struct │ │ │ │ │ │ ├── IMidiDeviceOpenCallback.struct │ │ │ │ │ │ ├── IMidiDeviceServer.struct │ │ │ │ │ │ ├── IMidiManager.struct │ │ │ │ │ │ └── MidiDeviceInfo.struct │ │ │ │ │ ├── projection │ │ │ │ │ │ ├── IMediaProjection.struct │ │ │ │ │ │ ├── IMediaProjectionCallback.struct │ │ │ │ │ │ ├── IMediaProjectionManager.struct │ │ │ │ │ │ ├── IMediaProjectionWatcherCallback.struct │ │ │ │ │ │ └── MediaProjectionInfo.struct │ │ │ │ │ ├── session │ │ │ │ │ │ ├── IActiveSessionsListener.struct │ │ │ │ │ │ ├── ICallback.struct │ │ │ │ │ │ ├── IOnMediaKeyListener.struct │ │ │ │ │ │ ├── IOnVolumeKeyLongPressListener.struct │ │ │ │ │ │ ├── ISession.struct │ │ │ │ │ │ ├── ISessionCallback.struct │ │ │ │ │ │ ├── ISessionController.struct │ │ │ │ │ │ ├── ISessionControllerCallback.struct │ │ │ │ │ │ ├── ISessionManager.struct │ │ │ │ │ │ └── ParcelableVolumeInfo.struct │ │ │ │ │ └── tv │ │ │ │ │ │ ├── DvbDeviceInfo.struct │ │ │ │ │ │ ├── ITvInputClient.struct │ │ │ │ │ │ ├── ITvInputHardware.struct │ │ │ │ │ │ ├── ITvInputHardwareCallback.struct │ │ │ │ │ │ ├── ITvInputManager.struct │ │ │ │ │ │ ├── ITvInputManagerCallback.struct │ │ │ │ │ │ ├── ITvInputService.struct │ │ │ │ │ │ ├── ITvInputServiceCallback.struct │ │ │ │ │ │ ├── ITvInputSession.struct │ │ │ │ │ │ ├── ITvInputSessionCallback.struct │ │ │ │ │ │ ├── ITvRemoteProvider.struct │ │ │ │ │ │ ├── ITvRemoteServiceInput.struct │ │ │ │ │ │ ├── TvContentRatingSystemInfo.struct │ │ │ │ │ │ ├── TvInputInfo.struct │ │ │ │ │ │ └── TvTrackInfo.struct │ │ │ │ ├── net │ │ │ │ │ ├── ConnectivityMetricsEvent.struct │ │ │ │ │ ├── DataUsageRequest.struct │ │ │ │ │ ├── DhcpInfo.struct │ │ │ │ │ ├── ICaptivePortal.struct │ │ │ │ │ ├── IConnectivityManager.struct │ │ │ │ │ ├── IEthernetManager.struct │ │ │ │ │ ├── IEthernetServiceListener.struct │ │ │ │ │ ├── IIpConnectivityMetrics.struct │ │ │ │ │ ├── IIpSecService.struct │ │ │ │ │ ├── INetd.struct │ │ │ │ │ ├── INetdEventCallback.struct │ │ │ │ │ ├── INetworkManagementEventObserver.struct │ │ │ │ │ ├── INetworkPolicyListener.struct │ │ │ │ │ ├── INetworkPolicyManager.struct │ │ │ │ │ ├── INetworkRecommendationProvider.struct │ │ │ │ │ ├── INetworkScoreCache.struct │ │ │ │ │ ├── INetworkScoreService.struct │ │ │ │ │ ├── INetworkStatsService.struct │ │ │ │ │ ├── INetworkStatsSession.struct │ │ │ │ │ ├── ITetheringStatsProvider.struct │ │ │ │ │ ├── IpPrefix.struct │ │ │ │ │ ├── IpSecSpiResponse.struct │ │ │ │ │ ├── IpSecTransformResponse.struct │ │ │ │ │ ├── Network.struct │ │ │ │ │ ├── NetworkCapabilities.struct │ │ │ │ │ ├── NetworkKey.struct │ │ │ │ │ ├── NetworkMisc.struct │ │ │ │ │ ├── NetworkPolicy.struct │ │ │ │ │ ├── NetworkQuotaInfo.struct │ │ │ │ │ ├── NetworkScorerAppData.struct │ │ │ │ │ ├── NetworkState.struct │ │ │ │ │ ├── NetworkStats.struct │ │ │ │ │ ├── NetworkTemplate.struct │ │ │ │ │ ├── ProxyInfo.struct │ │ │ │ │ ├── RouteInfo.struct │ │ │ │ │ ├── RssiCurve.struct │ │ │ │ │ ├── ScoredNetwork.struct │ │ │ │ │ ├── UidRange.struct │ │ │ │ │ ├── Uri.struct │ │ │ │ │ ├── lowpan │ │ │ │ │ │ ├── ILowpanEnergyScanCallback.struct │ │ │ │ │ │ ├── ILowpanInterface.struct │ │ │ │ │ │ ├── ILowpanInterfaceListener.struct │ │ │ │ │ │ ├── ILowpanManager.struct │ │ │ │ │ │ ├── ILowpanManagerListener.struct │ │ │ │ │ │ ├── ILowpanNetScanCallback.struct │ │ │ │ │ │ ├── LowpanChannelInfo.struct │ │ │ │ │ │ └── LowpanCredential.struct │ │ │ │ │ ├── metrics │ │ │ │ │ │ └── INetdEventListener.struct │ │ │ │ │ ├── nsd │ │ │ │ │ │ └── INsdManager.struct │ │ │ │ │ ├── sip │ │ │ │ │ │ ├── ISipService.struct │ │ │ │ │ │ ├── ISipSession.struct │ │ │ │ │ │ ├── ISipSessionListener.struct │ │ │ │ │ │ └── SipProfile.struct │ │ │ │ │ └── wifi │ │ │ │ │ │ ├── IANQPDoneCallback.struct │ │ │ │ │ │ ├── IApInterface.struct │ │ │ │ │ │ ├── IClientInterface.struct │ │ │ │ │ │ ├── IInterfaceEventCallback.struct │ │ │ │ │ │ ├── IPnoScanEvent.struct │ │ │ │ │ │ ├── IRttManager.struct │ │ │ │ │ │ ├── IScanEvent.struct │ │ │ │ │ │ ├── IWifiManager.struct │ │ │ │ │ │ ├── IWifiScanner.struct │ │ │ │ │ │ ├── IWifiScannerImpl.struct │ │ │ │ │ │ ├── IWificond.struct │ │ │ │ │ │ ├── WifiActivityEnergyInfo.struct │ │ │ │ │ │ ├── WifiConnectionStatistics.struct │ │ │ │ │ │ ├── aware │ │ │ │ │ │ ├── ConfigRequest.struct │ │ │ │ │ │ ├── IWifiAwareDiscoverySessionCallback.struct │ │ │ │ │ │ ├── IWifiAwareEventCallback.struct │ │ │ │ │ │ ├── IWifiAwareManager.struct │ │ │ │ │ │ ├── PublishConfig.struct │ │ │ │ │ │ └── SubscribeConfig.struct │ │ │ │ │ │ └── p2p │ │ │ │ │ │ └── IWifiP2pManager.struct │ │ │ │ ├── nfc │ │ │ │ │ ├── IAppCallback.struct │ │ │ │ │ ├── INfcAdapter.struct │ │ │ │ │ ├── INfcAdapterExtras.struct │ │ │ │ │ ├── INfcCardEmulation.struct │ │ │ │ │ ├── INfcDta.struct │ │ │ │ │ ├── INfcFCardEmulation.struct │ │ │ │ │ ├── INfcTag.struct │ │ │ │ │ ├── INfcUnlockHandler.struct │ │ │ │ │ ├── ITagRemovedCallback.struct │ │ │ │ │ ├── TechListParcel.struct │ │ │ │ │ ├── TransceiveResult.struct │ │ │ │ │ └── cardemulation │ │ │ │ │ │ └── NfcFServiceInfo.struct │ │ │ │ ├── os │ │ │ │ │ ├── BatteryProperties.struct │ │ │ │ │ ├── Bundle.struct │ │ │ │ │ ├── IAidlTest.struct │ │ │ │ │ ├── IBatteryPropertiesListener.struct │ │ │ │ │ ├── IBatteryPropertiesRegistrar.struct │ │ │ │ │ ├── IBinderThreadPriorityService.struct │ │ │ │ │ ├── ICancellationSignal.struct │ │ │ │ │ ├── IDeviceIdentifiersPolicyService.struct │ │ │ │ │ ├── IDeviceIdleController.struct │ │ │ │ │ ├── IDumpstate.struct │ │ │ │ │ ├── IDumpstateListener.struct │ │ │ │ │ ├── IDumpstateToken.struct │ │ │ │ │ ├── IHardwarePropertiesManager.struct │ │ │ │ │ ├── IIncidentManager.struct │ │ │ │ │ ├── IIncidentReportCompletedListener.struct │ │ │ │ │ ├── IIncidentReportStatusListener.struct │ │ │ │ │ ├── IInstalld.struct │ │ │ │ │ ├── IMaintenanceActivityListener.struct │ │ │ │ │ ├── IMessenger.struct │ │ │ │ │ ├── INetworkActivityListener.struct │ │ │ │ │ ├── INetworkManagementService.struct │ │ │ │ │ ├── IPermissionController.struct │ │ │ │ │ ├── IPowerManager.struct │ │ │ │ │ ├── IProcessInfoService.struct │ │ │ │ │ ├── IProgressListener.struct │ │ │ │ │ ├── IRecoverySystem.struct │ │ │ │ │ ├── IRecoverySystemProgressListener.struct │ │ │ │ │ ├── IRemoteCallback.struct │ │ │ │ │ ├── ISchedulingPolicyService.struct │ │ │ │ │ ├── IThermalEventListener.struct │ │ │ │ │ ├── IThermalService.struct │ │ │ │ │ ├── IUpdateEngine.struct │ │ │ │ │ ├── IUpdateEngineCallback.struct │ │ │ │ │ ├── IUpdateLock.struct │ │ │ │ │ ├── IUserManager.struct │ │ │ │ │ ├── IVibratorService.struct │ │ │ │ │ ├── Messenger.struct │ │ │ │ │ ├── ParcelFileDescriptor.struct │ │ │ │ │ ├── ParcelUuid.struct │ │ │ │ │ ├── PersistableBundle.struct │ │ │ │ │ ├── PowerSaveState.struct │ │ │ │ │ ├── SharedMemory.struct │ │ │ │ │ ├── UserHandle.struct │ │ │ │ │ ├── WorkSource.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── IEmptyService.struct │ │ │ │ │ │ ├── IParcelFileDescriptorPeer.struct │ │ │ │ │ │ ├── ISeccompIsolatedService.struct │ │ │ │ │ │ ├── ISecondary.struct │ │ │ │ │ │ └── ISharedMemoryService.struct │ │ │ │ │ └── storage │ │ │ │ │ │ ├── DiskInfo.struct │ │ │ │ │ │ ├── IObbActionListener.struct │ │ │ │ │ │ ├── IStorageEventListener.struct │ │ │ │ │ │ ├── IStorageManager.struct │ │ │ │ │ │ ├── IStorageShutdownObserver.struct │ │ │ │ │ │ ├── VolumeInfo.struct │ │ │ │ │ │ └── VolumeRecord.struct │ │ │ │ ├── print │ │ │ │ │ ├── ILayoutResultCallback.struct │ │ │ │ │ ├── IPrintClient.struct │ │ │ │ │ ├── IPrintDocumentAdapter.struct │ │ │ │ │ ├── IPrintDocumentAdapterObserver.struct │ │ │ │ │ ├── IPrintJobStateChangeListener.struct │ │ │ │ │ ├── IPrintManager.struct │ │ │ │ │ ├── IPrintServicesChangeListener.struct │ │ │ │ │ ├── IPrintSpooler.struct │ │ │ │ │ ├── IPrintSpoolerCallbacks.struct │ │ │ │ │ ├── IPrintSpoolerClient.struct │ │ │ │ │ ├── IPrinterDiscoveryObserver.struct │ │ │ │ │ ├── IWriteResultCallback.struct │ │ │ │ │ ├── PageRange.struct │ │ │ │ │ ├── PrintAttributes.struct │ │ │ │ │ └── PrintJobInfo.struct │ │ │ │ ├── printservice │ │ │ │ │ ├── IPrintService.struct │ │ │ │ │ ├── IPrintServiceClient.struct │ │ │ │ │ ├── PrintServiceInfo.struct │ │ │ │ │ └── recommendation │ │ │ │ │ │ ├── IRecommendationService.struct │ │ │ │ │ │ ├── IRecommendationServiceCallbacks.struct │ │ │ │ │ │ ├── IRecommendationsChangeListener.struct │ │ │ │ │ │ └── RecommendationInfo.struct │ │ │ │ ├── security │ │ │ │ │ ├── IKeyChainAliasCallback.struct │ │ │ │ │ ├── IKeyChainService.struct │ │ │ │ │ ├── IKeystoreService.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── IIsolatedService.struct │ │ │ │ │ │ └── activity │ │ │ │ │ │ │ └── ISecureRandomService.struct │ │ │ │ │ └── keymaster │ │ │ │ │ │ ├── ExportResult.struct │ │ │ │ │ │ ├── IKeyAttestationApplicationIdProvider.struct │ │ │ │ │ │ ├── KeymasterBlob.struct │ │ │ │ │ │ └── OperationResult.struct │ │ │ │ ├── service │ │ │ │ │ ├── autofill │ │ │ │ │ │ ├── IAutoFillService.struct │ │ │ │ │ │ ├── IFillCallback.struct │ │ │ │ │ │ └── ISaveCallback.struct │ │ │ │ │ ├── carrier │ │ │ │ │ │ ├── ICarrierMessagingCallback.struct │ │ │ │ │ │ ├── ICarrierMessagingService.struct │ │ │ │ │ │ ├── ICarrierService.struct │ │ │ │ │ │ └── MessagePdu.struct │ │ │ │ │ ├── chooser │ │ │ │ │ │ ├── ChooserTarget.struct │ │ │ │ │ │ ├── IChooserTargetResult.struct │ │ │ │ │ │ └── IChooserTargetService.struct │ │ │ │ │ ├── dreams │ │ │ │ │ │ ├── IDreamManager.struct │ │ │ │ │ │ └── IDreamService.struct │ │ │ │ │ ├── euicc │ │ │ │ │ │ ├── IDeleteSubscriptionCallback.struct │ │ │ │ │ │ ├── IDownloadSubscriptionCallback.struct │ │ │ │ │ │ ├── IEraseSubscriptionsCallback.struct │ │ │ │ │ │ ├── IEuiccService.struct │ │ │ │ │ │ ├── IGetDefaultDownloadableSubscriptionListCallback.struct │ │ │ │ │ │ ├── IGetDownloadableSubscriptionMetadataCallback.struct │ │ │ │ │ │ ├── IGetEidCallback.struct │ │ │ │ │ │ ├── IGetEuiccInfoCallback.struct │ │ │ │ │ │ ├── IGetEuiccProfileInfoListCallback.struct │ │ │ │ │ │ ├── IRetainSubscriptionsForFactoryResetCallback.struct │ │ │ │ │ │ ├── ISwitchToSubscriptionCallback.struct │ │ │ │ │ │ └── IUpdateSubscriptionNicknameCallback.struct │ │ │ │ │ ├── gatekeeper │ │ │ │ │ │ └── IGateKeeperService.struct │ │ │ │ │ ├── media │ │ │ │ │ │ ├── IMediaBrowserService.struct │ │ │ │ │ │ └── IMediaBrowserServiceCallbacks.struct │ │ │ │ │ ├── notification │ │ │ │ │ │ ├── Adjustment.struct │ │ │ │ │ │ ├── Condition.struct │ │ │ │ │ │ ├── IConditionListener.struct │ │ │ │ │ │ ├── IConditionProvider.struct │ │ │ │ │ │ ├── INotificationListener.struct │ │ │ │ │ │ ├── IStatusBarNotificationHolder.struct │ │ │ │ │ │ └── NotificationRankingUpdate.struct │ │ │ │ │ ├── oemlock │ │ │ │ │ │ └── IOemLockService.struct │ │ │ │ │ ├── persistentdata │ │ │ │ │ │ └── IPersistentDataBlockService.struct │ │ │ │ │ ├── quicksettings │ │ │ │ │ │ ├── IQSService.struct │ │ │ │ │ │ └── IQSTileService.struct │ │ │ │ │ ├── resolver │ │ │ │ │ │ ├── IResolverRankerResult.struct │ │ │ │ │ │ ├── IResolverRankerService.struct │ │ │ │ │ │ └── ResolverTarget.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── ITrustAgentService.struct │ │ │ │ │ │ └── ITrustAgentServiceCallback.struct │ │ │ │ │ ├── voice │ │ │ │ │ │ ├── IVoiceInteractionService.struct │ │ │ │ │ │ ├── IVoiceInteractionSession.struct │ │ │ │ │ │ └── IVoiceInteractionSessionService.struct │ │ │ │ │ ├── vr │ │ │ │ │ │ ├── IPersistentVrStateCallbacks.struct │ │ │ │ │ │ ├── IVrListener.struct │ │ │ │ │ │ ├── IVrManager.struct │ │ │ │ │ │ └── IVrStateCallbacks.struct │ │ │ │ │ └── wallpaper │ │ │ │ │ │ ├── IWallpaperConnection.struct │ │ │ │ │ │ ├── IWallpaperEngine.struct │ │ │ │ │ │ └── IWallpaperService.struct │ │ │ │ ├── speech │ │ │ │ │ ├── IRecognitionListener.struct │ │ │ │ │ ├── IRecognitionService.struct │ │ │ │ │ └── tts │ │ │ │ │ │ ├── ITextToSpeechCallback.struct │ │ │ │ │ │ └── ITextToSpeechService.struct │ │ │ │ ├── support │ │ │ │ │ ├── customtabs │ │ │ │ │ │ ├── ICustomTabsCallback.struct │ │ │ │ │ │ ├── ICustomTabsService.struct │ │ │ │ │ │ └── IPostMessageService.struct │ │ │ │ │ └── v4 │ │ │ │ │ │ ├── app │ │ │ │ │ │ └── INotificationSideChannel.struct │ │ │ │ │ │ ├── media │ │ │ │ │ │ ├── MediaDescriptionCompat.struct │ │ │ │ │ │ ├── MediaMetadataCompat.struct │ │ │ │ │ │ ├── RatingCompat.struct │ │ │ │ │ │ └── session │ │ │ │ │ │ │ ├── IMediaControllerCallback.struct │ │ │ │ │ │ │ ├── IMediaSession.struct │ │ │ │ │ │ │ └── ParcelableVolumeInfo.struct │ │ │ │ │ │ └── os │ │ │ │ │ │ └── IResultReceiver.struct │ │ │ │ ├── telecom │ │ │ │ │ ├── CallAudioState.struct │ │ │ │ │ ├── DisconnectCause.struct │ │ │ │ │ └── VideoProfile.struct │ │ │ │ ├── telephony │ │ │ │ │ ├── CellInfo.struct │ │ │ │ │ ├── DataConnectionRealTimeInfo.struct │ │ │ │ │ ├── IccOpenLogicalChannelResponse.struct │ │ │ │ │ ├── ModemActivityInfo.struct │ │ │ │ │ ├── NeighboringCellInfo.struct │ │ │ │ │ ├── PreciseCallState.struct │ │ │ │ │ ├── PreciseDataConnectionState.struct │ │ │ │ │ ├── RadioAccessFamily.struct │ │ │ │ │ ├── ServiceState.struct │ │ │ │ │ ├── SubscriptionPlan.struct │ │ │ │ │ ├── TelephonyHistogram.struct │ │ │ │ │ ├── euicc │ │ │ │ │ │ └── EuiccInfo.struct │ │ │ │ │ └── mbms │ │ │ │ │ │ ├── FileInfo.struct │ │ │ │ │ │ ├── IDownloadStateCallback.struct │ │ │ │ │ │ ├── IMbmsDownloadSessionCallback.struct │ │ │ │ │ │ ├── IMbmsStreamingSessionCallback.struct │ │ │ │ │ │ ├── IStreamingServiceCallback.struct │ │ │ │ │ │ ├── StreamingServiceInfo.struct │ │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── IMbmsDownloadService.struct │ │ │ │ │ │ └── IMbmsStreamingService.struct │ │ │ │ ├── tests │ │ │ │ │ └── binder │ │ │ │ │ │ └── IBenchmark.struct │ │ │ │ ├── text │ │ │ │ │ └── style │ │ │ │ │ │ └── SuggestionSpan.struct │ │ │ │ ├── tpm_manager │ │ │ │ │ ├── ITpmManagerClient.struct │ │ │ │ │ ├── ITpmNvram.struct │ │ │ │ │ └── ITpmOwnership.struct │ │ │ │ ├── trunks │ │ │ │ │ ├── ITrunks.struct │ │ │ │ │ └── ITrunksClient.struct │ │ │ │ ├── util │ │ │ │ │ ├── IRemoteMemoryIntArray.struct │ │ │ │ │ └── MemoryIntArray.struct │ │ │ │ ├── view │ │ │ │ │ ├── AppTransitionAnimationSpec.struct │ │ │ │ │ ├── IAppTransitionAnimationSpecsFuture.struct │ │ │ │ │ ├── IApplicationToken.struct │ │ │ │ │ ├── IDockedStackListener.struct │ │ │ │ │ ├── IGraphicsStats.struct │ │ │ │ │ ├── IGraphicsStatsCallback.struct │ │ │ │ │ ├── IInputFilter.struct │ │ │ │ │ ├── IInputFilterHost.struct │ │ │ │ │ ├── IOnKeyguardExitResult.struct │ │ │ │ │ ├── IPinnedStackController.struct │ │ │ │ │ ├── IPinnedStackListener.struct │ │ │ │ │ ├── IRotationWatcher.struct │ │ │ │ │ ├── IWallpaperVisibilityListener.struct │ │ │ │ │ ├── IWindow.struct │ │ │ │ │ ├── IWindowFocusObserver.struct │ │ │ │ │ ├── IWindowId.struct │ │ │ │ │ ├── IWindowManager.struct │ │ │ │ │ ├── IWindowSession.struct │ │ │ │ │ ├── IWindowSessionCallback.struct │ │ │ │ │ ├── KeyEvent.struct │ │ │ │ │ ├── WindowAnimationFrameStats.struct │ │ │ │ │ ├── WindowContentFrameStats.struct │ │ │ │ │ ├── accessibility │ │ │ │ │ │ ├── IAccessibilityInteractionConnection.struct │ │ │ │ │ │ ├── IAccessibilityInteractionConnectionCallback.struct │ │ │ │ │ │ ├── IAccessibilityManager.struct │ │ │ │ │ │ └── IAccessibilityManagerClient.struct │ │ │ │ │ ├── autofill │ │ │ │ │ │ ├── AutofillId.struct │ │ │ │ │ │ ├── AutofillValue.struct │ │ │ │ │ │ ├── IAutoFillAuthCallback.struct │ │ │ │ │ │ ├── IAutoFillManager.struct │ │ │ │ │ │ ├── IAutoFillManagerClient.struct │ │ │ │ │ │ └── IAutofillWindowPresenter.struct │ │ │ │ │ ├── inputmethod │ │ │ │ │ │ ├── CompletionInfo.struct │ │ │ │ │ │ ├── CorrectionInfo.struct │ │ │ │ │ │ ├── EditorInfo.struct │ │ │ │ │ │ ├── ExtractedText.struct │ │ │ │ │ │ ├── ExtractedTextRequest.struct │ │ │ │ │ │ ├── InputBinding.struct │ │ │ │ │ │ └── InputMethodSubtype.struct │ │ │ │ │ └── textservice │ │ │ │ │ │ ├── SuggestionsInfo.struct │ │ │ │ │ │ └── TextInfo.struct │ │ │ │ ├── webkit │ │ │ │ │ ├── IWebViewUpdateService.struct │ │ │ │ │ └── WebViewProviderInfo.struct │ │ │ │ └── widget │ │ │ │ │ └── RemoteViews.struct │ │ │ ├── classPaths.txt │ │ │ ├── com │ │ │ │ ├── android │ │ │ │ │ ├── bips │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ └── SizeD.struct │ │ │ │ │ │ └── render │ │ │ │ │ │ │ └── IPdfRender.struct │ │ │ │ │ ├── car │ │ │ │ │ │ ├── radio │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ ├── IRadioCallback.struct │ │ │ │ │ │ │ │ ├── IRadioManager.struct │ │ │ │ │ │ │ │ └── RadioRds.struct │ │ │ │ │ │ ├── stream │ │ │ │ │ │ │ ├── IStreamConsumer.struct │ │ │ │ │ │ │ └── IStreamService.struct │ │ │ │ │ │ └── vehiclemonitor │ │ │ │ │ │ │ ├── IVehicleMonitor.struct │ │ │ │ │ │ │ └── IVehicleMonitorListener.struct │ │ │ │ │ ├── compatibility │ │ │ │ │ │ └── common │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── devicepolicy │ │ │ │ │ │ │ └── provisioning │ │ │ │ │ │ │ └── IBooleanCallback.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── comp │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ └── hostside │ │ │ │ │ │ │ │ ├── IMyService.struct │ │ │ │ │ │ │ │ ├── INetworkStateObserver.struct │ │ │ │ │ │ │ │ └── IRemoteSocketFactory.struct │ │ │ │ │ │ └── verifier │ │ │ │ │ │ │ └── projection │ │ │ │ │ │ │ └── IProjectionService.struct │ │ │ │ │ ├── development │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ ├── emailcommon │ │ │ │ │ │ ├── provider │ │ │ │ │ │ │ └── Policy.struct │ │ │ │ │ │ └── service │ │ │ │ │ │ │ ├── HostAuthCompat.struct │ │ │ │ │ │ │ ├── IAccountService.struct │ │ │ │ │ │ │ ├── IEmailService.struct │ │ │ │ │ │ │ ├── IEmailServiceCallback.struct │ │ │ │ │ │ │ └── IPolicyService.struct │ │ │ │ │ ├── hotspot2 │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── IOSUAccessor.struct │ │ │ │ │ │ │ └── OSUData.struct │ │ │ │ │ │ └── flow │ │ │ │ │ │ │ └── IFlowService.struct │ │ │ │ │ ├── ims │ │ │ │ │ │ ├── IRcsPresenceListener.struct │ │ │ │ │ │ ├── ImsConfigListener.struct │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── IImsCallSession.struct │ │ │ │ │ │ │ ├── IImsCallSessionListener.struct │ │ │ │ │ │ │ ├── IImsConfig.struct │ │ │ │ │ │ │ ├── IImsEcbm.struct │ │ │ │ │ │ │ ├── IImsEcbmListener.struct │ │ │ │ │ │ │ ├── IImsExternalCallStateListener.struct │ │ │ │ │ │ │ ├── IImsFeatureStatusCallback.struct │ │ │ │ │ │ │ ├── IImsMultiEndpoint.struct │ │ │ │ │ │ │ ├── IImsRegistrationListener.struct │ │ │ │ │ │ │ ├── IImsService.struct │ │ │ │ │ │ │ ├── IImsServiceController.struct │ │ │ │ │ │ │ ├── IImsServiceFeatureListener.struct │ │ │ │ │ │ │ ├── IImsStreamMediaSession.struct │ │ │ │ │ │ │ ├── IImsUt.struct │ │ │ │ │ │ │ ├── IImsUtListener.struct │ │ │ │ │ │ │ ├── IImsVideoCallCallback.struct │ │ │ │ │ │ │ ├── IImsVideoCallProvider.struct │ │ │ │ │ │ │ ├── IRcsPresence.struct │ │ │ │ │ │ │ ├── IRcsService.struct │ │ │ │ │ │ │ └── uce │ │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ ├── IOptionsListener.struct │ │ │ │ │ │ │ └── IOptionsService.struct │ │ │ │ │ │ │ ├── presence │ │ │ │ │ │ │ ├── IPresenceListener.struct │ │ │ │ │ │ │ └── IPresenceService.struct │ │ │ │ │ │ │ └── uceservice │ │ │ │ │ │ │ ├── IUceListener.struct │ │ │ │ │ │ │ └── IUceService.struct │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── IAppOpsCallback.struct │ │ │ │ │ │ │ ├── IAppOpsService.struct │ │ │ │ │ │ │ ├── IAssistScreenshotReceiver.struct │ │ │ │ │ │ │ ├── IBatteryStats.struct │ │ │ │ │ │ │ ├── IMediaContainerService.struct │ │ │ │ │ │ │ ├── ISoundTriggerService.struct │ │ │ │ │ │ │ ├── IVoiceInteractionManagerService.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSessionListener.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSessionShowCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractor.struct │ │ │ │ │ │ │ ├── IVoiceInteractorCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractorRequest.struct │ │ │ │ │ │ │ └── procstats │ │ │ │ │ │ │ │ └── IProcessStats.struct │ │ │ │ │ │ ├── appwidget │ │ │ │ │ │ │ ├── IAppWidgetHost.struct │ │ │ │ │ │ │ └── IAppWidgetService.struct │ │ │ │ │ │ ├── backup │ │ │ │ │ │ │ ├── IBackupTransport.struct │ │ │ │ │ │ │ └── IObbBackupService.struct │ │ │ │ │ │ ├── car │ │ │ │ │ │ │ └── ICarServiceHelper.struct │ │ │ │ │ │ ├── inputmethod │ │ │ │ │ │ │ └── IInputContentUriToken.struct │ │ │ │ │ │ ├── location │ │ │ │ │ │ │ ├── ILocationProvider.struct │ │ │ │ │ │ │ └── ProviderProperties.struct │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ ├── LegacyVpnInfo.struct │ │ │ │ │ │ │ ├── VpnInfo.struct │ │ │ │ │ │ │ └── VpnProfile.struct │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ ├── AppFuseMount.struct │ │ │ │ │ │ │ ├── IDropBoxManagerService.struct │ │ │ │ │ │ │ ├── IParcelFileDescriptorFactory.struct │ │ │ │ │ │ │ ├── IResultReceiver.struct │ │ │ │ │ │ │ └── IShellCallback.struct │ │ │ │ │ │ ├── policy │ │ │ │ │ │ │ ├── IKeyguardDismissCallback.struct │ │ │ │ │ │ │ ├── IKeyguardDrawnCallback.struct │ │ │ │ │ │ │ ├── IKeyguardExitCallback.struct │ │ │ │ │ │ │ ├── IKeyguardService.struct │ │ │ │ │ │ │ ├── IKeyguardStateCallback.struct │ │ │ │ │ │ │ └── IShortcutService.struct │ │ │ │ │ │ ├── statusbar │ │ │ │ │ │ │ ├── IStatusBar.struct │ │ │ │ │ │ │ ├── IStatusBarService.struct │ │ │ │ │ │ │ └── NotificationVisibility.struct │ │ │ │ │ │ ├── telecom │ │ │ │ │ │ │ ├── ICallScreeningAdapter.struct │ │ │ │ │ │ │ ├── ICallScreeningService.struct │ │ │ │ │ │ │ ├── IConnectionService.struct │ │ │ │ │ │ │ ├── IConnectionServiceAdapter.struct │ │ │ │ │ │ │ ├── IInCallAdapter.struct │ │ │ │ │ │ │ ├── IInCallService.struct │ │ │ │ │ │ │ ├── ITelecomService.struct │ │ │ │ │ │ │ ├── IVideoCallback.struct │ │ │ │ │ │ │ ├── IVideoProvider.struct │ │ │ │ │ │ │ └── RemoteServiceCallback.struct │ │ │ │ │ │ ├── telephony │ │ │ │ │ │ │ ├── CallInfo.struct │ │ │ │ │ │ │ ├── IApnSourceService.struct │ │ │ │ │ │ │ ├── ICallService.struct │ │ │ │ │ │ │ ├── ICallServiceAdapter.struct │ │ │ │ │ │ │ ├── ICarrierConfigLoader.struct │ │ │ │ │ │ │ ├── IIccPhoneBook.struct │ │ │ │ │ │ │ ├── IMms.struct │ │ │ │ │ │ │ ├── IOnSubscriptionsChangedListener.struct │ │ │ │ │ │ │ ├── IPhoneStateListener.struct │ │ │ │ │ │ │ ├── IPhoneSubInfo.struct │ │ │ │ │ │ │ ├── ISms.struct │ │ │ │ │ │ │ ├── ISub.struct │ │ │ │ │ │ │ ├── ISubscriptionListener.struct │ │ │ │ │ │ │ ├── ITelephony.struct │ │ │ │ │ │ │ ├── ITelephonyRegistry.struct │ │ │ │ │ │ │ ├── IWapPushManager.struct │ │ │ │ │ │ │ ├── OperatorInfo.struct │ │ │ │ │ │ │ ├── SmsRawData.struct │ │ │ │ │ │ │ ├── euicc │ │ │ │ │ │ │ │ └── IEuiccController.struct │ │ │ │ │ │ │ └── uicc │ │ │ │ │ │ │ │ └── AdnRecord.struct │ │ │ │ │ │ ├── textservice │ │ │ │ │ │ │ ├── ISpellCheckerService.struct │ │ │ │ │ │ │ ├── ISpellCheckerServiceCallback.struct │ │ │ │ │ │ │ ├── ISpellCheckerSession.struct │ │ │ │ │ │ │ ├── ISpellCheckerSessionListener.struct │ │ │ │ │ │ │ ├── ITextServicesManager.struct │ │ │ │ │ │ │ └── ITextServicesSessionListener.struct │ │ │ │ │ │ ├── view │ │ │ │ │ │ │ ├── IDragAndDropPermissions.struct │ │ │ │ │ │ │ ├── IInputContext.struct │ │ │ │ │ │ │ ├── IInputContextCallback.struct │ │ │ │ │ │ │ ├── IInputMethod.struct │ │ │ │ │ │ │ ├── IInputMethodClient.struct │ │ │ │ │ │ │ ├── IInputMethodManager.struct │ │ │ │ │ │ │ ├── IInputMethodSession.struct │ │ │ │ │ │ │ └── IInputSessionCallback.struct │ │ │ │ │ │ └── widget │ │ │ │ │ │ │ ├── ICheckCredentialProgressCallback.struct │ │ │ │ │ │ │ ├── ILockSettings.struct │ │ │ │ │ │ │ ├── IRemoteViewsAdapterConnection.struct │ │ │ │ │ │ │ └── IRemoteViewsFactory.struct │ │ │ │ │ ├── keychain │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ └── IKeyChainServiceTestSupport.struct │ │ │ │ │ ├── music │ │ │ │ │ │ └── IMediaPlaybackService.struct │ │ │ │ │ ├── net │ │ │ │ │ │ ├── IProxyCallback.struct │ │ │ │ │ │ ├── IProxyPortListener.struct │ │ │ │ │ │ └── IProxyService.struct │ │ │ │ │ ├── onemedia │ │ │ │ │ │ ├── IPlayerCallback.struct │ │ │ │ │ │ ├── IPlayerService.struct │ │ │ │ │ │ └── playback │ │ │ │ │ │ │ └── IRequestCallback.struct │ │ │ │ │ ├── phone │ │ │ │ │ │ ├── INetworkQueryService.struct │ │ │ │ │ │ └── INetworkQueryServiceCallback.struct │ │ │ │ │ ├── printspooler │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ ├── IPdfEditor.struct │ │ │ │ │ │ │ └── IPdfRenderer.struct │ │ │ │ │ ├── providers │ │ │ │ │ │ └── media │ │ │ │ │ │ │ └── IMtpService.struct │ │ │ │ │ ├── rpc_performance │ │ │ │ │ │ └── IService.struct │ │ │ │ │ ├── servicestests │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ ├── ICmdReceiverService.struct │ │ │ │ │ │ │ └── INetworkStateObserver.struct │ │ │ │ │ ├── smspush │ │ │ │ │ │ └── unitTests │ │ │ │ │ │ │ └── IDataVerify.struct │ │ │ │ │ ├── strictmodetest │ │ │ │ │ │ └── IService.struct │ │ │ │ │ ├── systemui │ │ │ │ │ │ └── recents │ │ │ │ │ │ │ ├── IRecentsNonSystemUserCallbacks.struct │ │ │ │ │ │ │ └── IRecentsSystemUserCallbacks.struct │ │ │ │ │ ├── testing │ │ │ │ │ │ └── alarmservice │ │ │ │ │ │ │ └── Alarm.struct │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ │ └── basicprojectwithaidl │ │ │ │ │ │ │ └── ITest.struct │ │ │ │ │ └── tv │ │ │ │ │ │ ├── settings │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── IActivityTransitionBitmapProvider.struct │ │ │ │ │ │ ├── testing │ │ │ │ │ │ └── testinput │ │ │ │ │ │ │ └── ITestInputControl.struct │ │ │ │ │ │ └── tuner │ │ │ │ │ │ └── exoplayer │ │ │ │ │ │ └── ffmpeg │ │ │ │ │ │ └── IFfmpegDecoder.struct │ │ │ │ └── example │ │ │ │ │ └── android │ │ │ │ │ └── apis │ │ │ │ │ └── app │ │ │ │ │ ├── IRemoteService.struct │ │ │ │ │ ├── IRemoteServiceCallback.struct │ │ │ │ │ └── ISecondary.struct │ │ │ ├── org │ │ │ │ └── codeaurora │ │ │ │ │ ├── ims │ │ │ │ │ └── internal │ │ │ │ │ │ ├── IQtiImsExt.struct │ │ │ │ │ │ └── IQtiImsExtListener.struct │ │ │ │ │ └── internal │ │ │ │ │ └── IExtTelephony.struct │ │ │ └── test │ │ │ │ └── ParcelableTest.struct │ │ ├── android10 │ │ │ ├── android │ │ │ │ ├── IGraphicBufferSource.struct │ │ │ │ ├── IOMXBufferSource.struct │ │ │ │ ├── IOMXNode.struct │ │ │ │ ├── accessibilityservice │ │ │ │ │ ├── AccessibilityServiceInfo.struct │ │ │ │ │ ├── IAccessibilityServiceClient.struct │ │ │ │ │ └── IAccessibilityServiceConnection.struct │ │ │ │ ├── accounts │ │ │ │ │ ├── Account.struct │ │ │ │ │ ├── AuthenticatorDescription.struct │ │ │ │ │ ├── IAccountAuthenticator.struct │ │ │ │ │ ├── IAccountAuthenticatorResponse.struct │ │ │ │ │ ├── IAccountManager.struct │ │ │ │ │ └── IAccountManagerResponse.struct │ │ │ │ ├── aidl │ │ │ │ │ ├── loggable │ │ │ │ │ │ ├── ILoggableInterface.struct │ │ │ │ │ │ └── ILoggableInterfaceNdk.struct │ │ │ │ │ └── tests │ │ │ │ │ │ ├── INamedCallback.struct │ │ │ │ │ │ └── StructuredParcelable.struct │ │ │ │ ├── apex │ │ │ │ │ ├── ApexInfo.struct │ │ │ │ │ ├── ApexInfoList.struct │ │ │ │ │ ├── ApexSessionInfo.struct │ │ │ │ │ └── IApexService.struct │ │ │ │ ├── app │ │ │ │ │ ├── AutomaticZenRule.struct │ │ │ │ │ ├── ContentProviderHolder.struct │ │ │ │ │ ├── IActivityController.struct │ │ │ │ │ ├── IActivityManager.struct │ │ │ │ │ ├── IActivityPendingResult.struct │ │ │ │ │ ├── IActivityTaskManager.struct │ │ │ │ │ ├── IAlarmCompleteListener.struct │ │ │ │ │ ├── IAlarmListener.struct │ │ │ │ │ ├── IAlarmManager.struct │ │ │ │ │ ├── IAppTask.struct │ │ │ │ │ ├── IApplicationThread.struct │ │ │ │ │ ├── IAssistDataReceiver.struct │ │ │ │ │ ├── IBackupAgent.struct │ │ │ │ │ ├── IEphemeralResolver.struct │ │ │ │ │ ├── IInstantAppResolver.struct │ │ │ │ │ ├── IInstrumentationWatcher.struct │ │ │ │ │ ├── INotificationManager.struct │ │ │ │ │ ├── IProcessObserver.struct │ │ │ │ │ ├── IRequestFinishCallback.struct │ │ │ │ │ ├── ISearchManager.struct │ │ │ │ │ ├── ISearchManagerCallback.struct │ │ │ │ │ ├── IServiceConnection.struct │ │ │ │ │ ├── IStopUserCallback.struct │ │ │ │ │ ├── ITaskStackListener.struct │ │ │ │ │ ├── ITransientNotification.struct │ │ │ │ │ ├── IUiAutomationConnection.struct │ │ │ │ │ ├── IUiModeManager.struct │ │ │ │ │ ├── IUidObserver.struct │ │ │ │ │ ├── IUriGrantsManager.struct │ │ │ │ │ ├── IUserSwitchObserver.struct │ │ │ │ │ ├── IWallpaperManager.struct │ │ │ │ │ ├── IWallpaperManagerCallback.struct │ │ │ │ │ ├── Notification$Action.struct │ │ │ │ │ ├── Notification$BubbleMetadata.struct │ │ │ │ │ ├── Notification.struct │ │ │ │ │ ├── NotificationChannel.struct │ │ │ │ │ ├── NotificationChannelGroup.struct │ │ │ │ │ ├── PendingIntent.struct │ │ │ │ │ ├── PictureInPictureParams.struct │ │ │ │ │ ├── ProfilerInfo.struct │ │ │ │ │ ├── RemoteInput.struct │ │ │ │ │ ├── SearchableInfo.struct │ │ │ │ │ ├── Vr2dDisplayProperties.struct │ │ │ │ │ ├── WaitResult.struct │ │ │ │ │ ├── WallpaperColors.struct │ │ │ │ │ ├── WallpaperInfo.struct │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── IDeviceAdminService.struct │ │ │ │ │ │ ├── IDevicePolicyManager.struct │ │ │ │ │ │ ├── NetworkEvent.struct │ │ │ │ │ │ ├── PasswordMetrics.struct │ │ │ │ │ │ ├── StartInstallingUpdateCallback.struct │ │ │ │ │ │ ├── SystemUpdateInfo.struct │ │ │ │ │ │ ├── SystemUpdatePolicy$ValidationFailedException.struct │ │ │ │ │ │ └── SystemUpdatePolicy.struct │ │ │ │ │ ├── assist │ │ │ │ │ │ ├── AssistContent.struct │ │ │ │ │ │ ├── AssistStructure$HtmlInfoNode.struct │ │ │ │ │ │ └── AssistStructure.struct │ │ │ │ │ ├── backup │ │ │ │ │ │ ├── BackupProgress.struct │ │ │ │ │ │ ├── IBackupCallback.struct │ │ │ │ │ │ ├── IBackupManager.struct │ │ │ │ │ │ ├── IBackupManagerMonitor.struct │ │ │ │ │ │ ├── IBackupObserver.struct │ │ │ │ │ │ ├── IFullBackupRestoreObserver.struct │ │ │ │ │ │ ├── IRestoreObserver.struct │ │ │ │ │ │ ├── IRestoreSession.struct │ │ │ │ │ │ ├── ISelectBackupTransportCallback.struct │ │ │ │ │ │ ├── RestoreDescription.struct │ │ │ │ │ │ └── RestoreSet.struct │ │ │ │ │ ├── contentsuggestions │ │ │ │ │ │ ├── ClassificationsRequest.struct │ │ │ │ │ │ ├── ContentClassification.struct │ │ │ │ │ │ ├── ContentSelection.struct │ │ │ │ │ │ ├── IClassificationsCallback.struct │ │ │ │ │ │ ├── IContentSuggestionsManager.struct │ │ │ │ │ │ ├── ISelectionsCallback.struct │ │ │ │ │ │ └── SelectionsRequest.struct │ │ │ │ │ ├── job │ │ │ │ │ │ ├── IJobCallback.struct │ │ │ │ │ │ ├── IJobScheduler.struct │ │ │ │ │ │ ├── IJobService.struct │ │ │ │ │ │ ├── JobInfo$TriggerContentUri.struct │ │ │ │ │ │ ├── JobInfo.struct │ │ │ │ │ │ ├── JobParameters.struct │ │ │ │ │ │ └── JobWorkItem.struct │ │ │ │ │ ├── prediction │ │ │ │ │ │ ├── AppPredictionContext.struct │ │ │ │ │ │ ├── AppPredictionSessionId.struct │ │ │ │ │ │ ├── AppTargetEvent.struct │ │ │ │ │ │ ├── IPredictionCallback.struct │ │ │ │ │ │ └── IPredictionManager.struct │ │ │ │ │ ├── role │ │ │ │ │ │ ├── IOnRoleHoldersChangedListener.struct │ │ │ │ │ │ ├── IRoleController.struct │ │ │ │ │ │ └── IRoleManager.struct │ │ │ │ │ ├── servertransaction │ │ │ │ │ │ └── ClientTransaction.struct │ │ │ │ │ ├── slice │ │ │ │ │ │ ├── ISliceListener.struct │ │ │ │ │ │ ├── ISliceManager.struct │ │ │ │ │ │ ├── Slice.struct │ │ │ │ │ │ ├── SliceItem.struct │ │ │ │ │ │ └── SliceSpec.struct │ │ │ │ │ ├── stubs │ │ │ │ │ │ └── ISecondary.struct │ │ │ │ │ ├── timedetector │ │ │ │ │ │ ├── ITimeDetectorService.struct │ │ │ │ │ │ └── TimeSignal.struct │ │ │ │ │ ├── timezone │ │ │ │ │ │ ├── ICallback.struct │ │ │ │ │ │ ├── IRulesManager.struct │ │ │ │ │ │ └── RulesState.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── IStrongAuthTracker.struct │ │ │ │ │ │ ├── ITrustListener.struct │ │ │ │ │ │ └── ITrustManager.struct │ │ │ │ │ └── usage │ │ │ │ │ │ ├── CacheQuotaHint.struct │ │ │ │ │ │ ├── ExternalStorageStats.struct │ │ │ │ │ │ ├── ICacheQuotaService.struct │ │ │ │ │ │ ├── IStorageStatsManager.struct │ │ │ │ │ │ ├── IUsageStatsManager.struct │ │ │ │ │ │ ├── StorageStats.struct │ │ │ │ │ │ └── UsageEvents.struct │ │ │ │ ├── ashmemd │ │ │ │ │ └── IAshmemDeviceService.struct │ │ │ │ ├── bluetooth │ │ │ │ │ ├── BluetoothActivityEnergyInfo.struct │ │ │ │ │ ├── BluetoothAudioConfig.struct │ │ │ │ │ ├── BluetoothAvrcpPlayerSettings.struct │ │ │ │ │ ├── BluetoothCodecConfig.struct │ │ │ │ │ ├── BluetoothCodecStatus.struct │ │ │ │ │ ├── BluetoothDevice.struct │ │ │ │ │ ├── BluetoothGattCharacteristic.struct │ │ │ │ │ ├── BluetoothGattDescriptor.struct │ │ │ │ │ ├── BluetoothGattIncludedService.struct │ │ │ │ │ ├── BluetoothGattService.struct │ │ │ │ │ ├── BluetoothHeadsetClientCall.struct │ │ │ │ │ ├── BluetoothHidDeviceAppQosSettings.struct │ │ │ │ │ ├── BluetoothHidDeviceAppSdpSettings.struct │ │ │ │ │ ├── IBluetooth.struct │ │ │ │ │ ├── IBluetoothA2dp.struct │ │ │ │ │ ├── IBluetoothA2dpSink.struct │ │ │ │ │ ├── IBluetoothA2dpSinkCallback.struct │ │ │ │ │ ├── IBluetoothA2dpSource.struct │ │ │ │ │ ├── IBluetoothA2dpSourceCallback.struct │ │ │ │ │ ├── IBluetoothAvrcpControl.struct │ │ │ │ │ ├── IBluetoothAvrcpControlCallback.struct │ │ │ │ │ ├── IBluetoothAvrcpController.struct │ │ │ │ │ ├── IBluetoothAvrcpTarget.struct │ │ │ │ │ ├── IBluetoothAvrcpTargetCallback.struct │ │ │ │ │ ├── IBluetoothCallback.struct │ │ │ │ │ ├── IBluetoothGatt.struct │ │ │ │ │ ├── IBluetoothGattCallback.struct │ │ │ │ │ ├── IBluetoothGattClient.struct │ │ │ │ │ ├── IBluetoothGattClientCallback.struct │ │ │ │ │ ├── IBluetoothGattServer.struct │ │ │ │ │ ├── IBluetoothGattServerCallback.struct │ │ │ │ │ ├── IBluetoothHeadset.struct │ │ │ │ │ ├── IBluetoothHeadsetClient.struct │ │ │ │ │ ├── IBluetoothHeadsetPhone.struct │ │ │ │ │ ├── IBluetoothHearingAid.struct │ │ │ │ │ ├── IBluetoothHidDevice.struct │ │ │ │ │ ├── IBluetoothHidDeviceCallback.struct │ │ │ │ │ ├── IBluetoothHidHost.struct │ │ │ │ │ ├── IBluetoothLeAdvertiser.struct │ │ │ │ │ ├── IBluetoothLeAdvertiserCallback.struct │ │ │ │ │ ├── IBluetoothLeScanner.struct │ │ │ │ │ ├── IBluetoothLeScannerCallback.struct │ │ │ │ │ ├── IBluetoothLowEnergy.struct │ │ │ │ │ ├── IBluetoothLowEnergyCallback.struct │ │ │ │ │ ├── IBluetoothManager.struct │ │ │ │ │ ├── IBluetoothManagerCallback.struct │ │ │ │ │ ├── IBluetoothMap.struct │ │ │ │ │ ├── IBluetoothMapClient.struct │ │ │ │ │ ├── IBluetoothMetadataListener.struct │ │ │ │ │ ├── IBluetoothPan.struct │ │ │ │ │ ├── IBluetoothPbap.struct │ │ │ │ │ ├── IBluetoothPbapClient.struct │ │ │ │ │ ├── IBluetoothProfileServiceConnection.struct │ │ │ │ │ ├── IBluetoothSap.struct │ │ │ │ │ ├── IBluetoothSocketManager.struct │ │ │ │ │ ├── IBluetoothStateChangeCallback.struct │ │ │ │ │ ├── UidTraffic.struct │ │ │ │ │ └── le │ │ │ │ │ │ ├── AdvertiseData.struct │ │ │ │ │ │ ├── AdvertisingSetParameters.struct │ │ │ │ │ │ ├── IAdvertisingSetCallback.struct │ │ │ │ │ │ ├── IPeriodicAdvertisingCallback.struct │ │ │ │ │ │ ├── IScannerCallback.struct │ │ │ │ │ │ ├── PeriodicAdvertisingParameters.struct │ │ │ │ │ │ ├── PeriodicAdvertisingReport.struct │ │ │ │ │ │ ├── ScanFilter.struct │ │ │ │ │ │ ├── ScanResult.struct │ │ │ │ │ │ └── ScanSettings.struct │ │ │ │ ├── brillo │ │ │ │ │ └── IUpdateEngine.struct │ │ │ │ ├── car │ │ │ │ │ ├── IAppFocus.struct │ │ │ │ │ ├── IAppFocusListener.struct │ │ │ │ │ ├── IAppFocusOwnershipCallback.struct │ │ │ │ │ ├── ICar.struct │ │ │ │ │ ├── ICarBluetooth.struct │ │ │ │ │ ├── ICarBluetoothUserService.struct │ │ │ │ │ ├── ICarBugreportCallback.struct │ │ │ │ │ ├── ICarBugreportService.struct │ │ │ │ │ ├── ICarConnectionListener.struct │ │ │ │ │ ├── ICarInfo.struct │ │ │ │ │ ├── ICarProjection.struct │ │ │ │ │ ├── ICarProjectionKeyEventHandler.struct │ │ │ │ │ ├── ICarProjectionStatusListener.struct │ │ │ │ │ ├── ICarUserService.struct │ │ │ │ │ ├── ILocationManagerProxy.struct │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── IInstrumentClusterManagerCallback.struct │ │ │ │ │ │ ├── IInstrumentClusterManagerService.struct │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ ├── IInstrumentCluster.struct │ │ │ │ │ │ │ └── IInstrumentClusterNavigation.struct │ │ │ │ │ ├── content │ │ │ │ │ │ └── pm │ │ │ │ │ │ │ ├── AppBlockingPackageInfo.struct │ │ │ │ │ │ │ ├── CarAppBlockingPolicy.struct │ │ │ │ │ │ │ ├── ICarAppBlockingPolicy.struct │ │ │ │ │ │ │ ├── ICarAppBlockingPolicySetter.struct │ │ │ │ │ │ │ └── ICarPackageManager.struct │ │ │ │ │ ├── diagnostic │ │ │ │ │ │ ├── CarDiagnosticEvent.struct │ │ │ │ │ │ ├── ICarDiagnostic.struct │ │ │ │ │ │ └── ICarDiagnosticEventListener.struct │ │ │ │ │ ├── drivingstate │ │ │ │ │ │ ├── CarDrivingStateEvent.struct │ │ │ │ │ │ ├── CarUxRestrictions.struct │ │ │ │ │ │ ├── CarUxRestrictionsConfiguration$RestrictionsPerSpeedRange.struct │ │ │ │ │ │ ├── CarUxRestrictionsConfiguration.struct │ │ │ │ │ │ ├── ICarDrivingState.struct │ │ │ │ │ │ ├── ICarDrivingStateChangeListener.struct │ │ │ │ │ │ ├── ICarUxRestrictionsChangeListener.struct │ │ │ │ │ │ └── ICarUxRestrictionsManager.struct │ │ │ │ │ ├── hardware │ │ │ │ │ │ ├── CarPropertyConfig.struct │ │ │ │ │ │ ├── CarPropertyValue.struct │ │ │ │ │ │ ├── CarSensorConfig.struct │ │ │ │ │ │ ├── CarSensorEvent.struct │ │ │ │ │ │ ├── ICarSensor.struct │ │ │ │ │ │ ├── ICarSensorEventListener.struct │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── ICarPower.struct │ │ │ │ │ │ │ └── ICarPowerStateListener.struct │ │ │ │ │ │ └── property │ │ │ │ │ │ │ ├── CarPropertyEvent.struct │ │ │ │ │ │ │ ├── ICarProperty.struct │ │ │ │ │ │ │ └── ICarPropertyEventListener.struct │ │ │ │ │ ├── input │ │ │ │ │ │ └── ICarInputListener.struct │ │ │ │ │ ├── media │ │ │ │ │ │ ├── CarAudioPatchHandle.struct │ │ │ │ │ │ ├── ICarAudio.struct │ │ │ │ │ │ ├── ICarMedia.struct │ │ │ │ │ │ ├── ICarMediaSourceListener.struct │ │ │ │ │ │ └── ICarVolumeCallback.struct │ │ │ │ │ ├── navigation │ │ │ │ │ │ └── CarNavigationInstrumentCluster.struct │ │ │ │ │ ├── projection │ │ │ │ │ │ ├── ProjectionStatus$MobileDevice.struct │ │ │ │ │ │ └── ProjectionStatus.struct │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── ICarConfigurationManager.struct │ │ │ │ │ │ └── SpeedBumpConfiguration.struct │ │ │ │ │ ├── storagemonitoring │ │ │ │ │ │ ├── ICarStorageMonitoring.struct │ │ │ │ │ │ ├── IIoStatsListener.struct │ │ │ │ │ │ ├── IoStats.struct │ │ │ │ │ │ ├── IoStatsEntry.struct │ │ │ │ │ │ ├── WearEstimate.struct │ │ │ │ │ │ └── WearEstimateChange.struct │ │ │ │ │ ├── test │ │ │ │ │ │ └── ICarTest.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── ICarTrustAgentBleCallback.struct │ │ │ │ │ │ ├── ICarTrustAgentEnrollment.struct │ │ │ │ │ │ ├── ICarTrustAgentEnrollmentCallback.struct │ │ │ │ │ │ └── TrustedDeviceInfo.struct │ │ │ │ │ └── vms │ │ │ │ │ │ ├── IVmsPublisherClient.struct │ │ │ │ │ │ ├── IVmsPublisherService.struct │ │ │ │ │ │ ├── IVmsSubscriberClient.struct │ │ │ │ │ │ ├── IVmsSubscriberService.struct │ │ │ │ │ │ ├── VmsAvailableLayers.struct │ │ │ │ │ │ ├── VmsLayer.struct │ │ │ │ │ │ ├── VmsLayersOffering.struct │ │ │ │ │ │ └── VmsSubscriptionState.struct │ │ │ │ ├── companion │ │ │ │ │ ├── AssociationRequest.struct │ │ │ │ │ ├── ICompanionDeviceDiscoveryService.struct │ │ │ │ │ ├── ICompanionDeviceDiscoveryServiceCallback.struct │ │ │ │ │ ├── ICompanionDeviceManager.struct │ │ │ │ │ └── IFindDeviceCallback.struct │ │ │ │ ├── content │ │ │ │ │ ├── AutofillOptions.struct │ │ │ │ │ ├── ClipData.struct │ │ │ │ │ ├── ClipDescription.struct │ │ │ │ │ ├── ContentCaptureOptions.struct │ │ │ │ │ ├── ContentValues.struct │ │ │ │ │ ├── IClipboard.struct │ │ │ │ │ ├── IContentService.struct │ │ │ │ │ ├── ICrossUserContentService.struct │ │ │ │ │ ├── IIntentReceiver.struct │ │ │ │ │ ├── IIntentSender.struct │ │ │ │ │ ├── IOnPrimaryClipChangedListener.struct │ │ │ │ │ ├── IRestrictionsManager.struct │ │ │ │ │ ├── ISyncAdapter.struct │ │ │ │ │ ├── ISyncAdapterUnsyncableAccountCallback.struct │ │ │ │ │ ├── ISyncContext.struct │ │ │ │ │ ├── ISyncServiceAdapter.struct │ │ │ │ │ ├── ISyncStatusObserver.struct │ │ │ │ │ ├── Intent$ShortcutIconResource.struct │ │ │ │ │ ├── Intent.struct │ │ │ │ │ ├── IntentFilter.struct │ │ │ │ │ ├── IntentSender.struct │ │ │ │ │ ├── PeriodicSync.struct │ │ │ │ │ ├── SyncAdapterType.struct │ │ │ │ │ ├── SyncInfo.struct │ │ │ │ │ ├── SyncRequest.struct │ │ │ │ │ ├── SyncResult.struct │ │ │ │ │ ├── SyncStats.struct │ │ │ │ │ ├── SyncStatusInfo.struct │ │ │ │ │ ├── om │ │ │ │ │ │ ├── IOverlayManager.struct │ │ │ │ │ │ └── OverlayInfo.struct │ │ │ │ │ ├── pm │ │ │ │ │ │ ├── ActivityInfo.struct │ │ │ │ │ │ ├── ApplicationInfo.struct │ │ │ │ │ │ ├── ChangedPackages.struct │ │ │ │ │ │ ├── ConfigurationInfo.struct │ │ │ │ │ │ ├── FeatureGroupInfo.struct │ │ │ │ │ │ ├── FeatureInfo.struct │ │ │ │ │ │ ├── ICrossProfileApps.struct │ │ │ │ │ │ ├── IDexModuleRegisterCallback.struct │ │ │ │ │ │ ├── ILauncherApps.struct │ │ │ │ │ │ ├── IOnAppsChangedListener.struct │ │ │ │ │ │ ├── IOnPermissionsChangeListener.struct │ │ │ │ │ │ ├── IOtaDexopt.struct │ │ │ │ │ │ ├── IPackageDataObserver.struct │ │ │ │ │ │ ├── IPackageDeleteObserver.struct │ │ │ │ │ │ ├── IPackageDeleteObserver2.struct │ │ │ │ │ │ ├── IPackageInstallObserver2.struct │ │ │ │ │ │ ├── IPackageInstaller.struct │ │ │ │ │ │ ├── IPackageInstallerCallback.struct │ │ │ │ │ │ ├── IPackageInstallerSession.struct │ │ │ │ │ │ ├── IPackageManager.struct │ │ │ │ │ │ ├── IPackageManagerNative.struct │ │ │ │ │ │ ├── IPackageMoveObserver.struct │ │ │ │ │ │ ├── IPackageStatsObserver.struct │ │ │ │ │ │ ├── IPinItemRequest.struct │ │ │ │ │ │ ├── IShortcutService.struct │ │ │ │ │ │ ├── InstrumentationInfo.struct │ │ │ │ │ │ ├── KeySet.struct │ │ │ │ │ │ ├── ModuleInfo.struct │ │ │ │ │ │ ├── PackageInfo.struct │ │ │ │ │ │ ├── PackageInfoLite.struct │ │ │ │ │ │ ├── PackageStats.struct │ │ │ │ │ │ ├── PathPermission.struct │ │ │ │ │ │ ├── PermissionGroupInfo.struct │ │ │ │ │ │ ├── PermissionInfo.struct │ │ │ │ │ │ ├── ProviderInfo.struct │ │ │ │ │ │ ├── ResolveInfo.struct │ │ │ │ │ │ ├── ServiceInfo.struct │ │ │ │ │ │ ├── SharedLibraryInfo.struct │ │ │ │ │ │ ├── ShortcutInfo.struct │ │ │ │ │ │ ├── Signature.struct │ │ │ │ │ │ ├── SigningInfo.struct │ │ │ │ │ │ ├── SuspendDialogInfo.struct │ │ │ │ │ │ ├── UserInfo.struct │ │ │ │ │ │ ├── VerifierDeviceIdentity.struct │ │ │ │ │ │ ├── VersionedPackage.struct │ │ │ │ │ │ ├── dex │ │ │ │ │ │ │ ├── IArtManager.struct │ │ │ │ │ │ │ └── ISnapshotRuntimeProfileCallback.struct │ │ │ │ │ │ └── permission │ │ │ │ │ │ │ └── IRuntimePermissionPresenter.struct │ │ │ │ │ ├── res │ │ │ │ │ │ ├── ColorStateList.struct │ │ │ │ │ │ ├── CompatibilityInfo.struct │ │ │ │ │ │ ├── Configuration.struct │ │ │ │ │ │ └── ObbInfo.struct │ │ │ │ │ └── rollback │ │ │ │ │ │ └── IRollbackManager.struct │ │ │ │ ├── database │ │ │ │ │ ├── CursorWindow.struct │ │ │ │ │ └── IContentObserver.struct │ │ │ │ ├── debug │ │ │ │ │ ├── IAdbManager.struct │ │ │ │ │ └── IAdbTransport.struct │ │ │ │ ├── dvr │ │ │ │ │ ├── IVirtualTouchpadService.struct │ │ │ │ │ ├── IVrComposer.struct │ │ │ │ │ └── IVrComposerCallback.struct │ │ │ │ ├── graphics │ │ │ │ │ ├── Bitmap.struct │ │ │ │ │ ├── GraphicBuffer.struct │ │ │ │ │ ├── Insets.struct │ │ │ │ │ ├── Point.struct │ │ │ │ │ ├── Rect.struct │ │ │ │ │ ├── Region.struct │ │ │ │ │ └── drawable │ │ │ │ │ │ └── Icon.struct │ │ │ │ ├── gsi │ │ │ │ │ ├── GsiInstallParams.struct │ │ │ │ │ ├── GsiProgress.struct │ │ │ │ │ └── IGsiService.struct │ │ │ │ ├── hardware │ │ │ │ │ ├── CameraInfo.struct │ │ │ │ │ ├── CameraStatus.struct │ │ │ │ │ ├── ICamera.struct │ │ │ │ │ ├── ICameraClient.struct │ │ │ │ │ ├── ICameraService.struct │ │ │ │ │ ├── ICameraServiceListener.struct │ │ │ │ │ ├── ICameraServiceProxy.struct │ │ │ │ │ ├── IConsumerIrService.struct │ │ │ │ │ ├── ISensorPrivacyListener.struct │ │ │ │ │ ├── ISensorPrivacyManager.struct │ │ │ │ │ ├── ISerialManager.struct │ │ │ │ │ ├── biometrics │ │ │ │ │ │ ├── BiometricSourceType.struct │ │ │ │ │ │ ├── IBiometricConfirmDeviceCredentialCallback.struct │ │ │ │ │ │ ├── IBiometricEnabledOnKeyguardCallback.struct │ │ │ │ │ │ ├── IBiometricService.struct │ │ │ │ │ │ ├── IBiometricServiceLockoutResetCallback.struct │ │ │ │ │ │ ├── IBiometricServiceReceiver.struct │ │ │ │ │ │ └── IBiometricServiceReceiverInternal.struct │ │ │ │ │ ├── camera2 │ │ │ │ │ │ ├── CaptureRequest.struct │ │ │ │ │ │ ├── ICameraDeviceCallbacks.struct │ │ │ │ │ │ ├── ICameraDeviceUser.struct │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ ├── CameraMetadataNative.struct │ │ │ │ │ │ │ ├── CaptureResultExtras.struct │ │ │ │ │ │ │ └── PhysicalCaptureResultInfo.struct │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── OutputConfiguration.struct │ │ │ │ │ │ │ ├── SessionConfiguration.struct │ │ │ │ │ │ │ ├── VendorTagDescriptor.struct │ │ │ │ │ │ │ └── VendorTagDescriptorCache.struct │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── SubmitInfo.struct │ │ │ │ │ ├── citadel │ │ │ │ │ │ └── ICitadeld.struct │ │ │ │ │ ├── display │ │ │ │ │ │ ├── BrightnessConfiguration.struct │ │ │ │ │ │ ├── BrightnessCorrection.struct │ │ │ │ │ │ ├── Curve.struct │ │ │ │ │ │ ├── IColorDisplayManager.struct │ │ │ │ │ │ ├── IDisplayManager.struct │ │ │ │ │ │ ├── IDisplayManagerCallback.struct │ │ │ │ │ │ ├── IVirtualDisplayCallback.struct │ │ │ │ │ │ ├── Time.struct │ │ │ │ │ │ ├── WifiDisplay.struct │ │ │ │ │ │ ├── WifiDisplaySessionInfo.struct │ │ │ │ │ │ └── WifiDisplayStatus.struct │ │ │ │ │ ├── face │ │ │ │ │ │ ├── Face.struct │ │ │ │ │ │ ├── IFaceService.struct │ │ │ │ │ │ └── IFaceServiceReceiver.struct │ │ │ │ │ ├── fingerprint │ │ │ │ │ │ ├── Fingerprint.struct │ │ │ │ │ │ ├── IFingerprintClientActiveCallback.struct │ │ │ │ │ │ ├── IFingerprintService.struct │ │ │ │ │ │ └── IFingerprintServiceReceiver.struct │ │ │ │ │ ├── hdmi │ │ │ │ │ │ ├── HdmiDeviceInfo.struct │ │ │ │ │ │ ├── HdmiHotplugEvent.struct │ │ │ │ │ │ ├── HdmiPortInfo.struct │ │ │ │ │ │ ├── IHdmiControlCallback.struct │ │ │ │ │ │ ├── IHdmiControlService.struct │ │ │ │ │ │ ├── IHdmiDeviceEventListener.struct │ │ │ │ │ │ ├── IHdmiHotplugEventListener.struct │ │ │ │ │ │ ├── IHdmiInputChangeListener.struct │ │ │ │ │ │ ├── IHdmiMhlVendorCommandListener.struct │ │ │ │ │ │ ├── IHdmiRecordListener.struct │ │ │ │ │ │ ├── IHdmiSystemAudioModeChangeListener.struct │ │ │ │ │ │ └── IHdmiVendorCommandListener.struct │ │ │ │ │ ├── input │ │ │ │ │ │ ├── IInputDevicesChangedListener.struct │ │ │ │ │ │ ├── IInputManager.struct │ │ │ │ │ │ ├── ITabletModeChangedListener.struct │ │ │ │ │ │ ├── InputDeviceIdentifier.struct │ │ │ │ │ │ ├── KeyboardLayout.struct │ │ │ │ │ │ └── TouchCalibration.struct │ │ │ │ │ ├── iris │ │ │ │ │ │ └── IIrisService.struct │ │ │ │ │ ├── location │ │ │ │ │ │ ├── ActivityChangedEvent.struct │ │ │ │ │ │ ├── ActivityRecognitionEvent.struct │ │ │ │ │ │ ├── ContextHubInfo.struct │ │ │ │ │ │ ├── ContextHubMessage.struct │ │ │ │ │ │ ├── GeofenceHardwareMonitorEvent.struct │ │ │ │ │ │ ├── GeofenceHardwareRequestParcelable.struct │ │ │ │ │ │ ├── IActivityRecognitionHardware.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareClient.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareSink.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareWatcher.struct │ │ │ │ │ │ ├── IContextHubCallback.struct │ │ │ │ │ │ ├── IContextHubClient.struct │ │ │ │ │ │ ├── IContextHubClientCallback.struct │ │ │ │ │ │ ├── IContextHubService.struct │ │ │ │ │ │ ├── IContextHubTransactionCallback.struct │ │ │ │ │ │ ├── IGeofenceHardware.struct │ │ │ │ │ │ ├── IGeofenceHardwareCallback.struct │ │ │ │ │ │ ├── IGeofenceHardwareMonitorCallback.struct │ │ │ │ │ │ ├── MemoryRegion.struct │ │ │ │ │ │ ├── NanoApp.struct │ │ │ │ │ │ ├── NanoAppBinary.struct │ │ │ │ │ │ ├── NanoAppFilter.struct │ │ │ │ │ │ ├── NanoAppInstanceInfo.struct │ │ │ │ │ │ ├── NanoAppMessage.struct │ │ │ │ │ │ └── NanoAppState.struct │ │ │ │ │ ├── radio │ │ │ │ │ │ ├── Announcement.struct │ │ │ │ │ │ ├── IAnnouncementListener.struct │ │ │ │ │ │ ├── ICloseHandle.struct │ │ │ │ │ │ ├── IRadioService.struct │ │ │ │ │ │ ├── ITuner.struct │ │ │ │ │ │ ├── ITunerCallback.struct │ │ │ │ │ │ ├── ProgramSelector$Identifier.struct │ │ │ │ │ │ └── ProgramSelector.struct │ │ │ │ │ ├── soundtrigger │ │ │ │ │ │ └── IRecognitionStatusCallback.struct │ │ │ │ │ └── usb │ │ │ │ │ │ ├── IUsbManager.struct │ │ │ │ │ │ ├── IUsbSerialReader.struct │ │ │ │ │ │ ├── ParcelableUsbPort.struct │ │ │ │ │ │ ├── UsbAccessory.struct │ │ │ │ │ │ ├── UsbDevice.struct │ │ │ │ │ │ └── UsbPortStatus.struct │ │ │ │ ├── location │ │ │ │ │ ├── Address.struct │ │ │ │ │ ├── Country.struct │ │ │ │ │ ├── Criteria.struct │ │ │ │ │ ├── GeocoderParams.struct │ │ │ │ │ ├── Geofence.struct │ │ │ │ │ ├── GnssMeasurement.struct │ │ │ │ │ ├── GnssMeasurementCorrections.struct │ │ │ │ │ ├── GnssMeasurementsEvent.struct │ │ │ │ │ ├── GnssNavigationMessage.struct │ │ │ │ │ ├── IBatchedLocationCallback.struct │ │ │ │ │ ├── ICountryDetector.struct │ │ │ │ │ ├── ICountryListener.struct │ │ │ │ │ ├── IFusedGeofenceHardware.struct │ │ │ │ │ ├── IGeocodeProvider.struct │ │ │ │ │ ├── IGeofenceProvider.struct │ │ │ │ │ ├── IGnssMeasurementsListener.struct │ │ │ │ │ ├── IGnssNavigationMessageListener.struct │ │ │ │ │ ├── IGnssStatusListener.struct │ │ │ │ │ ├── IGpsGeofenceHardware.struct │ │ │ │ │ ├── ILocationListener.struct │ │ │ │ │ ├── ILocationManager.struct │ │ │ │ │ ├── INetInitiatedListener.struct │ │ │ │ │ ├── Location.struct │ │ │ │ │ ├── LocationRequest.struct │ │ │ │ │ └── LocationTime.struct │ │ │ │ ├── lpdump │ │ │ │ │ └── ILpdump.struct │ │ │ │ ├── media │ │ │ │ │ ├── AudioAttributes.struct │ │ │ │ │ ├── AudioFocusInfo.struct │ │ │ │ │ ├── AudioFormat.struct │ │ │ │ │ ├── AudioPlaybackConfiguration.struct │ │ │ │ │ ├── AudioRecordingConfiguration.struct │ │ │ │ │ ├── AudioRoutesInfo.struct │ │ │ │ │ ├── Controller2Link.struct │ │ │ │ │ ├── IAudioFocusDispatcher.struct │ │ │ │ │ ├── IAudioRecord.struct │ │ │ │ │ ├── IAudioRoutesObserver.struct │ │ │ │ │ ├── IAudioServerStateDispatcher.struct │ │ │ │ │ ├── IAudioService.struct │ │ │ │ │ ├── IMediaController2.struct │ │ │ │ │ ├── IMediaHTTPConnection.struct │ │ │ │ │ ├── IMediaHTTPService.struct │ │ │ │ │ ├── IMediaResourceMonitor.struct │ │ │ │ │ ├── IMediaRouterClient.struct │ │ │ │ │ ├── IMediaRouterService.struct │ │ │ │ │ ├── IMediaScannerListener.struct │ │ │ │ │ ├── IMediaScannerService.struct │ │ │ │ │ ├── IMediaSession2.struct │ │ │ │ │ ├── IMediaSession2Service.struct │ │ │ │ │ ├── IPlaybackConfigDispatcher.struct │ │ │ │ │ ├── IPlayer.struct │ │ │ │ │ ├── IRecordingConfigDispatcher.struct │ │ │ │ │ ├── IRemoteDisplayCallback.struct │ │ │ │ │ ├── IRemoteDisplayProvider.struct │ │ │ │ │ ├── IRemoteVolumeController.struct │ │ │ │ │ ├── IRemoteVolumeObserver.struct │ │ │ │ │ ├── IRingtonePlayer.struct │ │ │ │ │ ├── IVolumeController.struct │ │ │ │ │ ├── MediaMetadata.struct │ │ │ │ │ ├── MediaRouterClientState$RouteInfo.struct │ │ │ │ │ ├── MediaRouterClientState.struct │ │ │ │ │ ├── PlaybackParams.struct │ │ │ │ │ ├── Rating.struct │ │ │ │ │ ├── RemoteDisplayState$RemoteDisplayInfo.struct │ │ │ │ │ ├── RemoteDisplayState.struct │ │ │ │ │ ├── Session2Command.struct │ │ │ │ │ ├── Session2Token.struct │ │ │ │ │ ├── VolumePolicy.struct │ │ │ │ │ ├── audiopolicy │ │ │ │ │ │ ├── AudioPolicyConfig.struct │ │ │ │ │ │ ├── AudioProductStrategy$AudioAttributesGroup.struct │ │ │ │ │ │ ├── AudioProductStrategy.struct │ │ │ │ │ │ ├── AudioVolumeGroup.struct │ │ │ │ │ │ └── IAudioPolicyCallback.struct │ │ │ │ │ ├── eco │ │ │ │ │ │ ├── IECOService.struct │ │ │ │ │ │ ├── IECOServiceInfoListener.struct │ │ │ │ │ │ ├── IECOServiceStatsProvider.struct │ │ │ │ │ │ └── IECOSession.struct │ │ │ │ │ ├── midi │ │ │ │ │ │ ├── IBluetoothMidiService.struct │ │ │ │ │ │ ├── IMidiDeviceListener.struct │ │ │ │ │ │ ├── IMidiDeviceOpenCallback.struct │ │ │ │ │ │ ├── IMidiDeviceServer.struct │ │ │ │ │ │ ├── IMidiManager.struct │ │ │ │ │ │ ├── MidiDeviceInfo.struct │ │ │ │ │ │ └── MidiDeviceStatus.struct │ │ │ │ │ ├── projection │ │ │ │ │ │ ├── IMediaProjection.struct │ │ │ │ │ │ ├── IMediaProjectionCallback.struct │ │ │ │ │ │ ├── IMediaProjectionManager.struct │ │ │ │ │ │ ├── IMediaProjectionWatcherCallback.struct │ │ │ │ │ │ └── MediaProjectionInfo.struct │ │ │ │ │ ├── session │ │ │ │ │ │ ├── IActiveSessionsListener.struct │ │ │ │ │ │ ├── ICallback.struct │ │ │ │ │ │ ├── IOnMediaKeyListener.struct │ │ │ │ │ │ ├── IOnVolumeKeyLongPressListener.struct │ │ │ │ │ │ ├── ISession.struct │ │ │ │ │ │ ├── ISession2TokensListener.struct │ │ │ │ │ │ ├── ISessionCallback.struct │ │ │ │ │ │ ├── ISessionController.struct │ │ │ │ │ │ ├── ISessionControllerCallback.struct │ │ │ │ │ │ ├── ISessionManager.struct │ │ │ │ │ │ └── PlaybackState.struct │ │ │ │ │ ├── soundtrigger │ │ │ │ │ │ ├── ISoundTriggerDetectionService.struct │ │ │ │ │ │ └── ISoundTriggerDetectionServiceClient.struct │ │ │ │ │ └── tv │ │ │ │ │ │ ├── DvbDeviceInfo.struct │ │ │ │ │ │ ├── ITvInputClient.struct │ │ │ │ │ │ ├── ITvInputHardware.struct │ │ │ │ │ │ ├── ITvInputHardwareCallback.struct │ │ │ │ │ │ ├── ITvInputManager.struct │ │ │ │ │ │ ├── ITvInputManagerCallback.struct │ │ │ │ │ │ ├── ITvInputService.struct │ │ │ │ │ │ ├── ITvInputServiceCallback.struct │ │ │ │ │ │ ├── ITvInputSession.struct │ │ │ │ │ │ ├── ITvInputSessionCallback.struct │ │ │ │ │ │ ├── ITvRemoteProvider.struct │ │ │ │ │ │ ├── ITvRemoteServiceInput.struct │ │ │ │ │ │ ├── TvContentRatingSystemInfo.struct │ │ │ │ │ │ ├── TvInputHardwareInfo.struct │ │ │ │ │ │ ├── TvInputInfo.struct │ │ │ │ │ │ ├── TvStreamConfig.struct │ │ │ │ │ │ └── TvTrackInfo.struct │ │ │ │ ├── net │ │ │ │ │ ├── ConnectionInfo.struct │ │ │ │ │ ├── ConnectivityMetricsEvent.struct │ │ │ │ │ ├── DataUsageRequest.struct │ │ │ │ │ ├── DhcpInfo.struct │ │ │ │ │ ├── DhcpResultsParcelable.struct │ │ │ │ │ ├── ICaptivePortal.struct │ │ │ │ │ ├── IConnectivityManager.struct │ │ │ │ │ ├── IDnsResolver.struct │ │ │ │ │ ├── IEthernetManager.struct │ │ │ │ │ ├── IEthernetServiceListener.struct │ │ │ │ │ ├── IIpConnectivityMetrics.struct │ │ │ │ │ ├── IIpMemoryStore.struct │ │ │ │ │ ├── IIpMemoryStoreCallbacks.struct │ │ │ │ │ ├── IIpSecService.struct │ │ │ │ │ ├── INetd.struct │ │ │ │ │ ├── INetdEventCallback.struct │ │ │ │ │ ├── INetdUnsolicitedEventListener.struct │ │ │ │ │ ├── INetworkManagementEventObserver.struct │ │ │ │ │ ├── INetworkMonitor.struct │ │ │ │ │ ├── INetworkMonitorCallbacks.struct │ │ │ │ │ ├── INetworkPolicyListener.struct │ │ │ │ │ ├── INetworkPolicyManager.struct │ │ │ │ │ ├── INetworkRecommendationProvider.struct │ │ │ │ │ ├── INetworkScoreCache.struct │ │ │ │ │ ├── INetworkScoreService.struct │ │ │ │ │ ├── INetworkStackConnector.struct │ │ │ │ │ ├── INetworkStackStatusCallback.struct │ │ │ │ │ ├── INetworkStatsService.struct │ │ │ │ │ ├── INetworkStatsSession.struct │ │ │ │ │ ├── ISocketKeepaliveCallback.struct │ │ │ │ │ ├── ITestNetworkManager.struct │ │ │ │ │ ├── ITetheringEventCallback.struct │ │ │ │ │ ├── ITetheringStatsProvider.struct │ │ │ │ │ ├── InitialConfigurationParcelable.struct │ │ │ │ │ ├── InterfaceConfiguration.struct │ │ │ │ │ ├── InterfaceConfigurationParcel.struct │ │ │ │ │ ├── IpConfiguration.struct │ │ │ │ │ ├── IpPrefix.struct │ │ │ │ │ ├── IpSecConfig.struct │ │ │ │ │ ├── IpSecSpiResponse.struct │ │ │ │ │ ├── IpSecTransformResponse.struct │ │ │ │ │ ├── IpSecTunnelInterfaceResponse.struct │ │ │ │ │ ├── IpSecUdpEncapResponse.struct │ │ │ │ │ ├── LinkAddress.struct │ │ │ │ │ ├── LinkProperties.struct │ │ │ │ │ ├── MacAddress.struct │ │ │ │ │ ├── NattKeepalivePacketDataParcelable.struct │ │ │ │ │ ├── Network.struct │ │ │ │ │ ├── NetworkCapabilities.struct │ │ │ │ │ ├── NetworkInfo.struct │ │ │ │ │ ├── NetworkKey.struct │ │ │ │ │ ├── NetworkMisc.struct │ │ │ │ │ ├── NetworkPolicy.struct │ │ │ │ │ ├── NetworkQuotaInfo.struct │ │ │ │ │ ├── NetworkRequest.struct │ │ │ │ │ ├── NetworkScorerAppData.struct │ │ │ │ │ ├── NetworkState.struct │ │ │ │ │ ├── NetworkStats.struct │ │ │ │ │ ├── NetworkStatsHistory.struct │ │ │ │ │ ├── NetworkTemplate.struct │ │ │ │ │ ├── PrivateDnsConfigParcel.struct │ │ │ │ │ ├── ProvisioningConfigurationParcelable.struct │ │ │ │ │ ├── ProxyInfo.struct │ │ │ │ │ ├── ResolverParamsParcel.struct │ │ │ │ │ ├── RouteInfo.struct │ │ │ │ │ ├── RssiCurve.struct │ │ │ │ │ ├── ScoredNetwork.struct │ │ │ │ │ ├── StaticIpConfiguration.struct │ │ │ │ │ ├── TcpKeepalivePacketDataParcelable.struct │ │ │ │ │ ├── TestNetworkInterface.struct │ │ │ │ │ ├── TetherStatsParcel.struct │ │ │ │ │ ├── UidRange.struct │ │ │ │ │ ├── UidRangeParcel.struct │ │ │ │ │ ├── Uri$HierarchicalUri.struct │ │ │ │ │ ├── Uri$OpaqueUri.struct │ │ │ │ │ ├── Uri$StringUri.struct │ │ │ │ │ ├── Uri.struct │ │ │ │ │ ├── apf │ │ │ │ │ │ └── ApfCapabilities.struct │ │ │ │ │ ├── dhcp │ │ │ │ │ │ ├── DhcpServingParamsParcel.struct │ │ │ │ │ │ ├── IDhcpServer.struct │ │ │ │ │ │ └── IDhcpServerCallbacks.struct │ │ │ │ │ ├── ip │ │ │ │ │ │ ├── IIpClient.struct │ │ │ │ │ │ └── IIpClientCallbacks.struct │ │ │ │ │ ├── ipmemorystore │ │ │ │ │ │ ├── Blob.struct │ │ │ │ │ │ ├── IOnBlobRetrievedListener.struct │ │ │ │ │ │ ├── IOnL2KeyResponseListener.struct │ │ │ │ │ │ ├── IOnNetworkAttributesRetrievedListener.struct │ │ │ │ │ │ ├── IOnSameL3NetworkResponseListener.struct │ │ │ │ │ │ ├── IOnStatusListener.struct │ │ │ │ │ │ ├── NetworkAttributesParcelable.struct │ │ │ │ │ │ ├── SameL3NetworkResponseParcelable.struct │ │ │ │ │ │ └── StatusParcelable.struct │ │ │ │ │ ├── lowpan │ │ │ │ │ │ ├── ILowpanEnergyScanCallback.struct │ │ │ │ │ │ ├── ILowpanInterface.struct │ │ │ │ │ │ ├── ILowpanInterfaceListener.struct │ │ │ │ │ │ ├── ILowpanManager.struct │ │ │ │ │ │ ├── ILowpanManagerListener.struct │ │ │ │ │ │ ├── ILowpanNetScanCallback.struct │ │ │ │ │ │ ├── LowpanBeaconInfo.struct │ │ │ │ │ │ ├── LowpanChannelInfo.struct │ │ │ │ │ │ ├── LowpanCredential.struct │ │ │ │ │ │ ├── LowpanIdentity.struct │ │ │ │ │ │ └── LowpanProvision.struct │ │ │ │ │ ├── metrics │ │ │ │ │ │ └── INetdEventListener.struct │ │ │ │ │ ├── nsd │ │ │ │ │ │ └── INsdManager.struct │ │ │ │ │ ├── sip │ │ │ │ │ │ ├── ISipService.struct │ │ │ │ │ │ ├── ISipSession.struct │ │ │ │ │ │ ├── ISipSessionListener.struct │ │ │ │ │ │ └── SipProfile.struct │ │ │ │ │ └── wifi │ │ │ │ │ │ ├── IApInterface.struct │ │ │ │ │ │ ├── IApInterfaceEventCallback.struct │ │ │ │ │ │ ├── IClientInterface.struct │ │ │ │ │ │ ├── IDppCallback.struct │ │ │ │ │ │ ├── IInterfaceEventCallback.struct │ │ │ │ │ │ ├── INetworkRequestMatchCallback.struct │ │ │ │ │ │ ├── INetworkRequestUserSelectionCallback.struct │ │ │ │ │ │ ├── IOnWifiUsabilityStatsListener.struct │ │ │ │ │ │ ├── IPnoScanEvent.struct │ │ │ │ │ │ ├── IScanEvent.struct │ │ │ │ │ │ ├── ISendMgmtFrameEvent.struct │ │ │ │ │ │ ├── ISoftApCallback.struct │ │ │ │ │ │ ├── ITrafficStateCallback.struct │ │ │ │ │ │ ├── IWifiManager.struct │ │ │ │ │ │ ├── IWifiScanner.struct │ │ │ │ │ │ ├── IWifiScannerImpl.struct │ │ │ │ │ │ ├── IWificond.struct │ │ │ │ │ │ ├── ScanResult.struct │ │ │ │ │ │ ├── SupplicantState.struct │ │ │ │ │ │ ├── WifiActivityEnergyInfo.struct │ │ │ │ │ │ ├── WifiConfiguration.struct │ │ │ │ │ │ ├── WifiInfo.struct │ │ │ │ │ │ ├── WifiNetworkSuggestion.struct │ │ │ │ │ │ ├── WifiSsid.struct │ │ │ │ │ │ ├── WifiUsabilityStatsEntry.struct │ │ │ │ │ │ ├── aware │ │ │ │ │ │ ├── Characteristics.struct │ │ │ │ │ │ ├── ConfigRequest.struct │ │ │ │ │ │ ├── IWifiAwareDiscoverySessionCallback.struct │ │ │ │ │ │ ├── IWifiAwareEventCallback.struct │ │ │ │ │ │ ├── IWifiAwareMacAddressProvider.struct │ │ │ │ │ │ ├── IWifiAwareManager.struct │ │ │ │ │ │ ├── PublishConfig.struct │ │ │ │ │ │ └── SubscribeConfig.struct │ │ │ │ │ │ ├── hotspot2 │ │ │ │ │ │ ├── IProvisioningCallback.struct │ │ │ │ │ │ ├── OsuProvider.struct │ │ │ │ │ │ └── PasspointConfiguration.struct │ │ │ │ │ │ ├── p2p │ │ │ │ │ │ └── IWifiP2pManager.struct │ │ │ │ │ │ └── rtt │ │ │ │ │ │ ├── IRttCallback.struct │ │ │ │ │ │ ├── IWifiRttManager.struct │ │ │ │ │ │ ├── RangingRequest.struct │ │ │ │ │ │ └── RangingResult.struct │ │ │ │ ├── nfc │ │ │ │ │ ├── BeamShareData.struct │ │ │ │ │ ├── IAppCallback.struct │ │ │ │ │ ├── INfcAdapter.struct │ │ │ │ │ ├── INfcAdapterExtras.struct │ │ │ │ │ ├── INfcCardEmulation.struct │ │ │ │ │ ├── INfcDta.struct │ │ │ │ │ ├── INfcFCardEmulation.struct │ │ │ │ │ ├── INfcTag.struct │ │ │ │ │ ├── INfcUnlockHandler.struct │ │ │ │ │ ├── ITagRemovedCallback.struct │ │ │ │ │ ├── NdefMessage.struct │ │ │ │ │ ├── NdefRecord.struct │ │ │ │ │ ├── Tag.struct │ │ │ │ │ ├── TechListParcel.struct │ │ │ │ │ ├── TransceiveResult.struct │ │ │ │ │ └── cardemulation │ │ │ │ │ │ ├── AidGroup.struct │ │ │ │ │ │ ├── ApduServiceInfo.struct │ │ │ │ │ │ └── NfcFServiceInfo.struct │ │ │ │ ├── os │ │ │ │ │ ├── BatteryProperty.struct │ │ │ │ │ ├── BatterySaverPolicyConfig.struct │ │ │ │ │ ├── Bundle.struct │ │ │ │ │ ├── CoolingDevice.struct │ │ │ │ │ ├── CpuUsageInfo.struct │ │ │ │ │ ├── ExternalVibration.struct │ │ │ │ │ ├── IAidlTest.struct │ │ │ │ │ ├── IBatteryPropertiesRegistrar.struct │ │ │ │ │ ├── IBinderThreadPriorityService.struct │ │ │ │ │ ├── IBinderWorkSourceNestedService.struct │ │ │ │ │ ├── IBinderWorkSourceService.struct │ │ │ │ │ ├── ICancellationSignal.struct │ │ │ │ │ ├── IDeviceIdentifiersPolicyService.struct │ │ │ │ │ ├── IDeviceIdleController.struct │ │ │ │ │ ├── IDumpstate.struct │ │ │ │ │ ├── IDumpstateListener.struct │ │ │ │ │ ├── IDumpstateToken.struct │ │ │ │ │ ├── IExternalVibrationController.struct │ │ │ │ │ ├── IExternalVibratorService.struct │ │ │ │ │ ├── IHardwarePropertiesManager.struct │ │ │ │ │ ├── IIdmap2.struct │ │ │ │ │ ├── IIncidentAuthListener.struct │ │ │ │ │ ├── IIncidentCompanion.struct │ │ │ │ │ ├── IIncidentManager.struct │ │ │ │ │ ├── IIncidentReportStatusListener.struct │ │ │ │ │ ├── IInstalld.struct │ │ │ │ │ ├── IMaintenanceActivityListener.struct │ │ │ │ │ ├── IMessenger.struct │ │ │ │ │ ├── INetworkActivityListener.struct │ │ │ │ │ ├── INetworkManagementService.struct │ │ │ │ │ ├── IPerfProfd.struct │ │ │ │ │ ├── IPermissionController.struct │ │ │ │ │ ├── IPowerManager.struct │ │ │ │ │ ├── IProcessInfoService.struct │ │ │ │ │ ├── IProgressListener.struct │ │ │ │ │ ├── IRecoverySystem.struct │ │ │ │ │ ├── IRecoverySystemProgressListener.struct │ │ │ │ │ ├── IRemoteCallback.struct │ │ │ │ │ ├── ISchedulingPolicyService.struct │ │ │ │ │ ├── ISomeService.struct │ │ │ │ │ ├── IStatsCompanionService.struct │ │ │ │ │ ├── IStatsManager.struct │ │ │ │ │ ├── IStatsPullerCallback.struct │ │ │ │ │ ├── IStoraged.struct │ │ │ │ │ ├── ISystemUpdateManager.struct │ │ │ │ │ ├── IThermalEventListener.struct │ │ │ │ │ ├── IThermalService.struct │ │ │ │ │ ├── IThermalStatusListener.struct │ │ │ │ │ ├── IUpdateEngine.struct │ │ │ │ │ ├── IUpdateEngineCallback.struct │ │ │ │ │ ├── IUpdateLock.struct │ │ │ │ │ ├── IUserManager.struct │ │ │ │ │ ├── IVibratorService.struct │ │ │ │ │ ├── IVold.struct │ │ │ │ │ ├── IVoldListener.struct │ │ │ │ │ ├── IVoldTaskListener.struct │ │ │ │ │ ├── IncidentReportArgs.struct │ │ │ │ │ ├── LocaleList.struct │ │ │ │ │ ├── Message.struct │ │ │ │ │ ├── Messenger.struct │ │ │ │ │ ├── ParcelFileDescriptor.struct │ │ │ │ │ ├── ParcelUuid.struct │ │ │ │ │ ├── ParcelableException.struct │ │ │ │ │ ├── PatternMatcher.struct │ │ │ │ │ ├── PersistableBundle.struct │ │ │ │ │ ├── PowerSaveState.struct │ │ │ │ │ ├── RemoteCallback.struct │ │ │ │ │ ├── ResultReceiver.struct │ │ │ │ │ ├── SharedMemory.struct │ │ │ │ │ ├── StatsDimensionsValue.struct │ │ │ │ │ ├── StatsLogEventWrapper.struct │ │ │ │ │ ├── Temperature.struct │ │ │ │ │ ├── UserHandle.struct │ │ │ │ │ ├── VibrationEffect$OneShot.struct │ │ │ │ │ ├── VibrationEffect$Prebaked.struct │ │ │ │ │ ├── VibrationEffect$Waveform.struct │ │ │ │ │ ├── VibrationEffect.struct │ │ │ │ │ ├── WorkSource$WorkChain.struct │ │ │ │ │ ├── WorkSource.struct │ │ │ │ │ ├── connectivity │ │ │ │ │ │ ├── CellularBatteryStats.struct │ │ │ │ │ │ ├── GpsBatteryStats.struct │ │ │ │ │ │ └── WifiBatteryStats.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── ExceptionalParcelable.struct │ │ │ │ │ │ ├── IEmptyService.struct │ │ │ │ │ │ ├── IParcelExceptionService.struct │ │ │ │ │ │ ├── IParcelFileDescriptorPeer.struct │ │ │ │ │ │ ├── ISeccompIsolatedService.struct │ │ │ │ │ │ ├── ISecondary.struct │ │ │ │ │ │ └── ISharedMemoryService.struct │ │ │ │ │ ├── health │ │ │ │ │ │ └── HealthStatsParceler.struct │ │ │ │ │ ├── image │ │ │ │ │ │ └── IDynamicSystemService.struct │ │ │ │ │ ├── storage │ │ │ │ │ │ ├── DiskInfo.struct │ │ │ │ │ │ ├── IObbActionListener.struct │ │ │ │ │ │ ├── IStorageEventListener.struct │ │ │ │ │ │ ├── IStorageManager.struct │ │ │ │ │ │ ├── IStorageShutdownObserver.struct │ │ │ │ │ │ ├── StorageVolume.struct │ │ │ │ │ │ ├── VolumeInfo.struct │ │ │ │ │ │ └── VolumeRecord.struct │ │ │ │ │ └── storaged │ │ │ │ │ │ └── IStoragedPrivate.struct │ │ │ │ ├── permission │ │ │ │ │ └── IPermissionController.struct │ │ │ │ ├── pixel │ │ │ │ │ └── perfstatsd │ │ │ │ │ │ └── IPerfstatsdPrivate.struct │ │ │ │ ├── print │ │ │ │ │ ├── ILayoutResultCallback.struct │ │ │ │ │ ├── IPrintDocumentAdapter.struct │ │ │ │ │ ├── IPrintDocumentAdapterObserver.struct │ │ │ │ │ ├── IPrintJobStateChangeListener.struct │ │ │ │ │ ├── IPrintManager.struct │ │ │ │ │ ├── IPrintServicesChangeListener.struct │ │ │ │ │ ├── IPrintSpooler.struct │ │ │ │ │ ├── IPrintSpoolerCallbacks.struct │ │ │ │ │ ├── IPrintSpoolerClient.struct │ │ │ │ │ ├── IPrinterDiscoveryObserver.struct │ │ │ │ │ ├── IWriteResultCallback.struct │ │ │ │ │ ├── PageRange.struct │ │ │ │ │ ├── PrintAttributes.struct │ │ │ │ │ ├── PrintDocumentInfo.struct │ │ │ │ │ ├── PrintJobId.struct │ │ │ │ │ ├── PrintJobInfo.struct │ │ │ │ │ └── PrinterId.struct │ │ │ │ ├── printservice │ │ │ │ │ ├── IPrintService.struct │ │ │ │ │ ├── IPrintServiceClient.struct │ │ │ │ │ ├── PrintServiceInfo.struct │ │ │ │ │ └── recommendation │ │ │ │ │ │ ├── IRecommendationService.struct │ │ │ │ │ │ ├── IRecommendationServiceCallbacks.struct │ │ │ │ │ │ ├── IRecommendationsChangeListener.struct │ │ │ │ │ │ └── RecommendationInfo.struct │ │ │ │ ├── se │ │ │ │ │ └── omapi │ │ │ │ │ │ ├── ISecureElementChannel.struct │ │ │ │ │ │ ├── ISecureElementListener.struct │ │ │ │ │ │ ├── ISecureElementReader.struct │ │ │ │ │ │ ├── ISecureElementService.struct │ │ │ │ │ │ └── ISecureElementSession.struct │ │ │ │ ├── security │ │ │ │ │ ├── IConfirmationPromptCallback.struct │ │ │ │ │ ├── IKeyChainAliasCallback.struct │ │ │ │ │ ├── IKeyChainService.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── IIsolatedService.struct │ │ │ │ │ │ └── activity │ │ │ │ │ │ │ └── ISecureRandomService.struct │ │ │ │ │ ├── keymaster │ │ │ │ │ │ ├── ExportResult.struct │ │ │ │ │ │ ├── IKeyAttestationApplicationIdProvider.struct │ │ │ │ │ │ ├── KeyAttestationApplicationId.struct │ │ │ │ │ │ ├── KeyAttestationPackageInfo.struct │ │ │ │ │ │ ├── KeyCharacteristics.struct │ │ │ │ │ │ ├── KeymasterArgument.struct │ │ │ │ │ │ ├── KeymasterArguments.struct │ │ │ │ │ │ ├── KeymasterBlob.struct │ │ │ │ │ │ ├── KeymasterCertificateChain.struct │ │ │ │ │ │ └── OperationResult.struct │ │ │ │ │ └── keystore │ │ │ │ │ │ ├── IKeystoreCertificateChainCallback.struct │ │ │ │ │ │ ├── IKeystoreExportKeyCallback.struct │ │ │ │ │ │ ├── IKeystoreKeyCharacteristicsCallback.struct │ │ │ │ │ │ ├── IKeystoreOperationResultCallback.struct │ │ │ │ │ │ ├── IKeystoreResponseCallback.struct │ │ │ │ │ │ ├── IKeystoreService.struct │ │ │ │ │ │ ├── KeystoreResponse.struct │ │ │ │ │ │ ├── ParcelableKeyGenParameterSpec.struct │ │ │ │ │ │ └── recovery │ │ │ │ │ │ ├── KeyChainProtectionParams.struct │ │ │ │ │ │ ├── KeyChainSnapshot.struct │ │ │ │ │ │ ├── RecoveryCertPath.struct │ │ │ │ │ │ └── WrappedApplicationKey.struct │ │ │ │ ├── service │ │ │ │ │ ├── appprediction │ │ │ │ │ │ └── IPredictionService.struct │ │ │ │ │ ├── attention │ │ │ │ │ │ ├── IAttentionCallback.struct │ │ │ │ │ │ └── IAttentionService.struct │ │ │ │ │ ├── autofill │ │ │ │ │ │ ├── FillRequest.struct │ │ │ │ │ │ ├── FillResponse.struct │ │ │ │ │ │ ├── IAutoFillService.struct │ │ │ │ │ │ ├── IAutofillFieldClassificationService.struct │ │ │ │ │ │ ├── IFillCallback.struct │ │ │ │ │ │ ├── ISaveCallback.struct │ │ │ │ │ │ ├── SaveRequest.struct │ │ │ │ │ │ ├── UserData.struct │ │ │ │ │ │ └── augmented │ │ │ │ │ │ │ ├── IAugmentedAutofillService.struct │ │ │ │ │ │ │ └── IFillCallback.struct │ │ │ │ │ ├── carrier │ │ │ │ │ │ ├── CarrierIdentifier.struct │ │ │ │ │ │ ├── ICarrierMessagingCallback.struct │ │ │ │ │ │ ├── ICarrierMessagingClientService.struct │ │ │ │ │ │ ├── ICarrierMessagingService.struct │ │ │ │ │ │ ├── ICarrierService.struct │ │ │ │ │ │ └── MessagePdu.struct │ │ │ │ │ ├── chooser │ │ │ │ │ │ ├── ChooserTarget.struct │ │ │ │ │ │ ├── IChooserTargetResult.struct │ │ │ │ │ │ └── IChooserTargetService.struct │ │ │ │ │ ├── contentcapture │ │ │ │ │ │ ├── ActivityEvent.struct │ │ │ │ │ │ ├── FlushMetrics.struct │ │ │ │ │ │ ├── IContentCaptureService.struct │ │ │ │ │ │ ├── IContentCaptureServiceCallback.struct │ │ │ │ │ │ └── SnapshotData.struct │ │ │ │ │ ├── contentsuggestions │ │ │ │ │ │ └── IContentSuggestionsService.struct │ │ │ │ │ ├── dreams │ │ │ │ │ │ ├── IDreamManager.struct │ │ │ │ │ │ └── IDreamService.struct │ │ │ │ │ ├── euicc │ │ │ │ │ │ ├── DownloadSubscriptionResult.struct │ │ │ │ │ │ ├── EuiccProfileInfo.struct │ │ │ │ │ │ ├── GetDefaultDownloadableSubscriptionListResult.struct │ │ │ │ │ │ ├── GetDownloadableSubscriptionMetadataResult.struct │ │ │ │ │ │ ├── GetEuiccProfileInfoListResult.struct │ │ │ │ │ │ ├── IDeleteSubscriptionCallback.struct │ │ │ │ │ │ ├── IDownloadSubscriptionCallback.struct │ │ │ │ │ │ ├── IEraseSubscriptionsCallback.struct │ │ │ │ │ │ ├── IEuiccService.struct │ │ │ │ │ │ ├── IGetDefaultDownloadableSubscriptionListCallback.struct │ │ │ │ │ │ ├── IGetDownloadableSubscriptionMetadataCallback.struct │ │ │ │ │ │ ├── IGetEidCallback.struct │ │ │ │ │ │ ├── IGetEuiccInfoCallback.struct │ │ │ │ │ │ ├── IGetEuiccProfileInfoListCallback.struct │ │ │ │ │ │ ├── IGetOtaStatusCallback.struct │ │ │ │ │ │ ├── IOtaStatusChangedCallback.struct │ │ │ │ │ │ ├── IRetainSubscriptionsForFactoryResetCallback.struct │ │ │ │ │ │ ├── ISwitchToSubscriptionCallback.struct │ │ │ │ │ │ └── IUpdateSubscriptionNicknameCallback.struct │ │ │ │ │ ├── gatekeeper │ │ │ │ │ │ ├── GateKeeperResponse.struct │ │ │ │ │ │ └── IGateKeeperService.struct │ │ │ │ │ ├── media │ │ │ │ │ │ ├── IMediaBrowserService.struct │ │ │ │ │ │ └── IMediaBrowserServiceCallbacks.struct │ │ │ │ │ ├── notification │ │ │ │ │ │ ├── Adjustment.struct │ │ │ │ │ │ ├── Condition.struct │ │ │ │ │ │ ├── IConditionListener.struct │ │ │ │ │ │ ├── IConditionProvider.struct │ │ │ │ │ │ ├── INotificationListener.struct │ │ │ │ │ │ ├── IStatusBarNotificationHolder.struct │ │ │ │ │ │ ├── NotificationRankingUpdate.struct │ │ │ │ │ │ ├── NotificationStats.struct │ │ │ │ │ │ ├── StatusBarNotification.struct │ │ │ │ │ │ ├── ZenModeConfig$ZenRule.struct │ │ │ │ │ │ └── ZenModeConfig.struct │ │ │ │ │ ├── oemlock │ │ │ │ │ │ └── IOemLockService.struct │ │ │ │ │ ├── persistentdata │ │ │ │ │ │ └── IPersistentDataBlockService.struct │ │ │ │ │ ├── quicksettings │ │ │ │ │ │ ├── IQSService.struct │ │ │ │ │ │ ├── IQSTileService.struct │ │ │ │ │ │ └── Tile.struct │ │ │ │ │ ├── resolver │ │ │ │ │ │ ├── IResolverRankerResult.struct │ │ │ │ │ │ ├── IResolverRankerService.struct │ │ │ │ │ │ └── ResolverTarget.struct │ │ │ │ │ ├── settings │ │ │ │ │ │ └── suggestions │ │ │ │ │ │ │ ├── ISuggestionService.struct │ │ │ │ │ │ │ └── Suggestion.struct │ │ │ │ │ ├── sms │ │ │ │ │ │ └── IFinancialSmsService.struct │ │ │ │ │ ├── textclassifier │ │ │ │ │ │ ├── ITextClassifierCallback.struct │ │ │ │ │ │ └── ITextClassifierService.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── ITrustAgentService.struct │ │ │ │ │ │ └── ITrustAgentServiceCallback.struct │ │ │ │ │ ├── voice │ │ │ │ │ │ ├── IVoiceInteractionService.struct │ │ │ │ │ │ ├── IVoiceInteractionSession.struct │ │ │ │ │ │ └── IVoiceInteractionSessionService.struct │ │ │ │ │ ├── vr │ │ │ │ │ │ ├── IPersistentVrStateCallbacks.struct │ │ │ │ │ │ ├── IVrListener.struct │ │ │ │ │ │ ├── IVrManager.struct │ │ │ │ │ │ └── IVrStateCallbacks.struct │ │ │ │ │ ├── wallpaper │ │ │ │ │ │ ├── IWallpaperConnection.struct │ │ │ │ │ │ ├── IWallpaperEngine.struct │ │ │ │ │ │ └── IWallpaperService.struct │ │ │ │ │ └── watchdog │ │ │ │ │ │ └── IExplicitHealthCheckService.struct │ │ │ │ ├── speech │ │ │ │ │ ├── IRecognitionListener.struct │ │ │ │ │ ├── IRecognitionService.struct │ │ │ │ │ └── tts │ │ │ │ │ │ ├── ITextToSpeechCallback.struct │ │ │ │ │ │ ├── ITextToSpeechService.struct │ │ │ │ │ │ └── Voice.struct │ │ │ │ ├── system │ │ │ │ │ └── suspend │ │ │ │ │ │ ├── ISuspendCallback.struct │ │ │ │ │ │ └── ISuspendControlService.struct │ │ │ │ ├── telecom │ │ │ │ │ ├── CallAudioState.struct │ │ │ │ │ ├── ConnectionRequest.struct │ │ │ │ │ ├── DisconnectCause.struct │ │ │ │ │ ├── ParcelableCall.struct │ │ │ │ │ ├── ParcelableConference.struct │ │ │ │ │ ├── ParcelableConnection.struct │ │ │ │ │ ├── PhoneAccount.struct │ │ │ │ │ ├── PhoneAccountHandle.struct │ │ │ │ │ ├── PhoneAccountSuggestion.struct │ │ │ │ │ ├── StatusHints.struct │ │ │ │ │ ├── TelecomAnalytics$SessionTiming.struct │ │ │ │ │ ├── TelecomAnalytics.struct │ │ │ │ │ ├── VideoProfile$CameraCapabilities.struct │ │ │ │ │ ├── VideoProfile.struct │ │ │ │ │ └── cts │ │ │ │ │ │ ├── redirectiontestapp │ │ │ │ │ │ └── ICtsCallRedirectionServiceController.struct │ │ │ │ │ │ ├── screeningtestapp │ │ │ │ │ │ └── ICallScreeningControl.struct │ │ │ │ │ │ └── thirdptyincallservice │ │ │ │ │ │ └── ICtsThirdPartyInCallServiceControl.struct │ │ │ │ ├── telephony │ │ │ │ │ ├── AvailableNetworkInfo.struct │ │ │ │ │ ├── CallAttributes.struct │ │ │ │ │ ├── CallQuality.struct │ │ │ │ │ ├── CarrierRestrictionRules.struct │ │ │ │ │ ├── CellInfo.struct │ │ │ │ │ ├── ClientRequestStats.struct │ │ │ │ │ ├── DataConnectionRealTimeInfo.struct │ │ │ │ │ ├── ICellInfoCallback.struct │ │ │ │ │ ├── IFinancialSmsCallback.struct │ │ │ │ │ ├── INetworkService.struct │ │ │ │ │ ├── INetworkServiceCallback.struct │ │ │ │ │ ├── IccOpenLogicalChannelResponse.struct │ │ │ │ │ ├── ImsiEncryptionInfo.struct │ │ │ │ │ ├── ModemActivityInfo.struct │ │ │ │ │ ├── ModemInfo.struct │ │ │ │ │ ├── NeighboringCellInfo.struct │ │ │ │ │ ├── NetworkRegistrationInfo.struct │ │ │ │ │ ├── NetworkScanRequest.struct │ │ │ │ │ ├── PhoneCapability.struct │ │ │ │ │ ├── PhoneNumberRange.struct │ │ │ │ │ ├── PhysicalChannelConfig.struct │ │ │ │ │ ├── PreciseCallState.struct │ │ │ │ │ ├── PreciseDataConnectionState.struct │ │ │ │ │ ├── ServiceState.struct │ │ │ │ │ ├── SignalStrength.struct │ │ │ │ │ ├── SubscriptionInfo.struct │ │ │ │ │ ├── SubscriptionPlan.struct │ │ │ │ │ ├── TelephonyHistogram.struct │ │ │ │ │ ├── UiccAccessRule.struct │ │ │ │ │ ├── UiccCardInfo.struct │ │ │ │ │ ├── UiccSlotInfo.struct │ │ │ │ │ ├── VisualVoicemailSmsFilterSettings.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── embmstestapp │ │ │ │ │ │ │ ├── ICtsDownloadMiddlewareControl.struct │ │ │ │ │ │ │ ├── ICtsGroupCallMiddlewareControl.struct │ │ │ │ │ │ │ └── ICtsStreamingMiddlewareControl.struct │ │ │ │ │ │ └── locationaccessingapp │ │ │ │ │ │ │ └── ICtsLocationAccessControl.struct │ │ │ │ │ ├── data │ │ │ │ │ │ ├── ApnSetting.struct │ │ │ │ │ │ ├── DataCallResponse.struct │ │ │ │ │ │ ├── DataProfile.struct │ │ │ │ │ │ ├── IDataService.struct │ │ │ │ │ │ ├── IDataServiceCallback.struct │ │ │ │ │ │ ├── IQualifiedNetworksService.struct │ │ │ │ │ │ └── IQualifiedNetworksServiceCallback.struct │ │ │ │ │ ├── emergency │ │ │ │ │ │ └── EmergencyNumber.struct │ │ │ │ │ ├── euicc │ │ │ │ │ │ ├── DownloadableSubscription.struct │ │ │ │ │ │ ├── EuiccInfo.struct │ │ │ │ │ │ ├── EuiccNotification.struct │ │ │ │ │ │ └── EuiccRulesAuthTable.struct │ │ │ │ │ ├── ims │ │ │ │ │ │ ├── ImsCallForwardInfo.struct │ │ │ │ │ │ ├── ImsCallProfile.struct │ │ │ │ │ │ ├── ImsConferenceState.struct │ │ │ │ │ │ ├── ImsExternalCallState.struct │ │ │ │ │ │ ├── ImsReasonInfo.struct │ │ │ │ │ │ ├── ImsSsData.struct │ │ │ │ │ │ ├── ImsSsInfo.struct │ │ │ │ │ │ ├── ImsStreamMediaProfile.struct │ │ │ │ │ │ ├── ImsSuppServiceNotification.struct │ │ │ │ │ │ ├── RcsEventQueryParams.struct │ │ │ │ │ │ ├── RcsEventQueryResultDescriptor.struct │ │ │ │ │ │ ├── RcsFileTransferCreationParams.struct │ │ │ │ │ │ ├── RcsIncomingMessageCreationParams.struct │ │ │ │ │ │ ├── RcsMessageQueryParams.struct │ │ │ │ │ │ ├── RcsMessageQueryResultParcelable.struct │ │ │ │ │ │ ├── RcsMessageSnippet.struct │ │ │ │ │ │ ├── RcsOutgoingMessageCreationParams.struct │ │ │ │ │ │ ├── RcsParticipantQueryParams.struct │ │ │ │ │ │ ├── RcsParticipantQueryResultParcelable.struct │ │ │ │ │ │ ├── RcsQueryContinuationToken.struct │ │ │ │ │ │ ├── RcsThreadQueryParams.struct │ │ │ │ │ │ ├── RcsThreadQueryResultParcelable.struct │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ ├── IImsCallSessionListener.struct │ │ │ │ │ │ │ ├── IImsCapabilityCallback.struct │ │ │ │ │ │ │ ├── IImsConfig.struct │ │ │ │ │ │ │ ├── IImsConfigCallback.struct │ │ │ │ │ │ │ ├── IImsMmTelFeature.struct │ │ │ │ │ │ │ ├── IImsMmTelListener.struct │ │ │ │ │ │ │ ├── IImsRcsFeature.struct │ │ │ │ │ │ │ ├── IImsRegistration.struct │ │ │ │ │ │ │ ├── IImsRegistrationCallback.struct │ │ │ │ │ │ │ ├── IImsServiceController.struct │ │ │ │ │ │ │ ├── IImsServiceControllerListener.struct │ │ │ │ │ │ │ ├── IImsSmsListener.struct │ │ │ │ │ │ │ └── IRcs.struct │ │ │ │ │ │ ├── feature │ │ │ │ │ │ │ └── CapabilityChangeRequest.struct │ │ │ │ │ │ └── stub │ │ │ │ │ │ │ └── ImsFeatureConfiguration.struct │ │ │ │ │ └── mbms │ │ │ │ │ │ ├── DownloadRequest.struct │ │ │ │ │ │ ├── FileInfo.struct │ │ │ │ │ │ ├── FileServiceInfo.struct │ │ │ │ │ │ ├── IDownloadProgressListener.struct │ │ │ │ │ │ ├── IDownloadStatusListener.struct │ │ │ │ │ │ ├── IGroupCallCallback.struct │ │ │ │ │ │ ├── IMbmsDownloadSessionCallback.struct │ │ │ │ │ │ ├── IMbmsGroupCallSessionCallback.struct │ │ │ │ │ │ ├── IMbmsStreamingSessionCallback.struct │ │ │ │ │ │ ├── IStreamingServiceCallback.struct │ │ │ │ │ │ ├── StreamingServiceInfo.struct │ │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── IMbmsDownloadService.struct │ │ │ │ │ │ ├── IMbmsGroupCallService.struct │ │ │ │ │ │ └── IMbmsStreamingService.struct │ │ │ │ ├── tests │ │ │ │ │ └── binder │ │ │ │ │ │ └── IBenchmark.struct │ │ │ │ ├── util │ │ │ │ │ ├── IRemoteMemoryIntArray.struct │ │ │ │ │ ├── MemoryIntArray.struct │ │ │ │ │ └── MergedConfiguration.struct │ │ │ │ ├── vendor │ │ │ │ │ └── powerstats │ │ │ │ │ │ ├── IPixelPowerStatsCallback.struct │ │ │ │ │ │ ├── IPixelPowerStatsProvider.struct │ │ │ │ │ │ └── StateResidencyData.struct │ │ │ │ ├── view │ │ │ │ │ ├── AppTransitionAnimationSpec.struct │ │ │ │ │ ├── DisplayInfo.struct │ │ │ │ │ ├── DragEvent.struct │ │ │ │ │ ├── IAppTransitionAnimationSpecsFuture.struct │ │ │ │ │ ├── IApplicationToken.struct │ │ │ │ │ ├── IDisplayFoldListener.struct │ │ │ │ │ ├── IDockedStackListener.struct │ │ │ │ │ ├── IGraphicsStats.struct │ │ │ │ │ ├── IGraphicsStatsCallback.struct │ │ │ │ │ ├── IInputFilter.struct │ │ │ │ │ ├── IInputFilterHost.struct │ │ │ │ │ ├── IInputMonitorHost.struct │ │ │ │ │ ├── IOnKeyguardExitResult.struct │ │ │ │ │ ├── IPinnedStackController.struct │ │ │ │ │ ├── IPinnedStackListener.struct │ │ │ │ │ ├── IRecentsAnimationController.struct │ │ │ │ │ ├── IRecentsAnimationRunner.struct │ │ │ │ │ ├── IRemoteAnimationFinishedCallback.struct │ │ │ │ │ ├── IRemoteAnimationRunner.struct │ │ │ │ │ ├── IRotationWatcher.struct │ │ │ │ │ ├── ISystemGestureExclusionListener.struct │ │ │ │ │ ├── IWallpaperVisibilityListener.struct │ │ │ │ │ ├── IWindow.struct │ │ │ │ │ ├── IWindowFocusObserver.struct │ │ │ │ │ ├── IWindowId.struct │ │ │ │ │ ├── IWindowManager.struct │ │ │ │ │ ├── IWindowSession.struct │ │ │ │ │ ├── IWindowSessionCallback.struct │ │ │ │ │ ├── InputChannel.struct │ │ │ │ │ ├── InputDevice.struct │ │ │ │ │ ├── InputEvent.struct │ │ │ │ │ ├── InputMonitor.struct │ │ │ │ │ ├── InsetsSourceControl.struct │ │ │ │ │ ├── InsetsState.struct │ │ │ │ │ ├── KeyCharacterMap.struct │ │ │ │ │ ├── KeyEvent.struct │ │ │ │ │ ├── MagnificationSpec.struct │ │ │ │ │ ├── MotionEvent.struct │ │ │ │ │ ├── PointerIcon.struct │ │ │ │ │ ├── RemoteAnimationAdapter.struct │ │ │ │ │ ├── RemoteAnimationDefinition$RemoteAnimationAdapterEntry.struct │ │ │ │ │ ├── RemoteAnimationDefinition.struct │ │ │ │ │ ├── RemoteAnimationTarget.struct │ │ │ │ │ ├── Surface.struct │ │ │ │ │ ├── SurfaceControl.struct │ │ │ │ │ ├── WindowAnimationFrameStats.struct │ │ │ │ │ ├── WindowContentFrameStats.struct │ │ │ │ │ ├── accessibility │ │ │ │ │ │ ├── AccessibilityEvent.struct │ │ │ │ │ │ ├── AccessibilityNodeInfo$TouchDelegateInfo.struct │ │ │ │ │ │ ├── AccessibilityNodeInfo.struct │ │ │ │ │ │ ├── AccessibilityWindowInfo.struct │ │ │ │ │ │ ├── IAccessibilityInteractionConnection.struct │ │ │ │ │ │ ├── IAccessibilityInteractionConnectionCallback.struct │ │ │ │ │ │ ├── IAccessibilityManager.struct │ │ │ │ │ │ └── IAccessibilityManagerClient.struct │ │ │ │ │ ├── autofill │ │ │ │ │ │ ├── AutofillId.struct │ │ │ │ │ │ ├── AutofillValue.struct │ │ │ │ │ │ ├── IAugmentedAutofillManagerClient.struct │ │ │ │ │ │ ├── IAutoFillManager.struct │ │ │ │ │ │ ├── IAutoFillManagerClient.struct │ │ │ │ │ │ └── IAutofillWindowPresenter.struct │ │ │ │ │ ├── contentcapture │ │ │ │ │ │ ├── ContentCaptureCondition.struct │ │ │ │ │ │ ├── ContentCaptureContext.struct │ │ │ │ │ │ ├── DataRemovalRequest.struct │ │ │ │ │ │ ├── IContentCaptureDirectManager.struct │ │ │ │ │ │ └── IContentCaptureManager.struct │ │ │ │ │ ├── inputmethod │ │ │ │ │ │ ├── CompletionInfo.struct │ │ │ │ │ │ ├── CorrectionInfo.struct │ │ │ │ │ │ ├── CursorAnchorInfo.struct │ │ │ │ │ │ ├── EditorInfo.struct │ │ │ │ │ │ ├── ExtractedText.struct │ │ │ │ │ │ ├── ExtractedTextRequest.struct │ │ │ │ │ │ ├── InputBinding.struct │ │ │ │ │ │ ├── InputContentInfo.struct │ │ │ │ │ │ ├── InputMethodInfo.struct │ │ │ │ │ │ ├── InputMethodSubtype.struct │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── IWindowFocusStealer.struct │ │ │ │ │ ├── textclassifier │ │ │ │ │ │ ├── SelectionEvent.struct │ │ │ │ │ │ ├── TextClassificationContext.struct │ │ │ │ │ │ ├── TextClassificationSessionId.struct │ │ │ │ │ │ ├── TextClassifierEvent$ConversationActionsEvent.struct │ │ │ │ │ │ ├── TextClassifierEvent$LanguageDetectionEvent.struct │ │ │ │ │ │ ├── TextClassifierEvent$TextLinkifyEvent.struct │ │ │ │ │ │ ├── TextClassifierEvent$TextSelectionEvent.struct │ │ │ │ │ │ └── TextClassifierEvent.struct │ │ │ │ │ └── textservice │ │ │ │ │ │ ├── SentenceSuggestionsInfo.struct │ │ │ │ │ │ ├── SpellCheckerInfo.struct │ │ │ │ │ │ ├── SpellCheckerSubtype.struct │ │ │ │ │ │ ├── SuggestionsInfo.struct │ │ │ │ │ │ └── TextInfo.struct │ │ │ │ ├── webkit │ │ │ │ │ ├── IWebViewUpdateService.struct │ │ │ │ │ ├── WebViewProviderInfo.struct │ │ │ │ │ └── WebViewProviderResponse.struct │ │ │ │ └── widget │ │ │ │ │ └── RemoteViews.struct │ │ │ ├── another_package │ │ │ │ └── IFaz.struct │ │ │ ├── classPaths.txt │ │ │ ├── com │ │ │ │ ├── android │ │ │ │ │ ├── bips │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ └── SizeD.struct │ │ │ │ │ │ └── render │ │ │ │ │ │ │ └── IPdfRender.struct │ │ │ │ │ ├── car │ │ │ │ │ │ ├── keventreader │ │ │ │ │ │ │ ├── IEventCallback.struct │ │ │ │ │ │ │ ├── IEventProvider.struct │ │ │ │ │ │ │ └── KeypressEvent.struct │ │ │ │ │ │ ├── procfsinspector │ │ │ │ │ │ │ ├── IProcfsInspector.struct │ │ │ │ │ │ │ └── ProcessInfo.struct │ │ │ │ │ │ ├── radio │ │ │ │ │ │ │ ├── bands │ │ │ │ │ │ │ │ ├── ProgramType.struct │ │ │ │ │ │ │ │ └── RegionConfig.struct │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ ├── IRadioAppCallback.struct │ │ │ │ │ │ │ │ ├── IRadioAppService.struct │ │ │ │ │ │ │ │ └── ITuneCallback.struct │ │ │ │ │ │ └── setupwizardlib │ │ │ │ │ │ │ └── IInitialLockSetupService.struct │ │ │ │ │ ├── compatibility │ │ │ │ │ │ └── common │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── devicepolicy │ │ │ │ │ │ │ └── provisioning │ │ │ │ │ │ │ └── IBooleanCallback.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── IBinderPermissionTestService.struct │ │ │ │ │ │ ├── comp │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ ├── deviceowner │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ └── hostside │ │ │ │ │ │ │ │ ├── IMyService.struct │ │ │ │ │ │ │ │ ├── INetworkCallback.struct │ │ │ │ │ │ │ │ ├── INetworkStateObserver.struct │ │ │ │ │ │ │ │ └── IRemoteSocketFactory.struct │ │ │ │ │ │ └── verifier │ │ │ │ │ │ │ ├── managedprovisioning │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ │ └── projection │ │ │ │ │ │ │ └── IProjectionService.struct │ │ │ │ │ ├── development │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ ├── dialer │ │ │ │ │ │ └── simulator │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── ISimulatorService.struct │ │ │ │ │ ├── emailcommon │ │ │ │ │ │ ├── provider │ │ │ │ │ │ │ └── Policy.struct │ │ │ │ │ │ └── service │ │ │ │ │ │ │ ├── HostAuthCompat.struct │ │ │ │ │ │ │ ├── IAccountService.struct │ │ │ │ │ │ │ ├── IEmailService.struct │ │ │ │ │ │ │ ├── IEmailServiceCallback.struct │ │ │ │ │ │ │ ├── IPolicyService.struct │ │ │ │ │ │ │ └── SearchParams.struct │ │ │ │ │ ├── frameworks │ │ │ │ │ │ ├── coretests │ │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ │ ├── IBinderProxyCountingService.struct │ │ │ │ │ │ │ │ ├── IBpcCallbackObserver.struct │ │ │ │ │ │ │ │ ├── IBpcTestAppCmdService.struct │ │ │ │ │ │ │ │ ├── IBpcTestServiceCmdService.struct │ │ │ │ │ │ │ │ ├── ICmdCallback.struct │ │ │ │ │ │ │ │ ├── ICmdReceiver.struct │ │ │ │ │ │ │ │ └── ITestRemoteCallback.struct │ │ │ │ │ │ └── perftests │ │ │ │ │ │ │ └── am │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── ITimeReceiverCallback.struct │ │ │ │ │ ├── ims │ │ │ │ │ │ ├── IRcsPresenceListener.struct │ │ │ │ │ │ ├── ImsConfigListener.struct │ │ │ │ │ │ ├── RcsTypeIdPair.struct │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── IImsCallSession.struct │ │ │ │ │ │ │ ├── IImsCallSessionListener.struct │ │ │ │ │ │ │ ├── IImsConfig.struct │ │ │ │ │ │ │ ├── IImsEcbm.struct │ │ │ │ │ │ │ ├── IImsEcbmListener.struct │ │ │ │ │ │ │ ├── IImsExternalCallStateListener.struct │ │ │ │ │ │ │ ├── IImsFeatureStatusCallback.struct │ │ │ │ │ │ │ ├── IImsMMTelFeature.struct │ │ │ │ │ │ │ ├── IImsMultiEndpoint.struct │ │ │ │ │ │ │ ├── IImsRcsFeature.struct │ │ │ │ │ │ │ ├── IImsRegistrationListener.struct │ │ │ │ │ │ │ ├── IImsService.struct │ │ │ │ │ │ │ ├── IImsServiceController.struct │ │ │ │ │ │ │ ├── IImsServiceFeatureCallback.struct │ │ │ │ │ │ │ ├── IImsStreamMediaSession.struct │ │ │ │ │ │ │ ├── IImsUt.struct │ │ │ │ │ │ │ ├── IImsUtListener.struct │ │ │ │ │ │ │ ├── IImsVideoCallCallback.struct │ │ │ │ │ │ │ ├── IImsVideoCallProvider.struct │ │ │ │ │ │ │ ├── IRcsPresence.struct │ │ │ │ │ │ │ ├── IRcsService.struct │ │ │ │ │ │ │ └── uce │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── CapInfo.struct │ │ │ │ │ │ │ ├── StatusCode.struct │ │ │ │ │ │ │ └── UceLong.struct │ │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ ├── IOptionsListener.struct │ │ │ │ │ │ │ ├── IOptionsService.struct │ │ │ │ │ │ │ ├── OptionsCapInfo.struct │ │ │ │ │ │ │ ├── OptionsCmdStatus.struct │ │ │ │ │ │ │ └── OptionsSipResponse.struct │ │ │ │ │ │ │ ├── presence │ │ │ │ │ │ │ ├── IPresenceListener.struct │ │ │ │ │ │ │ ├── IPresenceService.struct │ │ │ │ │ │ │ ├── PresCapInfo.struct │ │ │ │ │ │ │ ├── PresCmdStatus.struct │ │ │ │ │ │ │ ├── PresPublishTriggerType.struct │ │ │ │ │ │ │ ├── PresResInfo.struct │ │ │ │ │ │ │ ├── PresRlmiInfo.struct │ │ │ │ │ │ │ ├── PresServiceInfo.struct │ │ │ │ │ │ │ ├── PresSipResponse.struct │ │ │ │ │ │ │ └── PresTupleInfo.struct │ │ │ │ │ │ │ └── uceservice │ │ │ │ │ │ │ ├── IUceListener.struct │ │ │ │ │ │ │ └── IUceService.struct │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── IAppOpsActiveCallback.struct │ │ │ │ │ │ │ ├── IAppOpsCallback.struct │ │ │ │ │ │ │ ├── IAppOpsNotedCallback.struct │ │ │ │ │ │ │ ├── IAppOpsService.struct │ │ │ │ │ │ │ ├── IBatteryStats.struct │ │ │ │ │ │ │ ├── IMediaContainerService.struct │ │ │ │ │ │ │ ├── ISoundTriggerService.struct │ │ │ │ │ │ │ ├── IVoiceActionCheckCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractionManagerService.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSessionListener.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSessionShowCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractor.struct │ │ │ │ │ │ │ ├── IVoiceInteractorCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractorRequest.struct │ │ │ │ │ │ │ └── procstats │ │ │ │ │ │ │ │ └── IProcessStats.struct │ │ │ │ │ │ ├── appwidget │ │ │ │ │ │ │ ├── IAppWidgetHost.struct │ │ │ │ │ │ │ └── IAppWidgetService.struct │ │ │ │ │ │ ├── backup │ │ │ │ │ │ │ ├── IBackupTransport.struct │ │ │ │ │ │ │ └── IObbBackupService.struct │ │ │ │ │ │ ├── car │ │ │ │ │ │ │ └── ICarServiceHelper.struct │ │ │ │ │ │ ├── inputmethod │ │ │ │ │ │ │ ├── IInputContentUriToken.struct │ │ │ │ │ │ │ ├── IInputMethodPrivilegedOperations.struct │ │ │ │ │ │ │ ├── IMultiClientInputMethod.struct │ │ │ │ │ │ │ ├── IMultiClientInputMethodPrivilegedOperations.struct │ │ │ │ │ │ │ └── IMultiClientInputMethodSession.struct │ │ │ │ │ │ ├── location │ │ │ │ │ │ │ ├── ILocationProvider.struct │ │ │ │ │ │ │ ├── ILocationProviderManager.struct │ │ │ │ │ │ │ ├── ProviderProperties.struct │ │ │ │ │ │ │ └── ProviderRequest.struct │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ ├── INetworkWatchlistManager.struct │ │ │ │ │ │ │ ├── IOemNetd.struct │ │ │ │ │ │ │ ├── IOemNetdUnsolicitedEventListener.struct │ │ │ │ │ │ │ ├── LegacyVpnInfo.struct │ │ │ │ │ │ │ ├── VpnConfig.struct │ │ │ │ │ │ │ ├── VpnInfo.struct │ │ │ │ │ │ │ └── VpnProfile.struct │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ ├── AppFuseMount.struct │ │ │ │ │ │ │ ├── IDropBoxManagerService.struct │ │ │ │ │ │ │ ├── IParcelFileDescriptorFactory.struct │ │ │ │ │ │ │ ├── IResultReceiver.struct │ │ │ │ │ │ │ └── IShellCallback.struct │ │ │ │ │ │ ├── policy │ │ │ │ │ │ │ ├── IKeyguardDismissCallback.struct │ │ │ │ │ │ │ ├── IKeyguardDrawnCallback.struct │ │ │ │ │ │ │ ├── IKeyguardExitCallback.struct │ │ │ │ │ │ │ ├── IKeyguardService.struct │ │ │ │ │ │ │ ├── IKeyguardStateCallback.struct │ │ │ │ │ │ │ └── IShortcutService.struct │ │ │ │ │ │ ├── statusbar │ │ │ │ │ │ │ ├── IStatusBar.struct │ │ │ │ │ │ │ ├── IStatusBarService.struct │ │ │ │ │ │ │ ├── NotificationVisibility.struct │ │ │ │ │ │ │ ├── RegisterStatusBarResult.struct │ │ │ │ │ │ │ └── StatusBarIcon.struct │ │ │ │ │ │ ├── telecom │ │ │ │ │ │ │ ├── ICallRedirectionAdapter.struct │ │ │ │ │ │ │ ├── ICallRedirectionService.struct │ │ │ │ │ │ │ ├── ICallScreeningAdapter.struct │ │ │ │ │ │ │ ├── ICallScreeningService.struct │ │ │ │ │ │ │ ├── IConnectionService.struct │ │ │ │ │ │ │ ├── IConnectionServiceAdapter.struct │ │ │ │ │ │ │ ├── IInCallAdapter.struct │ │ │ │ │ │ │ ├── IInCallService.struct │ │ │ │ │ │ │ ├── IPhoneAccountSuggestionCallback.struct │ │ │ │ │ │ │ ├── IPhoneAccountSuggestionService.struct │ │ │ │ │ │ │ ├── ITelecomService.struct │ │ │ │ │ │ │ ├── IVideoCallback.struct │ │ │ │ │ │ │ ├── IVideoProvider.struct │ │ │ │ │ │ │ └── RemoteServiceCallback.struct │ │ │ │ │ │ ├── telephony │ │ │ │ │ │ │ ├── CellNetworkScanResult.struct │ │ │ │ │ │ │ ├── IApnSourceService.struct │ │ │ │ │ │ │ ├── ICarrierConfigLoader.struct │ │ │ │ │ │ │ ├── IIccPhoneBook.struct │ │ │ │ │ │ │ ├── IIntegerConsumer.struct │ │ │ │ │ │ │ ├── IMms.struct │ │ │ │ │ │ │ ├── INumberVerificationCallback.struct │ │ │ │ │ │ │ ├── IOnSubscriptionsChangedListener.struct │ │ │ │ │ │ │ ├── IOns.struct │ │ │ │ │ │ │ ├── IPhoneStateListener.struct │ │ │ │ │ │ │ ├── IPhoneSubInfo.struct │ │ │ │ │ │ │ ├── ISetOpportunisticDataCallback.struct │ │ │ │ │ │ │ ├── ISms.struct │ │ │ │ │ │ │ ├── ISub.struct │ │ │ │ │ │ │ ├── ITelephony.struct │ │ │ │ │ │ │ ├── ITelephonyRegistry.struct │ │ │ │ │ │ │ ├── IUpdateAvailableNetworksCallback.struct │ │ │ │ │ │ │ ├── IWapPushManager.struct │ │ │ │ │ │ │ ├── OperatorInfo.struct │ │ │ │ │ │ │ ├── SmsRawData.struct │ │ │ │ │ │ │ ├── euicc │ │ │ │ │ │ │ │ ├── IAuthenticateServerCallback.struct │ │ │ │ │ │ │ │ ├── ICancelSessionCallback.struct │ │ │ │ │ │ │ │ ├── IDeleteProfileCallback.struct │ │ │ │ │ │ │ │ ├── IDisableProfileCallback.struct │ │ │ │ │ │ │ │ ├── IEuiccCardController.struct │ │ │ │ │ │ │ │ ├── IEuiccController.struct │ │ │ │ │ │ │ │ ├── IGetAllProfilesCallback.struct │ │ │ │ │ │ │ │ ├── IGetDefaultSmdpAddressCallback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccChallengeCallback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccInfo1Callback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccInfo2Callback.struct │ │ │ │ │ │ │ │ ├── IGetProfileCallback.struct │ │ │ │ │ │ │ │ ├── IGetRulesAuthTableCallback.struct │ │ │ │ │ │ │ │ ├── IGetSmdsAddressCallback.struct │ │ │ │ │ │ │ │ ├── IListNotificationsCallback.struct │ │ │ │ │ │ │ │ ├── ILoadBoundProfilePackageCallback.struct │ │ │ │ │ │ │ │ ├── IPrepareDownloadCallback.struct │ │ │ │ │ │ │ │ ├── IRemoveNotificationFromListCallback.struct │ │ │ │ │ │ │ │ ├── IResetMemoryCallback.struct │ │ │ │ │ │ │ │ ├── IRetrieveNotificationCallback.struct │ │ │ │ │ │ │ │ ├── IRetrieveNotificationListCallback.struct │ │ │ │ │ │ │ │ ├── ISetDefaultSmdpAddressCallback.struct │ │ │ │ │ │ │ │ ├── ISetNicknameCallback.struct │ │ │ │ │ │ │ │ └── ISwitchToProfileCallback.struct │ │ │ │ │ │ │ └── uicc │ │ │ │ │ │ │ │ └── AdnRecord.struct │ │ │ │ │ │ ├── textservice │ │ │ │ │ │ │ ├── ISpellCheckerService.struct │ │ │ │ │ │ │ ├── ISpellCheckerServiceCallback.struct │ │ │ │ │ │ │ ├── ISpellCheckerSession.struct │ │ │ │ │ │ │ ├── ISpellCheckerSessionListener.struct │ │ │ │ │ │ │ ├── ITextServicesManager.struct │ │ │ │ │ │ │ └── ITextServicesSessionListener.struct │ │ │ │ │ │ ├── view │ │ │ │ │ │ │ ├── IDragAndDropPermissions.struct │ │ │ │ │ │ │ ├── IInputContext.struct │ │ │ │ │ │ │ ├── IInputContextCallback.struct │ │ │ │ │ │ │ ├── IInputMethod.struct │ │ │ │ │ │ │ ├── IInputMethodClient.struct │ │ │ │ │ │ │ ├── IInputMethodManager.struct │ │ │ │ │ │ │ ├── IInputMethodSession.struct │ │ │ │ │ │ │ ├── IInputSessionCallback.struct │ │ │ │ │ │ │ └── InputBindResult.struct │ │ │ │ │ │ └── widget │ │ │ │ │ │ │ ├── ICheckCredentialProgressCallback.struct │ │ │ │ │ │ │ ├── ILockSettings.struct │ │ │ │ │ │ │ ├── IRemoteViewsFactory.struct │ │ │ │ │ │ │ └── VerifyCredentialResponse.struct │ │ │ │ │ ├── keychain │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ └── IKeyChainServiceTestSupport.struct │ │ │ │ │ ├── net │ │ │ │ │ │ ├── IProxyCallback.struct │ │ │ │ │ │ ├── IProxyPortListener.struct │ │ │ │ │ │ └── IProxyService.struct │ │ │ │ │ ├── onemedia │ │ │ │ │ │ ├── IPlayerCallback.struct │ │ │ │ │ │ ├── IPlayerService.struct │ │ │ │ │ │ └── playback │ │ │ │ │ │ │ └── IRequestCallback.struct │ │ │ │ │ ├── phone │ │ │ │ │ │ ├── INetworkQueryService.struct │ │ │ │ │ │ └── INetworkQueryServiceCallback.struct │ │ │ │ │ ├── printspooler │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ ├── IPdfEditor.struct │ │ │ │ │ │ │ └── IPdfRenderer.struct │ │ │ │ │ ├── providers │ │ │ │ │ │ └── media │ │ │ │ │ │ │ └── IMtpService.struct │ │ │ │ │ ├── server │ │ │ │ │ │ └── wifi │ │ │ │ │ │ │ └── wificond │ │ │ │ │ │ │ ├── NativeScanResult.struct │ │ │ │ │ │ │ ├── PnoSettings.struct │ │ │ │ │ │ │ └── SingleScanSettings.struct │ │ │ │ │ ├── servicestests │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ ├── ICmdReceiverService.struct │ │ │ │ │ │ │ └── INetworkStateObserver.struct │ │ │ │ │ ├── smspush │ │ │ │ │ │ └── unitTests │ │ │ │ │ │ │ └── IDataVerify.struct │ │ │ │ │ ├── systemui │ │ │ │ │ │ ├── recents │ │ │ │ │ │ │ ├── IRecentsNonSystemUserCallbacks.struct │ │ │ │ │ │ │ └── IRecentsSystemUserCallbacks.struct │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ └── recents │ │ │ │ │ │ │ ├── IOverviewProxy.struct │ │ │ │ │ │ │ └── ISystemUiProxy.struct │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ │ └── basicprojectwithaidl │ │ │ │ │ │ │ ├── ITest.struct │ │ │ │ │ │ │ └── Rect.struct │ │ │ │ │ └── tv │ │ │ │ │ │ ├── settings │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── IActivityTransitionBitmapProvider.struct │ │ │ │ │ │ └── testing │ │ │ │ │ │ └── testinput │ │ │ │ │ │ ├── ChannelStateData.struct │ │ │ │ │ │ └── ITestInputControl.struct │ │ │ │ ├── example │ │ │ │ │ └── android │ │ │ │ │ │ └── apis │ │ │ │ │ │ └── app │ │ │ │ │ │ ├── IRemoteService.struct │ │ │ │ │ │ ├── IRemoteServiceCallback.struct │ │ │ │ │ │ └── ISecondary.struct │ │ │ │ ├── google │ │ │ │ │ └── android │ │ │ │ │ │ ├── setupcompat │ │ │ │ │ │ └── ISetupCompatService.struct │ │ │ │ │ │ └── startop │ │ │ │ │ │ └── iorap │ │ │ │ │ │ ├── ActivityInfo.struct │ │ │ │ │ │ ├── AppIntentEvent.struct │ │ │ │ │ │ ├── AppLaunchEvent.struct │ │ │ │ │ │ ├── IIorap.struct │ │ │ │ │ │ ├── ITaskListener.struct │ │ │ │ │ │ ├── PackageEvent.struct │ │ │ │ │ │ ├── RequestId.struct │ │ │ │ │ │ ├── SystemServiceEvent.struct │ │ │ │ │ │ ├── SystemServiceUserEvent.struct │ │ │ │ │ │ └── TaskResult.struct │ │ │ │ └── mediatek │ │ │ │ │ └── tunerservice │ │ │ │ │ └── IMtkTuner.struct │ │ │ ├── org │ │ │ │ └── codeaurora │ │ │ │ │ ├── ims │ │ │ │ │ └── internal │ │ │ │ │ │ ├── IQtiImsExt.struct │ │ │ │ │ │ └── IQtiImsExtListener.struct │ │ │ │ │ └── internal │ │ │ │ │ └── IExtTelephony.struct │ │ │ ├── other_package │ │ │ │ └── IBaz.struct │ │ │ ├── some_package │ │ │ │ ├── IBar.struct │ │ │ │ ├── IFoo.struct │ │ │ │ ├── Thing.struct │ │ │ │ └── sub_package │ │ │ │ │ ├── IFoo.struct │ │ │ │ │ └── SubThing.struct │ │ │ ├── src │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── car │ │ │ │ │ └── setupwizardlib │ │ │ │ │ └── LockConfig.struct │ │ │ ├── test │ │ │ │ └── ParcelableTest.struct │ │ │ └── test_package │ │ │ │ ├── Bar.struct │ │ │ │ ├── Foo.struct │ │ │ │ ├── IBaz.struct │ │ │ │ ├── IEmpty.struct │ │ │ │ ├── ITest.struct │ │ │ │ └── RegularPolygon.struct │ │ ├── android11 │ │ │ ├── android │ │ │ │ ├── IDataSource.struct │ │ │ │ ├── IGraphicBufferSource.struct │ │ │ │ ├── IMediaExtractor.struct │ │ │ │ ├── IMediaExtractorService.struct │ │ │ │ ├── IOMXBufferSource.struct │ │ │ │ ├── IOMXNode.struct │ │ │ │ ├── accessibilityservice │ │ │ │ │ ├── AccessibilityGestureEvent.struct │ │ │ │ │ ├── AccessibilityServiceInfo.struct │ │ │ │ │ ├── IAccessibilityServiceClient.struct │ │ │ │ │ └── IAccessibilityServiceConnection.struct │ │ │ │ ├── accounts │ │ │ │ │ ├── Account.struct │ │ │ │ │ ├── AuthenticatorDescription.struct │ │ │ │ │ ├── IAccountAuthenticator.struct │ │ │ │ │ ├── IAccountAuthenticatorResponse.struct │ │ │ │ │ ├── IAccountManager.struct │ │ │ │ │ └── IAccountManagerResponse.struct │ │ │ │ ├── aidl │ │ │ │ │ ├── loggable │ │ │ │ │ │ └── ILoggableInterface.struct │ │ │ │ │ └── tests │ │ │ │ │ │ ├── INamedCallback.struct │ │ │ │ │ │ ├── StructuredParcelable.struct │ │ │ │ │ │ ├── generic │ │ │ │ │ │ └── Baz.struct │ │ │ │ │ │ └── map │ │ │ │ │ │ ├── Bar.struct │ │ │ │ │ │ ├── Foo.struct │ │ │ │ │ │ └── IEmpty.struct │ │ │ │ ├── apex │ │ │ │ │ ├── ApexInfo.struct │ │ │ │ │ ├── ApexInfoList.struct │ │ │ │ │ ├── ApexSessionInfo.struct │ │ │ │ │ ├── ApexSessionParams.struct │ │ │ │ │ └── IApexService.struct │ │ │ │ ├── app │ │ │ │ │ ├── AsyncNotedAppOp.struct │ │ │ │ │ ├── AutomaticZenRule.struct │ │ │ │ │ ├── ContentProviderHolder.struct │ │ │ │ │ ├── IActivityController.struct │ │ │ │ │ ├── IActivityManager.struct │ │ │ │ │ ├── IActivityPendingResult.struct │ │ │ │ │ ├── IActivityTaskManager.struct │ │ │ │ │ ├── IAlarmCompleteListener.struct │ │ │ │ │ ├── IAlarmListener.struct │ │ │ │ │ ├── IAlarmManager.struct │ │ │ │ │ ├── IAppTask.struct │ │ │ │ │ ├── IAppTraceRetriever.struct │ │ │ │ │ ├── IApplicationThread.struct │ │ │ │ │ ├── IAssistDataReceiver.struct │ │ │ │ │ ├── IBackupAgent.struct │ │ │ │ │ ├── IEphemeralResolver.struct │ │ │ │ │ ├── IInstantAppResolver.struct │ │ │ │ │ ├── IInstrumentationWatcher.struct │ │ │ │ │ ├── INotificationManager.struct │ │ │ │ │ ├── IProcessObserver.struct │ │ │ │ │ ├── IRequestFinishCallback.struct │ │ │ │ │ ├── ISearchManager.struct │ │ │ │ │ ├── ISearchManagerCallback.struct │ │ │ │ │ ├── IServiceConnection.struct │ │ │ │ │ ├── IStopUserCallback.struct │ │ │ │ │ ├── ITaskStackListener.struct │ │ │ │ │ ├── ITransientNotification.struct │ │ │ │ │ ├── ITransientNotificationCallback.struct │ │ │ │ │ ├── IUiAutomationConnection.struct │ │ │ │ │ ├── IUiModeManager.struct │ │ │ │ │ ├── IUidObserver.struct │ │ │ │ │ ├── IUriGrantsManager.struct │ │ │ │ │ ├── IUserSwitchObserver.struct │ │ │ │ │ ├── IWallpaperManager.struct │ │ │ │ │ ├── IWallpaperManagerCallback.struct │ │ │ │ │ ├── IWindowToken.struct │ │ │ │ │ ├── Notification$Action.struct │ │ │ │ │ ├── Notification$BubbleMetadata.struct │ │ │ │ │ ├── Notification.struct │ │ │ │ │ ├── NotificationChannel.struct │ │ │ │ │ ├── NotificationChannelGroup.struct │ │ │ │ │ ├── NotificationHistory.struct │ │ │ │ │ ├── PendingIntent.struct │ │ │ │ │ ├── PictureInPictureParams.struct │ │ │ │ │ ├── ProfilerInfo.struct │ │ │ │ │ ├── RemoteAction.struct │ │ │ │ │ ├── RemoteInput.struct │ │ │ │ │ ├── RuntimeAppOpAccessMessage.struct │ │ │ │ │ ├── SearchableInfo.struct │ │ │ │ │ ├── SyncNotedAppOp.struct │ │ │ │ │ ├── Vr2dDisplayProperties.struct │ │ │ │ │ ├── WaitResult.struct │ │ │ │ │ ├── WallpaperColors.struct │ │ │ │ │ ├── WallpaperInfo.struct │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── FactoryResetProtectionPolicy.struct │ │ │ │ │ │ ├── IDeviceAdminService.struct │ │ │ │ │ │ ├── IDevicePolicyManager.struct │ │ │ │ │ │ ├── IKeyguardCallback.struct │ │ │ │ │ │ ├── IKeyguardClient.struct │ │ │ │ │ │ ├── NetworkEvent.struct │ │ │ │ │ │ ├── PasswordMetrics.struct │ │ │ │ │ │ ├── StartInstallingUpdateCallback.struct │ │ │ │ │ │ ├── SystemUpdateInfo.struct │ │ │ │ │ │ ├── SystemUpdatePolicy$ValidationFailedException.struct │ │ │ │ │ │ └── SystemUpdatePolicy.struct │ │ │ │ │ ├── appops │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ ├── IAppOpsForegroundControlService.struct │ │ │ │ │ │ │ ├── IAppOpsUserClient.struct │ │ │ │ │ │ │ └── IAppOpsUserService.struct │ │ │ │ │ ├── assist │ │ │ │ │ │ ├── AssistContent.struct │ │ │ │ │ │ ├── AssistStructure$HtmlInfoNode.struct │ │ │ │ │ │ └── AssistStructure.struct │ │ │ │ │ ├── backup │ │ │ │ │ │ ├── BackupProgress.struct │ │ │ │ │ │ ├── IBackupCallback.struct │ │ │ │ │ │ ├── IBackupManager.struct │ │ │ │ │ │ ├── IBackupManagerMonitor.struct │ │ │ │ │ │ ├── IBackupObserver.struct │ │ │ │ │ │ ├── IFullBackupRestoreObserver.struct │ │ │ │ │ │ ├── IRestoreObserver.struct │ │ │ │ │ │ ├── IRestoreSession.struct │ │ │ │ │ │ ├── ISelectBackupTransportCallback.struct │ │ │ │ │ │ ├── RestoreDescription.struct │ │ │ │ │ │ └── RestoreSet.struct │ │ │ │ │ ├── blob │ │ │ │ │ │ ├── BlobHandle.struct │ │ │ │ │ │ ├── BlobInfo.struct │ │ │ │ │ │ ├── IBlobCommitCallback.struct │ │ │ │ │ │ ├── IBlobStoreManager.struct │ │ │ │ │ │ ├── IBlobStoreSession.struct │ │ │ │ │ │ └── LeaseInfo.struct │ │ │ │ │ ├── contentsuggestions │ │ │ │ │ │ ├── ClassificationsRequest.struct │ │ │ │ │ │ ├── ContentClassification.struct │ │ │ │ │ │ ├── ContentSelection.struct │ │ │ │ │ │ ├── IClassificationsCallback.struct │ │ │ │ │ │ ├── IContentSuggestionsManager.struct │ │ │ │ │ │ ├── ISelectionsCallback.struct │ │ │ │ │ │ └── SelectionsRequest.struct │ │ │ │ │ ├── job │ │ │ │ │ │ ├── IJobCallback.struct │ │ │ │ │ │ ├── IJobScheduler.struct │ │ │ │ │ │ ├── IJobService.struct │ │ │ │ │ │ ├── JobInfo$TriggerContentUri.struct │ │ │ │ │ │ ├── JobInfo.struct │ │ │ │ │ │ ├── JobParameters.struct │ │ │ │ │ │ └── JobWorkItem.struct │ │ │ │ │ ├── prediction │ │ │ │ │ │ ├── AppPredictionContext.struct │ │ │ │ │ │ ├── AppPredictionSessionId.struct │ │ │ │ │ │ ├── AppTargetEvent.struct │ │ │ │ │ │ ├── IPredictionCallback.struct │ │ │ │ │ │ └── IPredictionManager.struct │ │ │ │ │ ├── role │ │ │ │ │ │ ├── IOnRoleHoldersChangedListener.struct │ │ │ │ │ │ ├── IRoleController.struct │ │ │ │ │ │ └── IRoleManager.struct │ │ │ │ │ ├── servertransaction │ │ │ │ │ │ └── ClientTransaction.struct │ │ │ │ │ ├── slice │ │ │ │ │ │ ├── ISliceListener.struct │ │ │ │ │ │ ├── ISliceManager.struct │ │ │ │ │ │ ├── Slice.struct │ │ │ │ │ │ ├── SliceItem.struct │ │ │ │ │ │ └── SliceSpec.struct │ │ │ │ │ ├── stubs │ │ │ │ │ │ └── ISecondary.struct │ │ │ │ │ ├── timedetector │ │ │ │ │ │ ├── ITimeDetectorService.struct │ │ │ │ │ │ ├── ManualTimeSuggestion.struct │ │ │ │ │ │ ├── NetworkTimeSuggestion.struct │ │ │ │ │ │ └── TelephonyTimeSuggestion.struct │ │ │ │ │ ├── timezone │ │ │ │ │ │ ├── ICallback.struct │ │ │ │ │ │ ├── IRulesManager.struct │ │ │ │ │ │ └── RulesState.struct │ │ │ │ │ ├── timezonedetector │ │ │ │ │ │ ├── ITimeZoneDetectorService.struct │ │ │ │ │ │ ├── ManualTimeZoneSuggestion.struct │ │ │ │ │ │ └── TelephonyTimeZoneSuggestion.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── IStrongAuthTracker.struct │ │ │ │ │ │ ├── ITrustListener.struct │ │ │ │ │ │ └── ITrustManager.struct │ │ │ │ │ └── usage │ │ │ │ │ │ ├── CacheQuotaHint.struct │ │ │ │ │ │ ├── ExternalStorageStats.struct │ │ │ │ │ │ ├── ICacheQuotaService.struct │ │ │ │ │ │ ├── IStorageStatsManager.struct │ │ │ │ │ │ ├── IUsageStatsManager.struct │ │ │ │ │ │ ├── StorageStats.struct │ │ │ │ │ │ ├── UsageEvents.struct │ │ │ │ │ │ └── cts │ │ │ │ │ │ └── ITestReceiver.struct │ │ │ │ ├── appsecurity │ │ │ │ │ └── cts │ │ │ │ │ │ └── keyrotationtest │ │ │ │ │ │ └── service │ │ │ │ │ │ └── ISignatureQueryService.struct │ │ │ │ ├── appwidget │ │ │ │ │ └── AppWidgetProviderInfo.struct │ │ │ │ ├── automotive │ │ │ │ │ ├── computepipe │ │ │ │ │ │ ├── registry │ │ │ │ │ │ │ ├── IClientInfo.struct │ │ │ │ │ │ │ ├── IPipeQuery.struct │ │ │ │ │ │ │ └── IPipeRegistration.struct │ │ │ │ │ │ └── runner │ │ │ │ │ │ │ ├── IPipeDebugger.struct │ │ │ │ │ │ │ ├── IPipeRunner.struct │ │ │ │ │ │ │ ├── IPipeStateCallback.struct │ │ │ │ │ │ │ ├── IPipeStream.struct │ │ │ │ │ │ │ ├── PacketDescriptor.struct │ │ │ │ │ │ │ ├── PipeDescriptor.struct │ │ │ │ │ │ │ ├── PipeInputConfig.struct │ │ │ │ │ │ │ ├── PipeInputConfigCameraDesc.struct │ │ │ │ │ │ │ ├── PipeInputConfigImageFileDesc.struct │ │ │ │ │ │ │ ├── PipeInputConfigInputSourceDesc.struct │ │ │ │ │ │ │ ├── PipeInputConfigVideoFileDesc.struct │ │ │ │ │ │ │ ├── PipeOffloadConfig.struct │ │ │ │ │ │ │ ├── PipeOffloadConfigOffloadDesc.struct │ │ │ │ │ │ │ ├── PipeOutputConfig.struct │ │ │ │ │ │ │ ├── PipeOutputConfigOutputDesc.struct │ │ │ │ │ │ │ ├── PipeTerminationConfig.struct │ │ │ │ │ │ │ ├── PipeTerminationConfigTerminationDesc.struct │ │ │ │ │ │ │ └── ProfilingData.struct │ │ │ │ │ └── watchdog │ │ │ │ │ │ ├── ICarWatchdog.struct │ │ │ │ │ │ ├── ICarWatchdogClient.struct │ │ │ │ │ │ └── ICarWatchdogMonitor.struct │ │ │ │ ├── bluetooth │ │ │ │ │ ├── BluetoothActivityEnergyInfo.struct │ │ │ │ │ ├── BluetoothAudioConfig.struct │ │ │ │ │ ├── BluetoothAvrcpPlayerSettings.struct │ │ │ │ │ ├── BluetoothCodecConfig.struct │ │ │ │ │ ├── BluetoothCodecStatus.struct │ │ │ │ │ ├── BluetoothDevice.struct │ │ │ │ │ ├── BluetoothGattCharacteristic.struct │ │ │ │ │ ├── BluetoothGattDescriptor.struct │ │ │ │ │ ├── BluetoothGattIncludedService.struct │ │ │ │ │ ├── BluetoothGattService.struct │ │ │ │ │ ├── BluetoothHeadsetClientCall.struct │ │ │ │ │ ├── BluetoothHidDeviceAppQosSettings.struct │ │ │ │ │ ├── BluetoothHidDeviceAppSdpSettings.struct │ │ │ │ │ ├── IBluetooth.struct │ │ │ │ │ ├── IBluetoothA2dp.struct │ │ │ │ │ ├── IBluetoothA2dpSink.struct │ │ │ │ │ ├── IBluetoothA2dpSinkCallback.struct │ │ │ │ │ ├── IBluetoothA2dpSource.struct │ │ │ │ │ ├── IBluetoothA2dpSourceCallback.struct │ │ │ │ │ ├── IBluetoothAvrcpControl.struct │ │ │ │ │ ├── IBluetoothAvrcpControlCallback.struct │ │ │ │ │ ├── IBluetoothAvrcpController.struct │ │ │ │ │ ├── IBluetoothAvrcpTarget.struct │ │ │ │ │ ├── IBluetoothAvrcpTargetCallback.struct │ │ │ │ │ ├── IBluetoothCallback.struct │ │ │ │ │ ├── IBluetoothGatt.struct │ │ │ │ │ ├── IBluetoothGattCallback.struct │ │ │ │ │ ├── IBluetoothGattClient.struct │ │ │ │ │ ├── IBluetoothGattClientCallback.struct │ │ │ │ │ ├── IBluetoothGattServer.struct │ │ │ │ │ ├── IBluetoothGattServerCallback.struct │ │ │ │ │ ├── IBluetoothHeadset.struct │ │ │ │ │ ├── IBluetoothHeadsetClient.struct │ │ │ │ │ ├── IBluetoothHeadsetPhone.struct │ │ │ │ │ ├── IBluetoothHearingAid.struct │ │ │ │ │ ├── IBluetoothHidDevice.struct │ │ │ │ │ ├── IBluetoothHidDeviceCallback.struct │ │ │ │ │ ├── IBluetoothHidHost.struct │ │ │ │ │ ├── IBluetoothLeAdvertiser.struct │ │ │ │ │ ├── IBluetoothLeAdvertiserCallback.struct │ │ │ │ │ ├── IBluetoothLeScanner.struct │ │ │ │ │ ├── IBluetoothLeScannerCallback.struct │ │ │ │ │ ├── IBluetoothLowEnergy.struct │ │ │ │ │ ├── IBluetoothLowEnergyCallback.struct │ │ │ │ │ ├── IBluetoothManager.struct │ │ │ │ │ ├── IBluetoothManagerCallback.struct │ │ │ │ │ ├── IBluetoothMap.struct │ │ │ │ │ ├── IBluetoothMapClient.struct │ │ │ │ │ ├── IBluetoothMetadataListener.struct │ │ │ │ │ ├── IBluetoothPan.struct │ │ │ │ │ ├── IBluetoothPbap.struct │ │ │ │ │ ├── IBluetoothPbapClient.struct │ │ │ │ │ ├── IBluetoothProfileServiceConnection.struct │ │ │ │ │ ├── IBluetoothSap.struct │ │ │ │ │ ├── IBluetoothSocketManager.struct │ │ │ │ │ ├── IBluetoothStateChangeCallback.struct │ │ │ │ │ ├── UidTraffic.struct │ │ │ │ │ └── le │ │ │ │ │ │ ├── AdvertiseData.struct │ │ │ │ │ │ ├── AdvertisingSetParameters.struct │ │ │ │ │ │ ├── IAdvertisingSetCallback.struct │ │ │ │ │ │ ├── IPeriodicAdvertisingCallback.struct │ │ │ │ │ │ ├── IScannerCallback.struct │ │ │ │ │ │ ├── PeriodicAdvertisingParameters.struct │ │ │ │ │ │ ├── PeriodicAdvertisingReport.struct │ │ │ │ │ │ ├── ScanFilter.struct │ │ │ │ │ │ ├── ScanResult.struct │ │ │ │ │ │ └── ScanSettings.struct │ │ │ │ ├── brillo │ │ │ │ │ └── IUpdateEngine.struct │ │ │ │ ├── car │ │ │ │ │ ├── IAppFocus.struct │ │ │ │ │ ├── IAppFocusListener.struct │ │ │ │ │ ├── IAppFocusOwnershipCallback.struct │ │ │ │ │ ├── ICar.struct │ │ │ │ │ ├── ICarBluetooth.struct │ │ │ │ │ ├── ICarBluetoothUserService.struct │ │ │ │ │ ├── ICarBugreportCallback.struct │ │ │ │ │ ├── ICarBugreportService.struct │ │ │ │ │ ├── ICarConnectionListener.struct │ │ │ │ │ ├── ICarInfo.struct │ │ │ │ │ ├── ICarOccupantZone.struct │ │ │ │ │ ├── ICarOccupantZoneCallback.struct │ │ │ │ │ ├── ICarProjection.struct │ │ │ │ │ ├── ICarProjectionKeyEventHandler.struct │ │ │ │ │ ├── ICarProjectionStatusListener.struct │ │ │ │ │ ├── ICarUserService.struct │ │ │ │ │ ├── IExperimentalCar.struct │ │ │ │ │ ├── IExperimentalCarHelper.struct │ │ │ │ │ ├── ILocationManagerProxy.struct │ │ │ │ │ ├── IPerUserCarService.struct │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── IInstrumentClusterManagerCallback.struct │ │ │ │ │ │ ├── IInstrumentClusterManagerService.struct │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ ├── IInstrumentCluster.struct │ │ │ │ │ │ │ ├── IInstrumentClusterHelper.struct │ │ │ │ │ │ │ └── IInstrumentClusterNavigation.struct │ │ │ │ │ ├── content │ │ │ │ │ │ └── pm │ │ │ │ │ │ │ ├── AppBlockingPackageInfo.struct │ │ │ │ │ │ │ ├── CarAppBlockingPolicy.struct │ │ │ │ │ │ │ ├── ICarAppBlockingPolicy.struct │ │ │ │ │ │ │ ├── ICarAppBlockingPolicySetter.struct │ │ │ │ │ │ │ └── ICarPackageManager.struct │ │ │ │ │ ├── diagnostic │ │ │ │ │ │ ├── CarDiagnosticEvent.struct │ │ │ │ │ │ ├── ICarDiagnostic.struct │ │ │ │ │ │ └── ICarDiagnosticEventListener.struct │ │ │ │ │ ├── drivingstate │ │ │ │ │ │ ├── CarDrivingStateEvent.struct │ │ │ │ │ │ ├── CarUxRestrictions.struct │ │ │ │ │ │ ├── CarUxRestrictionsConfiguration$RestrictionsPerSpeedRange.struct │ │ │ │ │ │ ├── CarUxRestrictionsConfiguration.struct │ │ │ │ │ │ ├── ICarDrivingState.struct │ │ │ │ │ │ ├── ICarDrivingStateChangeListener.struct │ │ │ │ │ │ ├── ICarUxRestrictionsChangeListener.struct │ │ │ │ │ │ └── ICarUxRestrictionsManager.struct │ │ │ │ │ ├── experimental │ │ │ │ │ │ ├── DriverAwarenessEvent.struct │ │ │ │ │ │ ├── DriverAwarenessSupplierConfig.struct │ │ │ │ │ │ ├── DriverDistractionChangeEvent.struct │ │ │ │ │ │ ├── IDriverAwarenessSupplier.struct │ │ │ │ │ │ ├── IDriverAwarenessSupplierCallback.struct │ │ │ │ │ │ ├── IDriverDistractionChangeListener.struct │ │ │ │ │ │ ├── IDriverDistractionManager.struct │ │ │ │ │ │ └── ITestDemoExperimental.struct │ │ │ │ │ ├── hardware │ │ │ │ │ │ ├── CarPropertyConfig.struct │ │ │ │ │ │ ├── CarPropertyValue.struct │ │ │ │ │ │ ├── CarSensorConfig.struct │ │ │ │ │ │ ├── CarSensorEvent.struct │ │ │ │ │ │ ├── ICarSensor.struct │ │ │ │ │ │ ├── ICarSensorEventListener.struct │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── ICarPower.struct │ │ │ │ │ │ │ └── ICarPowerStateListener.struct │ │ │ │ │ │ └── property │ │ │ │ │ │ │ ├── CarPropertyEvent.struct │ │ │ │ │ │ │ ├── ICarProperty.struct │ │ │ │ │ │ │ └── ICarPropertyEventListener.struct │ │ │ │ │ ├── input │ │ │ │ │ │ ├── ICarInput.struct │ │ │ │ │ │ ├── ICarInputCallback.struct │ │ │ │ │ │ ├── ICarInputListener.struct │ │ │ │ │ │ └── RotaryEvent.struct │ │ │ │ │ ├── media │ │ │ │ │ │ ├── CarAudioPatchHandle.struct │ │ │ │ │ │ ├── ICarAudio.struct │ │ │ │ │ │ ├── ICarMedia.struct │ │ │ │ │ │ ├── ICarMediaSourceListener.struct │ │ │ │ │ │ └── ICarVolumeCallback.struct │ │ │ │ │ ├── navigation │ │ │ │ │ │ └── CarNavigationInstrumentCluster.struct │ │ │ │ │ ├── occupantawareness │ │ │ │ │ │ ├── IOccupantAwarenessEventCallback.struct │ │ │ │ │ │ ├── IOccupantAwarenessManager.struct │ │ │ │ │ │ ├── OccupantAwarenessDetection.struct │ │ │ │ │ │ └── SystemStatusEvent.struct │ │ │ │ │ ├── projection │ │ │ │ │ │ ├── ProjectionStatus$MobileDevice.struct │ │ │ │ │ │ └── ProjectionStatus.struct │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── ICarConfigurationManager.struct │ │ │ │ │ │ └── SpeedBumpConfiguration.struct │ │ │ │ │ ├── storagemonitoring │ │ │ │ │ │ ├── ICarStorageMonitoring.struct │ │ │ │ │ │ ├── IIoStatsListener.struct │ │ │ │ │ │ ├── IoStats.struct │ │ │ │ │ │ ├── IoStatsEntry.struct │ │ │ │ │ │ ├── WearEstimate.struct │ │ │ │ │ │ └── WearEstimateChange.struct │ │ │ │ │ ├── test │ │ │ │ │ │ └── ICarTest.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── ICarTrustAgentBleCallback.struct │ │ │ │ │ │ ├── ICarTrustAgentEnrollment.struct │ │ │ │ │ │ ├── ICarTrustAgentEnrollmentCallback.struct │ │ │ │ │ │ └── TrustedDeviceInfo.struct │ │ │ │ │ ├── user │ │ │ │ │ │ ├── IUserNotice.struct │ │ │ │ │ │ ├── IUserNoticeUI.struct │ │ │ │ │ │ ├── UserIdentificationAssociationResponse.struct │ │ │ │ │ │ └── UserRemovalResult.struct │ │ │ │ │ ├── vms │ │ │ │ │ │ ├── IVmsBrokerService.struct │ │ │ │ │ │ ├── IVmsClientCallback.struct │ │ │ │ │ │ ├── VmsAssociatedLayer.struct │ │ │ │ │ │ ├── VmsAvailableLayers.struct │ │ │ │ │ │ ├── VmsLayer.struct │ │ │ │ │ │ ├── VmsLayerDependency.struct │ │ │ │ │ │ ├── VmsProviderInfo.struct │ │ │ │ │ │ ├── VmsRegistrationInfo.struct │ │ │ │ │ │ └── VmsSubscriptionState.struct │ │ │ │ │ └── watchdog │ │ │ │ │ │ ├── ICarWatchdogService.struct │ │ │ │ │ │ └── ICarWatchdogServiceCallback.struct │ │ │ │ ├── companion │ │ │ │ │ ├── AssociationRequest.struct │ │ │ │ │ ├── ICompanionDeviceDiscoveryService.struct │ │ │ │ │ ├── ICompanionDeviceManager.struct │ │ │ │ │ └── IFindDeviceCallback.struct │ │ │ │ ├── content │ │ │ │ │ ├── AutofillOptions.struct │ │ │ │ │ ├── ClipData.struct │ │ │ │ │ ├── ClipDescription.struct │ │ │ │ │ ├── ComponentName.struct │ │ │ │ │ ├── ContentCaptureOptions.struct │ │ │ │ │ ├── ContentValues.struct │ │ │ │ │ ├── IClipboard.struct │ │ │ │ │ ├── IContentService.struct │ │ │ │ │ ├── ICrossUserContentService.struct │ │ │ │ │ ├── IIntentReceiver.struct │ │ │ │ │ ├── IIntentSender.struct │ │ │ │ │ ├── IOnPrimaryClipChangedListener.struct │ │ │ │ │ ├── IRestrictionsManager.struct │ │ │ │ │ ├── ISyncAdapter.struct │ │ │ │ │ ├── ISyncAdapterUnsyncableAccountCallback.struct │ │ │ │ │ ├── ISyncContext.struct │ │ │ │ │ ├── ISyncServiceAdapter.struct │ │ │ │ │ ├── ISyncStatusObserver.struct │ │ │ │ │ ├── Intent$ShortcutIconResource.struct │ │ │ │ │ ├── Intent.struct │ │ │ │ │ ├── IntentFilter.struct │ │ │ │ │ ├── IntentSender.struct │ │ │ │ │ ├── LocusId.struct │ │ │ │ │ ├── PeriodicSync.struct │ │ │ │ │ ├── SyncAdapterType.struct │ │ │ │ │ ├── SyncInfo.struct │ │ │ │ │ ├── SyncRequest.struct │ │ │ │ │ ├── SyncResult.struct │ │ │ │ │ ├── SyncStats.struct │ │ │ │ │ ├── SyncStatusInfo.struct │ │ │ │ │ ├── integrity │ │ │ │ │ │ └── IAppIntegrityManager.struct │ │ │ │ │ ├── om │ │ │ │ │ │ ├── IOverlayManager.struct │ │ │ │ │ │ └── OverlayInfo.struct │ │ │ │ │ ├── pm │ │ │ │ │ │ ├── ActivityInfo.struct │ │ │ │ │ │ ├── ApplicationInfo.struct │ │ │ │ │ │ ├── ChangedPackages.struct │ │ │ │ │ │ ├── ConfigurationInfo.struct │ │ │ │ │ │ ├── DataLoaderParamsParcel.struct │ │ │ │ │ │ ├── FeatureGroupInfo.struct │ │ │ │ │ │ ├── FeatureInfo.struct │ │ │ │ │ │ ├── FileSystemControlParcel.struct │ │ │ │ │ │ ├── ICrossProfileApps.struct │ │ │ │ │ │ ├── IDataLoader.struct │ │ │ │ │ │ ├── IDataLoaderManager.struct │ │ │ │ │ │ ├── IDataLoaderStatusListener.struct │ │ │ │ │ │ ├── IDexModuleRegisterCallback.struct │ │ │ │ │ │ ├── ILauncherApps.struct │ │ │ │ │ │ ├── IOnAppsChangedListener.struct │ │ │ │ │ │ ├── IOtaDexopt.struct │ │ │ │ │ │ ├── IPackageChangeObserver.struct │ │ │ │ │ │ ├── IPackageDataObserver.struct │ │ │ │ │ │ ├── IPackageDeleteObserver.struct │ │ │ │ │ │ ├── IPackageDeleteObserver2.struct │ │ │ │ │ │ ├── IPackageInstallObserver2.struct │ │ │ │ │ │ ├── IPackageInstaller.struct │ │ │ │ │ │ ├── IPackageInstallerCallback.struct │ │ │ │ │ │ ├── IPackageInstallerSession.struct │ │ │ │ │ │ ├── IPackageInstallerSessionFileSystemConnector.struct │ │ │ │ │ │ ├── IPackageManager.struct │ │ │ │ │ │ ├── IPackageManagerNative.struct │ │ │ │ │ │ ├── IPackageMoveObserver.struct │ │ │ │ │ │ ├── IPackageStatsObserver.struct │ │ │ │ │ │ ├── IPinItemRequest.struct │ │ │ │ │ │ ├── IShortcutChangeCallback.struct │ │ │ │ │ │ ├── IShortcutService.struct │ │ │ │ │ │ ├── InstallSourceInfo.struct │ │ │ │ │ │ ├── InstallationFileParcel.struct │ │ │ │ │ │ ├── InstantAppRequestInfo.struct │ │ │ │ │ │ ├── InstrumentationInfo.struct │ │ │ │ │ │ ├── KeySet.struct │ │ │ │ │ │ ├── ModuleInfo.struct │ │ │ │ │ │ ├── PackageChangeEvent.struct │ │ │ │ │ │ ├── PackageInfo.struct │ │ │ │ │ │ ├── PackageInfoLite.struct │ │ │ │ │ │ ├── PackageStats.struct │ │ │ │ │ │ ├── PathPermission.struct │ │ │ │ │ │ ├── PermissionGroupInfo.struct │ │ │ │ │ │ ├── PermissionInfo.struct │ │ │ │ │ │ ├── ProviderInfo.struct │ │ │ │ │ │ ├── ProviderInfoList.struct │ │ │ │ │ │ ├── ResolveInfo.struct │ │ │ │ │ │ ├── ServiceInfo.struct │ │ │ │ │ │ ├── SharedLibraryInfo.struct │ │ │ │ │ │ ├── ShortcutInfo.struct │ │ │ │ │ │ ├── ShortcutQueryWrapper.struct │ │ │ │ │ │ ├── Signature.struct │ │ │ │ │ │ ├── SigningInfo.struct │ │ │ │ │ │ ├── SuspendDialogInfo.struct │ │ │ │ │ │ ├── UserInfo.struct │ │ │ │ │ │ ├── VerifierDeviceIdentity.struct │ │ │ │ │ │ ├── VersionedPackage.struct │ │ │ │ │ │ ├── dex │ │ │ │ │ │ │ ├── IArtManager.struct │ │ │ │ │ │ │ └── ISnapshotRuntimeProfileCallback.struct │ │ │ │ │ │ └── permission │ │ │ │ │ │ │ ├── IRuntimePermissionPresenter.struct │ │ │ │ │ │ │ └── SplitPermissionInfoParcelable.struct │ │ │ │ │ ├── res │ │ │ │ │ │ ├── ColorStateList.struct │ │ │ │ │ │ ├── CompatibilityInfo.struct │ │ │ │ │ │ ├── Configuration.struct │ │ │ │ │ │ └── ObbInfo.struct │ │ │ │ │ └── rollback │ │ │ │ │ │ └── IRollbackManager.struct │ │ │ │ ├── database │ │ │ │ │ └── IContentObserver.struct │ │ │ │ ├── debug │ │ │ │ │ ├── IAdbManager.struct │ │ │ │ │ └── IAdbTransport.struct │ │ │ │ ├── dvr │ │ │ │ │ ├── IVirtualTouchpadService.struct │ │ │ │ │ ├── IVrComposer.struct │ │ │ │ │ └── IVrComposerCallback.struct │ │ │ │ ├── graphics │ │ │ │ │ ├── Bitmap.struct │ │ │ │ │ ├── GraphicBuffer.struct │ │ │ │ │ ├── Insets.struct │ │ │ │ │ ├── Point.struct │ │ │ │ │ ├── Rect.struct │ │ │ │ │ ├── Region.struct │ │ │ │ │ └── drawable │ │ │ │ │ │ └── Icon.struct │ │ │ │ ├── gsi │ │ │ │ │ ├── AvbPublicKey.struct │ │ │ │ │ ├── GsiProgress.struct │ │ │ │ │ ├── IGsiService.struct │ │ │ │ │ ├── IGsiServiceCallback.struct │ │ │ │ │ ├── IImageService.struct │ │ │ │ │ ├── IProgressCallback.struct │ │ │ │ │ └── MappedImage.struct │ │ │ │ ├── hardware │ │ │ │ │ ├── CameraInfo.struct │ │ │ │ │ ├── CameraStatus.struct │ │ │ │ │ ├── ICamera.struct │ │ │ │ │ ├── ICameraClient.struct │ │ │ │ │ ├── ICameraService.struct │ │ │ │ │ ├── ICameraServiceListener.struct │ │ │ │ │ ├── ICameraServiceProxy.struct │ │ │ │ │ ├── IConsumerIrService.struct │ │ │ │ │ ├── ISensorPrivacyListener.struct │ │ │ │ │ ├── ISensorPrivacyManager.struct │ │ │ │ │ ├── ISerialManager.struct │ │ │ │ │ ├── automotive │ │ │ │ │ │ └── occupant_awareness │ │ │ │ │ │ │ ├── DriverMonitoringDetection.struct │ │ │ │ │ │ │ ├── GazeDetection.struct │ │ │ │ │ │ │ ├── IOccupantAwareness.struct │ │ │ │ │ │ │ ├── IOccupantAwarenessClientCallback.struct │ │ │ │ │ │ │ ├── OccupantDetection.struct │ │ │ │ │ │ │ ├── OccupantDetections.struct │ │ │ │ │ │ │ └── PresenceDetection.struct │ │ │ │ │ ├── biometrics │ │ │ │ │ │ ├── BiometricSourceType.struct │ │ │ │ │ │ ├── IAuthService.struct │ │ │ │ │ │ ├── IBiometricAuthenticator.struct │ │ │ │ │ │ ├── IBiometricEnabledOnKeyguardCallback.struct │ │ │ │ │ │ ├── IBiometricService.struct │ │ │ │ │ │ ├── IBiometricServiceLockoutResetCallback.struct │ │ │ │ │ │ ├── IBiometricServiceReceiver.struct │ │ │ │ │ │ └── IBiometricServiceReceiverInternal.struct │ │ │ │ │ ├── camera2 │ │ │ │ │ │ ├── CaptureRequest.struct │ │ │ │ │ │ ├── ICameraDeviceCallbacks.struct │ │ │ │ │ │ ├── ICameraDeviceUser.struct │ │ │ │ │ │ ├── ICameraOfflineSession.struct │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ ├── CameraMetadataNative.struct │ │ │ │ │ │ │ ├── CaptureResultExtras.struct │ │ │ │ │ │ │ └── PhysicalCaptureResultInfo.struct │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── OutputConfiguration.struct │ │ │ │ │ │ │ ├── SessionConfiguration.struct │ │ │ │ │ │ │ ├── VendorTagDescriptor.struct │ │ │ │ │ │ │ └── VendorTagDescriptorCache.struct │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── CameraIdAndSessionConfiguration.struct │ │ │ │ │ │ │ ├── ConcurrentCameraIdCombination.struct │ │ │ │ │ │ │ └── SubmitInfo.struct │ │ │ │ │ ├── common │ │ │ │ │ │ └── NativeHandle.struct │ │ │ │ │ ├── display │ │ │ │ │ │ ├── BrightnessConfiguration.struct │ │ │ │ │ │ ├── BrightnessCorrection.struct │ │ │ │ │ │ ├── Curve.struct │ │ │ │ │ │ ├── IColorDisplayManager.struct │ │ │ │ │ │ ├── IDisplayManager.struct │ │ │ │ │ │ ├── IDisplayManagerCallback.struct │ │ │ │ │ │ ├── IVirtualDisplayCallback.struct │ │ │ │ │ │ ├── Time.struct │ │ │ │ │ │ ├── VirtualDisplayConfig.struct │ │ │ │ │ │ ├── WifiDisplay.struct │ │ │ │ │ │ ├── WifiDisplaySessionInfo.struct │ │ │ │ │ │ └── WifiDisplayStatus.struct │ │ │ │ │ ├── face │ │ │ │ │ │ ├── Face.struct │ │ │ │ │ │ ├── IFaceService.struct │ │ │ │ │ │ └── IFaceServiceReceiver.struct │ │ │ │ │ ├── fingerprint │ │ │ │ │ │ ├── Fingerprint.struct │ │ │ │ │ │ ├── IFingerprintClientActiveCallback.struct │ │ │ │ │ │ ├── IFingerprintService.struct │ │ │ │ │ │ └── IFingerprintServiceReceiver.struct │ │ │ │ │ ├── graphics │ │ │ │ │ │ └── common │ │ │ │ │ │ │ ├── Cta861_3.struct │ │ │ │ │ │ │ ├── ExtendableType.struct │ │ │ │ │ │ │ ├── HardwareBuffer.struct │ │ │ │ │ │ │ ├── HardwareBufferDescription.struct │ │ │ │ │ │ │ ├── PlaneLayout.struct │ │ │ │ │ │ │ ├── PlaneLayoutComponent.struct │ │ │ │ │ │ │ ├── Rect.struct │ │ │ │ │ │ │ ├── Smpte2086.struct │ │ │ │ │ │ │ └── XyColor.struct │ │ │ │ │ ├── hdmi │ │ │ │ │ │ ├── HdmiDeviceInfo.struct │ │ │ │ │ │ ├── HdmiHotplugEvent.struct │ │ │ │ │ │ ├── HdmiPortInfo.struct │ │ │ │ │ │ ├── IHdmiCecVolumeControlFeatureListener.struct │ │ │ │ │ │ ├── IHdmiControlCallback.struct │ │ │ │ │ │ ├── IHdmiControlService.struct │ │ │ │ │ │ ├── IHdmiControlStatusChangeListener.struct │ │ │ │ │ │ ├── IHdmiDeviceEventListener.struct │ │ │ │ │ │ ├── IHdmiHotplugEventListener.struct │ │ │ │ │ │ ├── IHdmiInputChangeListener.struct │ │ │ │ │ │ ├── IHdmiMhlVendorCommandListener.struct │ │ │ │ │ │ ├── IHdmiRecordListener.struct │ │ │ │ │ │ ├── IHdmiSystemAudioModeChangeListener.struct │ │ │ │ │ │ └── IHdmiVendorCommandListener.struct │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── Certificate.struct │ │ │ │ │ │ ├── HardwareInformation.struct │ │ │ │ │ │ ├── IIdentityCredential.struct │ │ │ │ │ │ ├── IIdentityCredentialStore.struct │ │ │ │ │ │ ├── IWritableIdentityCredential.struct │ │ │ │ │ │ ├── RequestDataItem.struct │ │ │ │ │ │ ├── RequestNamespace.struct │ │ │ │ │ │ └── SecureAccessControlProfile.struct │ │ │ │ │ ├── input │ │ │ │ │ │ ├── IInputDevicesChangedListener.struct │ │ │ │ │ │ ├── IInputManager.struct │ │ │ │ │ │ ├── ITabletModeChangedListener.struct │ │ │ │ │ │ ├── InputDeviceIdentifier.struct │ │ │ │ │ │ ├── KeyboardLayout.struct │ │ │ │ │ │ └── TouchCalibration.struct │ │ │ │ │ ├── iris │ │ │ │ │ │ └── IIrisService.struct │ │ │ │ │ ├── keymaster │ │ │ │ │ │ ├── HardwareAuthToken.struct │ │ │ │ │ │ ├── Timestamp.struct │ │ │ │ │ │ └── VerificationToken.struct │ │ │ │ │ ├── light │ │ │ │ │ │ ├── HwLight.struct │ │ │ │ │ │ ├── HwLightState.struct │ │ │ │ │ │ └── ILights.struct │ │ │ │ │ ├── lights │ │ │ │ │ │ ├── ILightsManager.struct │ │ │ │ │ │ ├── Light.struct │ │ │ │ │ │ └── LightState.struct │ │ │ │ │ ├── location │ │ │ │ │ │ ├── ActivityChangedEvent.struct │ │ │ │ │ │ ├── ActivityRecognitionEvent.struct │ │ │ │ │ │ ├── ContextHubInfo.struct │ │ │ │ │ │ ├── ContextHubMessage.struct │ │ │ │ │ │ ├── GeofenceHardwareMonitorEvent.struct │ │ │ │ │ │ ├── GeofenceHardwareRequestParcelable.struct │ │ │ │ │ │ ├── IActivityRecognitionHardware.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareClient.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareSink.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareWatcher.struct │ │ │ │ │ │ ├── IContextHubCallback.struct │ │ │ │ │ │ ├── IContextHubClient.struct │ │ │ │ │ │ ├── IContextHubClientCallback.struct │ │ │ │ │ │ ├── IContextHubService.struct │ │ │ │ │ │ ├── IContextHubTransactionCallback.struct │ │ │ │ │ │ ├── IGeofenceHardware.struct │ │ │ │ │ │ ├── IGeofenceHardwareCallback.struct │ │ │ │ │ │ ├── IGeofenceHardwareMonitorCallback.struct │ │ │ │ │ │ ├── MemoryRegion.struct │ │ │ │ │ │ ├── NanoApp.struct │ │ │ │ │ │ ├── NanoAppBinary.struct │ │ │ │ │ │ ├── NanoAppFilter.struct │ │ │ │ │ │ ├── NanoAppInstanceInfo.struct │ │ │ │ │ │ ├── NanoAppMessage.struct │ │ │ │ │ │ └── NanoAppState.struct │ │ │ │ │ ├── power │ │ │ │ │ │ └── IPower.struct │ │ │ │ │ ├── radio │ │ │ │ │ │ ├── Announcement.struct │ │ │ │ │ │ ├── IAnnouncementListener.struct │ │ │ │ │ │ ├── ICloseHandle.struct │ │ │ │ │ │ ├── IRadioService.struct │ │ │ │ │ │ ├── ITuner.struct │ │ │ │ │ │ ├── ITunerCallback.struct │ │ │ │ │ │ ├── ProgramSelector$Identifier.struct │ │ │ │ │ │ └── ProgramSelector.struct │ │ │ │ │ ├── rebootescrow │ │ │ │ │ │ └── IRebootEscrow.struct │ │ │ │ │ ├── soundtrigger │ │ │ │ │ │ ├── IRecognitionStatusCallback.struct │ │ │ │ │ │ └── KeyphraseMetadata.struct │ │ │ │ │ ├── tests │ │ │ │ │ │ └── extension │ │ │ │ │ │ │ └── vibrator │ │ │ │ │ │ │ └── ICustomVibrator.struct │ │ │ │ │ ├── usb │ │ │ │ │ │ ├── IUsbManager.struct │ │ │ │ │ │ ├── IUsbSerialReader.struct │ │ │ │ │ │ ├── ParcelableUsbPort.struct │ │ │ │ │ │ ├── UsbAccessory.struct │ │ │ │ │ │ ├── UsbDevice.struct │ │ │ │ │ │ └── UsbPortStatus.struct │ │ │ │ │ └── vibrator │ │ │ │ │ │ ├── CompositeEffect.struct │ │ │ │ │ │ ├── IVibrator.struct │ │ │ │ │ │ └── IVibratorCallback.struct │ │ │ │ ├── location │ │ │ │ │ ├── Address.struct │ │ │ │ │ ├── Country.struct │ │ │ │ │ ├── Criteria.struct │ │ │ │ │ ├── GeocoderParams.struct │ │ │ │ │ ├── Geofence.struct │ │ │ │ │ ├── GnssAntennaInfo$PhaseCenterOffset.struct │ │ │ │ │ ├── GnssAntennaInfo$SphericalCorrections.struct │ │ │ │ │ ├── GnssAntennaInfo.struct │ │ │ │ │ ├── GnssMeasurement.struct │ │ │ │ │ ├── GnssMeasurementCorrections.struct │ │ │ │ │ ├── GnssMeasurementsEvent.struct │ │ │ │ │ ├── GnssNavigationMessage.struct │ │ │ │ │ ├── GnssRequest.struct │ │ │ │ │ ├── IBatchedLocationCallback.struct │ │ │ │ │ ├── ICountryDetector.struct │ │ │ │ │ ├── ICountryListener.struct │ │ │ │ │ ├── IFusedGeofenceHardware.struct │ │ │ │ │ ├── IGeocodeProvider.struct │ │ │ │ │ ├── IGeofenceProvider.struct │ │ │ │ │ ├── IGnssAntennaInfoListener.struct │ │ │ │ │ ├── IGnssMeasurementsListener.struct │ │ │ │ │ ├── IGnssNavigationMessageListener.struct │ │ │ │ │ ├── IGnssStatusListener.struct │ │ │ │ │ ├── IGpsGeofenceHardware.struct │ │ │ │ │ ├── ILocationListener.struct │ │ │ │ │ ├── ILocationManager.struct │ │ │ │ │ ├── INetInitiatedListener.struct │ │ │ │ │ ├── Location.struct │ │ │ │ │ ├── LocationRequest.struct │ │ │ │ │ └── LocationTime.struct │ │ │ │ ├── lpdump │ │ │ │ │ └── ILpdump.struct │ │ │ │ ├── media │ │ │ │ │ ├── AudioAttributes.struct │ │ │ │ │ ├── AudioDeviceAttributes.struct │ │ │ │ │ ├── AudioFocusInfo.struct │ │ │ │ │ ├── AudioFormat.struct │ │ │ │ │ ├── AudioPlaybackConfiguration.struct │ │ │ │ │ ├── AudioRecordingConfiguration.struct │ │ │ │ │ ├── AudioRoutesInfo.struct │ │ │ │ │ ├── Controller2Link.struct │ │ │ │ │ ├── IAudioFocusDispatcher.struct │ │ │ │ │ ├── IAudioRecord.struct │ │ │ │ │ ├── IAudioRoutesObserver.struct │ │ │ │ │ ├── IAudioServerStateDispatcher.struct │ │ │ │ │ ├── IAudioService.struct │ │ │ │ │ ├── IAudioTrackCallback.struct │ │ │ │ │ ├── ICaptureStateListener.struct │ │ │ │ │ ├── IMediaController2.struct │ │ │ │ │ ├── IMediaHTTPConnection.struct │ │ │ │ │ ├── IMediaHTTPService.struct │ │ │ │ │ ├── IMediaResourceMonitor.struct │ │ │ │ │ ├── IMediaRoute2ProviderService.struct │ │ │ │ │ ├── IMediaRoute2ProviderServiceCallback.struct │ │ │ │ │ ├── IMediaRouter2.struct │ │ │ │ │ ├── IMediaRouter2Manager.struct │ │ │ │ │ ├── IMediaRouterClient.struct │ │ │ │ │ ├── IMediaRouterService.struct │ │ │ │ │ ├── IMediaScannerListener.struct │ │ │ │ │ ├── IMediaScannerService.struct │ │ │ │ │ ├── IMediaSession2.struct │ │ │ │ │ ├── IMediaSession2Service.struct │ │ │ │ │ ├── IMediaTranscodingService.struct │ │ │ │ │ ├── IPlaybackConfigDispatcher.struct │ │ │ │ │ ├── IPlayer.struct │ │ │ │ │ ├── IRecordingConfigDispatcher.struct │ │ │ │ │ ├── IRemoteDisplayCallback.struct │ │ │ │ │ ├── IRemoteDisplayProvider.struct │ │ │ │ │ ├── IRemoteVolumeController.struct │ │ │ │ │ ├── IRemoteVolumeObserver.struct │ │ │ │ │ ├── IResourceManagerClient.struct │ │ │ │ │ ├── IResourceManagerService.struct │ │ │ │ │ ├── IRingtonePlayer.struct │ │ │ │ │ ├── IStrategyPreferredDeviceDispatcher.struct │ │ │ │ │ ├── ITranscodingServiceClient.struct │ │ │ │ │ ├── IVolumeController.struct │ │ │ │ │ ├── MediaMetadata.struct │ │ │ │ │ ├── MediaResourceParcel.struct │ │ │ │ │ ├── MediaResourcePolicyParcel.struct │ │ │ │ │ ├── MediaRoute2Info.struct │ │ │ │ │ ├── MediaRoute2ProviderInfo.struct │ │ │ │ │ ├── MediaRouterClientState$RouteInfo.struct │ │ │ │ │ ├── MediaRouterClientState.struct │ │ │ │ │ ├── PlaybackParams.struct │ │ │ │ │ ├── Rating.struct │ │ │ │ │ ├── RemoteDisplayState$RemoteDisplayInfo.struct │ │ │ │ │ ├── RemoteDisplayState.struct │ │ │ │ │ ├── RouteDiscoveryPreference.struct │ │ │ │ │ ├── RoutingSessionInfo.struct │ │ │ │ │ ├── Session2Command.struct │ │ │ │ │ ├── Session2Token.struct │ │ │ │ │ ├── TranscodingJobParcel.struct │ │ │ │ │ ├── TranscodingRequestParcel.struct │ │ │ │ │ ├── TranscodingResultParcel.struct │ │ │ │ │ ├── VolumePolicy.struct │ │ │ │ │ ├── audio │ │ │ │ │ │ └── common │ │ │ │ │ │ │ ├── AudioConfig.struct │ │ │ │ │ │ │ └── AudioOffloadInfo.struct │ │ │ │ │ ├── audiopolicy │ │ │ │ │ │ ├── AudioPolicyConfig.struct │ │ │ │ │ │ ├── AudioProductStrategy$AudioAttributesGroup.struct │ │ │ │ │ │ ├── AudioProductStrategy.struct │ │ │ │ │ │ ├── AudioVolumeGroup.struct │ │ │ │ │ │ └── IAudioPolicyCallback.struct │ │ │ │ │ ├── eco │ │ │ │ │ │ ├── IECOService.struct │ │ │ │ │ │ ├── IECOServiceInfoListener.struct │ │ │ │ │ │ ├── IECOServiceStatsProvider.struct │ │ │ │ │ │ └── IECOSession.struct │ │ │ │ │ ├── midi │ │ │ │ │ │ ├── IBluetoothMidiService.struct │ │ │ │ │ │ ├── IMidiDeviceListener.struct │ │ │ │ │ │ ├── IMidiDeviceOpenCallback.struct │ │ │ │ │ │ ├── IMidiDeviceServer.struct │ │ │ │ │ │ ├── IMidiManager.struct │ │ │ │ │ │ ├── MidiDeviceInfo.struct │ │ │ │ │ │ └── MidiDeviceStatus.struct │ │ │ │ │ ├── projection │ │ │ │ │ │ ├── IMediaProjection.struct │ │ │ │ │ │ ├── IMediaProjectionCallback.struct │ │ │ │ │ │ ├── IMediaProjectionManager.struct │ │ │ │ │ │ ├── IMediaProjectionWatcherCallback.struct │ │ │ │ │ │ └── MediaProjectionInfo.struct │ │ │ │ │ ├── session │ │ │ │ │ │ ├── IActiveSessionsListener.struct │ │ │ │ │ │ ├── IOnMediaKeyEventDispatchedListener.struct │ │ │ │ │ │ ├── IOnMediaKeyEventSessionChangedListener.struct │ │ │ │ │ │ ├── IOnMediaKeyListener.struct │ │ │ │ │ │ ├── IOnVolumeKeyLongPressListener.struct │ │ │ │ │ │ ├── ISession.struct │ │ │ │ │ │ ├── ISession2TokensListener.struct │ │ │ │ │ │ ├── ISessionCallback.struct │ │ │ │ │ │ ├── ISessionController.struct │ │ │ │ │ │ ├── ISessionControllerCallback.struct │ │ │ │ │ │ ├── ISessionManager.struct │ │ │ │ │ │ └── PlaybackState.struct │ │ │ │ │ ├── soundtrigger │ │ │ │ │ │ ├── ISoundTriggerDetectionService.struct │ │ │ │ │ │ └── ISoundTriggerDetectionServiceClient.struct │ │ │ │ │ ├── soundtrigger_middleware │ │ │ │ │ │ ├── ConfidenceLevel.struct │ │ │ │ │ │ ├── ISoundTriggerCallback.struct │ │ │ │ │ │ ├── ISoundTriggerMiddlewareService.struct │ │ │ │ │ │ ├── ISoundTriggerModule.struct │ │ │ │ │ │ ├── ModelParameterRange.struct │ │ │ │ │ │ ├── Phrase.struct │ │ │ │ │ │ ├── PhraseRecognitionEvent.struct │ │ │ │ │ │ ├── PhraseRecognitionExtra.struct │ │ │ │ │ │ ├── PhraseSoundModel.struct │ │ │ │ │ │ ├── RecognitionConfig.struct │ │ │ │ │ │ ├── RecognitionEvent.struct │ │ │ │ │ │ ├── SoundModel.struct │ │ │ │ │ │ ├── SoundTriggerModuleDescriptor.struct │ │ │ │ │ │ └── SoundTriggerModuleProperties.struct │ │ │ │ │ └── tv │ │ │ │ │ │ ├── DvbDeviceInfo.struct │ │ │ │ │ │ ├── ITvInputClient.struct │ │ │ │ │ │ ├── ITvInputHardware.struct │ │ │ │ │ │ ├── ITvInputHardwareCallback.struct │ │ │ │ │ │ ├── ITvInputManager.struct │ │ │ │ │ │ ├── ITvInputManagerCallback.struct │ │ │ │ │ │ ├── ITvInputService.struct │ │ │ │ │ │ ├── ITvInputServiceCallback.struct │ │ │ │ │ │ ├── ITvInputSession.struct │ │ │ │ │ │ ├── ITvInputSessionCallback.struct │ │ │ │ │ │ ├── ITvRemoteProvider.struct │ │ │ │ │ │ ├── ITvRemoteServiceInput.struct │ │ │ │ │ │ ├── TvContentRatingSystemInfo.struct │ │ │ │ │ │ ├── TvInputHardwareInfo.struct │ │ │ │ │ │ ├── TvInputInfo.struct │ │ │ │ │ │ ├── TvStreamConfig.struct │ │ │ │ │ │ ├── TvTrackInfo.struct │ │ │ │ │ │ └── tunerresourcemanager │ │ │ │ │ │ ├── CasSessionRequest.struct │ │ │ │ │ │ ├── IResourcesReclaimListener.struct │ │ │ │ │ │ ├── ITunerResourceManager.struct │ │ │ │ │ │ ├── ResourceClientProfile.struct │ │ │ │ │ │ ├── TunerDemuxRequest.struct │ │ │ │ │ │ ├── TunerDescramblerRequest.struct │ │ │ │ │ │ ├── TunerFrontendInfo.struct │ │ │ │ │ │ ├── TunerFrontendRequest.struct │ │ │ │ │ │ └── TunerLnbRequest.struct │ │ │ │ ├── net │ │ │ │ │ ├── CaptivePortalData.struct │ │ │ │ │ ├── ConnectionInfo.struct │ │ │ │ │ ├── ConnectivityMetricsEvent.struct │ │ │ │ │ ├── DataStallReportParcelable.struct │ │ │ │ │ ├── DataUsageRequest.struct │ │ │ │ │ ├── DhcpInfo.struct │ │ │ │ │ ├── DhcpResultsParcelable.struct │ │ │ │ │ ├── ICaptivePortal.struct │ │ │ │ │ ├── IConnectivityDiagnosticsCallback.struct │ │ │ │ │ ├── IConnectivityManager.struct │ │ │ │ │ ├── IDnsResolver.struct │ │ │ │ │ ├── IEthernetManager.struct │ │ │ │ │ ├── IEthernetServiceListener.struct │ │ │ │ │ ├── IIntResultListener.struct │ │ │ │ │ ├── IIpConnectivityMetrics.struct │ │ │ │ │ ├── IIpMemoryStore.struct │ │ │ │ │ ├── IIpMemoryStoreCallbacks.struct │ │ │ │ │ ├── IIpSecService.struct │ │ │ │ │ ├── INetd.struct │ │ │ │ │ ├── INetdEventCallback.struct │ │ │ │ │ ├── INetdUnsolicitedEventListener.struct │ │ │ │ │ ├── INetworkManagementEventObserver.struct │ │ │ │ │ ├── INetworkMonitor.struct │ │ │ │ │ ├── INetworkMonitorCallbacks.struct │ │ │ │ │ ├── INetworkPolicyListener.struct │ │ │ │ │ ├── INetworkPolicyManager.struct │ │ │ │ │ ├── INetworkRecommendationProvider.struct │ │ │ │ │ ├── INetworkScoreCache.struct │ │ │ │ │ ├── INetworkScoreService.struct │ │ │ │ │ ├── INetworkStackConnector.struct │ │ │ │ │ ├── INetworkStackStatusCallback.struct │ │ │ │ │ ├── INetworkStatsService.struct │ │ │ │ │ ├── INetworkStatsSession.struct │ │ │ │ │ ├── ISocketKeepaliveCallback.struct │ │ │ │ │ ├── ITestNetworkManager.struct │ │ │ │ │ ├── ITetheredInterfaceCallback.struct │ │ │ │ │ ├── ITetheringConnector.struct │ │ │ │ │ ├── ITetheringEventCallback.struct │ │ │ │ │ ├── ITetheringStatsProvider.struct │ │ │ │ │ ├── InformationElementParcelable.struct │ │ │ │ │ ├── InitialConfigurationParcelable.struct │ │ │ │ │ ├── InterfaceConfiguration.struct │ │ │ │ │ ├── InterfaceConfigurationParcel.struct │ │ │ │ │ ├── IpConfiguration.struct │ │ │ │ │ ├── IpPrefix.struct │ │ │ │ │ ├── IpSecConfig.struct │ │ │ │ │ ├── IpSecSpiResponse.struct │ │ │ │ │ ├── IpSecTransformResponse.struct │ │ │ │ │ ├── IpSecTunnelInterfaceResponse.struct │ │ │ │ │ ├── IpSecUdpEncapResponse.struct │ │ │ │ │ ├── Layer2InformationParcelable.struct │ │ │ │ │ ├── Layer2PacketParcelable.struct │ │ │ │ │ ├── LinkAddress.struct │ │ │ │ │ ├── LinkProperties.struct │ │ │ │ │ ├── MacAddress.struct │ │ │ │ │ ├── MarkMaskParcel.struct │ │ │ │ │ ├── NattKeepalivePacketDataParcelable.struct │ │ │ │ │ ├── Network.struct │ │ │ │ │ ├── NetworkAgentConfig.struct │ │ │ │ │ ├── NetworkCapabilities.struct │ │ │ │ │ ├── NetworkInfo.struct │ │ │ │ │ ├── NetworkKey.struct │ │ │ │ │ ├── NetworkPolicy.struct │ │ │ │ │ ├── NetworkQuotaInfo.struct │ │ │ │ │ ├── NetworkRequest.struct │ │ │ │ │ ├── NetworkScorerAppData.struct │ │ │ │ │ ├── NetworkState.struct │ │ │ │ │ ├── NetworkStats.struct │ │ │ │ │ ├── NetworkStatsHistory.struct │ │ │ │ │ ├── NetworkTemplate.struct │ │ │ │ │ ├── NetworkTestResultParcelable.struct │ │ │ │ │ ├── PrivateDnsConfigParcel.struct │ │ │ │ │ ├── ProvisioningConfigurationParcelable.struct │ │ │ │ │ ├── ProxyInfo.struct │ │ │ │ │ ├── ResolverHostsParcel.struct │ │ │ │ │ ├── ResolverOptionsParcel.struct │ │ │ │ │ ├── ResolverParamsParcel.struct │ │ │ │ │ ├── RouteInfo.struct │ │ │ │ │ ├── RouteInfoParcel.struct │ │ │ │ │ ├── RssiCurve.struct │ │ │ │ │ ├── ScanResultInfoParcelable.struct │ │ │ │ │ ├── ScoredNetwork.struct │ │ │ │ │ ├── StaticIpConfiguration.struct │ │ │ │ │ ├── TcpKeepalivePacketDataParcelable.struct │ │ │ │ │ ├── TestNetworkInterface.struct │ │ │ │ │ ├── TetherConfigParcel.struct │ │ │ │ │ ├── TetherOffloadRuleParcel.struct │ │ │ │ │ ├── TetherStatesParcel.struct │ │ │ │ │ ├── TetherStatsParcel.struct │ │ │ │ │ ├── TetheredClient$AddressInfo.struct │ │ │ │ │ ├── TetheredClient.struct │ │ │ │ │ ├── TetheringCallbackStartedParcel.struct │ │ │ │ │ ├── TetheringConfigurationParcel.struct │ │ │ │ │ ├── TetheringRequestParcel.struct │ │ │ │ │ ├── UidRange.struct │ │ │ │ │ ├── UidRangeParcel.struct │ │ │ │ │ ├── Uri$HierarchicalUri.struct │ │ │ │ │ ├── Uri$OpaqueUri.struct │ │ │ │ │ ├── Uri$StringUri.struct │ │ │ │ │ ├── Uri.struct │ │ │ │ │ ├── apf │ │ │ │ │ │ └── ApfCapabilities.struct │ │ │ │ │ ├── dhcp │ │ │ │ │ │ ├── DhcpLeaseParcelable.struct │ │ │ │ │ │ ├── DhcpServingParamsParcel.struct │ │ │ │ │ │ ├── IDhcpEventCallbacks.struct │ │ │ │ │ │ ├── IDhcpServer.struct │ │ │ │ │ │ └── IDhcpServerCallbacks.struct │ │ │ │ │ ├── ip │ │ │ │ │ │ ├── IIpClient.struct │ │ │ │ │ │ └── IIpClientCallbacks.struct │ │ │ │ │ ├── ipmemorystore │ │ │ │ │ │ ├── Blob.struct │ │ │ │ │ │ ├── IOnBlobRetrievedListener.struct │ │ │ │ │ │ ├── IOnL2KeyResponseListener.struct │ │ │ │ │ │ ├── IOnNetworkAttributesRetrievedListener.struct │ │ │ │ │ │ ├── IOnSameL3NetworkResponseListener.struct │ │ │ │ │ │ ├── IOnStatusAndCountListener.struct │ │ │ │ │ │ ├── IOnStatusListener.struct │ │ │ │ │ │ ├── NetworkAttributesParcelable.struct │ │ │ │ │ │ ├── SameL3NetworkResponseParcelable.struct │ │ │ │ │ │ └── StatusParcelable.struct │ │ │ │ │ ├── lowpan │ │ │ │ │ │ ├── ILowpanEnergyScanCallback.struct │ │ │ │ │ │ ├── ILowpanInterface.struct │ │ │ │ │ │ ├── ILowpanInterfaceListener.struct │ │ │ │ │ │ ├── ILowpanManager.struct │ │ │ │ │ │ ├── ILowpanManagerListener.struct │ │ │ │ │ │ ├── ILowpanNetScanCallback.struct │ │ │ │ │ │ ├── LowpanBeaconInfo.struct │ │ │ │ │ │ ├── LowpanChannelInfo.struct │ │ │ │ │ │ ├── LowpanCredential.struct │ │ │ │ │ │ ├── LowpanIdentity.struct │ │ │ │ │ │ └── LowpanProvision.struct │ │ │ │ │ ├── metrics │ │ │ │ │ │ └── INetdEventListener.struct │ │ │ │ │ ├── netstats │ │ │ │ │ │ └── provider │ │ │ │ │ │ │ ├── INetworkStatsProvider.struct │ │ │ │ │ │ │ └── INetworkStatsProviderCallback.struct │ │ │ │ │ ├── nsd │ │ │ │ │ │ └── INsdManager.struct │ │ │ │ │ ├── sip │ │ │ │ │ │ ├── ISipService.struct │ │ │ │ │ │ ├── ISipSession.struct │ │ │ │ │ │ ├── ISipSessionListener.struct │ │ │ │ │ │ └── SipProfile.struct │ │ │ │ │ └── wifi │ │ │ │ │ │ ├── IActionListener.struct │ │ │ │ │ │ ├── IDppCallback.struct │ │ │ │ │ │ ├── ILocalOnlyHotspotCallback.struct │ │ │ │ │ │ ├── INetworkRequestMatchCallback.struct │ │ │ │ │ │ ├── INetworkRequestUserSelectionCallback.struct │ │ │ │ │ │ ├── IOnWifiActivityEnergyInfoListener.struct │ │ │ │ │ │ ├── IOnWifiUsabilityStatsListener.struct │ │ │ │ │ │ ├── IScanResultsCallback.struct │ │ │ │ │ │ ├── IScanResultsListener.struct │ │ │ │ │ │ ├── IScoreUpdateObserver.struct │ │ │ │ │ │ ├── ISoftApCallback.struct │ │ │ │ │ │ ├── ISuggestionConnectionStatusListener.struct │ │ │ │ │ │ ├── ITrafficStateCallback.struct │ │ │ │ │ │ ├── ITxPacketCountListener.struct │ │ │ │ │ │ ├── IWifiConnectedNetworkScorer.struct │ │ │ │ │ │ ├── IWifiManager.struct │ │ │ │ │ │ ├── IWifiScanner.struct │ │ │ │ │ │ ├── ScanResult.struct │ │ │ │ │ │ ├── SoftApCapability.struct │ │ │ │ │ │ ├── SoftApConfiguration.struct │ │ │ │ │ │ ├── SoftApInfo.struct │ │ │ │ │ │ ├── SupplicantState.struct │ │ │ │ │ │ ├── WifiApiServiceInfo.struct │ │ │ │ │ │ ├── WifiClient.struct │ │ │ │ │ │ ├── WifiConfiguration.struct │ │ │ │ │ │ ├── WifiInfo.struct │ │ │ │ │ │ ├── WifiNetworkSuggestion.struct │ │ │ │ │ │ ├── WifiSsid.struct │ │ │ │ │ │ ├── WifiUsabilityStatsEntry.struct │ │ │ │ │ │ ├── aware │ │ │ │ │ │ ├── Characteristics.struct │ │ │ │ │ │ ├── ConfigRequest.struct │ │ │ │ │ │ ├── IWifiAwareDiscoverySessionCallback.struct │ │ │ │ │ │ ├── IWifiAwareEventCallback.struct │ │ │ │ │ │ ├── IWifiAwareMacAddressProvider.struct │ │ │ │ │ │ ├── IWifiAwareManager.struct │ │ │ │ │ │ ├── PublishConfig.struct │ │ │ │ │ │ └── SubscribeConfig.struct │ │ │ │ │ │ ├── hotspot2 │ │ │ │ │ │ ├── IProvisioningCallback.struct │ │ │ │ │ │ ├── OsuProvider.struct │ │ │ │ │ │ └── PasspointConfiguration.struct │ │ │ │ │ │ ├── nl80211 │ │ │ │ │ │ ├── DeviceWiphyCapabilities.struct │ │ │ │ │ │ ├── IApInterface.struct │ │ │ │ │ │ ├── IApInterfaceEventCallback.struct │ │ │ │ │ │ ├── IClientInterface.struct │ │ │ │ │ │ ├── IInterfaceEventCallback.struct │ │ │ │ │ │ ├── IPnoScanEvent.struct │ │ │ │ │ │ ├── IScanEvent.struct │ │ │ │ │ │ ├── ISendMgmtFrameEvent.struct │ │ │ │ │ │ ├── IWifiScannerImpl.struct │ │ │ │ │ │ ├── IWificond.struct │ │ │ │ │ │ ├── NativeScanResult.struct │ │ │ │ │ │ ├── NativeWifiClient.struct │ │ │ │ │ │ ├── PnoSettings.struct │ │ │ │ │ │ └── SingleScanSettings.struct │ │ │ │ │ │ ├── p2p │ │ │ │ │ │ └── IWifiP2pManager.struct │ │ │ │ │ │ └── rtt │ │ │ │ │ │ ├── IRttCallback.struct │ │ │ │ │ │ ├── IWifiRttManager.struct │ │ │ │ │ │ ├── RangingRequest.struct │ │ │ │ │ │ └── RangingResult.struct │ │ │ │ ├── nfc │ │ │ │ │ ├── BeamShareData.struct │ │ │ │ │ ├── IAppCallback.struct │ │ │ │ │ ├── INfcAdapter.struct │ │ │ │ │ ├── INfcAdapterExtras.struct │ │ │ │ │ ├── INfcCardEmulation.struct │ │ │ │ │ ├── INfcDta.struct │ │ │ │ │ ├── INfcFCardEmulation.struct │ │ │ │ │ ├── INfcTag.struct │ │ │ │ │ ├── INfcUnlockHandler.struct │ │ │ │ │ ├── ITagRemovedCallback.struct │ │ │ │ │ ├── NdefMessage.struct │ │ │ │ │ ├── NdefRecord.struct │ │ │ │ │ ├── Tag.struct │ │ │ │ │ ├── TechListParcel.struct │ │ │ │ │ ├── TransceiveResult.struct │ │ │ │ │ └── cardemulation │ │ │ │ │ │ ├── AidGroup.struct │ │ │ │ │ │ ├── ApduServiceInfo.struct │ │ │ │ │ │ └── NfcFServiceInfo.struct │ │ │ │ ├── os │ │ │ │ │ ├── BatteryProperty.struct │ │ │ │ │ ├── BatterySaverPolicyConfig.struct │ │ │ │ │ ├── Bundle.struct │ │ │ │ │ ├── CoolingDevice.struct │ │ │ │ │ ├── CpuUsageInfo.struct │ │ │ │ │ ├── ExternalVibration.struct │ │ │ │ │ ├── IAidlTest.struct │ │ │ │ │ ├── IBatteryPropertiesRegistrar.struct │ │ │ │ │ ├── IBinderThreadPriorityService.struct │ │ │ │ │ ├── IBinderWorkSourceNestedService.struct │ │ │ │ │ ├── IBinderWorkSourceService.struct │ │ │ │ │ ├── ICancellationSignal.struct │ │ │ │ │ ├── IClientCallback.struct │ │ │ │ │ ├── IDeviceIdentifiersPolicyService.struct │ │ │ │ │ ├── IDeviceIdleController.struct │ │ │ │ │ ├── IDumpstate.struct │ │ │ │ │ ├── IDumpstateListener.struct │ │ │ │ │ ├── IExternalVibrationController.struct │ │ │ │ │ ├── IExternalVibratorService.struct │ │ │ │ │ ├── IHardwarePropertiesManager.struct │ │ │ │ │ ├── IIdmap2.struct │ │ │ │ │ ├── IIncidentAuthListener.struct │ │ │ │ │ ├── IIncidentCompanion.struct │ │ │ │ │ ├── IIncidentDumpCallback.struct │ │ │ │ │ ├── IIncidentManager.struct │ │ │ │ │ ├── IIncidentReportStatusListener.struct │ │ │ │ │ ├── IInstalld.struct │ │ │ │ │ ├── IMessenger.struct │ │ │ │ │ ├── INetworkActivityListener.struct │ │ │ │ │ ├── INetworkManagementService.struct │ │ │ │ │ ├── IPendingIntentRef.struct │ │ │ │ │ ├── IPermissionController.struct │ │ │ │ │ ├── IPowerManager.struct │ │ │ │ │ ├── IProcessInfoService.struct │ │ │ │ │ ├── IProgressListener.struct │ │ │ │ │ ├── IPullAtomCallback.struct │ │ │ │ │ ├── IPullAtomResultReceiver.struct │ │ │ │ │ ├── IRecoverySystem.struct │ │ │ │ │ ├── IRecoverySystemProgressListener.struct │ │ │ │ │ ├── IRemoteCallback.struct │ │ │ │ │ ├── ISchedulingPolicyService.struct │ │ │ │ │ ├── IServiceCallback.struct │ │ │ │ │ ├── IServiceManager.struct │ │ │ │ │ ├── ISomeService.struct │ │ │ │ │ ├── IStatsCompanionService.struct │ │ │ │ │ ├── IStatsManagerService.struct │ │ │ │ │ ├── IStatsd.struct │ │ │ │ │ ├── IStoraged.struct │ │ │ │ │ ├── ISystemConfig.struct │ │ │ │ │ ├── ISystemUpdateManager.struct │ │ │ │ │ ├── IThermalEventListener.struct │ │ │ │ │ ├── IThermalService.struct │ │ │ │ │ ├── IThermalStatusListener.struct │ │ │ │ │ ├── IUpdateEngine.struct │ │ │ │ │ ├── IUpdateEngineCallback.struct │ │ │ │ │ ├── IUpdateLock.struct │ │ │ │ │ ├── IUserManager.struct │ │ │ │ │ ├── IUserRestrictionsListener.struct │ │ │ │ │ ├── IVibratorService.struct │ │ │ │ │ ├── IVibratorStateListener.struct │ │ │ │ │ ├── IVold.struct │ │ │ │ │ ├── IVoldListener.struct │ │ │ │ │ ├── IVoldMountCallback.struct │ │ │ │ │ ├── IVoldTaskListener.struct │ │ │ │ │ ├── IncidentReportArgs.struct │ │ │ │ │ ├── LocaleList.struct │ │ │ │ │ ├── Message.struct │ │ │ │ │ ├── Messenger.struct │ │ │ │ │ ├── OverlayablePolicy.struct │ │ │ │ │ ├── ParcelFileDescriptor.struct │ │ │ │ │ ├── ParcelUuid.struct │ │ │ │ │ ├── PatternMatcher.struct │ │ │ │ │ ├── PersistableBundle.struct │ │ │ │ │ ├── PowerSaveState.struct │ │ │ │ │ ├── RemoteCallback.struct │ │ │ │ │ ├── ResultReceiver.struct │ │ │ │ │ ├── SharedMemory.struct │ │ │ │ │ ├── StatsDimensionsValueParcel.struct │ │ │ │ │ ├── Temperature.struct │ │ │ │ │ ├── UserHandle.struct │ │ │ │ │ ├── VibrationAttributes.struct │ │ │ │ │ ├── VibrationEffect$Composed.struct │ │ │ │ │ ├── VibrationEffect$OneShot.struct │ │ │ │ │ ├── VibrationEffect$Prebaked.struct │ │ │ │ │ ├── VibrationEffect$PrimitiveEffect.struct │ │ │ │ │ ├── VibrationEffect$Waveform.struct │ │ │ │ │ ├── VibrationEffect.struct │ │ │ │ │ ├── WorkSource$WorkChain.struct │ │ │ │ │ ├── WorkSource.struct │ │ │ │ │ ├── connectivity │ │ │ │ │ │ ├── CellularBatteryStats.struct │ │ │ │ │ │ ├── GpsBatteryStats.struct │ │ │ │ │ │ ├── WifiActivityEnergyInfo.struct │ │ │ │ │ │ └── WifiBatteryStats.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── ExceptionalParcelable.struct │ │ │ │ │ │ ├── IEmptyService.struct │ │ │ │ │ │ ├── IParcelExceptionService.struct │ │ │ │ │ │ ├── IParcelFileDescriptorPeer.struct │ │ │ │ │ │ ├── ISeccompIsolatedService.struct │ │ │ │ │ │ ├── ISecondary.struct │ │ │ │ │ │ └── ISharedMemoryService.struct │ │ │ │ │ ├── health │ │ │ │ │ │ └── HealthStatsParceler.struct │ │ │ │ │ ├── image │ │ │ │ │ │ └── IDynamicSystemService.struct │ │ │ │ │ ├── incremental │ │ │ │ │ │ ├── IIncrementalService.struct │ │ │ │ │ │ ├── IIncrementalServiceConnector.struct │ │ │ │ │ │ ├── IStorageHealthListener.struct │ │ │ │ │ │ ├── IncrementalFileSystemControlParcel.struct │ │ │ │ │ │ ├── IncrementalNewFileParams.struct │ │ │ │ │ │ └── StorageHealthCheckParams.struct │ │ │ │ │ ├── storage │ │ │ │ │ │ ├── CrateMetadata.struct │ │ │ │ │ │ ├── DiskInfo.struct │ │ │ │ │ │ ├── IObbActionListener.struct │ │ │ │ │ │ ├── IStorageEventListener.struct │ │ │ │ │ │ ├── IStorageManager.struct │ │ │ │ │ │ ├── IStorageShutdownObserver.struct │ │ │ │ │ │ ├── StorageVolume.struct │ │ │ │ │ │ ├── VolumeInfo.struct │ │ │ │ │ │ └── VolumeRecord.struct │ │ │ │ │ └── storaged │ │ │ │ │ │ └── IStoragedPrivate.struct │ │ │ │ ├── permission │ │ │ │ │ ├── IOnPermissionsChangeListener.struct │ │ │ │ │ ├── IPermissionController.struct │ │ │ │ │ ├── IPermissionManager.struct │ │ │ │ │ └── cts │ │ │ │ │ │ └── appthataccesseslocation │ │ │ │ │ │ └── IAccessLocationOnCommand.struct │ │ │ │ ├── pixel │ │ │ │ │ └── perfstatsd │ │ │ │ │ │ └── IPerfstatsdPrivate.struct │ │ │ │ ├── print │ │ │ │ │ ├── ILayoutResultCallback.struct │ │ │ │ │ ├── IPrintDocumentAdapter.struct │ │ │ │ │ ├── IPrintDocumentAdapterObserver.struct │ │ │ │ │ ├── IPrintJobStateChangeListener.struct │ │ │ │ │ ├── IPrintManager.struct │ │ │ │ │ ├── IPrintServicesChangeListener.struct │ │ │ │ │ ├── IPrintSpooler.struct │ │ │ │ │ ├── IPrintSpoolerCallbacks.struct │ │ │ │ │ ├── IPrintSpoolerClient.struct │ │ │ │ │ ├── IPrinterDiscoveryObserver.struct │ │ │ │ │ ├── IWriteResultCallback.struct │ │ │ │ │ ├── PageRange.struct │ │ │ │ │ ├── PrintAttributes.struct │ │ │ │ │ ├── PrintDocumentInfo.struct │ │ │ │ │ ├── PrintJobId.struct │ │ │ │ │ ├── PrintJobInfo.struct │ │ │ │ │ └── PrinterId.struct │ │ │ │ ├── printservice │ │ │ │ │ ├── IPrintService.struct │ │ │ │ │ ├── IPrintServiceClient.struct │ │ │ │ │ ├── PrintServiceInfo.struct │ │ │ │ │ └── recommendation │ │ │ │ │ │ ├── IRecommendationService.struct │ │ │ │ │ │ ├── IRecommendationServiceCallbacks.struct │ │ │ │ │ │ ├── IRecommendationsChangeListener.struct │ │ │ │ │ │ └── RecommendationInfo.struct │ │ │ │ ├── se │ │ │ │ │ └── omapi │ │ │ │ │ │ ├── ISecureElementChannel.struct │ │ │ │ │ │ ├── ISecureElementListener.struct │ │ │ │ │ │ ├── ISecureElementReader.struct │ │ │ │ │ │ ├── ISecureElementService.struct │ │ │ │ │ │ └── ISecureElementSession.struct │ │ │ │ ├── security │ │ │ │ │ ├── IConfirmationPromptCallback.struct │ │ │ │ │ ├── IFileIntegrityService.struct │ │ │ │ │ ├── IKeyChainAliasCallback.struct │ │ │ │ │ ├── IKeyChainService.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── CVE_2021_0327 │ │ │ │ │ │ │ └── IBadProvider.struct │ │ │ │ │ │ ├── IBinderExchange.struct │ │ │ │ │ │ ├── IIsolatedService.struct │ │ │ │ │ │ └── activity │ │ │ │ │ │ │ └── ISecureRandomService.struct │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── AccessControlProfileParcel.struct │ │ │ │ │ │ ├── AuthKeyParcel.struct │ │ │ │ │ │ ├── EntryNamespaceParcel.struct │ │ │ │ │ │ ├── EntryParcel.struct │ │ │ │ │ │ ├── GetEntriesResultParcel.struct │ │ │ │ │ │ ├── ICredential.struct │ │ │ │ │ │ ├── ICredentialStore.struct │ │ │ │ │ │ ├── ICredentialStoreFactory.struct │ │ │ │ │ │ ├── IWritableCredential.struct │ │ │ │ │ │ ├── RequestEntryParcel.struct │ │ │ │ │ │ ├── RequestNamespaceParcel.struct │ │ │ │ │ │ ├── ResultEntryParcel.struct │ │ │ │ │ │ ├── ResultNamespaceParcel.struct │ │ │ │ │ │ └── SecurityHardwareInfoParcel.struct │ │ │ │ │ ├── keymaster │ │ │ │ │ │ ├── ExportResult.struct │ │ │ │ │ │ ├── IKeyAttestationApplicationIdProvider.struct │ │ │ │ │ │ ├── KeyAttestationApplicationId.struct │ │ │ │ │ │ ├── KeyAttestationPackageInfo.struct │ │ │ │ │ │ ├── KeyCharacteristics.struct │ │ │ │ │ │ ├── KeymasterArgument.struct │ │ │ │ │ │ ├── KeymasterArguments.struct │ │ │ │ │ │ ├── KeymasterBlob.struct │ │ │ │ │ │ ├── KeymasterCertificateChain.struct │ │ │ │ │ │ └── OperationResult.struct │ │ │ │ │ └── keystore │ │ │ │ │ │ ├── ICredstoreTokenCallback.struct │ │ │ │ │ │ ├── IKeystoreCertificateChainCallback.struct │ │ │ │ │ │ ├── IKeystoreExportKeyCallback.struct │ │ │ │ │ │ ├── IKeystoreKeyCharacteristicsCallback.struct │ │ │ │ │ │ ├── IKeystoreOperationResultCallback.struct │ │ │ │ │ │ ├── IKeystoreResponseCallback.struct │ │ │ │ │ │ ├── IKeystoreService.struct │ │ │ │ │ │ ├── KeystoreResponse.struct │ │ │ │ │ │ ├── ParcelableKeyGenParameterSpec.struct │ │ │ │ │ │ └── recovery │ │ │ │ │ │ ├── KeyChainProtectionParams.struct │ │ │ │ │ │ ├── KeyChainSnapshot.struct │ │ │ │ │ │ ├── RecoveryCertPath.struct │ │ │ │ │ │ └── WrappedApplicationKey.struct │ │ │ │ ├── service │ │ │ │ │ ├── appprediction │ │ │ │ │ │ └── IPredictionService.struct │ │ │ │ │ ├── attention │ │ │ │ │ │ ├── IAttentionCallback.struct │ │ │ │ │ │ └── IAttentionService.struct │ │ │ │ │ ├── autofill │ │ │ │ │ │ ├── Dataset$DatasetFieldFilter.struct │ │ │ │ │ │ ├── Dataset.struct │ │ │ │ │ │ ├── FillRequest.struct │ │ │ │ │ │ ├── FillResponse.struct │ │ │ │ │ │ ├── IAutoFillService.struct │ │ │ │ │ │ ├── IAutofillFieldClassificationService.struct │ │ │ │ │ │ ├── IFillCallback.struct │ │ │ │ │ │ ├── IInlineSuggestionRenderService.struct │ │ │ │ │ │ ├── IInlineSuggestionUi.struct │ │ │ │ │ │ ├── IInlineSuggestionUiCallback.struct │ │ │ │ │ │ ├── ISaveCallback.struct │ │ │ │ │ │ ├── ISurfacePackageResultCallback.struct │ │ │ │ │ │ ├── InlinePresentation.struct │ │ │ │ │ │ ├── SaveRequest.struct │ │ │ │ │ │ ├── UserData.struct │ │ │ │ │ │ └── augmented │ │ │ │ │ │ │ ├── IAugmentedAutofillService.struct │ │ │ │ │ │ │ └── IFillCallback.struct │ │ │ │ │ ├── carrier │ │ │ │ │ │ ├── CarrierIdentifier.struct │ │ │ │ │ │ ├── IApnSourceService.struct │ │ │ │ │ │ ├── ICarrierMessagingCallback.struct │ │ │ │ │ │ ├── ICarrierMessagingClientService.struct │ │ │ │ │ │ ├── ICarrierMessagingService.struct │ │ │ │ │ │ ├── ICarrierService.struct │ │ │ │ │ │ └── MessagePdu.struct │ │ │ │ │ ├── chooser │ │ │ │ │ │ ├── ChooserTarget.struct │ │ │ │ │ │ ├── IChooserTargetResult.struct │ │ │ │ │ │ └── IChooserTargetService.struct │ │ │ │ │ ├── contentcapture │ │ │ │ │ │ ├── ActivityEvent.struct │ │ │ │ │ │ ├── FlushMetrics.struct │ │ │ │ │ │ ├── IContentCaptureService.struct │ │ │ │ │ │ ├── IContentCaptureServiceCallback.struct │ │ │ │ │ │ ├── IDataShareCallback.struct │ │ │ │ │ │ ├── IDataShareReadAdapter.struct │ │ │ │ │ │ └── SnapshotData.struct │ │ │ │ │ ├── contentsuggestions │ │ │ │ │ │ └── IContentSuggestionsService.struct │ │ │ │ │ ├── controls │ │ │ │ │ │ ├── Control.struct │ │ │ │ │ │ ├── IControlsActionCallback.struct │ │ │ │ │ │ ├── IControlsProvider.struct │ │ │ │ │ │ ├── IControlsSubscriber.struct │ │ │ │ │ │ ├── IControlsSubscription.struct │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ └── ControlActionWrapper.struct │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ └── ControlTemplateWrapper.struct │ │ │ │ │ ├── dreams │ │ │ │ │ │ ├── IDreamManager.struct │ │ │ │ │ │ └── IDreamService.struct │ │ │ │ │ ├── euicc │ │ │ │ │ │ ├── DownloadSubscriptionResult.struct │ │ │ │ │ │ ├── EuiccProfileInfo.struct │ │ │ │ │ │ ├── GetDefaultDownloadableSubscriptionListResult.struct │ │ │ │ │ │ ├── GetDownloadableSubscriptionMetadataResult.struct │ │ │ │ │ │ ├── GetEuiccProfileInfoListResult.struct │ │ │ │ │ │ ├── IDeleteSubscriptionCallback.struct │ │ │ │ │ │ ├── IDownloadSubscriptionCallback.struct │ │ │ │ │ │ ├── IEraseSubscriptionsCallback.struct │ │ │ │ │ │ ├── IEuiccService.struct │ │ │ │ │ │ ├── IEuiccServiceDumpResultCallback.struct │ │ │ │ │ │ ├── IGetDefaultDownloadableSubscriptionListCallback.struct │ │ │ │ │ │ ├── IGetDownloadableSubscriptionMetadataCallback.struct │ │ │ │ │ │ ├── IGetEidCallback.struct │ │ │ │ │ │ ├── IGetEuiccInfoCallback.struct │ │ │ │ │ │ ├── IGetEuiccProfileInfoListCallback.struct │ │ │ │ │ │ ├── IGetOtaStatusCallback.struct │ │ │ │ │ │ ├── IOtaStatusChangedCallback.struct │ │ │ │ │ │ ├── IRetainSubscriptionsForFactoryResetCallback.struct │ │ │ │ │ │ ├── ISwitchToSubscriptionCallback.struct │ │ │ │ │ │ └── IUpdateSubscriptionNicknameCallback.struct │ │ │ │ │ ├── gatekeeper │ │ │ │ │ │ ├── GateKeeperResponse.struct │ │ │ │ │ │ └── IGateKeeperService.struct │ │ │ │ │ ├── media │ │ │ │ │ │ ├── IMediaBrowserService.struct │ │ │ │ │ │ └── IMediaBrowserServiceCallbacks.struct │ │ │ │ │ ├── notification │ │ │ │ │ │ ├── Adjustment.struct │ │ │ │ │ │ ├── Condition.struct │ │ │ │ │ │ ├── IConditionListener.struct │ │ │ │ │ │ ├── IConditionProvider.struct │ │ │ │ │ │ ├── INotificationListener.struct │ │ │ │ │ │ ├── IStatusBarNotificationHolder.struct │ │ │ │ │ │ ├── NotificationRankingUpdate.struct │ │ │ │ │ │ ├── NotificationStats.struct │ │ │ │ │ │ ├── StatusBarNotification.struct │ │ │ │ │ │ ├── ZenModeConfig$ZenRule.struct │ │ │ │ │ │ └── ZenModeConfig.struct │ │ │ │ │ ├── oemlock │ │ │ │ │ │ └── IOemLockService.struct │ │ │ │ │ ├── persistentdata │ │ │ │ │ │ └── IPersistentDataBlockService.struct │ │ │ │ │ ├── quickaccesswallet │ │ │ │ │ │ ├── GetWalletCardsError.struct │ │ │ │ │ │ ├── GetWalletCardsRequest.struct │ │ │ │ │ │ ├── GetWalletCardsResponse.struct │ │ │ │ │ │ ├── IQuickAccessWalletService.struct │ │ │ │ │ │ ├── IQuickAccessWalletServiceCallbacks.struct │ │ │ │ │ │ ├── SelectWalletCardRequest.struct │ │ │ │ │ │ ├── WalletServiceEvent.struct │ │ │ │ │ │ └── WalletServiceEventListenerRequest.struct │ │ │ │ │ ├── quicksettings │ │ │ │ │ │ ├── IQSService.struct │ │ │ │ │ │ ├── IQSTileService.struct │ │ │ │ │ │ └── Tile.struct │ │ │ │ │ ├── resolver │ │ │ │ │ │ ├── IResolverRankerResult.struct │ │ │ │ │ │ ├── IResolverRankerService.struct │ │ │ │ │ │ └── ResolverTarget.struct │ │ │ │ │ ├── settings │ │ │ │ │ │ └── suggestions │ │ │ │ │ │ │ ├── ISuggestionService.struct │ │ │ │ │ │ │ └── Suggestion.struct │ │ │ │ │ ├── storage │ │ │ │ │ │ └── IExternalStorageService.struct │ │ │ │ │ ├── textclassifier │ │ │ │ │ │ ├── ITextClassifierCallback.struct │ │ │ │ │ │ └── ITextClassifierService.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── ITrustAgentService.struct │ │ │ │ │ │ └── ITrustAgentServiceCallback.struct │ │ │ │ │ ├── voice │ │ │ │ │ │ ├── IVoiceInteractionService.struct │ │ │ │ │ │ ├── IVoiceInteractionSession.struct │ │ │ │ │ │ └── IVoiceInteractionSessionService.struct │ │ │ │ │ ├── vr │ │ │ │ │ │ ├── IPersistentVrStateCallbacks.struct │ │ │ │ │ │ ├── IVrListener.struct │ │ │ │ │ │ ├── IVrManager.struct │ │ │ │ │ │ └── IVrStateCallbacks.struct │ │ │ │ │ ├── wallpaper │ │ │ │ │ │ ├── IWallpaperConnection.struct │ │ │ │ │ │ ├── IWallpaperEngine.struct │ │ │ │ │ │ └── IWallpaperService.struct │ │ │ │ │ └── watchdog │ │ │ │ │ │ └── IExplicitHealthCheckService.struct │ │ │ │ ├── speech │ │ │ │ │ ├── IRecognitionListener.struct │ │ │ │ │ ├── IRecognitionService.struct │ │ │ │ │ └── tts │ │ │ │ │ │ ├── ITextToSpeechCallback.struct │ │ │ │ │ │ ├── ITextToSpeechService.struct │ │ │ │ │ │ └── Voice.struct │ │ │ │ ├── system │ │ │ │ │ └── suspend │ │ │ │ │ │ ├── ISuspendCallback.struct │ │ │ │ │ │ ├── ISuspendControlService.struct │ │ │ │ │ │ └── WakeLockInfo.struct │ │ │ │ ├── telecom │ │ │ │ │ ├── CallAudioState.struct │ │ │ │ │ ├── ConnectionRequest.struct │ │ │ │ │ ├── DisconnectCause.struct │ │ │ │ │ ├── ParcelableCall.struct │ │ │ │ │ ├── ParcelableConference.struct │ │ │ │ │ ├── ParcelableConnection.struct │ │ │ │ │ ├── PhoneAccount.struct │ │ │ │ │ ├── PhoneAccountHandle.struct │ │ │ │ │ ├── PhoneAccountSuggestion.struct │ │ │ │ │ ├── StatusHints.struct │ │ │ │ │ ├── TelecomAnalytics$SessionTiming.struct │ │ │ │ │ ├── TelecomAnalytics.struct │ │ │ │ │ ├── VideoProfile$CameraCapabilities.struct │ │ │ │ │ ├── VideoProfile.struct │ │ │ │ │ └── cts │ │ │ │ │ │ ├── api29incallservice │ │ │ │ │ │ └── ICtsApi29InCallServiceControl.struct │ │ │ │ │ │ ├── carmodetestapp │ │ │ │ │ │ └── ICtsCarModeInCallServiceControl.struct │ │ │ │ │ │ ├── redirectiontestapp │ │ │ │ │ │ └── ICtsCallRedirectionServiceController.struct │ │ │ │ │ │ ├── screeningtestapp │ │ │ │ │ │ └── ICallScreeningControl.struct │ │ │ │ │ │ └── thirdptyincallservice │ │ │ │ │ │ └── ICtsThirdPartyInCallServiceControl.struct │ │ │ │ ├── telephony │ │ │ │ │ ├── AvailableNetworkInfo.struct │ │ │ │ │ ├── BarringInfo$BarringServiceInfo.struct │ │ │ │ │ ├── BarringInfo.struct │ │ │ │ │ ├── CallAttributes.struct │ │ │ │ │ ├── CallForwardingInfo.struct │ │ │ │ │ ├── CallQuality.struct │ │ │ │ │ ├── CarrierRestrictionRules.struct │ │ │ │ │ ├── CellIdentity.struct │ │ │ │ │ ├── CellInfo.struct │ │ │ │ │ ├── ClientRequestStats.struct │ │ │ │ │ ├── DataConnectionRealTimeInfo.struct │ │ │ │ │ ├── ICellBroadcastService.struct │ │ │ │ │ ├── ICellInfoCallback.struct │ │ │ │ │ ├── INetworkService.struct │ │ │ │ │ ├── INetworkServiceCallback.struct │ │ │ │ │ ├── IccOpenLogicalChannelResponse.struct │ │ │ │ │ ├── ImsiEncryptionInfo.struct │ │ │ │ │ ├── ModemActivityInfo.struct │ │ │ │ │ ├── ModemInfo.struct │ │ │ │ │ ├── NeighboringCellInfo.struct │ │ │ │ │ ├── NetworkRegistrationInfo.struct │ │ │ │ │ ├── NetworkScanRequest.struct │ │ │ │ │ ├── PhoneCapability.struct │ │ │ │ │ ├── PhoneNumberRange.struct │ │ │ │ │ ├── PreciseCallState.struct │ │ │ │ │ ├── PreciseDataConnectionState.struct │ │ │ │ │ ├── RadioAccessFamily.struct │ │ │ │ │ ├── RadioAccessSpecifier.struct │ │ │ │ │ ├── ServiceState.struct │ │ │ │ │ ├── SignalStrength.struct │ │ │ │ │ ├── SubscriptionInfo.struct │ │ │ │ │ ├── SubscriptionPlan.struct │ │ │ │ │ ├── TelephonyDisplayInfo.struct │ │ │ │ │ ├── TelephonyHistogram.struct │ │ │ │ │ ├── UiccAccessRule.struct │ │ │ │ │ ├── UiccCardInfo.struct │ │ │ │ │ ├── UiccSlotInfo.struct │ │ │ │ │ ├── VisualVoicemailSmsFilterSettings.struct │ │ │ │ │ ├── cdma │ │ │ │ │ │ └── CdmaSmsCbProgramData.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── embmstestapp │ │ │ │ │ │ │ ├── ICtsDownloadMiddlewareControl.struct │ │ │ │ │ │ │ ├── ICtsGroupCallMiddlewareControl.struct │ │ │ │ │ │ │ └── ICtsStreamingMiddlewareControl.struct │ │ │ │ │ │ ├── externalimsservice │ │ │ │ │ │ │ └── ITestExternalImsService.struct │ │ │ │ │ │ └── locationaccessingapp │ │ │ │ │ │ │ └── ICtsLocationAccessControl.struct │ │ │ │ │ ├── data │ │ │ │ │ │ ├── ApnSetting.struct │ │ │ │ │ │ ├── DataCallResponse.struct │ │ │ │ │ │ ├── DataProfile.struct │ │ │ │ │ │ ├── IDataService.struct │ │ │ │ │ │ ├── IDataServiceCallback.struct │ │ │ │ │ │ ├── IQualifiedNetworksService.struct │ │ │ │ │ │ └── IQualifiedNetworksServiceCallback.struct │ │ │ │ │ ├── emergency │ │ │ │ │ │ └── EmergencyNumber.struct │ │ │ │ │ ├── euicc │ │ │ │ │ │ ├── DownloadableSubscription.struct │ │ │ │ │ │ ├── EuiccInfo.struct │ │ │ │ │ │ ├── EuiccNotification.struct │ │ │ │ │ │ └── EuiccRulesAuthTable.struct │ │ │ │ │ ├── ims │ │ │ │ │ │ ├── ImsCallForwardInfo.struct │ │ │ │ │ │ ├── ImsCallProfile.struct │ │ │ │ │ │ ├── ImsConferenceState.struct │ │ │ │ │ │ ├── ImsExternalCallState.struct │ │ │ │ │ │ ├── ImsReasonInfo.struct │ │ │ │ │ │ ├── ImsSsData.struct │ │ │ │ │ │ ├── ImsSsInfo.struct │ │ │ │ │ │ ├── ImsStreamMediaProfile.struct │ │ │ │ │ │ ├── ImsSuppServiceNotification.struct │ │ │ │ │ │ ├── RcsContactUceCapability.struct │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ ├── IImsCallSessionListener.struct │ │ │ │ │ │ │ ├── IImsCapabilityCallback.struct │ │ │ │ │ │ │ ├── IImsConfig.struct │ │ │ │ │ │ │ ├── IImsConfigCallback.struct │ │ │ │ │ │ │ ├── IImsMmTelFeature.struct │ │ │ │ │ │ │ ├── IImsMmTelListener.struct │ │ │ │ │ │ │ ├── IImsRcsController.struct │ │ │ │ │ │ │ ├── IImsRcsFeature.struct │ │ │ │ │ │ │ ├── IImsRegistration.struct │ │ │ │ │ │ │ ├── IImsRegistrationCallback.struct │ │ │ │ │ │ │ ├── IImsServiceController.struct │ │ │ │ │ │ │ ├── IImsServiceControllerListener.struct │ │ │ │ │ │ │ ├── IImsSmsListener.struct │ │ │ │ │ │ │ ├── IRcsFeatureListener.struct │ │ │ │ │ │ │ └── IRcsUceControllerCallback.struct │ │ │ │ │ │ ├── feature │ │ │ │ │ │ │ └── CapabilityChangeRequest.struct │ │ │ │ │ │ └── stub │ │ │ │ │ │ │ └── ImsFeatureConfiguration.struct │ │ │ │ │ └── mbms │ │ │ │ │ │ ├── DownloadRequest.struct │ │ │ │ │ │ ├── FileInfo.struct │ │ │ │ │ │ ├── FileServiceInfo.struct │ │ │ │ │ │ ├── IDownloadProgressListener.struct │ │ │ │ │ │ ├── IDownloadStatusListener.struct │ │ │ │ │ │ ├── IGroupCallCallback.struct │ │ │ │ │ │ ├── IMbmsDownloadSessionCallback.struct │ │ │ │ │ │ ├── IMbmsGroupCallSessionCallback.struct │ │ │ │ │ │ ├── IMbmsStreamingSessionCallback.struct │ │ │ │ │ │ ├── IStreamingServiceCallback.struct │ │ │ │ │ │ ├── StreamingServiceInfo.struct │ │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── IMbmsDownloadService.struct │ │ │ │ │ │ ├── IMbmsGroupCallService.struct │ │ │ │ │ │ └── IMbmsStreamingService.struct │ │ │ │ ├── tests │ │ │ │ │ └── binder │ │ │ │ │ │ └── IBenchmark.struct │ │ │ │ ├── util │ │ │ │ │ ├── IRemoteMemoryIntArray.struct │ │ │ │ │ ├── MemoryIntArray.struct │ │ │ │ │ ├── MergedConfiguration.struct │ │ │ │ │ └── StatsEventParcel.struct │ │ │ │ ├── vendor │ │ │ │ │ └── powerstats │ │ │ │ │ │ ├── IPixelPowerStatsCallback.struct │ │ │ │ │ │ ├── IPixelPowerStatsProvider.struct │ │ │ │ │ │ └── StateResidencyData.struct │ │ │ │ ├── view │ │ │ │ │ ├── AppTransitionAnimationSpec.struct │ │ │ │ │ ├── DisplayInfo.struct │ │ │ │ │ ├── DragEvent.struct │ │ │ │ │ ├── IAppTransitionAnimationSpecsFuture.struct │ │ │ │ │ ├── IApplicationToken.struct │ │ │ │ │ ├── IDisplayFoldListener.struct │ │ │ │ │ ├── IDisplayWindowInsetsController.struct │ │ │ │ │ ├── IDisplayWindowListener.struct │ │ │ │ │ ├── IDisplayWindowRotationCallback.struct │ │ │ │ │ ├── IDisplayWindowRotationController.struct │ │ │ │ │ ├── IDockedStackListener.struct │ │ │ │ │ ├── IGraphicsStats.struct │ │ │ │ │ ├── IGraphicsStatsCallback.struct │ │ │ │ │ ├── IInputFilter.struct │ │ │ │ │ ├── IInputFilterHost.struct │ │ │ │ │ ├── IInputMonitorHost.struct │ │ │ │ │ ├── IOnKeyguardExitResult.struct │ │ │ │ │ ├── IPinnedStackController.struct │ │ │ │ │ ├── IPinnedStackListener.struct │ │ │ │ │ ├── IRecentsAnimationController.struct │ │ │ │ │ ├── IRecentsAnimationRunner.struct │ │ │ │ │ ├── IRemoteAnimationFinishedCallback.struct │ │ │ │ │ ├── IRemoteAnimationRunner.struct │ │ │ │ │ ├── IRotationWatcher.struct │ │ │ │ │ ├── IScrollCaptureClient.struct │ │ │ │ │ ├── IScrollCaptureController.struct │ │ │ │ │ ├── ISystemGestureExclusionListener.struct │ │ │ │ │ ├── IWallpaperVisibilityListener.struct │ │ │ │ │ ├── IWindow.struct │ │ │ │ │ ├── IWindowFocusObserver.struct │ │ │ │ │ ├── IWindowId.struct │ │ │ │ │ ├── IWindowManager.struct │ │ │ │ │ ├── IWindowSession.struct │ │ │ │ │ ├── IWindowSessionCallback.struct │ │ │ │ │ ├── InputChannel.struct │ │ │ │ │ ├── InputDevice.struct │ │ │ │ │ ├── InputEvent.struct │ │ │ │ │ ├── InputMonitor.struct │ │ │ │ │ ├── InsetsSourceControl.struct │ │ │ │ │ ├── InsetsState.struct │ │ │ │ │ ├── KeyCharacterMap.struct │ │ │ │ │ ├── KeyEvent.struct │ │ │ │ │ ├── MagnificationSpec.struct │ │ │ │ │ ├── MotionEvent.struct │ │ │ │ │ ├── PointerIcon.struct │ │ │ │ │ ├── RemoteAnimationAdapter.struct │ │ │ │ │ ├── RemoteAnimationDefinition$RemoteAnimationAdapterEntry.struct │ │ │ │ │ ├── RemoteAnimationDefinition.struct │ │ │ │ │ ├── RemoteAnimationTarget.struct │ │ │ │ │ ├── Surface.struct │ │ │ │ │ ├── SurfaceControl$Transaction.struct │ │ │ │ │ ├── SurfaceControl.struct │ │ │ │ │ ├── VerifiedInputEvent.struct │ │ │ │ │ ├── WindowAnimationFrameStats.struct │ │ │ │ │ ├── WindowContentFrameStats.struct │ │ │ │ │ ├── accessibility │ │ │ │ │ │ ├── AccessibilityEvent.struct │ │ │ │ │ │ ├── AccessibilityNodeInfo$AccessibilityAction.struct │ │ │ │ │ │ ├── AccessibilityNodeInfo$TouchDelegateInfo.struct │ │ │ │ │ │ ├── AccessibilityNodeInfo.struct │ │ │ │ │ │ ├── AccessibilityWindowInfo$WindowListSparseArray.struct │ │ │ │ │ │ ├── AccessibilityWindowInfo.struct │ │ │ │ │ │ ├── IAccessibilityEmbeddedConnection.struct │ │ │ │ │ │ ├── IAccessibilityInteractionConnection.struct │ │ │ │ │ │ ├── IAccessibilityInteractionConnectionCallback.struct │ │ │ │ │ │ ├── IAccessibilityManager.struct │ │ │ │ │ │ ├── IAccessibilityManagerClient.struct │ │ │ │ │ │ ├── IWindowMagnificationConnection.struct │ │ │ │ │ │ └── IWindowMagnificationConnectionCallback.struct │ │ │ │ │ ├── autofill │ │ │ │ │ │ ├── AutofillId.struct │ │ │ │ │ │ ├── AutofillValue.struct │ │ │ │ │ │ ├── IAugmentedAutofillManagerClient.struct │ │ │ │ │ │ ├── IAutoFillManager.struct │ │ │ │ │ │ ├── IAutoFillManagerClient.struct │ │ │ │ │ │ └── IAutofillWindowPresenter.struct │ │ │ │ │ ├── contentcapture │ │ │ │ │ │ ├── ContentCaptureCondition.struct │ │ │ │ │ │ ├── ContentCaptureContext.struct │ │ │ │ │ │ ├── DataRemovalRequest.struct │ │ │ │ │ │ ├── DataShareRequest.struct │ │ │ │ │ │ ├── IContentCaptureDirectManager.struct │ │ │ │ │ │ ├── IContentCaptureManager.struct │ │ │ │ │ │ └── IDataShareWriteAdapter.struct │ │ │ │ │ ├── inputmethod │ │ │ │ │ │ ├── CorrectionInfo.struct │ │ │ │ │ │ ├── CursorAnchorInfo.struct │ │ │ │ │ │ ├── EditorInfo$InitialSurroundingText.struct │ │ │ │ │ │ ├── EditorInfo.struct │ │ │ │ │ │ ├── ExtractedText.struct │ │ │ │ │ │ ├── ExtractedTextRequest.struct │ │ │ │ │ │ ├── InlineSuggestionsRequest.struct │ │ │ │ │ │ ├── InlineSuggestionsResponse.struct │ │ │ │ │ │ ├── InputBinding.struct │ │ │ │ │ │ ├── InputContentInfo.struct │ │ │ │ │ │ ├── InputMethodInfo.struct │ │ │ │ │ │ ├── InputMethodSubtype.struct │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── IWindowFocusStealer.struct │ │ │ │ │ ├── textclassifier │ │ │ │ │ │ ├── SelectionEvent.struct │ │ │ │ │ │ ├── TextClassificationContext.struct │ │ │ │ │ │ ├── TextClassificationSessionId.struct │ │ │ │ │ │ ├── TextClassifierEvent$ConversationActionsEvent.struct │ │ │ │ │ │ ├── TextClassifierEvent$LanguageDetectionEvent.struct │ │ │ │ │ │ ├── TextClassifierEvent$TextLinkifyEvent.struct │ │ │ │ │ │ ├── TextClassifierEvent$TextSelectionEvent.struct │ │ │ │ │ │ └── TextClassifierEvent.struct │ │ │ │ │ └── textservice │ │ │ │ │ │ ├── SentenceSuggestionsInfo.struct │ │ │ │ │ │ ├── SpellCheckerInfo.struct │ │ │ │ │ │ ├── SpellCheckerSubtype.struct │ │ │ │ │ │ ├── SuggestionsInfo.struct │ │ │ │ │ │ └── TextInfo.struct │ │ │ │ ├── webkit │ │ │ │ │ ├── IWebViewUpdateService.struct │ │ │ │ │ ├── WebViewProviderInfo.struct │ │ │ │ │ └── WebViewProviderResponse.struct │ │ │ │ ├── widget │ │ │ │ │ └── RemoteViews.struct │ │ │ │ └── window │ │ │ │ │ ├── DisplayAreaInfo.struct │ │ │ │ │ ├── IDisplayAreaOrganizer.struct │ │ │ │ │ ├── IDisplayAreaOrganizerController.struct │ │ │ │ │ ├── ITaskOrganizer.struct │ │ │ │ │ ├── ITaskOrganizerController.struct │ │ │ │ │ ├── IWindowContainerToken.struct │ │ │ │ │ ├── IWindowContainerTransactionCallback.struct │ │ │ │ │ ├── IWindowOrganizerController.struct │ │ │ │ │ ├── WindowContainerToken.struct │ │ │ │ │ ├── WindowContainerTransaction$Change.struct │ │ │ │ │ ├── WindowContainerTransaction$HierarchyOp.struct │ │ │ │ │ └── WindowContainerTransaction.struct │ │ │ ├── another_package │ │ │ │ └── IFaz.struct │ │ │ ├── classPaths.txt │ │ │ ├── com │ │ │ │ ├── android │ │ │ │ │ ├── bips │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ └── SizeD.struct │ │ │ │ │ │ └── render │ │ │ │ │ │ │ └── IPdfRender.struct │ │ │ │ │ ├── car │ │ │ │ │ │ ├── companiondevicesupport │ │ │ │ │ │ │ └── api │ │ │ │ │ │ │ │ ├── external │ │ │ │ │ │ │ │ ├── AssociatedDevice.struct │ │ │ │ │ │ │ │ ├── CompanionDevice.struct │ │ │ │ │ │ │ │ ├── IConnectedDeviceManager.struct │ │ │ │ │ │ │ │ ├── IConnectionCallback.struct │ │ │ │ │ │ │ │ ├── IDeviceAssociationCallback.struct │ │ │ │ │ │ │ │ └── IDeviceCallback.struct │ │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ │ ├── association │ │ │ │ │ │ │ │ ├── IAssociatedDeviceManager.struct │ │ │ │ │ │ │ │ └── IAssociationCallback.struct │ │ │ │ │ │ │ │ └── trust │ │ │ │ │ │ │ │ ├── ITrustedDeviceAgentDelegate.struct │ │ │ │ │ │ │ │ ├── ITrustedDeviceCallback.struct │ │ │ │ │ │ │ │ ├── ITrustedDeviceEnrollmentCallback.struct │ │ │ │ │ │ │ │ ├── ITrustedDeviceManager.struct │ │ │ │ │ │ │ │ └── TrustedDevice.struct │ │ │ │ │ │ ├── keventreader │ │ │ │ │ │ │ ├── IEventCallback.struct │ │ │ │ │ │ │ ├── IEventProvider.struct │ │ │ │ │ │ │ └── KeypressEvent.struct │ │ │ │ │ │ ├── procfsinspector │ │ │ │ │ │ │ ├── IProcfsInspector.struct │ │ │ │ │ │ │ └── ProcessInfo.struct │ │ │ │ │ │ ├── radio │ │ │ │ │ │ │ ├── bands │ │ │ │ │ │ │ │ ├── ProgramType.struct │ │ │ │ │ │ │ │ └── RegionConfig.struct │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ ├── IRadioAppCallback.struct │ │ │ │ │ │ │ │ ├── IRadioAppService.struct │ │ │ │ │ │ │ │ └── ITuneCallback.struct │ │ │ │ │ │ └── setupwizardlib │ │ │ │ │ │ │ ├── IInitialLockSetupService.struct │ │ │ │ │ │ │ └── LockConfig.struct │ │ │ │ │ ├── compatibility │ │ │ │ │ │ └── common │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── devicepolicy │ │ │ │ │ │ │ └── provisioning │ │ │ │ │ │ │ └── IBooleanCallback.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── IBinderPermissionTestService.struct │ │ │ │ │ │ ├── appdataisolation │ │ │ │ │ │ │ └── appa │ │ │ │ │ │ │ │ └── IIsolatedService.struct │ │ │ │ │ │ ├── blob │ │ │ │ │ │ │ └── ICommandReceiver.struct │ │ │ │ │ │ ├── comp │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ ├── deviceowner │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ └── hostside │ │ │ │ │ │ │ │ ├── IMyService.struct │ │ │ │ │ │ │ │ ├── INetworkCallback.struct │ │ │ │ │ │ │ │ ├── INetworkStateObserver.struct │ │ │ │ │ │ │ │ └── IRemoteSocketFactory.struct │ │ │ │ │ │ └── verifier │ │ │ │ │ │ │ ├── managedprovisioning │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ │ └── projection │ │ │ │ │ │ │ └── IProjectionService.struct │ │ │ │ │ ├── development │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ ├── dialer │ │ │ │ │ │ └── simulator │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── ISimulatorService.struct │ │ │ │ │ ├── frameworks │ │ │ │ │ │ ├── coretests │ │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ │ ├── IBinderProxyCountingService.struct │ │ │ │ │ │ │ │ ├── IBpcCallbackObserver.struct │ │ │ │ │ │ │ │ ├── IBpcTestAppCmdService.struct │ │ │ │ │ │ │ │ ├── IBpcTestServiceCmdService.struct │ │ │ │ │ │ │ │ ├── ICmdCallback.struct │ │ │ │ │ │ │ │ ├── ICmdReceiver.struct │ │ │ │ │ │ │ │ └── ITestRemoteCallback.struct │ │ │ │ │ │ └── perftests │ │ │ │ │ │ │ └── am │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── ICommandReceiver.struct │ │ │ │ │ │ │ └── ITimeReceiverCallback.struct │ │ │ │ │ ├── ims │ │ │ │ │ │ ├── IRcsPresenceListener.struct │ │ │ │ │ │ ├── ImsConfigListener.struct │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── IImsCallSession.struct │ │ │ │ │ │ │ ├── IImsCallSessionListener.struct │ │ │ │ │ │ │ ├── IImsConfig.struct │ │ │ │ │ │ │ ├── IImsEcbm.struct │ │ │ │ │ │ │ ├── IImsEcbmListener.struct │ │ │ │ │ │ │ ├── IImsExternalCallStateListener.struct │ │ │ │ │ │ │ ├── IImsFeatureStatusCallback.struct │ │ │ │ │ │ │ ├── IImsMMTelFeature.struct │ │ │ │ │ │ │ ├── IImsMultiEndpoint.struct │ │ │ │ │ │ │ ├── IImsRcsFeature.struct │ │ │ │ │ │ │ ├── IImsRegistrationListener.struct │ │ │ │ │ │ │ ├── IImsService.struct │ │ │ │ │ │ │ ├── IImsServiceController.struct │ │ │ │ │ │ │ ├── IImsServiceFeatureCallback.struct │ │ │ │ │ │ │ ├── IImsStreamMediaSession.struct │ │ │ │ │ │ │ ├── IImsUt.struct │ │ │ │ │ │ │ ├── IImsUtListener.struct │ │ │ │ │ │ │ ├── IImsVideoCallCallback.struct │ │ │ │ │ │ │ ├── IImsVideoCallProvider.struct │ │ │ │ │ │ │ ├── IRcsPresence.struct │ │ │ │ │ │ │ ├── IRcsService.struct │ │ │ │ │ │ │ └── uce │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── CapInfo.struct │ │ │ │ │ │ │ ├── StatusCode.struct │ │ │ │ │ │ │ └── UceLong.struct │ │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ ├── IOptionsListener.struct │ │ │ │ │ │ │ ├── IOptionsService.struct │ │ │ │ │ │ │ ├── OptionsCapInfo.struct │ │ │ │ │ │ │ ├── OptionsCmdStatus.struct │ │ │ │ │ │ │ └── OptionsSipResponse.struct │ │ │ │ │ │ │ ├── presence │ │ │ │ │ │ │ ├── IPresenceListener.struct │ │ │ │ │ │ │ ├── IPresenceService.struct │ │ │ │ │ │ │ ├── PresCapInfo.struct │ │ │ │ │ │ │ ├── PresCmdStatus.struct │ │ │ │ │ │ │ ├── PresPublishTriggerType.struct │ │ │ │ │ │ │ ├── PresResInfo.struct │ │ │ │ │ │ │ ├── PresRlmiInfo.struct │ │ │ │ │ │ │ ├── PresServiceInfo.struct │ │ │ │ │ │ │ ├── PresSipResponse.struct │ │ │ │ │ │ │ └── PresTupleInfo.struct │ │ │ │ │ │ │ └── uceservice │ │ │ │ │ │ │ ├── IUceListener.struct │ │ │ │ │ │ │ └── IUceService.struct │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── IAppOpsActiveCallback.struct │ │ │ │ │ │ │ ├── IAppOpsAsyncNotedCallback.struct │ │ │ │ │ │ │ ├── IAppOpsCallback.struct │ │ │ │ │ │ │ ├── IAppOpsNotedCallback.struct │ │ │ │ │ │ │ ├── IAppOpsService.struct │ │ │ │ │ │ │ ├── IAppOpsStartedCallback.struct │ │ │ │ │ │ │ ├── IBatteryStats.struct │ │ │ │ │ │ │ ├── IMediaContainerService.struct │ │ │ │ │ │ │ ├── ISoundTriggerService.struct │ │ │ │ │ │ │ ├── IVoiceActionCheckCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractionManagerService.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSessionListener.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSessionShowCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractor.struct │ │ │ │ │ │ │ ├── IVoiceInteractorCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractorRequest.struct │ │ │ │ │ │ │ ├── MessageSamplingConfig.struct │ │ │ │ │ │ │ └── procstats │ │ │ │ │ │ │ │ ├── IProcessStats.struct │ │ │ │ │ │ │ │ └── ProcessStats.struct │ │ │ │ │ │ ├── appwidget │ │ │ │ │ │ │ ├── IAppWidgetHost.struct │ │ │ │ │ │ │ └── IAppWidgetService.struct │ │ │ │ │ │ ├── backup │ │ │ │ │ │ │ ├── IBackupTransport.struct │ │ │ │ │ │ │ └── IObbBackupService.struct │ │ │ │ │ │ ├── car │ │ │ │ │ │ │ └── ICarServiceHelper.struct │ │ │ │ │ │ ├── compat │ │ │ │ │ │ │ ├── CompatibilityChangeConfig.struct │ │ │ │ │ │ │ ├── CompatibilityChangeInfo.struct │ │ │ │ │ │ │ ├── IOverrideValidator.struct │ │ │ │ │ │ │ ├── IPlatformCompat.struct │ │ │ │ │ │ │ ├── IPlatformCompatNative.struct │ │ │ │ │ │ │ └── OverrideAllowedState.struct │ │ │ │ │ │ ├── infra │ │ │ │ │ │ │ ├── AndroidFuture.struct │ │ │ │ │ │ │ └── IAndroidFuture.struct │ │ │ │ │ │ ├── inputmethod │ │ │ │ │ │ │ ├── ICharSequenceResultCallback.struct │ │ │ │ │ │ │ ├── IExtractedTextResultCallback.struct │ │ │ │ │ │ │ ├── IInputContentUriToken.struct │ │ │ │ │ │ │ ├── IInputMethodPrivilegedOperations.struct │ │ │ │ │ │ │ ├── IIntResultCallback.struct │ │ │ │ │ │ │ ├── IMultiClientInputMethod.struct │ │ │ │ │ │ │ ├── IMultiClientInputMethodPrivilegedOperations.struct │ │ │ │ │ │ │ └── IMultiClientInputMethodSession.struct │ │ │ │ │ │ ├── location │ │ │ │ │ │ │ ├── ILocationProvider.struct │ │ │ │ │ │ │ ├── ILocationProviderManager.struct │ │ │ │ │ │ │ ├── ProviderProperties.struct │ │ │ │ │ │ │ └── ProviderRequest.struct │ │ │ │ │ │ ├── logging │ │ │ │ │ │ │ └── InstanceId.struct │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ ├── INetworkWatchlistManager.struct │ │ │ │ │ │ │ ├── IOemNetd.struct │ │ │ │ │ │ │ ├── IOemNetdUnsolicitedEventListener.struct │ │ │ │ │ │ │ ├── LegacyVpnInfo.struct │ │ │ │ │ │ │ ├── VpnConfig.struct │ │ │ │ │ │ │ ├── VpnInfo.struct │ │ │ │ │ │ │ └── VpnProfile.struct │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ ├── AppFuseMount.struct │ │ │ │ │ │ │ ├── IDropBoxManagerService.struct │ │ │ │ │ │ │ ├── IParcelFileDescriptorFactory.struct │ │ │ │ │ │ │ ├── IResultReceiver.struct │ │ │ │ │ │ │ └── IShellCallback.struct │ │ │ │ │ │ ├── policy │ │ │ │ │ │ │ ├── IKeyguardDismissCallback.struct │ │ │ │ │ │ │ ├── IKeyguardDrawnCallback.struct │ │ │ │ │ │ │ ├── IKeyguardExitCallback.struct │ │ │ │ │ │ │ ├── IKeyguardService.struct │ │ │ │ │ │ │ ├── IKeyguardStateCallback.struct │ │ │ │ │ │ │ └── IShortcutService.struct │ │ │ │ │ │ ├── statusbar │ │ │ │ │ │ │ ├── IStatusBar.struct │ │ │ │ │ │ │ ├── IStatusBarService.struct │ │ │ │ │ │ │ ├── NotificationVisibility.struct │ │ │ │ │ │ │ ├── RegisterStatusBarResult.struct │ │ │ │ │ │ │ └── StatusBarIcon.struct │ │ │ │ │ │ ├── telecom │ │ │ │ │ │ │ ├── ICallRedirectionAdapter.struct │ │ │ │ │ │ │ ├── ICallRedirectionService.struct │ │ │ │ │ │ │ ├── ICallScreeningAdapter.struct │ │ │ │ │ │ │ ├── ICallScreeningService.struct │ │ │ │ │ │ │ ├── IConnectionService.struct │ │ │ │ │ │ │ ├── IConnectionServiceAdapter.struct │ │ │ │ │ │ │ ├── IDeviceIdleControllerAdapter.struct │ │ │ │ │ │ │ ├── IInCallAdapter.struct │ │ │ │ │ │ │ ├── IInCallService.struct │ │ │ │ │ │ │ ├── IInternalServiceRetriever.struct │ │ │ │ │ │ │ ├── IPhoneAccountSuggestionCallback.struct │ │ │ │ │ │ │ ├── IPhoneAccountSuggestionService.struct │ │ │ │ │ │ │ ├── ITelecomLoader.struct │ │ │ │ │ │ │ ├── ITelecomService.struct │ │ │ │ │ │ │ ├── IVideoCallback.struct │ │ │ │ │ │ │ ├── IVideoProvider.struct │ │ │ │ │ │ │ └── RemoteServiceCallback.struct │ │ │ │ │ │ ├── telephony │ │ │ │ │ │ │ ├── CellNetworkScanResult.struct │ │ │ │ │ │ │ ├── IBooleanConsumer.struct │ │ │ │ │ │ │ ├── ICarrierConfigLoader.struct │ │ │ │ │ │ │ ├── IIccPhoneBook.struct │ │ │ │ │ │ │ ├── IIntegerConsumer.struct │ │ │ │ │ │ │ ├── IMms.struct │ │ │ │ │ │ │ ├── INumberVerificationCallback.struct │ │ │ │ │ │ │ ├── IOnSubscriptionsChangedListener.struct │ │ │ │ │ │ │ ├── IOns.struct │ │ │ │ │ │ │ ├── IPhoneStateListener.struct │ │ │ │ │ │ │ ├── IPhoneSubInfo.struct │ │ │ │ │ │ │ ├── ISetOpportunisticDataCallback.struct │ │ │ │ │ │ │ ├── ISms.struct │ │ │ │ │ │ │ ├── ISub.struct │ │ │ │ │ │ │ ├── ITelephony.struct │ │ │ │ │ │ │ ├── ITelephonyRegistry.struct │ │ │ │ │ │ │ ├── IUpdateAvailableNetworksCallback.struct │ │ │ │ │ │ │ ├── IWapPushManager.struct │ │ │ │ │ │ │ ├── OperatorInfo.struct │ │ │ │ │ │ │ ├── SmsRawData.struct │ │ │ │ │ │ │ ├── euicc │ │ │ │ │ │ │ │ ├── IAuthenticateServerCallback.struct │ │ │ │ │ │ │ │ ├── ICancelSessionCallback.struct │ │ │ │ │ │ │ │ ├── IDeleteProfileCallback.struct │ │ │ │ │ │ │ │ ├── IDisableProfileCallback.struct │ │ │ │ │ │ │ │ ├── IEuiccCardController.struct │ │ │ │ │ │ │ │ ├── IEuiccController.struct │ │ │ │ │ │ │ │ ├── IGetAllProfilesCallback.struct │ │ │ │ │ │ │ │ ├── IGetDefaultSmdpAddressCallback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccChallengeCallback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccInfo1Callback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccInfo2Callback.struct │ │ │ │ │ │ │ │ ├── IGetProfileCallback.struct │ │ │ │ │ │ │ │ ├── IGetRulesAuthTableCallback.struct │ │ │ │ │ │ │ │ ├── IGetSmdsAddressCallback.struct │ │ │ │ │ │ │ │ ├── IListNotificationsCallback.struct │ │ │ │ │ │ │ │ ├── ILoadBoundProfilePackageCallback.struct │ │ │ │ │ │ │ │ ├── IPrepareDownloadCallback.struct │ │ │ │ │ │ │ │ ├── IRemoveNotificationFromListCallback.struct │ │ │ │ │ │ │ │ ├── IResetMemoryCallback.struct │ │ │ │ │ │ │ │ ├── IRetrieveNotificationCallback.struct │ │ │ │ │ │ │ │ ├── IRetrieveNotificationListCallback.struct │ │ │ │ │ │ │ │ ├── ISetDefaultSmdpAddressCallback.struct │ │ │ │ │ │ │ │ ├── ISetNicknameCallback.struct │ │ │ │ │ │ │ │ └── ISwitchToProfileCallback.struct │ │ │ │ │ │ │ └── uicc │ │ │ │ │ │ │ │ └── AdnRecord.struct │ │ │ │ │ │ ├── textservice │ │ │ │ │ │ │ ├── ISpellCheckerService.struct │ │ │ │ │ │ │ ├── ISpellCheckerServiceCallback.struct │ │ │ │ │ │ │ ├── ISpellCheckerSession.struct │ │ │ │ │ │ │ ├── ISpellCheckerSessionListener.struct │ │ │ │ │ │ │ ├── ITextServicesManager.struct │ │ │ │ │ │ │ └── ITextServicesSessionListener.struct │ │ │ │ │ │ ├── view │ │ │ │ │ │ │ ├── AppearanceRegion.struct │ │ │ │ │ │ │ ├── IDragAndDropPermissions.struct │ │ │ │ │ │ │ ├── IInlineSuggestionsRequestCallback.struct │ │ │ │ │ │ │ ├── IInlineSuggestionsResponseCallback.struct │ │ │ │ │ │ │ ├── IInputContext.struct │ │ │ │ │ │ │ ├── IInputMethod.struct │ │ │ │ │ │ │ ├── IInputMethodClient.struct │ │ │ │ │ │ │ ├── IInputMethodManager.struct │ │ │ │ │ │ │ ├── IInputMethodSession.struct │ │ │ │ │ │ │ ├── IInputSessionCallback.struct │ │ │ │ │ │ │ ├── InlineSuggestionsRequestInfo.struct │ │ │ │ │ │ │ ├── InputBindResult.struct │ │ │ │ │ │ │ └── inline │ │ │ │ │ │ │ │ ├── IInlineContentCallback.struct │ │ │ │ │ │ │ │ └── IInlineContentProvider.struct │ │ │ │ │ │ └── widget │ │ │ │ │ │ │ ├── ICheckCredentialProgressCallback.struct │ │ │ │ │ │ │ ├── ILockSettings.struct │ │ │ │ │ │ │ ├── IRemoteViewsFactory.struct │ │ │ │ │ │ │ ├── LockscreenCredential.struct │ │ │ │ │ │ │ └── VerifyCredentialResponse.struct │ │ │ │ │ ├── keychain │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ └── IKeyChainServiceTestSupport.struct │ │ │ │ │ ├── net │ │ │ │ │ │ ├── IProxyCallback.struct │ │ │ │ │ │ ├── IProxyPortListener.struct │ │ │ │ │ │ └── IProxyService.struct │ │ │ │ │ ├── onemedia │ │ │ │ │ │ ├── IPlayerCallback.struct │ │ │ │ │ │ ├── IPlayerService.struct │ │ │ │ │ │ └── playback │ │ │ │ │ │ │ └── IRequestCallback.struct │ │ │ │ │ ├── printspooler │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ ├── IPdfEditor.struct │ │ │ │ │ │ │ └── IPdfRenderer.struct │ │ │ │ │ ├── server │ │ │ │ │ │ └── net │ │ │ │ │ │ │ └── integrationtests │ │ │ │ │ │ │ └── INetworkStackInstrumentation.struct │ │ │ │ │ ├── servicestests │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ ├── ICmdReceiverService.struct │ │ │ │ │ │ │ └── INetworkStateObserver.struct │ │ │ │ │ ├── smspush │ │ │ │ │ │ └── unitTests │ │ │ │ │ │ │ └── IDataVerify.struct │ │ │ │ │ ├── suspendapps │ │ │ │ │ │ └── suspendtestapp │ │ │ │ │ │ │ ├── IBroadcastReporter.struct │ │ │ │ │ │ │ └── ITestService.struct │ │ │ │ │ ├── systemui │ │ │ │ │ │ ├── assist │ │ │ │ │ │ │ └── IAssistHandleService.struct │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ └── recents │ │ │ │ │ │ │ ├── IOverviewProxy.struct │ │ │ │ │ │ │ ├── IPinnedStackAnimationListener.struct │ │ │ │ │ │ │ └── ISystemUiProxy.struct │ │ │ │ │ ├── test │ │ │ │ │ │ └── notificationlistener │ │ │ │ │ │ │ └── INotificationUriAccessService.struct │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ │ └── basicprojectwithaidl │ │ │ │ │ │ │ ├── ITest.struct │ │ │ │ │ │ │ └── Rect.struct │ │ │ │ │ └── tv │ │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── users │ │ │ │ │ │ │ └── IRestrictedProfilePinService.struct │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── IActivityTransitionBitmapProvider.struct │ │ │ │ │ │ └── testing │ │ │ │ │ │ └── testinput │ │ │ │ │ │ ├── ChannelStateData.struct │ │ │ │ │ │ └── ITestInputControl.struct │ │ │ │ ├── example │ │ │ │ │ └── android │ │ │ │ │ │ └── apis │ │ │ │ │ │ └── app │ │ │ │ │ │ ├── IRemoteService.struct │ │ │ │ │ │ ├── IRemoteServiceCallback.struct │ │ │ │ │ │ └── ISecondary.struct │ │ │ │ ├── google │ │ │ │ │ ├── android │ │ │ │ │ │ ├── setupcompat │ │ │ │ │ │ │ └── ISetupCompatService.struct │ │ │ │ │ │ ├── setupwizard │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ └── INetworkInterceptService.struct │ │ │ │ │ │ └── startop │ │ │ │ │ │ │ └── iorap │ │ │ │ │ │ │ ├── ActivityInfo.struct │ │ │ │ │ │ │ ├── AppIntentEvent.struct │ │ │ │ │ │ │ ├── AppLaunchEvent.struct │ │ │ │ │ │ │ ├── DexOptEvent.struct │ │ │ │ │ │ │ ├── IIorap.struct │ │ │ │ │ │ │ ├── ITaskListener.struct │ │ │ │ │ │ │ ├── JobScheduledEvent.struct │ │ │ │ │ │ │ ├── PackageEvent.struct │ │ │ │ │ │ │ ├── RequestId.struct │ │ │ │ │ │ │ ├── SystemServiceEvent.struct │ │ │ │ │ │ │ ├── SystemServiceUserEvent.struct │ │ │ │ │ │ │ └── TaskResult.struct │ │ │ │ │ └── hardware │ │ │ │ │ │ └── pixel │ │ │ │ │ │ └── display │ │ │ │ │ │ └── IDisplay.struct │ │ │ │ └── mediatek │ │ │ │ │ └── tunerservice │ │ │ │ │ └── IMtkTuner.struct │ │ │ ├── google │ │ │ │ └── hardware │ │ │ │ │ └── power │ │ │ │ │ └── extension │ │ │ │ │ └── pixel │ │ │ │ │ └── IPowerExt.struct │ │ │ ├── other_package │ │ │ │ └── IBaz.struct │ │ │ ├── some_package │ │ │ │ ├── IBar.struct │ │ │ │ ├── IFoo.struct │ │ │ │ ├── Thing.struct │ │ │ │ └── sub_package │ │ │ │ │ ├── IFoo.struct │ │ │ │ │ └── SubThing.struct │ │ │ ├── test │ │ │ │ └── ParcelableTest.struct │ │ │ └── test_package │ │ │ │ ├── Bar.struct │ │ │ │ ├── Foo.struct │ │ │ │ ├── IBaz.struct │ │ │ │ ├── IEmpty.struct │ │ │ │ ├── ITest.struct │ │ │ │ └── RegularPolygon.struct │ │ ├── android13.0.0-r_49 │ │ │ ├── aaudio │ │ │ │ ├── Endpoint.struct │ │ │ │ ├── IAAudioClient.struct │ │ │ │ ├── IAAudioService.struct │ │ │ │ ├── RingBuffer.struct │ │ │ │ ├── SharedRegion.struct │ │ │ │ ├── StreamParameters.struct │ │ │ │ └── StreamRequest.struct │ │ │ ├── aidl │ │ │ │ ├── TestStableLargeParcelable.struct │ │ │ │ ├── TestStableLargeParcelableVector.struct │ │ │ │ └── TestStableParcelable.struct │ │ │ ├── android │ │ │ │ ├── IDataSource.struct │ │ │ │ ├── IGraphicBufferSource.struct │ │ │ │ ├── IMediaExtractor.struct │ │ │ │ ├── IMediaExtractorService.struct │ │ │ │ ├── IOMXBufferSource.struct │ │ │ │ ├── IOMXNode.struct │ │ │ │ ├── accessibilityservice │ │ │ │ │ ├── AccessibilityGestureEvent.struct │ │ │ │ │ ├── AccessibilityServiceInfo.struct │ │ │ │ │ ├── IAccessibilityServiceClient.struct │ │ │ │ │ ├── IAccessibilityServiceConnection.struct │ │ │ │ │ └── MagnificationConfig.struct │ │ │ │ ├── accounts │ │ │ │ │ ├── AuthenticatorDescription.struct │ │ │ │ │ ├── IAccountAuthenticator.struct │ │ │ │ │ ├── IAccountAuthenticatorResponse.struct │ │ │ │ │ ├── IAccountManager.struct │ │ │ │ │ └── IAccountManagerResponse.struct │ │ │ │ ├── adservices │ │ │ │ │ ├── GetTopicsRequest.struct │ │ │ │ │ ├── GetTopicsResponse.struct │ │ │ │ │ ├── IGetTopicsCallback.struct │ │ │ │ │ ├── ITopicsService.struct │ │ │ │ │ ├── Measurement.struct │ │ │ │ │ └── Remarketing.struct │ │ │ │ ├── aidl │ │ │ │ │ ├── loggable │ │ │ │ │ │ ├── Data.struct │ │ │ │ │ │ ├── ILoggableInterface.struct │ │ │ │ │ │ ├── ISub.struct │ │ │ │ │ │ └── Union.struct │ │ │ │ │ ├── sdkversion │ │ │ │ │ │ ├── ITestService.struct │ │ │ │ │ │ └── TypedObject.struct │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── DeprecatedParcelable.struct │ │ │ │ │ │ ├── IDeprecated.struct │ │ │ │ │ │ ├── INamedCallback.struct │ │ │ │ │ │ ├── INewName.struct │ │ │ │ │ │ ├── IOldName.struct │ │ │ │ │ │ ├── OtherParcelableForToString.struct │ │ │ │ │ │ ├── RecursiveList.struct │ │ │ │ │ │ ├── extension │ │ │ │ │ │ │ ├── ExtendableParcelable.struct │ │ │ │ │ │ │ ├── MyExt.struct │ │ │ │ │ │ │ ├── MyExt2.struct │ │ │ │ │ │ │ └── MyExtLike.struct │ │ │ │ │ │ ├── generic │ │ │ │ │ │ │ └── Baz.struct │ │ │ │ │ │ ├── immutable │ │ │ │ │ │ │ ├── Bar.struct │ │ │ │ │ │ │ ├── Foo.struct │ │ │ │ │ │ │ └── IBaz.struct │ │ │ │ │ │ ├── map │ │ │ │ │ │ │ ├── Bar.struct │ │ │ │ │ │ │ ├── Foo.struct │ │ │ │ │ │ │ └── IEmpty.struct │ │ │ │ │ │ ├── nested │ │ │ │ │ │ │ ├── ICallback.struct │ │ │ │ │ │ │ ├── INestedService.struct │ │ │ │ │ │ │ ├── ParcelableWithNested.struct │ │ │ │ │ │ │ └── Result.struct │ │ │ │ │ │ ├── nonvintf │ │ │ │ │ │ │ ├── NonVintfExtendableParcelable.struct │ │ │ │ │ │ │ └── NonVintfParcelable.struct │ │ │ │ │ │ ├── permission │ │ │ │ │ │ │ ├── IProtected.struct │ │ │ │ │ │ │ ├── IProtectedInterface.struct │ │ │ │ │ │ │ └── platform │ │ │ │ │ │ │ │ └── IProtected.struct │ │ │ │ │ │ ├── unstable │ │ │ │ │ │ │ ├── UnstableExtendableParcelable.struct │ │ │ │ │ │ │ └── UnstableParcelable.struct │ │ │ │ │ │ └── vintf │ │ │ │ │ │ │ ├── VintfExtendableParcelable.struct │ │ │ │ │ │ │ └── VintfParcelable.struct │ │ │ │ │ └── versioned │ │ │ │ │ │ └── tests │ │ │ │ │ │ ├── BazUnion.struct │ │ │ │ │ │ ├── Foo.struct │ │ │ │ │ │ └── IFooInterface.struct │ │ │ │ ├── apex │ │ │ │ │ ├── ApexInfo.struct │ │ │ │ │ ├── ApexInfoList.struct │ │ │ │ │ ├── ApexSessionInfo.struct │ │ │ │ │ ├── ApexSessionParams.struct │ │ │ │ │ ├── CompressedApexInfo.struct │ │ │ │ │ └── CompressedApexInfoList.struct │ │ │ │ ├── app │ │ │ │ │ ├── AsyncNotedAppOp.struct │ │ │ │ │ ├── GameModeInfo.struct │ │ │ │ │ ├── GameState.struct │ │ │ │ │ ├── IActivityClientController.struct │ │ │ │ │ ├── IActivityController.struct │ │ │ │ │ ├── IActivityManager.struct │ │ │ │ │ ├── IActivityPendingResult.struct │ │ │ │ │ ├── IActivityTaskManager.struct │ │ │ │ │ ├── IAlarmCompleteListener.struct │ │ │ │ │ ├── IAlarmListener.struct │ │ │ │ │ ├── IAlarmManager.struct │ │ │ │ │ ├── IAppTask.struct │ │ │ │ │ ├── IAppTraceRetriever.struct │ │ │ │ │ ├── IApplicationThread.struct │ │ │ │ │ ├── IAssistDataReceiver.struct │ │ │ │ │ ├── IBackupAgent.struct │ │ │ │ │ ├── ICompatCameraControlCallback.struct │ │ │ │ │ ├── IEphemeralResolver.struct │ │ │ │ │ ├── IForegroundServiceObserver.struct │ │ │ │ │ ├── IGameManager.struct │ │ │ │ │ ├── IGameManagerService.struct │ │ │ │ │ ├── IInstantAppResolver.struct │ │ │ │ │ ├── IInstrumentationWatcher.struct │ │ │ │ │ ├── ILocalWallpaperColorConsumer.struct │ │ │ │ │ ├── ILocaleManager.struct │ │ │ │ │ ├── INotificationManager.struct │ │ │ │ │ ├── IOnProjectionStateChangedListener.struct │ │ │ │ │ ├── IParcelFileDescriptorRetriever.struct │ │ │ │ │ ├── IProcessObserver.struct │ │ │ │ │ ├── IRequestFinishCallback.struct │ │ │ │ │ ├── ISearchManager.struct │ │ │ │ │ ├── ISearchManagerCallback.struct │ │ │ │ │ ├── IServiceConnection.struct │ │ │ │ │ ├── IStopUserCallback.struct │ │ │ │ │ ├── ITaskStackListener.struct │ │ │ │ │ ├── ITransientNotification.struct │ │ │ │ │ ├── ITransientNotificationCallback.struct │ │ │ │ │ ├── IUiAutomationConnection.struct │ │ │ │ │ ├── IUiModeManager.struct │ │ │ │ │ ├── IUidObserver.struct │ │ │ │ │ ├── IUriGrantsManager.struct │ │ │ │ │ ├── IUserSwitchObserver.struct │ │ │ │ │ ├── IWallpaperManager.struct │ │ │ │ │ ├── IWallpaperManagerCallback.struct │ │ │ │ │ ├── IWindowToken.struct │ │ │ │ │ ├── Notification.struct │ │ │ │ │ ├── PictureInPictureParams.struct │ │ │ │ │ ├── PictureInPictureUiState.struct │ │ │ │ │ ├── ProfilerInfo.struct │ │ │ │ │ ├── RemoteAction.struct │ │ │ │ │ ├── SearchableInfo.struct │ │ │ │ │ ├── Vr2dDisplayProperties.struct │ │ │ │ │ ├── WaitResult.struct │ │ │ │ │ ├── WallpaperColors.struct │ │ │ │ │ ├── WallpaperInfo.struct │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── IDeviceAdminService.struct │ │ │ │ │ │ ├── IKeyguardCallback.struct │ │ │ │ │ │ ├── IKeyguardClient.struct │ │ │ │ │ │ └── StartInstallingUpdateCallback.struct │ │ │ │ │ ├── ambientcontext │ │ │ │ │ │ ├── AmbientContextEvent.struct │ │ │ │ │ │ ├── AmbientContextEventRequest.struct │ │ │ │ │ │ ├── IAmbientContextManager.struct │ │ │ │ │ │ └── IAmbientContextObserver.struct │ │ │ │ │ ├── appops │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ ├── IAppOpsForegroundControlService.struct │ │ │ │ │ │ │ ├── IAppOpsUserClient.struct │ │ │ │ │ │ │ └── IAppOpsUserService.struct │ │ │ │ │ ├── appsearch │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ ├── IAppSearchBatchResultCallback.struct │ │ │ │ │ │ │ ├── IAppSearchObserverProxy.struct │ │ │ │ │ │ │ └── IAppSearchResultCallback.struct │ │ │ │ │ ├── assist │ │ │ │ │ │ ├── AssistContent.struct │ │ │ │ │ │ ├── AssistStructure$ViewNodeParcelable.struct │ │ │ │ │ │ └── AssistStructure.struct │ │ │ │ │ ├── backup │ │ │ │ │ │ ├── BackupProgress.struct │ │ │ │ │ │ ├── IBackupCallback.struct │ │ │ │ │ │ ├── IBackupManager.struct │ │ │ │ │ │ ├── IBackupManagerMonitor.struct │ │ │ │ │ │ ├── IBackupObserver.struct │ │ │ │ │ │ ├── IFullBackupRestoreObserver.struct │ │ │ │ │ │ ├── IRestoreObserver.struct │ │ │ │ │ │ ├── IRestoreSession.struct │ │ │ │ │ │ ├── ISelectBackupTransportCallback.struct │ │ │ │ │ │ └── RestoreSet.struct │ │ │ │ │ ├── blob │ │ │ │ │ │ ├── BlobHandle.struct │ │ │ │ │ │ ├── BlobInfo.struct │ │ │ │ │ │ ├── IBlobCommitCallback.struct │ │ │ │ │ │ ├── IBlobStoreManager.struct │ │ │ │ │ │ ├── IBlobStoreSession.struct │ │ │ │ │ │ └── LeaseInfo.struct │ │ │ │ │ ├── contentsuggestions │ │ │ │ │ │ ├── ContentClassification.struct │ │ │ │ │ │ ├── ContentSelection.struct │ │ │ │ │ │ ├── IClassificationsCallback.struct │ │ │ │ │ │ ├── IContentSuggestionsManager.struct │ │ │ │ │ │ └── ISelectionsCallback.struct │ │ │ │ │ ├── job │ │ │ │ │ │ ├── IJobCallback.struct │ │ │ │ │ │ ├── IJobScheduler.struct │ │ │ │ │ │ ├── IJobService.struct │ │ │ │ │ │ ├── IUserVisibleJobObserver.struct │ │ │ │ │ │ ├── JobParameters.struct │ │ │ │ │ │ ├── JobWorkItem.struct │ │ │ │ │ │ └── UserVisibleJobSummary.struct │ │ │ │ │ ├── people │ │ │ │ │ │ ├── ConversationChannel.struct │ │ │ │ │ │ ├── ConversationStatus.struct │ │ │ │ │ │ ├── IConversationListener.struct │ │ │ │ │ │ └── IPeopleManager.struct │ │ │ │ │ ├── prediction │ │ │ │ │ │ ├── AppPredictionContext.struct │ │ │ │ │ │ ├── AppPredictionSessionId.struct │ │ │ │ │ │ ├── AppTargetEvent.struct │ │ │ │ │ │ ├── IPredictionCallback.struct │ │ │ │ │ │ └── IPredictionManager.struct │ │ │ │ │ ├── role │ │ │ │ │ │ ├── IOnRoleHoldersChangedListener.struct │ │ │ │ │ │ ├── IRoleController.struct │ │ │ │ │ │ └── IRoleManager.struct │ │ │ │ │ ├── sdksandbox │ │ │ │ │ │ ├── IRemoteSdkCallback.struct │ │ │ │ │ │ └── ISdkSandboxManager.struct │ │ │ │ │ ├── search │ │ │ │ │ │ ├── ISearchCallback.struct │ │ │ │ │ │ ├── ISearchUiManager.struct │ │ │ │ │ │ ├── Query.struct │ │ │ │ │ │ ├── SearchContext.struct │ │ │ │ │ │ ├── SearchSessionId.struct │ │ │ │ │ │ └── SearchTargetEvent.struct │ │ │ │ │ ├── servertransaction │ │ │ │ │ │ └── ClientTransaction.struct │ │ │ │ │ ├── slice │ │ │ │ │ │ ├── ISliceListener.struct │ │ │ │ │ │ ├── ISliceManager.struct │ │ │ │ │ │ └── SliceSpec.struct │ │ │ │ │ ├── smartspace │ │ │ │ │ │ ├── ISmartspaceCallback.struct │ │ │ │ │ │ ├── ISmartspaceManager.struct │ │ │ │ │ │ ├── SmartspaceConfig.struct │ │ │ │ │ │ └── SmartspaceTargetEvent.struct │ │ │ │ │ ├── stubs │ │ │ │ │ │ ├── ICallback.struct │ │ │ │ │ │ ├── IHeartbeat.struct │ │ │ │ │ │ ├── ISecondary.struct │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ └── ICloseSystemDialogsTestsService.struct │ │ │ │ │ ├── tare │ │ │ │ │ │ └── IEconomyManager.struct │ │ │ │ │ ├── time │ │ │ │ │ │ └── ITimeZoneDetectorListener.struct │ │ │ │ │ ├── timedetector │ │ │ │ │ │ ├── ITimeDetectorService.struct │ │ │ │ │ │ └── TelephonyTimeSuggestion.struct │ │ │ │ │ ├── timezone │ │ │ │ │ │ ├── ICallback.struct │ │ │ │ │ │ ├── IRulesManager.struct │ │ │ │ │ │ └── RulesState.struct │ │ │ │ │ ├── timezonedetector │ │ │ │ │ │ └── ITimeZoneDetectorService.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── IStrongAuthTracker.struct │ │ │ │ │ │ ├── ITrustListener.struct │ │ │ │ │ │ └── ITrustManager.struct │ │ │ │ │ ├── usage │ │ │ │ │ │ ├── ExternalStorageStats.struct │ │ │ │ │ │ ├── ICacheQuotaService.struct │ │ │ │ │ │ ├── IStorageStatsManager.struct │ │ │ │ │ │ ├── IUsageStatsManager.struct │ │ │ │ │ │ ├── StorageStats.struct │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ └── ITestReceiver.struct │ │ │ │ │ └── wallpapereffectsgeneration │ │ │ │ │ │ ├── CinematicEffectRequest.struct │ │ │ │ │ │ ├── ICinematicEffectListener.struct │ │ │ │ │ │ └── IWallpaperEffectsGenerationManager.struct │ │ │ │ ├── apphibernation │ │ │ │ │ └── IAppHibernationService.struct │ │ │ │ ├── appsecurity │ │ │ │ │ └── cts │ │ │ │ │ │ └── keyrotationtest │ │ │ │ │ │ └── service │ │ │ │ │ │ └── ISignatureQueryService.struct │ │ │ │ ├── appwidget │ │ │ │ │ └── AppWidgetProviderInfo.struct │ │ │ │ ├── automotive │ │ │ │ │ ├── computepipe │ │ │ │ │ │ ├── registry │ │ │ │ │ │ │ ├── IClientInfo.struct │ │ │ │ │ │ │ ├── IPipeQuery.struct │ │ │ │ │ │ │ └── IPipeRegistration.struct │ │ │ │ │ │ └── runner │ │ │ │ │ │ │ ├── IPipeDebugger.struct │ │ │ │ │ │ │ ├── IPipeRunner.struct │ │ │ │ │ │ │ ├── IPipeStateCallback.struct │ │ │ │ │ │ │ ├── IPipeStream.struct │ │ │ │ │ │ │ ├── PacketDescriptor.struct │ │ │ │ │ │ │ ├── PipeDescriptor.struct │ │ │ │ │ │ │ ├── PipeInputConfig.struct │ │ │ │ │ │ │ ├── PipeInputConfigCameraDesc.struct │ │ │ │ │ │ │ ├── PipeInputConfigImageFileDesc.struct │ │ │ │ │ │ │ ├── PipeInputConfigInputSourceDesc.struct │ │ │ │ │ │ │ ├── PipeInputConfigVideoFileDesc.struct │ │ │ │ │ │ │ ├── PipeOffloadConfig.struct │ │ │ │ │ │ │ ├── PipeOffloadConfigOffloadDesc.struct │ │ │ │ │ │ │ ├── PipeOutputConfig.struct │ │ │ │ │ │ │ ├── PipeOutputConfigOutputDesc.struct │ │ │ │ │ │ │ ├── PipeTerminationConfig.struct │ │ │ │ │ │ │ ├── PipeTerminationConfigTerminationDesc.struct │ │ │ │ │ │ │ └── ProfilingData.struct │ │ │ │ │ ├── telemetry │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── CarDataInternal.struct │ │ │ │ │ │ │ ├── ICarDataListener.struct │ │ │ │ │ │ │ └── ICarTelemetryInternal.struct │ │ │ │ │ └── watchdog │ │ │ │ │ │ ├── ICarWatchdog.struct │ │ │ │ │ │ ├── ICarWatchdogClient.struct │ │ │ │ │ │ ├── ICarWatchdogMonitor.struct │ │ │ │ │ │ ├── IResourceOveruseListener.struct │ │ │ │ │ │ ├── IoOveruseStats.struct │ │ │ │ │ │ ├── PerStateBytes.struct │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── ICarWatchdog.struct │ │ │ │ │ │ ├── ICarWatchdogMonitor.struct │ │ │ │ │ │ ├── ICarWatchdogServiceForSystem.struct │ │ │ │ │ │ ├── IoOveruseAlertThreshold.struct │ │ │ │ │ │ ├── IoOveruseConfiguration.struct │ │ │ │ │ │ ├── IoUsageStats.struct │ │ │ │ │ │ ├── PackageIdentifier.struct │ │ │ │ │ │ ├── PackageInfo.struct │ │ │ │ │ │ ├── PackageIoOveruseStats.struct │ │ │ │ │ │ ├── PackageMetadata.struct │ │ │ │ │ │ ├── PerStateIoOveruseThreshold.struct │ │ │ │ │ │ ├── ProcessIdentifier.struct │ │ │ │ │ │ ├── ResourceOveruseConfiguration.struct │ │ │ │ │ │ ├── ThreadPolicyWithPriority.struct │ │ │ │ │ │ └── UserPackageIoUsageStats.struct │ │ │ │ ├── binderdebug │ │ │ │ │ └── test │ │ │ │ │ │ └── IControl.struct │ │ │ │ ├── bluetooth │ │ │ │ │ ├── BluetoothClass.struct │ │ │ │ │ ├── BluetoothCodecConfig.struct │ │ │ │ │ ├── BluetoothDevice.struct │ │ │ │ │ ├── BluetoothGattCharacteristic.struct │ │ │ │ │ ├── BluetoothGattDescriptor.struct │ │ │ │ │ ├── BluetoothGattIncludedService.struct │ │ │ │ │ ├── BluetoothGattService.struct │ │ │ │ │ ├── BluetoothHapPresetInfo.struct │ │ │ │ │ ├── BluetoothHidDeviceAppQosSettings.struct │ │ │ │ │ ├── BluetoothHidDeviceAppSdpSettings.struct │ │ │ │ │ ├── BluetoothLeAudioCodecConfig.struct │ │ │ │ │ ├── BluetoothLeAudioCodecStatus.struct │ │ │ │ │ ├── BluetoothLeAudioContentMetadata.struct │ │ │ │ │ ├── BluetoothLeBroadcastReceiveState.struct │ │ │ │ │ ├── BluetoothLeCall.struct │ │ │ │ │ ├── IBluetooth.struct │ │ │ │ │ ├── IBluetoothA2dp.struct │ │ │ │ │ ├── IBluetoothA2dpSink.struct │ │ │ │ │ ├── IBluetoothA2dpSinkCallback.struct │ │ │ │ │ ├── IBluetoothA2dpSource.struct │ │ │ │ │ ├── IBluetoothA2dpSourceCallback.struct │ │ │ │ │ ├── IBluetoothActivityEnergyInfoListener.struct │ │ │ │ │ ├── IBluetoothAvrcpControl.struct │ │ │ │ │ ├── IBluetoothAvrcpControlCallback.struct │ │ │ │ │ ├── IBluetoothAvrcpController.struct │ │ │ │ │ ├── IBluetoothAvrcpTarget.struct │ │ │ │ │ ├── IBluetoothAvrcpTargetCallback.struct │ │ │ │ │ ├── IBluetoothBattery.struct │ │ │ │ │ ├── IBluetoothCallback.struct │ │ │ │ │ ├── IBluetoothConnectionCallback.struct │ │ │ │ │ ├── IBluetoothCsipSetCoordinator.struct │ │ │ │ │ ├── IBluetoothCsipSetCoordinatorCallback.struct │ │ │ │ │ ├── IBluetoothCsipSetCoordinatorLockCallback.struct │ │ │ │ │ ├── IBluetoothGatt.struct │ │ │ │ │ ├── IBluetoothGattCallback.struct │ │ │ │ │ ├── IBluetoothGattClient.struct │ │ │ │ │ ├── IBluetoothGattClientCallback.struct │ │ │ │ │ ├── IBluetoothGattServer.struct │ │ │ │ │ ├── IBluetoothGattServerCallback.struct │ │ │ │ │ ├── IBluetoothHapClient.struct │ │ │ │ │ ├── IBluetoothHapClientCallback.struct │ │ │ │ │ ├── IBluetoothHeadset.struct │ │ │ │ │ ├── IBluetoothHeadsetClient.struct │ │ │ │ │ ├── IBluetoothHearingAid.struct │ │ │ │ │ ├── IBluetoothHidDevice.struct │ │ │ │ │ ├── IBluetoothHidDeviceCallback.struct │ │ │ │ │ ├── IBluetoothHidHost.struct │ │ │ │ │ ├── IBluetoothLeAdvertiser.struct │ │ │ │ │ ├── IBluetoothLeAdvertiserCallback.struct │ │ │ │ │ ├── IBluetoothLeAudio.struct │ │ │ │ │ ├── IBluetoothLeAudioCallback.struct │ │ │ │ │ ├── IBluetoothLeBroadcastAssistant.struct │ │ │ │ │ ├── IBluetoothLeBroadcastAssistantCallback.struct │ │ │ │ │ ├── IBluetoothLeBroadcastCallback.struct │ │ │ │ │ ├── IBluetoothLeCallControl.struct │ │ │ │ │ ├── IBluetoothLeCallControlCallback.struct │ │ │ │ │ ├── IBluetoothLeScanner.struct │ │ │ │ │ ├── IBluetoothLeScannerCallback.struct │ │ │ │ │ ├── IBluetoothLowEnergy.struct │ │ │ │ │ ├── IBluetoothLowEnergyCallback.struct │ │ │ │ │ ├── IBluetoothManager.struct │ │ │ │ │ ├── IBluetoothManagerCallback.struct │ │ │ │ │ ├── IBluetoothMap.struct │ │ │ │ │ ├── IBluetoothMapClient.struct │ │ │ │ │ ├── IBluetoothMcpServiceManager.struct │ │ │ │ │ ├── IBluetoothMetadataListener.struct │ │ │ │ │ ├── IBluetoothOobDataCallback.struct │ │ │ │ │ ├── IBluetoothPan.struct │ │ │ │ │ ├── IBluetoothPanCallback.struct │ │ │ │ │ ├── IBluetoothPbap.struct │ │ │ │ │ ├── IBluetoothPbapClient.struct │ │ │ │ │ ├── IBluetoothProfileServiceConnection.struct │ │ │ │ │ ├── IBluetoothSap.struct │ │ │ │ │ ├── IBluetoothSocketManager.struct │ │ │ │ │ ├── IBluetoothStateChangeCallback.struct │ │ │ │ │ ├── IBluetoothVolumeControl.struct │ │ │ │ │ ├── IBluetoothVolumeControlCallback.struct │ │ │ │ │ ├── IncomingRfcommSocketInfo.struct │ │ │ │ │ ├── OobData.struct │ │ │ │ │ └── le │ │ │ │ │ │ ├── AdvertisingSetParameters.struct │ │ │ │ │ │ ├── IAdvertisingSetCallback.struct │ │ │ │ │ │ ├── IPeriodicAdvertisingCallback.struct │ │ │ │ │ │ ├── IScannerCallback.struct │ │ │ │ │ │ ├── PeriodicAdvertisingParameters.struct │ │ │ │ │ │ └── ScanSettings.struct │ │ │ │ ├── car │ │ │ │ │ ├── IAppFocus.struct │ │ │ │ │ ├── IAppFocusListener.struct │ │ │ │ │ ├── IAppFocusOwnershipCallback.struct │ │ │ │ │ ├── ICar.struct │ │ │ │ │ ├── ICarBluetoothUserService.struct │ │ │ │ │ ├── ICarBugreportCallback.struct │ │ │ │ │ ├── ICarBugreportService.struct │ │ │ │ │ ├── ICarConnectionListener.struct │ │ │ │ │ ├── ICarInfo.struct │ │ │ │ │ ├── ICarOccupantZone.struct │ │ │ │ │ ├── ICarOccupantZoneCallback.struct │ │ │ │ │ ├── ICarProjection.struct │ │ │ │ │ ├── ICarProjectionKeyEventHandler.struct │ │ │ │ │ ├── ICarProjectionStatusListener.struct │ │ │ │ │ ├── ICarResultReceiver.struct │ │ │ │ │ ├── ICarUserService.struct │ │ │ │ │ ├── IExperimentalCar.struct │ │ │ │ │ ├── IExperimentalCarHelper.struct │ │ │ │ │ ├── IExperimentalCarUserService.struct │ │ │ │ │ ├── ILocationManagerProxy.struct │ │ │ │ │ ├── IPerUserCarService.struct │ │ │ │ │ ├── admin │ │ │ │ │ │ └── ICarDevicePolicyService.struct │ │ │ │ │ ├── apitest │ │ │ │ │ │ ├── IStableAIDLTestBinder.struct │ │ │ │ │ │ ├── IStableAIDLTestCallback.struct │ │ │ │ │ │ └── StableAIDLTestLargeParcelable.struct │ │ │ │ │ ├── app │ │ │ │ │ │ └── ICarActivityService.struct │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── ClusterState.struct │ │ │ │ │ │ ├── IClusterHomeService.struct │ │ │ │ │ │ ├── IClusterNavigationStateListener.struct │ │ │ │ │ │ ├── IClusterStateListener.struct │ │ │ │ │ │ ├── IInstrumentClusterManagerCallback.struct │ │ │ │ │ │ ├── IInstrumentClusterManagerService.struct │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ ├── IInstrumentCluster.struct │ │ │ │ │ │ │ ├── IInstrumentClusterHelper.struct │ │ │ │ │ │ │ └── IInstrumentClusterNavigation.struct │ │ │ │ │ ├── content │ │ │ │ │ │ └── pm │ │ │ │ │ │ │ ├── AppBlockingPackageInfo.struct │ │ │ │ │ │ │ ├── CarAppBlockingPolicy.struct │ │ │ │ │ │ │ ├── ICarAppBlockingPolicy.struct │ │ │ │ │ │ │ ├── ICarAppBlockingPolicySetter.struct │ │ │ │ │ │ │ └── ICarPackageManager.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ └── builtin │ │ │ │ │ │ │ └── os │ │ │ │ │ │ │ ├── IServiceManagerTestService.struct │ │ │ │ │ │ │ └── ISharedMemoryTestService.struct │ │ │ │ │ ├── diagnostic │ │ │ │ │ │ ├── CarDiagnosticEvent.struct │ │ │ │ │ │ ├── ICarDiagnostic.struct │ │ │ │ │ │ └── ICarDiagnosticEventListener.struct │ │ │ │ │ ├── drivingstate │ │ │ │ │ │ ├── CarDrivingStateEvent.struct │ │ │ │ │ │ ├── CarUxRestrictions.struct │ │ │ │ │ │ ├── ICarDrivingState.struct │ │ │ │ │ │ ├── ICarDrivingStateChangeListener.struct │ │ │ │ │ │ ├── ICarUxRestrictionsChangeListener.struct │ │ │ │ │ │ └── ICarUxRestrictionsManager.struct │ │ │ │ │ ├── evs │ │ │ │ │ │ ├── CarEvsBufferDescriptor.struct │ │ │ │ │ │ ├── CarEvsStatus.struct │ │ │ │ │ │ ├── ICarEvsService.struct │ │ │ │ │ │ ├── ICarEvsStatusListener.struct │ │ │ │ │ │ └── ICarEvsStreamCallback.struct │ │ │ │ │ ├── experimental │ │ │ │ │ │ ├── DriverAwarenessEvent.struct │ │ │ │ │ │ ├── DriverAwarenessSupplierConfig.struct │ │ │ │ │ │ ├── DriverDistractionChangeEvent.struct │ │ │ │ │ │ ├── IDriverAwarenessSupplier.struct │ │ │ │ │ │ ├── IDriverAwarenessSupplierCallback.struct │ │ │ │ │ │ ├── IDriverDistractionChangeListener.struct │ │ │ │ │ │ ├── IDriverDistractionManager.struct │ │ │ │ │ │ └── ITestDemoExperimental.struct │ │ │ │ │ ├── hardware │ │ │ │ │ │ ├── CarPropertyValue.struct │ │ │ │ │ │ ├── CarSensorConfig.struct │ │ │ │ │ │ ├── CarSensorEvent.struct │ │ │ │ │ │ ├── ICarSensor.struct │ │ │ │ │ │ ├── ICarSensorEventListener.struct │ │ │ │ │ │ ├── power │ │ │ │ │ │ │ ├── CarPowerPolicy.struct │ │ │ │ │ │ │ ├── CarPowerPolicyFilter.struct │ │ │ │ │ │ │ ├── ICarPower.struct │ │ │ │ │ │ │ ├── ICarPowerPolicyListener.struct │ │ │ │ │ │ │ └── ICarPowerStateListener.struct │ │ │ │ │ │ └── property │ │ │ │ │ │ │ ├── CarPropertyEvent.struct │ │ │ │ │ │ │ ├── ICarProperty.struct │ │ │ │ │ │ │ └── ICarPropertyEventListener.struct │ │ │ │ │ ├── input │ │ │ │ │ │ ├── CustomInputEvent.struct │ │ │ │ │ │ ├── ICarInput.struct │ │ │ │ │ │ ├── ICarInputCallback.struct │ │ │ │ │ │ ├── ICarInputListener.struct │ │ │ │ │ │ └── RotaryEvent.struct │ │ │ │ │ ├── media │ │ │ │ │ │ ├── CarAudioPatchHandle.struct │ │ │ │ │ │ ├── ICarAudio.struct │ │ │ │ │ │ ├── ICarMedia.struct │ │ │ │ │ │ ├── ICarMediaSourceListener.struct │ │ │ │ │ │ └── ICarVolumeCallback.struct │ │ │ │ │ ├── navigation │ │ │ │ │ │ └── CarNavigationInstrumentCluster.struct │ │ │ │ │ ├── occupantawareness │ │ │ │ │ │ ├── IOccupantAwarenessEventCallback.struct │ │ │ │ │ │ ├── IOccupantAwarenessManager.struct │ │ │ │ │ │ ├── OccupantAwarenessDetection.struct │ │ │ │ │ │ └── SystemStatusEvent.struct │ │ │ │ │ ├── oem │ │ │ │ │ │ ├── IOemCarAudioFocusService.struct │ │ │ │ │ │ ├── IOemCarService.struct │ │ │ │ │ │ └── IOemCarServiceCallback.struct │ │ │ │ │ ├── os │ │ │ │ │ │ ├── CpuAvailabilityInfo.struct │ │ │ │ │ │ ├── CpuAvailabilityMonitoringConfig.struct │ │ │ │ │ │ ├── ICarPerformanceService.struct │ │ │ │ │ │ ├── ICpuAvailabilityChangeListener.struct │ │ │ │ │ │ └── ThreadPolicyWithPriority.struct │ │ │ │ │ ├── storagemonitoring │ │ │ │ │ │ ├── ICarStorageMonitoring.struct │ │ │ │ │ │ ├── IIoStatsListener.struct │ │ │ │ │ │ ├── IoStats.struct │ │ │ │ │ │ ├── IoStatsEntry.struct │ │ │ │ │ │ └── WearEstimateChange.struct │ │ │ │ │ ├── telemetry │ │ │ │ │ │ ├── ICarTelemetryReportListener.struct │ │ │ │ │ │ ├── ICarTelemetryReportReadyListener.struct │ │ │ │ │ │ └── ICarTelemetryService.struct │ │ │ │ │ ├── test │ │ │ │ │ │ └── ICarTest.struct │ │ │ │ │ ├── user │ │ │ │ │ │ ├── IUserNotice.struct │ │ │ │ │ │ ├── IUserNoticeUI.struct │ │ │ │ │ │ ├── UserIdentificationAssociationResponse.struct │ │ │ │ │ │ └── UserLifecycleEventFilter.struct │ │ │ │ │ ├── util │ │ │ │ │ │ └── concurrent │ │ │ │ │ │ │ ├── AndroidFuture.struct │ │ │ │ │ │ │ └── IAndroidFuture.struct │ │ │ │ │ ├── vms │ │ │ │ │ │ ├── IVmsBrokerService.struct │ │ │ │ │ │ ├── IVmsClientCallback.struct │ │ │ │ │ │ ├── VmsAssociatedLayer.struct │ │ │ │ │ │ ├── VmsAvailableLayers.struct │ │ │ │ │ │ ├── VmsLayer.struct │ │ │ │ │ │ ├── VmsLayerDependency.struct │ │ │ │ │ │ ├── VmsProviderInfo.struct │ │ │ │ │ │ ├── VmsRegistrationInfo.struct │ │ │ │ │ │ └── VmsSubscriptionState.struct │ │ │ │ │ └── watchdog │ │ │ │ │ │ ├── ICarWatchdogService.struct │ │ │ │ │ │ ├── ICarWatchdogServiceCallback.struct │ │ │ │ │ │ ├── IResourceOveruseListener.struct │ │ │ │ │ │ ├── PackageKillableState.struct │ │ │ │ │ │ └── ResourceOveruseConfiguration.struct │ │ │ │ ├── companion │ │ │ │ │ ├── AssociationInfo.struct │ │ │ │ │ ├── AssociationRequest.struct │ │ │ │ │ ├── IAssociationRequestCallback.struct │ │ │ │ │ ├── ICompanionDeviceDiscoveryService.struct │ │ │ │ │ ├── ICompanionDeviceManager.struct │ │ │ │ │ ├── ICompanionDeviceService.struct │ │ │ │ │ ├── IOnAssociationsChangedListener.struct │ │ │ │ │ └── virtual │ │ │ │ │ │ ├── IVirtualDevice.struct │ │ │ │ │ │ ├── IVirtualDeviceActivityListener.struct │ │ │ │ │ │ ├── IVirtualDeviceManager.struct │ │ │ │ │ │ ├── VirtualDeviceParams.struct │ │ │ │ │ │ └── audio │ │ │ │ │ │ ├── IAudioConfigChangedCallback.struct │ │ │ │ │ │ └── IAudioRoutingCallback.struct │ │ │ │ ├── content │ │ │ │ │ ├── AttributionSourceState.struct │ │ │ │ │ ├── ComponentName.struct │ │ │ │ │ ├── ContentCaptureOptions.struct │ │ │ │ │ ├── IClipboard.struct │ │ │ │ │ ├── IContentService.struct │ │ │ │ │ ├── ICrossUserContentService.struct │ │ │ │ │ ├── IIntentReceiver.struct │ │ │ │ │ ├── IIntentSender.struct │ │ │ │ │ ├── IOnPrimaryClipChangedListener.struct │ │ │ │ │ ├── IRestrictionsManager.struct │ │ │ │ │ ├── ISyncAdapter.struct │ │ │ │ │ ├── ISyncAdapterUnsyncableAccountCallback.struct │ │ │ │ │ ├── ISyncContext.struct │ │ │ │ │ ├── ISyncServiceAdapter.struct │ │ │ │ │ ├── ISyncStatusObserver.struct │ │ │ │ │ ├── IntentSender.struct │ │ │ │ │ ├── LocusId.struct │ │ │ │ │ ├── PeriodicSync.struct │ │ │ │ │ ├── SyncAdapterType.struct │ │ │ │ │ ├── SyncInfo.struct │ │ │ │ │ ├── SyncResult.struct │ │ │ │ │ ├── SyncStats.struct │ │ │ │ │ ├── SyncStatusInfo.struct │ │ │ │ │ ├── integrity │ │ │ │ │ │ └── IAppIntegrityManager.struct │ │ │ │ │ ├── om │ │ │ │ │ │ ├── IOverlayManager.struct │ │ │ │ │ │ ├── OverlayIdentifier.struct │ │ │ │ │ │ ├── OverlayInfo.struct │ │ │ │ │ │ └── OverlayManagerTransaction.struct │ │ │ │ │ ├── pm │ │ │ │ │ │ ├── ActivityInfo.struct │ │ │ │ │ │ ├── ApexStagedEvent.struct │ │ │ │ │ │ ├── ApkChecksum.struct │ │ │ │ │ │ ├── ChangedPackages.struct │ │ │ │ │ │ ├── Checksum.struct │ │ │ │ │ │ ├── ConfigurationInfo.struct │ │ │ │ │ │ ├── DataLoaderParamsParcel.struct │ │ │ │ │ │ ├── FileSystemControlParcel.struct │ │ │ │ │ │ ├── ICrossProfileApps.struct │ │ │ │ │ │ ├── IDataLoader.struct │ │ │ │ │ │ ├── IDataLoaderManager.struct │ │ │ │ │ │ ├── IDataLoaderStatusListener.struct │ │ │ │ │ │ ├── IDexModuleRegisterCallback.struct │ │ │ │ │ │ ├── IOnAppsChangedListener.struct │ │ │ │ │ │ ├── IOnChecksumsReadyListener.struct │ │ │ │ │ │ ├── IOtaDexopt.struct │ │ │ │ │ │ ├── IPackageChangeObserver.struct │ │ │ │ │ │ ├── IPackageDataObserver.struct │ │ │ │ │ │ ├── IPackageDeleteObserver.struct │ │ │ │ │ │ ├── IPackageDeleteObserver2.struct │ │ │ │ │ │ ├── IPackageInstallObserver2.struct │ │ │ │ │ │ ├── IPackageInstaller.struct │ │ │ │ │ │ ├── IPackageInstallerCallback.struct │ │ │ │ │ │ ├── IPackageInstallerSession.struct │ │ │ │ │ │ ├── IPackageInstallerSessionFileSystemConnector.struct │ │ │ │ │ │ ├── IPackageLoadingProgressCallback.struct │ │ │ │ │ │ ├── IPackageManager.struct │ │ │ │ │ │ ├── IPackageManagerNative.struct │ │ │ │ │ │ ├── IPackageMoveObserver.struct │ │ │ │ │ │ ├── IPackageStatsObserver.struct │ │ │ │ │ │ ├── IPinItemRequest.struct │ │ │ │ │ │ ├── IShortcutChangeCallback.struct │ │ │ │ │ │ ├── IShortcutService.struct │ │ │ │ │ │ ├── IStagedApexObserver.struct │ │ │ │ │ │ ├── InstallSourceInfo.struct │ │ │ │ │ │ ├── InstallationFileParcel.struct │ │ │ │ │ │ ├── InstrumentationInfo.struct │ │ │ │ │ │ ├── KeySet.struct │ │ │ │ │ │ ├── ModuleInfo.struct │ │ │ │ │ │ ├── PackageChangeEvent.struct │ │ │ │ │ │ ├── PackageInfoLite.struct │ │ │ │ │ │ ├── PackageStats.struct │ │ │ │ │ │ ├── PathPermission.struct │ │ │ │ │ │ ├── PermissionGroupInfo.struct │ │ │ │ │ │ ├── PermissionInfo.struct │ │ │ │ │ │ ├── ProviderInfo.struct │ │ │ │ │ │ ├── ProviderInfoList.struct │ │ │ │ │ │ ├── ResolveInfo.struct │ │ │ │ │ │ ├── ServiceInfo.struct │ │ │ │ │ │ ├── Signature.struct │ │ │ │ │ │ ├── StagedApexInfo.struct │ │ │ │ │ │ ├── SuspendDialogInfo.struct │ │ │ │ │ │ ├── UserInfo.struct │ │ │ │ │ │ ├── VerifierDeviceIdentity.struct │ │ │ │ │ │ ├── VersionedPackage.struct │ │ │ │ │ │ ├── dex │ │ │ │ │ │ │ ├── IArtManager.struct │ │ │ │ │ │ │ └── ISnapshotRuntimeProfileCallback.struct │ │ │ │ │ │ ├── permission │ │ │ │ │ │ │ ├── IRuntimePermissionPresenter.struct │ │ │ │ │ │ │ └── SplitPermissionInfoParcelable.struct │ │ │ │ │ │ └── verify │ │ │ │ │ │ │ └── domain │ │ │ │ │ │ │ ├── DomainOwner.struct │ │ │ │ │ │ │ ├── DomainSet.struct │ │ │ │ │ │ │ ├── DomainVerificationInfo.struct │ │ │ │ │ │ │ └── IDomainVerificationManager.struct │ │ │ │ │ ├── res │ │ │ │ │ │ ├── ColorStateList.struct │ │ │ │ │ │ ├── CompatibilityInfo.struct │ │ │ │ │ │ ├── Configuration.struct │ │ │ │ │ │ ├── IResourcesManager.struct │ │ │ │ │ │ └── ObbInfo.struct │ │ │ │ │ └── rollback │ │ │ │ │ │ └── IRollbackManager.struct │ │ │ │ ├── contentcaptureservice │ │ │ │ │ └── cts │ │ │ │ │ │ └── IOutOfProcessDataSharingService.struct │ │ │ │ ├── database │ │ │ │ │ └── IContentObserver.struct │ │ │ │ ├── debug │ │ │ │ │ ├── FingerprintAndPairDevice.struct │ │ │ │ │ ├── IAdbCallback.struct │ │ │ │ │ ├── IAdbManager.struct │ │ │ │ │ ├── IAdbTransport.struct │ │ │ │ │ └── PairDevice.struct │ │ │ │ ├── dvr │ │ │ │ │ ├── IVirtualTouchpadService.struct │ │ │ │ │ ├── IVrComposer.struct │ │ │ │ │ └── IVrComposerCallback.struct │ │ │ │ ├── fmq │ │ │ │ │ └── test │ │ │ │ │ │ └── FixedParcelable.struct │ │ │ │ ├── frameworks │ │ │ │ │ ├── automotive │ │ │ │ │ │ ├── display │ │ │ │ │ │ │ ├── DisplayDesc.struct │ │ │ │ │ │ │ └── ICarDisplayProxy.struct │ │ │ │ │ │ ├── powerpolicy │ │ │ │ │ │ │ ├── CarPowerPolicy.struct │ │ │ │ │ │ │ ├── CarPowerPolicyFilter.struct │ │ │ │ │ │ │ ├── ICarPowerPolicyChangeCallback.struct │ │ │ │ │ │ │ ├── ICarPowerPolicyServer.struct │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ │ ├── ICarPowerPolicySystemNotification.struct │ │ │ │ │ │ │ │ └── PolicyState.struct │ │ │ │ │ │ └── telemetry │ │ │ │ │ │ │ ├── CarData.struct │ │ │ │ │ │ │ └── ICarTelemetry.struct │ │ │ │ │ └── stats │ │ │ │ │ │ ├── IStats.struct │ │ │ │ │ │ └── VendorAtom.struct │ │ │ │ ├── graphics │ │ │ │ │ ├── Bitmap.struct │ │ │ │ │ ├── Insets.struct │ │ │ │ │ ├── Point.struct │ │ │ │ │ ├── PointF.struct │ │ │ │ │ ├── Rect.struct │ │ │ │ │ ├── RectF.struct │ │ │ │ │ ├── Region.struct │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── FontUpdateRequest$Font.struct │ │ │ │ │ │ └── FontUpdateRequest.struct │ │ │ │ ├── gsi │ │ │ │ │ ├── AvbPublicKey.struct │ │ │ │ │ ├── GsiProgress.struct │ │ │ │ │ ├── IGsiService.struct │ │ │ │ │ ├── IGsiServiceCallback.struct │ │ │ │ │ ├── IImageService.struct │ │ │ │ │ ├── IProgressCallback.struct │ │ │ │ │ └── MappedImage.struct │ │ │ │ ├── gui │ │ │ │ │ ├── DisplayBrightness.struct │ │ │ │ │ ├── DisplayStatInfo.struct │ │ │ │ │ ├── DisplayState.struct │ │ │ │ │ ├── FocusRequest.struct │ │ │ │ │ ├── IDisplayEventConnection.struct │ │ │ │ │ ├── IFpsListener.struct │ │ │ │ │ ├── IHdrLayerInfoListener.struct │ │ │ │ │ ├── IRegionSamplingListener.struct │ │ │ │ │ ├── IScreenCaptureListener.struct │ │ │ │ │ ├── ISurfaceComposer.struct │ │ │ │ │ ├── ITransactionTraceListener.struct │ │ │ │ │ ├── ITunnelModeEnabledListener.struct │ │ │ │ │ ├── IWindowInfosListener.struct │ │ │ │ │ ├── IWindowInfosReportedListener.struct │ │ │ │ │ ├── InputApplicationInfo.struct │ │ │ │ │ ├── Rect.struct │ │ │ │ │ └── Size.struct │ │ │ │ ├── hardware │ │ │ │ │ ├── CameraInfo.struct │ │ │ │ │ ├── CameraSessionStats.struct │ │ │ │ │ ├── CameraStatus.struct │ │ │ │ │ ├── HardwareBuffer.struct │ │ │ │ │ ├── ICamera.struct │ │ │ │ │ ├── ICameraClient.struct │ │ │ │ │ ├── ICameraService.struct │ │ │ │ │ ├── ICameraServiceListener.struct │ │ │ │ │ ├── ICameraServiceProxy.struct │ │ │ │ │ ├── IConsumerIrService.struct │ │ │ │ │ ├── ISensorPrivacyListener.struct │ │ │ │ │ ├── ISensorPrivacyManager.struct │ │ │ │ │ ├── ISerialManager.struct │ │ │ │ │ ├── audio │ │ │ │ │ │ └── common │ │ │ │ │ │ │ ├── PlaybackTrackMetadata.struct │ │ │ │ │ │ │ ├── RecordTrackMetadata.struct │ │ │ │ │ │ │ ├── SinkMetadata.struct │ │ │ │ │ │ │ └── SourceMetadata.struct │ │ │ │ │ ├── authsecret │ │ │ │ │ │ └── IAuthSecret.struct │ │ │ │ │ ├── automotive │ │ │ │ │ │ ├── audiocontrol │ │ │ │ │ │ │ ├── AudioGainConfigInfo.struct │ │ │ │ │ │ │ ├── DuckingInfo.struct │ │ │ │ │ │ │ ├── IAudioControl.struct │ │ │ │ │ │ │ ├── IAudioGainCallback.struct │ │ │ │ │ │ │ ├── IFocusListener.struct │ │ │ │ │ │ │ └── MutingInfo.struct │ │ │ │ │ │ ├── evs │ │ │ │ │ │ │ ├── BufferDesc.struct │ │ │ │ │ │ │ ├── CameraDesc.struct │ │ │ │ │ │ │ ├── DeviceStatus.struct │ │ │ │ │ │ │ ├── DisplayDesc.struct │ │ │ │ │ │ │ ├── EvsEventDesc.struct │ │ │ │ │ │ │ ├── IEvsCamera.struct │ │ │ │ │ │ │ ├── IEvsCameraStream.struct │ │ │ │ │ │ │ ├── IEvsDisplay.struct │ │ │ │ │ │ │ ├── IEvsEnumerator.struct │ │ │ │ │ │ │ ├── IEvsEnumeratorStatusCallback.struct │ │ │ │ │ │ │ ├── IEvsUltrasonicsArray.struct │ │ │ │ │ │ │ ├── IEvsUltrasonicsArrayStream.struct │ │ │ │ │ │ │ ├── ParameterRange.struct │ │ │ │ │ │ │ ├── RotationQuaternion.struct │ │ │ │ │ │ │ ├── SensorPose.struct │ │ │ │ │ │ │ ├── Stream.struct │ │ │ │ │ │ │ ├── Translation.struct │ │ │ │ │ │ │ ├── UltrasonicSensor.struct │ │ │ │ │ │ │ ├── UltrasonicsArrayDesc.struct │ │ │ │ │ │ │ └── UltrasonicsDataFrameDesc.struct │ │ │ │ │ │ ├── occupant_awareness │ │ │ │ │ │ │ ├── DriverMonitoringDetection.struct │ │ │ │ │ │ │ ├── GazeDetection.struct │ │ │ │ │ │ │ ├── IOccupantAwareness.struct │ │ │ │ │ │ │ ├── IOccupantAwarenessClientCallback.struct │ │ │ │ │ │ │ ├── OccupantDetection.struct │ │ │ │ │ │ │ ├── OccupantDetections.struct │ │ │ │ │ │ │ └── PresenceDetection.struct │ │ │ │ │ │ └── vehicle │ │ │ │ │ │ │ ├── CreateUserRequest.struct │ │ │ │ │ │ │ ├── CreateUserResponse.struct │ │ │ │ │ │ │ ├── GetValueRequest.struct │ │ │ │ │ │ │ ├── GetValueRequests.struct │ │ │ │ │ │ │ ├── GetValueResult.struct │ │ │ │ │ │ │ ├── GetValueResults.struct │ │ │ │ │ │ │ ├── IVehicle.struct │ │ │ │ │ │ │ ├── IVehicleCallback.struct │ │ │ │ │ │ │ ├── InitialUserInfoRequest.struct │ │ │ │ │ │ │ ├── InitialUserInfoResponse.struct │ │ │ │ │ │ │ ├── RawPropValues.struct │ │ │ │ │ │ │ ├── RemoveUserRequest.struct │ │ │ │ │ │ │ ├── SetValueRequest.struct │ │ │ │ │ │ │ ├── SetValueRequests.struct │ │ │ │ │ │ │ ├── SetValueResult.struct │ │ │ │ │ │ │ ├── SetValueResults.struct │ │ │ │ │ │ │ ├── SubscribeOptions.struct │ │ │ │ │ │ │ ├── SwitchUserRequest.struct │ │ │ │ │ │ │ ├── SwitchUserResponse.struct │ │ │ │ │ │ │ ├── UserIdentificationAssociation.struct │ │ │ │ │ │ │ ├── UserIdentificationGetRequest.struct │ │ │ │ │ │ │ ├── UserIdentificationResponse.struct │ │ │ │ │ │ │ ├── UserIdentificationSetAssociation.struct │ │ │ │ │ │ │ ├── UserIdentificationSetRequest.struct │ │ │ │ │ │ │ ├── UserInfo.struct │ │ │ │ │ │ │ ├── UsersInfo.struct │ │ │ │ │ │ │ ├── VehicleAreaConfig.struct │ │ │ │ │ │ │ ├── VehiclePropConfig.struct │ │ │ │ │ │ │ ├── VehiclePropConfigs.struct │ │ │ │ │ │ │ ├── VehiclePropError.struct │ │ │ │ │ │ │ ├── VehiclePropErrors.struct │ │ │ │ │ │ │ ├── VehiclePropValue.struct │ │ │ │ │ │ │ └── VehiclePropValues.struct │ │ │ │ │ ├── biometrics │ │ │ │ │ │ ├── ComponentInfoInternal.struct │ │ │ │ │ │ ├── IAuthService.struct │ │ │ │ │ │ ├── IBiometricAuthenticator.struct │ │ │ │ │ │ ├── IBiometricContextListener.struct │ │ │ │ │ │ ├── IBiometricEnabledOnKeyguardCallback.struct │ │ │ │ │ │ ├── IBiometricSensorReceiver.struct │ │ │ │ │ │ ├── IBiometricService.struct │ │ │ │ │ │ ├── IBiometricServiceLockoutResetCallback.struct │ │ │ │ │ │ ├── IBiometricServiceReceiver.struct │ │ │ │ │ │ ├── IBiometricStateListener.struct │ │ │ │ │ │ ├── IBiometricSysuiReceiver.struct │ │ │ │ │ │ ├── IInvalidationCallback.struct │ │ │ │ │ │ ├── ITestSession.struct │ │ │ │ │ │ ├── ITestSessionCallback.struct │ │ │ │ │ │ ├── PromptInfo.struct │ │ │ │ │ │ ├── SensorPropertiesInternal.struct │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── CommonProps.struct │ │ │ │ │ │ │ ├── ComponentInfo.struct │ │ │ │ │ │ │ ├── ICancellationSignal.struct │ │ │ │ │ │ │ └── OperationContext.struct │ │ │ │ │ │ ├── face │ │ │ │ │ │ │ ├── AuthenticationFrame.struct │ │ │ │ │ │ │ ├── BaseFrame.struct │ │ │ │ │ │ │ ├── Cell.struct │ │ │ │ │ │ │ ├── EnrollmentFrame.struct │ │ │ │ │ │ │ ├── EnrollmentStageConfig.struct │ │ │ │ │ │ │ ├── IFace.struct │ │ │ │ │ │ │ ├── ISession.struct │ │ │ │ │ │ │ ├── ISessionCallback.struct │ │ │ │ │ │ │ └── SensorProps.struct │ │ │ │ │ │ └── fingerprint │ │ │ │ │ │ │ ├── IFingerprint.struct │ │ │ │ │ │ │ ├── ISession.struct │ │ │ │ │ │ │ ├── ISessionCallback.struct │ │ │ │ │ │ │ ├── PointerContext.struct │ │ │ │ │ │ │ ├── SensorLocation.struct │ │ │ │ │ │ │ └── SensorProps.struct │ │ │ │ │ ├── bluetooth │ │ │ │ │ │ └── audio │ │ │ │ │ │ │ ├── AacCapabilities.struct │ │ │ │ │ │ │ ├── AacConfiguration.struct │ │ │ │ │ │ │ ├── AptxAdaptiveCapabilities.struct │ │ │ │ │ │ │ ├── AptxAdaptiveConfiguration.struct │ │ │ │ │ │ │ ├── AptxAdaptiveTimeToPlay.struct │ │ │ │ │ │ │ ├── AptxCapabilities.struct │ │ │ │ │ │ │ ├── AptxConfiguration.struct │ │ │ │ │ │ │ ├── AptxSinkBuffering.struct │ │ │ │ │ │ │ ├── IBluetoothAudioPort.struct │ │ │ │ │ │ │ ├── IBluetoothAudioProviderFactory.struct │ │ │ │ │ │ │ ├── Lc3Capabilities.struct │ │ │ │ │ │ │ ├── Lc3Configuration.struct │ │ │ │ │ │ │ ├── LdacCapabilities.struct │ │ │ │ │ │ │ ├── LdacConfiguration.struct │ │ │ │ │ │ │ ├── LeAudioCodecCapabilitiesSetting.struct │ │ │ │ │ │ │ ├── OpusCapabilities.struct │ │ │ │ │ │ │ ├── OpusConfiguration.struct │ │ │ │ │ │ │ ├── PcmCapabilities.struct │ │ │ │ │ │ │ ├── PcmConfiguration.struct │ │ │ │ │ │ │ ├── SbcCapabilities.struct │ │ │ │ │ │ │ └── SbcConfiguration.struct │ │ │ │ │ ├── camera │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── CameraResourceCost.struct │ │ │ │ │ │ │ ├── VendorTag.struct │ │ │ │ │ │ │ └── VendorTagSection.struct │ │ │ │ │ │ ├── device │ │ │ │ │ │ │ ├── BufferCache.struct │ │ │ │ │ │ │ ├── BufferRequest.struct │ │ │ │ │ │ │ ├── CameraBlob.struct │ │ │ │ │ │ │ ├── CameraMetadata.struct │ │ │ │ │ │ │ ├── CameraOfflineSessionInfo.struct │ │ │ │ │ │ │ ├── CaptureRequest.struct │ │ │ │ │ │ │ ├── CaptureResult.struct │ │ │ │ │ │ │ ├── ErrorMsg.struct │ │ │ │ │ │ │ ├── HalStream.struct │ │ │ │ │ │ │ ├── ICameraDevice.struct │ │ │ │ │ │ │ ├── ICameraDeviceCallback.struct │ │ │ │ │ │ │ ├── ICameraInjectionSession.struct │ │ │ │ │ │ │ ├── OfflineRequest.struct │ │ │ │ │ │ │ ├── OfflineStream.struct │ │ │ │ │ │ │ ├── PhysicalCameraMetadata.struct │ │ │ │ │ │ │ ├── PhysicalCameraSetting.struct │ │ │ │ │ │ │ ├── ShutterMsg.struct │ │ │ │ │ │ │ ├── Stream.struct │ │ │ │ │ │ │ ├── StreamBuffer.struct │ │ │ │ │ │ │ ├── StreamBufferRet.struct │ │ │ │ │ │ │ └── StreamConfiguration.struct │ │ │ │ │ │ └── provider │ │ │ │ │ │ │ ├── CameraIdAndStreamCombination.struct │ │ │ │ │ │ │ ├── ConcurrentCameraIdCombination.struct │ │ │ │ │ │ │ ├── ICameraProvider.struct │ │ │ │ │ │ │ └── ICameraProviderCallback.struct │ │ │ │ │ ├── camera2 │ │ │ │ │ │ ├── CaptureRequest.struct │ │ │ │ │ │ ├── ICameraDeviceCallbacks.struct │ │ │ │ │ │ ├── ICameraDeviceUser.struct │ │ │ │ │ │ ├── ICameraInjectionCallback.struct │ │ │ │ │ │ ├── ICameraInjectionSession.struct │ │ │ │ │ │ ├── ICameraOfflineSession.struct │ │ │ │ │ │ ├── extension │ │ │ │ │ │ │ ├── IAdvancedExtenderImpl.struct │ │ │ │ │ │ │ ├── ICameraExtensionsProxyService.struct │ │ │ │ │ │ │ ├── ICaptureCallback.struct │ │ │ │ │ │ │ ├── ICaptureProcessorImpl.struct │ │ │ │ │ │ │ ├── IImageCaptureExtenderImpl.struct │ │ │ │ │ │ │ ├── IImageProcessorImpl.struct │ │ │ │ │ │ │ ├── IInitializeSessionCallback.struct │ │ │ │ │ │ │ ├── IPreviewExtenderImpl.struct │ │ │ │ │ │ │ ├── IPreviewImageProcessorImpl.struct │ │ │ │ │ │ │ ├── IProcessResultImpl.struct │ │ │ │ │ │ │ ├── IRequestCallback.struct │ │ │ │ │ │ │ ├── IRequestProcessorImpl.struct │ │ │ │ │ │ │ ├── IRequestUpdateProcessorImpl.struct │ │ │ │ │ │ │ └── ISessionProcessorImpl.struct │ │ │ │ │ │ ├── impl │ │ │ │ │ │ │ ├── CameraMetadataNative.struct │ │ │ │ │ │ │ ├── CaptureResultExtras.struct │ │ │ │ │ │ │ └── PhysicalCaptureResultInfo.struct │ │ │ │ │ │ ├── params │ │ │ │ │ │ │ ├── OutputConfiguration.struct │ │ │ │ │ │ │ ├── SessionConfiguration.struct │ │ │ │ │ │ │ ├── VendorTagDescriptor.struct │ │ │ │ │ │ │ └── VendorTagDescriptorCache.struct │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── CameraIdAndSessionConfiguration.struct │ │ │ │ │ │ │ ├── ConcurrentCameraIdCombination.struct │ │ │ │ │ │ │ └── SubmitInfo.struct │ │ │ │ │ ├── common │ │ │ │ │ │ ├── Ashmem.struct │ │ │ │ │ │ ├── MappableFile.struct │ │ │ │ │ │ ├── NativeHandle.struct │ │ │ │ │ │ └── fmq │ │ │ │ │ │ │ └── GrantorDescriptor.struct │ │ │ │ │ ├── contexthub │ │ │ │ │ │ ├── ContextHubInfo.struct │ │ │ │ │ │ ├── ContextHubMessage.struct │ │ │ │ │ │ ├── HostEndpointInfo.struct │ │ │ │ │ │ ├── IContextHub.struct │ │ │ │ │ │ ├── IContextHubCallback.struct │ │ │ │ │ │ ├── NanoappBinary.struct │ │ │ │ │ │ ├── NanoappInfo.struct │ │ │ │ │ │ └── NanoappRpcService.struct │ │ │ │ │ ├── devicestate │ │ │ │ │ │ ├── DeviceStateInfo.struct │ │ │ │ │ │ ├── IDeviceStateManager.struct │ │ │ │ │ │ └── IDeviceStateManagerCallback.struct │ │ │ │ │ ├── display │ │ │ │ │ │ ├── BrightnessInfo.struct │ │ │ │ │ │ ├── Curve.struct │ │ │ │ │ │ ├── IColorDisplayManager.struct │ │ │ │ │ │ ├── IDeviceProductInfoConstants.struct │ │ │ │ │ │ ├── IDisplayManager.struct │ │ │ │ │ │ ├── IDisplayManagerCallback.struct │ │ │ │ │ │ ├── IVirtualDisplayCallback.struct │ │ │ │ │ │ ├── Time.struct │ │ │ │ │ │ └── VirtualDisplayConfig.struct │ │ │ │ │ ├── drm │ │ │ │ │ │ ├── CryptoSchemes.struct │ │ │ │ │ │ ├── DecryptArgs.struct │ │ │ │ │ │ ├── DrmMetric.struct │ │ │ │ │ │ ├── DrmMetricGroup.struct │ │ │ │ │ │ ├── DrmMetricNamedValue.struct │ │ │ │ │ │ ├── HdcpLevels.struct │ │ │ │ │ │ ├── ICryptoPlugin.struct │ │ │ │ │ │ ├── IDrmFactory.struct │ │ │ │ │ │ ├── IDrmPlugin.struct │ │ │ │ │ │ ├── IDrmPluginListener.struct │ │ │ │ │ │ ├── KeyRequest.struct │ │ │ │ │ │ ├── KeySetId.struct │ │ │ │ │ │ ├── KeyStatus.struct │ │ │ │ │ │ ├── KeyValue.struct │ │ │ │ │ │ ├── LogMessage.struct │ │ │ │ │ │ ├── NumberOfSessions.struct │ │ │ │ │ │ ├── OpaqueData.struct │ │ │ │ │ │ ├── Pattern.struct │ │ │ │ │ │ ├── ProvideProvisionResponseResult.struct │ │ │ │ │ │ ├── ProvisionRequest.struct │ │ │ │ │ │ ├── SecureStop.struct │ │ │ │ │ │ ├── SecureStopId.struct │ │ │ │ │ │ ├── SharedBuffer.struct │ │ │ │ │ │ ├── SubSample.struct │ │ │ │ │ │ └── SupportedContentType.struct │ │ │ │ │ ├── dumpstate │ │ │ │ │ │ └── IDumpstateDevice.struct │ │ │ │ │ ├── face │ │ │ │ │ │ ├── Face.struct │ │ │ │ │ │ ├── FaceAuthenticationFrame.struct │ │ │ │ │ │ ├── FaceEnrollFrame.struct │ │ │ │ │ │ ├── FaceSensorPropertiesInternal.struct │ │ │ │ │ │ ├── IFaceService.struct │ │ │ │ │ │ └── IFaceServiceReceiver.struct │ │ │ │ │ ├── fingerprint │ │ │ │ │ │ ├── Fingerprint.struct │ │ │ │ │ │ ├── IFingerprintAuthenticatorsRegisteredCallback.struct │ │ │ │ │ │ ├── IFingerprintClientActiveCallback.struct │ │ │ │ │ │ ├── IFingerprintService.struct │ │ │ │ │ │ ├── IFingerprintServiceReceiver.struct │ │ │ │ │ │ ├── ISidefpsController.struct │ │ │ │ │ │ ├── IUdfpsHbmListener.struct │ │ │ │ │ │ ├── IUdfpsOverlayController.struct │ │ │ │ │ │ └── IUdfpsOverlayControllerCallback.struct │ │ │ │ │ ├── gnss │ │ │ │ │ │ ├── BlocklistedSource.struct │ │ │ │ │ │ ├── CorrelationVector.struct │ │ │ │ │ │ ├── ElapsedRealtime.struct │ │ │ │ │ │ ├── GnssClock.struct │ │ │ │ │ │ ├── GnssData.struct │ │ │ │ │ │ ├── GnssLocation.struct │ │ │ │ │ │ ├── GnssMeasurement.struct │ │ │ │ │ │ ├── GnssNavigationMessage.struct │ │ │ │ │ │ ├── GnssPowerStats.struct │ │ │ │ │ │ ├── GnssSignalType.struct │ │ │ │ │ │ ├── IAGnss.struct │ │ │ │ │ │ ├── IAGnssCallback.struct │ │ │ │ │ │ ├── IAGnssRilCallback.struct │ │ │ │ │ │ ├── IGnss.struct │ │ │ │ │ │ ├── IGnssAntennaInfo.struct │ │ │ │ │ │ ├── IGnssBatching.struct │ │ │ │ │ │ ├── IGnssBatchingCallback.struct │ │ │ │ │ │ ├── IGnssCallback.struct │ │ │ │ │ │ ├── IGnssConfiguration.struct │ │ │ │ │ │ ├── IGnssGeofence.struct │ │ │ │ │ │ ├── IGnssGeofenceCallback.struct │ │ │ │ │ │ ├── IGnssMeasurementCallback.struct │ │ │ │ │ │ ├── IGnssMeasurementInterface.struct │ │ │ │ │ │ ├── IGnssNavigationMessageCallback.struct │ │ │ │ │ │ ├── IGnssNavigationMessageInterface.struct │ │ │ │ │ │ ├── IGnssPowerIndication.struct │ │ │ │ │ │ ├── IGnssPowerIndicationCallback.struct │ │ │ │ │ │ ├── IGnssPsds.struct │ │ │ │ │ │ ├── IGnssPsdsCallback.struct │ │ │ │ │ │ ├── Options.struct │ │ │ │ │ │ ├── PositionModeOptions.struct │ │ │ │ │ │ ├── SatelliteClockInfo.struct │ │ │ │ │ │ ├── SatellitePositionEcef.struct │ │ │ │ │ │ ├── SatellitePvt.struct │ │ │ │ │ │ ├── SatelliteVelocityEcef.struct │ │ │ │ │ │ ├── measurement_corrections │ │ │ │ │ │ │ ├── IMeasurementCorrectionsCallback.struct │ │ │ │ │ │ │ ├── IMeasurementCorrectionsInterface.struct │ │ │ │ │ │ │ ├── MeasurementCorrections.struct │ │ │ │ │ │ │ └── ReflectingPlane.struct │ │ │ │ │ │ └── visibility_control │ │ │ │ │ │ │ ├── IGnssVisibilityControl.struct │ │ │ │ │ │ │ ├── IGnssVisibilityControlCallback.struct │ │ │ │ │ │ │ └── NfwNotification.struct │ │ │ │ │ ├── graphics │ │ │ │ │ │ ├── allocator │ │ │ │ │ │ │ ├── AllocationResult.struct │ │ │ │ │ │ │ └── IAllocator.struct │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── Cta861_3.struct │ │ │ │ │ │ │ ├── DisplayDecorationSupport.struct │ │ │ │ │ │ │ ├── ExtendableType.struct │ │ │ │ │ │ │ ├── FRect.struct │ │ │ │ │ │ │ ├── HardwareBuffer.struct │ │ │ │ │ │ │ ├── HardwareBufferDescription.struct │ │ │ │ │ │ │ ├── PlaneLayout.struct │ │ │ │ │ │ │ ├── PlaneLayoutComponent.struct │ │ │ │ │ │ │ ├── Point.struct │ │ │ │ │ │ │ ├── Rect.struct │ │ │ │ │ │ │ ├── Smpte2086.struct │ │ │ │ │ │ │ └── XyColor.struct │ │ │ │ │ │ └── composer3 │ │ │ │ │ │ │ ├── Buffer.struct │ │ │ │ │ │ │ ├── ChangedCompositionLayer.struct │ │ │ │ │ │ │ ├── ChangedCompositionTypes.struct │ │ │ │ │ │ │ ├── ClientTarget.struct │ │ │ │ │ │ │ ├── ClientTargetProperty.struct │ │ │ │ │ │ │ ├── ClientTargetPropertyWithBrightness.struct │ │ │ │ │ │ │ ├── ClockMonotonicTimestamp.struct │ │ │ │ │ │ │ ├── Color.struct │ │ │ │ │ │ │ ├── CommandError.struct │ │ │ │ │ │ │ ├── DisplayBrightness.struct │ │ │ │ │ │ │ ├── DisplayCommand.struct │ │ │ │ │ │ │ ├── DisplayContentSample.struct │ │ │ │ │ │ │ ├── DisplayContentSamplingAttributes.struct │ │ │ │ │ │ │ ├── DisplayIdentification.struct │ │ │ │ │ │ │ ├── HdrCapabilities.struct │ │ │ │ │ │ │ ├── IComposer.struct │ │ │ │ │ │ │ ├── IComposerCallback.struct │ │ │ │ │ │ │ ├── IComposerClient.struct │ │ │ │ │ │ │ ├── LayerBrightness.struct │ │ │ │ │ │ │ ├── LayerCommand.struct │ │ │ │ │ │ │ ├── ParcelableBlendMode.struct │ │ │ │ │ │ │ ├── ParcelableComposition.struct │ │ │ │ │ │ │ ├── ParcelableDataspace.struct │ │ │ │ │ │ │ ├── ParcelableTransform.struct │ │ │ │ │ │ │ ├── PerFrameMetadata.struct │ │ │ │ │ │ │ ├── PerFrameMetadataBlob.struct │ │ │ │ │ │ │ ├── PlaneAlpha.struct │ │ │ │ │ │ │ ├── PresentFence.struct │ │ │ │ │ │ │ ├── PresentOrValidate.struct │ │ │ │ │ │ │ ├── ReadbackBufferAttributes.struct │ │ │ │ │ │ │ ├── VirtualDisplay.struct │ │ │ │ │ │ │ ├── VsyncPeriodChangeConstraints.struct │ │ │ │ │ │ │ ├── VsyncPeriodChangeTimeline.struct │ │ │ │ │ │ │ └── ZOrder.struct │ │ │ │ │ ├── hdmi │ │ │ │ │ │ ├── HdmiDeviceInfo.struct │ │ │ │ │ │ ├── HdmiHotplugEvent.struct │ │ │ │ │ │ ├── HdmiPortInfo.struct │ │ │ │ │ │ ├── IHdmiCecSettingChangeListener.struct │ │ │ │ │ │ ├── IHdmiCecVolumeControlFeatureListener.struct │ │ │ │ │ │ ├── IHdmiControlCallback.struct │ │ │ │ │ │ ├── IHdmiControlService.struct │ │ │ │ │ │ ├── IHdmiControlStatusChangeListener.struct │ │ │ │ │ │ ├── IHdmiDeviceEventListener.struct │ │ │ │ │ │ ├── IHdmiHotplugEventListener.struct │ │ │ │ │ │ ├── IHdmiInputChangeListener.struct │ │ │ │ │ │ ├── IHdmiMhlVendorCommandListener.struct │ │ │ │ │ │ ├── IHdmiRecordListener.struct │ │ │ │ │ │ ├── IHdmiSystemAudioModeChangeListener.struct │ │ │ │ │ │ └── IHdmiVendorCommandListener.struct │ │ │ │ │ ├── health │ │ │ │ │ │ ├── DiskStats.struct │ │ │ │ │ │ ├── HealthInfo.struct │ │ │ │ │ │ ├── IHealth.struct │ │ │ │ │ │ ├── IHealthInfoCallback.struct │ │ │ │ │ │ ├── StorageInfo.struct │ │ │ │ │ │ └── storage │ │ │ │ │ │ │ ├── IGarbageCollectCallback.struct │ │ │ │ │ │ │ └── IStorage.struct │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── Certificate.struct │ │ │ │ │ │ ├── HardwareInformation.struct │ │ │ │ │ │ ├── IIdentityCredential.struct │ │ │ │ │ │ ├── IIdentityCredentialStore.struct │ │ │ │ │ │ ├── IPresentationSession.struct │ │ │ │ │ │ ├── IWritableIdentityCredential.struct │ │ │ │ │ │ ├── RequestDataItem.struct │ │ │ │ │ │ ├── RequestNamespace.struct │ │ │ │ │ │ └── SecureAccessControlProfile.struct │ │ │ │ │ ├── input │ │ │ │ │ │ ├── IInputDeviceBatteryListener.struct │ │ │ │ │ │ ├── IInputDevicesChangedListener.struct │ │ │ │ │ │ ├── IInputManager.struct │ │ │ │ │ │ ├── IInputSensorEventListener.struct │ │ │ │ │ │ ├── ITabletModeChangedListener.struct │ │ │ │ │ │ ├── InputDeviceIdentifier.struct │ │ │ │ │ │ ├── InputSensorInfo.struct │ │ │ │ │ │ ├── KeyboardLayout.struct │ │ │ │ │ │ ├── TouchCalibration.struct │ │ │ │ │ │ ├── VirtualKeyEvent.struct │ │ │ │ │ │ ├── VirtualMouseButtonEvent.struct │ │ │ │ │ │ ├── VirtualMouseRelativeEvent.struct │ │ │ │ │ │ ├── VirtualMouseScrollEvent.struct │ │ │ │ │ │ ├── VirtualTouchEvent.struct │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── MotionEvent.struct │ │ │ │ │ │ │ ├── PointerCoords.struct │ │ │ │ │ │ │ ├── PointerProperties.struct │ │ │ │ │ │ │ └── VideoFrame.struct │ │ │ │ │ │ └── processor │ │ │ │ │ │ │ └── IInputProcessor.struct │ │ │ │ │ ├── ir │ │ │ │ │ │ ├── ConsumerIrFreqRange.struct │ │ │ │ │ │ └── IConsumerIr.struct │ │ │ │ │ ├── iris │ │ │ │ │ │ └── IIrisService.struct │ │ │ │ │ ├── keymaster │ │ │ │ │ │ ├── HardwareAuthToken.struct │ │ │ │ │ │ ├── Timestamp.struct │ │ │ │ │ │ └── VerificationToken.struct │ │ │ │ │ ├── light │ │ │ │ │ │ ├── HwLight.struct │ │ │ │ │ │ ├── HwLightState.struct │ │ │ │ │ │ └── ILights.struct │ │ │ │ │ ├── lights │ │ │ │ │ │ ├── ILightsManager.struct │ │ │ │ │ │ ├── Light.struct │ │ │ │ │ │ └── LightState.struct │ │ │ │ │ ├── location │ │ │ │ │ │ ├── ContextHubInfo.struct │ │ │ │ │ │ ├── ContextHubMessage.struct │ │ │ │ │ │ ├── IActivityRecognitionHardware.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareClient.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareSink.struct │ │ │ │ │ │ ├── IActivityRecognitionHardwareWatcher.struct │ │ │ │ │ │ ├── IContextHubCallback.struct │ │ │ │ │ │ ├── IContextHubClient.struct │ │ │ │ │ │ ├── IContextHubClientCallback.struct │ │ │ │ │ │ ├── IContextHubService.struct │ │ │ │ │ │ ├── IContextHubTransactionCallback.struct │ │ │ │ │ │ ├── IGeofenceHardware.struct │ │ │ │ │ │ ├── IGeofenceHardwareCallback.struct │ │ │ │ │ │ ├── IGeofenceHardwareMonitorCallback.struct │ │ │ │ │ │ ├── MemoryRegion.struct │ │ │ │ │ │ ├── NanoApp.struct │ │ │ │ │ │ ├── NanoAppBinary.struct │ │ │ │ │ │ ├── NanoAppFilter.struct │ │ │ │ │ │ ├── NanoAppInstanceInfo.struct │ │ │ │ │ │ └── NanoAppMessage.struct │ │ │ │ │ ├── memtrack │ │ │ │ │ │ ├── DeviceInfo.struct │ │ │ │ │ │ ├── IMemtrack.struct │ │ │ │ │ │ └── MemtrackRecord.struct │ │ │ │ │ ├── net │ │ │ │ │ │ └── nlinterceptor │ │ │ │ │ │ │ ├── IInterceptor.struct │ │ │ │ │ │ │ └── InterceptedSocket.struct │ │ │ │ │ ├── neuralnetworks │ │ │ │ │ │ ├── BufferDesc.struct │ │ │ │ │ │ ├── BufferRole.struct │ │ │ │ │ │ ├── Capabilities.struct │ │ │ │ │ │ ├── DataLocation.struct │ │ │ │ │ │ ├── DeviceBuffer.struct │ │ │ │ │ │ ├── ExecutionConfig.struct │ │ │ │ │ │ ├── ExecutionResult.struct │ │ │ │ │ │ ├── Extension.struct │ │ │ │ │ │ ├── ExtensionNameAndPrefix.struct │ │ │ │ │ │ ├── ExtensionOperandTypeInformation.struct │ │ │ │ │ │ ├── FencedExecutionResult.struct │ │ │ │ │ │ ├── IBuffer.struct │ │ │ │ │ │ ├── IBurst.struct │ │ │ │ │ │ ├── IDevice.struct │ │ │ │ │ │ ├── IExecution.struct │ │ │ │ │ │ ├── IFencedExecutionCallback.struct │ │ │ │ │ │ ├── IPreparedModel.struct │ │ │ │ │ │ ├── IPreparedModelCallback.struct │ │ │ │ │ │ ├── IPreparedModelParcel.struct │ │ │ │ │ │ ├── Model.struct │ │ │ │ │ │ ├── NumberOfCacheFiles.struct │ │ │ │ │ │ ├── Operand.struct │ │ │ │ │ │ ├── OperandPerformance.struct │ │ │ │ │ │ ├── Operation.struct │ │ │ │ │ │ ├── OutputShape.struct │ │ │ │ │ │ ├── PerformanceInfo.struct │ │ │ │ │ │ ├── Request.struct │ │ │ │ │ │ ├── RequestArgument.struct │ │ │ │ │ │ ├── Subgraph.struct │ │ │ │ │ │ ├── SymmPerChannelQuantParams.struct │ │ │ │ │ │ ├── Timing.struct │ │ │ │ │ │ └── TokenValuePair.struct │ │ │ │ │ ├── nfc │ │ │ │ │ │ ├── INfc.struct │ │ │ │ │ │ ├── INfcClientCallback.struct │ │ │ │ │ │ ├── NfcConfig.struct │ │ │ │ │ │ └── ProtocolDiscoveryConfig.struct │ │ │ │ │ ├── oemlock │ │ │ │ │ │ └── IOemLock.struct │ │ │ │ │ ├── power │ │ │ │ │ │ ├── IPower.struct │ │ │ │ │ │ ├── IPowerHintSession.struct │ │ │ │ │ │ ├── WorkDuration.struct │ │ │ │ │ │ └── stats │ │ │ │ │ │ │ ├── Channel.struct │ │ │ │ │ │ │ ├── EnergyConsumer.struct │ │ │ │ │ │ │ ├── EnergyConsumerAttribution.struct │ │ │ │ │ │ │ ├── EnergyConsumerResult.struct │ │ │ │ │ │ │ ├── EnergyMeasurement.struct │ │ │ │ │ │ │ ├── IPowerStats.struct │ │ │ │ │ │ │ ├── PowerEntity.struct │ │ │ │ │ │ │ ├── State.struct │ │ │ │ │ │ │ ├── StateResidency.struct │ │ │ │ │ │ │ └── StateResidencyResult.struct │ │ │ │ │ ├── radio │ │ │ │ │ │ ├── Announcement.struct │ │ │ │ │ │ ├── IAnnouncementListener.struct │ │ │ │ │ │ ├── ICloseHandle.struct │ │ │ │ │ │ ├── IRadioService.struct │ │ │ │ │ │ ├── ITuner.struct │ │ │ │ │ │ ├── ITunerCallback.struct │ │ │ │ │ │ ├── ProgramSelector$Identifier.struct │ │ │ │ │ │ ├── ProgramSelector.struct │ │ │ │ │ │ ├── RadioConst.struct │ │ │ │ │ │ ├── RadioResponseInfo.struct │ │ │ │ │ │ ├── RadioResponseInfoModem.struct │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── IRadioConfig.struct │ │ │ │ │ │ │ ├── IRadioConfigIndication.struct │ │ │ │ │ │ │ ├── IRadioConfigResponse.struct │ │ │ │ │ │ │ ├── PhoneCapability.struct │ │ │ │ │ │ │ ├── SimPortInfo.struct │ │ │ │ │ │ │ ├── SimSlotStatus.struct │ │ │ │ │ │ │ └── SlotPortMapping.struct │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── DataProfileInfo.struct │ │ │ │ │ │ │ ├── EpsQos.struct │ │ │ │ │ │ │ ├── IRadioData.struct │ │ │ │ │ │ │ ├── IRadioDataIndication.struct │ │ │ │ │ │ │ ├── IRadioDataResponse.struct │ │ │ │ │ │ │ ├── KeepaliveRequest.struct │ │ │ │ │ │ │ ├── KeepaliveStatus.struct │ │ │ │ │ │ │ ├── LinkAddress.struct │ │ │ │ │ │ │ ├── NrQos.struct │ │ │ │ │ │ │ ├── OsAppId.struct │ │ │ │ │ │ │ ├── PcoDataInfo.struct │ │ │ │ │ │ │ ├── PortRange.struct │ │ │ │ │ │ │ ├── QosBandwidth.struct │ │ │ │ │ │ │ ├── QosFilter.struct │ │ │ │ │ │ │ ├── QosSession.struct │ │ │ │ │ │ │ ├── RouteSelectionDescriptor.struct │ │ │ │ │ │ │ ├── SetupDataCallResult.struct │ │ │ │ │ │ │ ├── SliceInfo.struct │ │ │ │ │ │ │ ├── SlicingConfig.struct │ │ │ │ │ │ │ ├── TrafficDescriptor.struct │ │ │ │ │ │ │ └── UrspRule.struct │ │ │ │ │ │ ├── messaging │ │ │ │ │ │ │ ├── CdmaBroadcastSmsConfigInfo.struct │ │ │ │ │ │ │ ├── CdmaSmsAck.struct │ │ │ │ │ │ │ ├── CdmaSmsAddress.struct │ │ │ │ │ │ │ ├── CdmaSmsMessage.struct │ │ │ │ │ │ │ ├── CdmaSmsSubaddress.struct │ │ │ │ │ │ │ ├── CdmaSmsWriteArgs.struct │ │ │ │ │ │ │ ├── GsmBroadcastSmsConfigInfo.struct │ │ │ │ │ │ │ ├── GsmSmsMessage.struct │ │ │ │ │ │ │ ├── IRadioMessaging.struct │ │ │ │ │ │ │ ├── IRadioMessagingIndication.struct │ │ │ │ │ │ │ ├── IRadioMessagingResponse.struct │ │ │ │ │ │ │ ├── ImsSmsMessage.struct │ │ │ │ │ │ │ ├── SendSmsResult.struct │ │ │ │ │ │ │ └── SmsWriteArgs.struct │ │ │ │ │ │ ├── modem │ │ │ │ │ │ │ ├── ActivityStatsInfo.struct │ │ │ │ │ │ │ ├── ActivityStatsTechSpecificInfo.struct │ │ │ │ │ │ │ ├── HardwareConfig.struct │ │ │ │ │ │ │ ├── HardwareConfigModem.struct │ │ │ │ │ │ │ ├── HardwareConfigSim.struct │ │ │ │ │ │ │ ├── IRadioModem.struct │ │ │ │ │ │ │ ├── IRadioModemIndication.struct │ │ │ │ │ │ │ ├── IRadioModemResponse.struct │ │ │ │ │ │ │ ├── NvWriteItem.struct │ │ │ │ │ │ │ └── RadioCapability.struct │ │ │ │ │ │ ├── network │ │ │ │ │ │ │ ├── BarringInfo.struct │ │ │ │ │ │ │ ├── BarringTypeSpecificInfo.struct │ │ │ │ │ │ │ ├── Cdma2000RegistrationInfo.struct │ │ │ │ │ │ │ ├── CdmaSignalStrength.struct │ │ │ │ │ │ │ ├── CellIdentityCdma.struct │ │ │ │ │ │ │ ├── CellIdentityGsm.struct │ │ │ │ │ │ │ ├── CellIdentityLte.struct │ │ │ │ │ │ │ ├── CellIdentityNr.struct │ │ │ │ │ │ │ ├── CellIdentityTdscdma.struct │ │ │ │ │ │ │ ├── CellIdentityWcdma.struct │ │ │ │ │ │ │ ├── CellInfo.struct │ │ │ │ │ │ │ ├── CellInfoCdma.struct │ │ │ │ │ │ │ ├── CellInfoGsm.struct │ │ │ │ │ │ │ ├── CellInfoLte.struct │ │ │ │ │ │ │ ├── CellInfoNr.struct │ │ │ │ │ │ │ ├── CellInfoTdscdma.struct │ │ │ │ │ │ │ ├── CellInfoWcdma.struct │ │ │ │ │ │ │ ├── ClosedSubscriberGroupInfo.struct │ │ │ │ │ │ │ ├── EutranRegistrationInfo.struct │ │ │ │ │ │ │ ├── EvdoSignalStrength.struct │ │ │ │ │ │ │ ├── GsmSignalStrength.struct │ │ │ │ │ │ │ ├── IRadioNetwork.struct │ │ │ │ │ │ │ ├── IRadioNetworkIndication.struct │ │ │ │ │ │ │ ├── IRadioNetworkResponse.struct │ │ │ │ │ │ │ ├── LceDataInfo.struct │ │ │ │ │ │ │ ├── LinkCapacityEstimate.struct │ │ │ │ │ │ │ ├── LteSignalStrength.struct │ │ │ │ │ │ │ ├── LteVopsInfo.struct │ │ │ │ │ │ │ ├── NetworkScanRequest.struct │ │ │ │ │ │ │ ├── NetworkScanResult.struct │ │ │ │ │ │ │ ├── NrIndicators.struct │ │ │ │ │ │ │ ├── NrSignalStrength.struct │ │ │ │ │ │ │ ├── NrVopsInfo.struct │ │ │ │ │ │ │ ├── OperatorInfo.struct │ │ │ │ │ │ │ ├── PhysicalChannelConfig.struct │ │ │ │ │ │ │ ├── RadioAccessSpecifier.struct │ │ │ │ │ │ │ ├── RegStateResult.struct │ │ │ │ │ │ │ ├── SignalStrength.struct │ │ │ │ │ │ │ ├── SignalThresholdInfo.struct │ │ │ │ │ │ │ ├── SuppSvcNotification.struct │ │ │ │ │ │ │ ├── TdscdmaSignalStrength.struct │ │ │ │ │ │ │ └── WcdmaSignalStrength.struct │ │ │ │ │ │ ├── sim │ │ │ │ │ │ │ ├── AppStatus.struct │ │ │ │ │ │ │ ├── CardStatus.struct │ │ │ │ │ │ │ ├── Carrier.struct │ │ │ │ │ │ │ ├── CarrierRestrictions.struct │ │ │ │ │ │ │ ├── IRadioSim.struct │ │ │ │ │ │ │ ├── IRadioSimIndication.struct │ │ │ │ │ │ │ ├── IRadioSimResponse.struct │ │ │ │ │ │ │ ├── IccIo.struct │ │ │ │ │ │ │ ├── IccIoResult.struct │ │ │ │ │ │ │ ├── ImsiEncryptionInfo.struct │ │ │ │ │ │ │ ├── PhonebookCapacity.struct │ │ │ │ │ │ │ ├── PhonebookRecordInfo.struct │ │ │ │ │ │ │ ├── SelectUiccSub.struct │ │ │ │ │ │ │ ├── SimApdu.struct │ │ │ │ │ │ │ └── SimRefreshResult.struct │ │ │ │ │ │ └── voice │ │ │ │ │ │ │ ├── Call.struct │ │ │ │ │ │ │ ├── CallForwardInfo.struct │ │ │ │ │ │ │ ├── CdmaCallWaiting.struct │ │ │ │ │ │ │ ├── CdmaDisplayInfoRecord.struct │ │ │ │ │ │ │ ├── CdmaInformationRecord.struct │ │ │ │ │ │ │ ├── CdmaLineControlInfoRecord.struct │ │ │ │ │ │ │ ├── CdmaNumberInfoRecord.struct │ │ │ │ │ │ │ ├── CdmaRedirectingNumberInfoRecord.struct │ │ │ │ │ │ │ ├── CdmaSignalInfoRecord.struct │ │ │ │ │ │ │ ├── CdmaT53AudioControlInfoRecord.struct │ │ │ │ │ │ │ ├── CdmaT53ClirInfoRecord.struct │ │ │ │ │ │ │ ├── CfData.struct │ │ │ │ │ │ │ ├── Dial.struct │ │ │ │ │ │ │ ├── EmergencyNumber.struct │ │ │ │ │ │ │ ├── IRadioVoice.struct │ │ │ │ │ │ │ ├── IRadioVoiceIndication.struct │ │ │ │ │ │ │ ├── IRadioVoiceResponse.struct │ │ │ │ │ │ │ ├── LastCallFailCauseInfo.struct │ │ │ │ │ │ │ ├── SsInfoData.struct │ │ │ │ │ │ │ ├── StkCcUnsolSsResult.struct │ │ │ │ │ │ │ └── UusInfo.struct │ │ │ │ │ ├── rebootescrow │ │ │ │ │ │ └── IRebootEscrow.struct │ │ │ │ │ ├── security │ │ │ │ │ │ ├── dice │ │ │ │ │ │ │ ├── Bcc.struct │ │ │ │ │ │ │ ├── Config.struct │ │ │ │ │ │ │ ├── IDiceDevice.struct │ │ │ │ │ │ │ └── Signature.struct │ │ │ │ │ │ ├── keymint │ │ │ │ │ │ │ ├── AttestationKey.struct │ │ │ │ │ │ │ ├── BeginResult.struct │ │ │ │ │ │ │ ├── Certificate.struct │ │ │ │ │ │ │ ├── DeviceInfo.struct │ │ │ │ │ │ │ ├── HardwareAuthToken.struct │ │ │ │ │ │ │ ├── IKeyMintDevice.struct │ │ │ │ │ │ │ ├── IKeyMintOperation.struct │ │ │ │ │ │ │ ├── IRemotelyProvisionedComponent.struct │ │ │ │ │ │ │ ├── KeyCharacteristics.struct │ │ │ │ │ │ │ ├── KeyCreationResult.struct │ │ │ │ │ │ │ ├── KeyMintHardwareInfo.struct │ │ │ │ │ │ │ ├── KeyParameter.struct │ │ │ │ │ │ │ ├── MacedPublicKey.struct │ │ │ │ │ │ │ ├── ProtectedData.struct │ │ │ │ │ │ │ └── RpcHardwareInfo.struct │ │ │ │ │ │ ├── secureclock │ │ │ │ │ │ │ ├── ISecureClock.struct │ │ │ │ │ │ │ ├── TimeStampToken.struct │ │ │ │ │ │ │ └── Timestamp.struct │ │ │ │ │ │ └── sharedsecret │ │ │ │ │ │ │ ├── ISharedSecret.struct │ │ │ │ │ │ │ └── SharedSecretParameters.struct │ │ │ │ │ ├── sensors │ │ │ │ │ │ ├── ISensorsCallback.struct │ │ │ │ │ │ └── SensorInfo.struct │ │ │ │ │ ├── soundtrigger │ │ │ │ │ │ ├── IRecognitionStatusCallback.struct │ │ │ │ │ │ └── KeyphraseMetadata.struct │ │ │ │ │ ├── soundtrigger3 │ │ │ │ │ │ ├── ISoundTriggerHw.struct │ │ │ │ │ │ ├── ISoundTriggerHwCallback.struct │ │ │ │ │ │ └── ISoundTriggerHwGlobalCallback.struct │ │ │ │ │ ├── tests │ │ │ │ │ │ └── extension │ │ │ │ │ │ │ └── vibrator │ │ │ │ │ │ │ └── ICustomVibrator.struct │ │ │ │ │ ├── tv │ │ │ │ │ │ └── tuner │ │ │ │ │ │ │ ├── AudioExtraMetaData.struct │ │ │ │ │ │ │ ├── DemuxAlpFilterSettings.struct │ │ │ │ │ │ │ ├── DemuxCapabilities.struct │ │ │ │ │ │ │ ├── DemuxFilterAvSettings.struct │ │ │ │ │ │ │ ├── DemuxFilterDownloadEvent.struct │ │ │ │ │ │ │ ├── DemuxFilterDownloadSettings.struct │ │ │ │ │ │ │ ├── DemuxFilterIpPayloadEvent.struct │ │ │ │ │ │ │ ├── DemuxFilterMediaEvent.struct │ │ │ │ │ │ │ ├── DemuxFilterMmtpRecordEvent.struct │ │ │ │ │ │ │ ├── DemuxFilterPesDataSettings.struct │ │ │ │ │ │ │ ├── DemuxFilterPesEvent.struct │ │ │ │ │ │ │ ├── DemuxFilterRecordSettings.struct │ │ │ │ │ │ │ ├── DemuxFilterSectionBits.struct │ │ │ │ │ │ │ ├── DemuxFilterSectionEvent.struct │ │ │ │ │ │ │ ├── DemuxFilterSectionSettings.struct │ │ │ │ │ │ │ ├── DemuxFilterSectionSettingsConditionTableInfo.struct │ │ │ │ │ │ │ ├── DemuxFilterTemiEvent.struct │ │ │ │ │ │ │ ├── DemuxFilterTsRecordEvent.struct │ │ │ │ │ │ │ ├── DemuxFilterType.struct │ │ │ │ │ │ │ ├── DemuxIpAddress.struct │ │ │ │ │ │ │ ├── DemuxIpFilterSettings.struct │ │ │ │ │ │ │ ├── DemuxMmtpFilterSettings.struct │ │ │ │ │ │ │ ├── DemuxTlvFilterSettings.struct │ │ │ │ │ │ │ ├── DemuxTsFilterSettings.struct │ │ │ │ │ │ │ ├── FilterDelayHint.struct │ │ │ │ │ │ │ ├── FrontendAnalogCapabilities.struct │ │ │ │ │ │ │ ├── FrontendAnalogSettings.struct │ │ │ │ │ │ │ ├── FrontendAtsc3Capabilities.struct │ │ │ │ │ │ │ ├── FrontendAtsc3PlpSettings.struct │ │ │ │ │ │ │ ├── FrontendAtsc3Settings.struct │ │ │ │ │ │ │ ├── FrontendAtscCapabilities.struct │ │ │ │ │ │ │ ├── FrontendAtscSettings.struct │ │ │ │ │ │ │ ├── FrontendDtmbCapabilities.struct │ │ │ │ │ │ │ ├── FrontendDtmbSettings.struct │ │ │ │ │ │ │ ├── FrontendDvbcCapabilities.struct │ │ │ │ │ │ │ ├── FrontendDvbcSettings.struct │ │ │ │ │ │ │ ├── FrontendDvbsCapabilities.struct │ │ │ │ │ │ │ ├── FrontendDvbsCodeRate.struct │ │ │ │ │ │ │ ├── FrontendDvbsSettings.struct │ │ │ │ │ │ │ ├── FrontendDvbtCapabilities.struct │ │ │ │ │ │ │ ├── FrontendDvbtSettings.struct │ │ │ │ │ │ │ ├── FrontendInfo.struct │ │ │ │ │ │ │ ├── FrontendIsdbs3Capabilities.struct │ │ │ │ │ │ │ ├── FrontendIsdbs3Settings.struct │ │ │ │ │ │ │ ├── FrontendIsdbsCapabilities.struct │ │ │ │ │ │ │ ├── FrontendIsdbsSettings.struct │ │ │ │ │ │ │ ├── FrontendIsdbtCapabilities.struct │ │ │ │ │ │ │ ├── FrontendIsdbtLayerSettings.struct │ │ │ │ │ │ │ ├── FrontendIsdbtSettings.struct │ │ │ │ │ │ │ ├── FrontendScanAtsc3PlpInfo.struct │ │ │ │ │ │ │ ├── FrontendStatusAtsc3PlpInfo.struct │ │ │ │ │ │ │ ├── IDemux.struct │ │ │ │ │ │ │ ├── IDescrambler.struct │ │ │ │ │ │ │ ├── IDvrCallback.struct │ │ │ │ │ │ │ ├── IFilterCallback.struct │ │ │ │ │ │ │ ├── IFrontend.struct │ │ │ │ │ │ │ ├── IFrontendCallback.struct │ │ │ │ │ │ │ ├── ILnb.struct │ │ │ │ │ │ │ ├── ILnbCallback.struct │ │ │ │ │ │ │ ├── ITimeFilter.struct │ │ │ │ │ │ │ ├── ITuner.struct │ │ │ │ │ │ │ ├── PlaybackSettings.struct │ │ │ │ │ │ │ └── RecordSettings.struct │ │ │ │ │ ├── usb │ │ │ │ │ │ ├── IUsb.struct │ │ │ │ │ │ ├── IUsbCallback.struct │ │ │ │ │ │ ├── IUsbManager.struct │ │ │ │ │ │ ├── IUsbOperationInternal.struct │ │ │ │ │ │ ├── IUsbSerialReader.struct │ │ │ │ │ │ ├── ParcelableUsbPort.struct │ │ │ │ │ │ ├── PortStatus.struct │ │ │ │ │ │ └── UsbPortStatus.struct │ │ │ │ │ ├── uwb │ │ │ │ │ │ ├── IUwb.struct │ │ │ │ │ │ ├── IUwbChip.struct │ │ │ │ │ │ └── IUwbClientCallback.struct │ │ │ │ │ ├── vibrator │ │ │ │ │ │ ├── ActivePwle.struct │ │ │ │ │ │ ├── BrakingPwle.struct │ │ │ │ │ │ ├── CompositeEffect.struct │ │ │ │ │ │ ├── IVibrator.struct │ │ │ │ │ │ ├── IVibratorCallback.struct │ │ │ │ │ │ └── IVibratorManager.struct │ │ │ │ │ ├── weaver │ │ │ │ │ │ ├── IWeaver.struct │ │ │ │ │ │ ├── WeaverConfig.struct │ │ │ │ │ │ └── WeaverReadResponse.struct │ │ │ │ │ └── wifi │ │ │ │ │ │ ├── hostapd │ │ │ │ │ │ ├── ApInfo.struct │ │ │ │ │ │ ├── ChannelParams.struct │ │ │ │ │ │ ├── ClientInfo.struct │ │ │ │ │ │ ├── FrequencyRange.struct │ │ │ │ │ │ ├── HwModeParams.struct │ │ │ │ │ │ ├── IHostapd.struct │ │ │ │ │ │ ├── IHostapdCallback.struct │ │ │ │ │ │ ├── IfaceParams.struct │ │ │ │ │ │ └── NetworkParams.struct │ │ │ │ │ │ └── supplicant │ │ │ │ │ │ ├── AnqpData.struct │ │ │ │ │ │ ├── AssociationRejectionData.struct │ │ │ │ │ │ ├── BssTmData.struct │ │ │ │ │ │ ├── ConnectionCapabilities.struct │ │ │ │ │ │ ├── DppConnectionKeys.struct │ │ │ │ │ │ ├── DppResponderBootstrapInfo.struct │ │ │ │ │ │ ├── FreqRange.struct │ │ │ │ │ │ ├── GsmRand.struct │ │ │ │ │ │ ├── Hs20AnqpData.struct │ │ │ │ │ │ ├── ISupplicant.struct │ │ │ │ │ │ ├── ISupplicantCallback.struct │ │ │ │ │ │ ├── ISupplicantP2pIface.struct │ │ │ │ │ │ ├── ISupplicantP2pIfaceCallback.struct │ │ │ │ │ │ ├── ISupplicantP2pNetwork.struct │ │ │ │ │ │ ├── ISupplicantStaIface.struct │ │ │ │ │ │ ├── ISupplicantStaIfaceCallback.struct │ │ │ │ │ │ ├── ISupplicantStaNetwork.struct │ │ │ │ │ │ ├── ISupplicantStaNetworkCallback.struct │ │ │ │ │ │ ├── IfaceInfo.struct │ │ │ │ │ │ ├── MacAddress.struct │ │ │ │ │ │ ├── MloLink.struct │ │ │ │ │ │ ├── MloLinksInfo.struct │ │ │ │ │ │ ├── NetworkRequestEapSimGsmAuthParams.struct │ │ │ │ │ │ ├── NetworkRequestEapSimUmtsAuthParams.struct │ │ │ │ │ │ ├── NetworkResponseEapSimGsmAuthParams.struct │ │ │ │ │ │ ├── NetworkResponseEapSimUmtsAuthParams.struct │ │ │ │ │ │ ├── OceRssiBasedAssocRejectAttr.struct │ │ │ │ │ │ ├── PortRange.struct │ │ │ │ │ │ ├── QosPolicyClassifierParams.struct │ │ │ │ │ │ ├── QosPolicyData.struct │ │ │ │ │ │ └── QosPolicyStatus.struct │ │ │ │ ├── location │ │ │ │ │ ├── Address.struct │ │ │ │ │ ├── Country.struct │ │ │ │ │ ├── Criteria.struct │ │ │ │ │ ├── GeocoderParams.struct │ │ │ │ │ ├── Geofence.struct │ │ │ │ │ ├── GnssCapabilities.struct │ │ │ │ │ ├── GnssMeasurementRequest.struct │ │ │ │ │ ├── GnssStatus.struct │ │ │ │ │ ├── ICountryDetector.struct │ │ │ │ │ ├── ICountryListener.struct │ │ │ │ │ ├── IFusedGeofenceHardware.struct │ │ │ │ │ ├── IGeocodeListener.struct │ │ │ │ │ ├── IGeocodeProvider.struct │ │ │ │ │ ├── IGeofenceProvider.struct │ │ │ │ │ ├── IGnssAntennaInfoListener.struct │ │ │ │ │ ├── IGnssMeasurementsListener.struct │ │ │ │ │ ├── IGnssNavigationMessageListener.struct │ │ │ │ │ ├── IGnssNmeaListener.struct │ │ │ │ │ ├── IGnssStatusListener.struct │ │ │ │ │ ├── IGpsGeofenceHardware.struct │ │ │ │ │ ├── ILocationCallback.struct │ │ │ │ │ ├── ILocationListener.struct │ │ │ │ │ ├── ILocationManager.struct │ │ │ │ │ ├── INetInitiatedListener.struct │ │ │ │ │ ├── LastLocationRequest.struct │ │ │ │ │ ├── LocationRequest.struct │ │ │ │ │ ├── LocationTime.struct │ │ │ │ │ └── provider │ │ │ │ │ │ ├── ILocationProvider.struct │ │ │ │ │ │ ├── ILocationProviderManager.struct │ │ │ │ │ │ ├── IProviderRequestListener.struct │ │ │ │ │ │ ├── ProviderProperties.struct │ │ │ │ │ │ └── ProviderRequest.struct │ │ │ │ ├── lpdump │ │ │ │ │ └── ILpdump.struct │ │ │ │ ├── media │ │ │ │ │ ├── AudioAttributesEx.struct │ │ │ │ │ ├── AudioAttributesInternal.struct │ │ │ │ │ ├── AudioClient.struct │ │ │ │ │ ├── AudioDeviceAttributes.struct │ │ │ │ │ ├── AudioFormat.struct │ │ │ │ │ ├── AudioGainSys.struct │ │ │ │ │ ├── AudioIoDescriptor.struct │ │ │ │ │ ├── AudioMix.struct │ │ │ │ │ ├── AudioMixMatchCriterion.struct │ │ │ │ │ ├── AudioPatch.struct │ │ │ │ │ ├── AudioPlaybackRate.struct │ │ │ │ │ ├── AudioPort.struct │ │ │ │ │ ├── AudioPortConfig.struct │ │ │ │ │ ├── AudioPortConfigSys.struct │ │ │ │ │ ├── AudioPortDeviceExtSys.struct │ │ │ │ │ ├── AudioPortMixExtSys.struct │ │ │ │ │ ├── AudioPortSys.struct │ │ │ │ │ ├── AudioProductStrategy.struct │ │ │ │ │ ├── AudioProfileSys.struct │ │ │ │ │ ├── AudioRecordingConfiguration.struct │ │ │ │ │ ├── AudioRoutesInfo.struct │ │ │ │ │ ├── AudioTimestampInternal.struct │ │ │ │ │ ├── AudioVibratorInfo.struct │ │ │ │ │ ├── AudioVolumeGroup.struct │ │ │ │ │ ├── BluetoothProfileConnectionInfo.struct │ │ │ │ │ ├── CreateEffectRequest.struct │ │ │ │ │ ├── CreateEffectResponse.struct │ │ │ │ │ ├── CreateRecordRequest.struct │ │ │ │ │ ├── CreateRecordResponse.struct │ │ │ │ │ ├── CreateTrackRequest.struct │ │ │ │ │ ├── CreateTrackResponse.struct │ │ │ │ │ ├── EffectDescriptor.struct │ │ │ │ │ ├── GetInputForAttrResponse.struct │ │ │ │ │ ├── GetOutputForAttrResponse.struct │ │ │ │ │ ├── GetSpatializerResponse.struct │ │ │ │ │ ├── IAudioDeviceVolumeDispatcher.struct │ │ │ │ │ ├── IAudioFlingerClient.struct │ │ │ │ │ ├── IAudioFocusDispatcher.struct │ │ │ │ │ ├── IAudioModeDispatcher.struct │ │ │ │ │ ├── IAudioPolicyServiceClient.struct │ │ │ │ │ ├── IAudioRecord.struct │ │ │ │ │ ├── IAudioRoutesObserver.struct │ │ │ │ │ ├── IAudioServerStateDispatcher.struct │ │ │ │ │ ├── IAudioService.struct │ │ │ │ │ ├── IAudioTrack.struct │ │ │ │ │ ├── IAudioTrackCallback.struct │ │ │ │ │ ├── ICapturePresetDevicesRoleDispatcher.struct │ │ │ │ │ ├── ICaptureStateListener.struct │ │ │ │ │ ├── ICommunicationDeviceDispatcher.struct │ │ │ │ │ ├── IDeviceVolumeBehaviorDispatcher.struct │ │ │ │ │ ├── IEffect.struct │ │ │ │ │ ├── IEffectClient.struct │ │ │ │ │ ├── IMediaCommunicationService.struct │ │ │ │ │ ├── IMediaCommunicationServiceCallback.struct │ │ │ │ │ ├── IMediaController2.struct │ │ │ │ │ ├── IMediaHTTPConnection.struct │ │ │ │ │ ├── IMediaHTTPService.struct │ │ │ │ │ ├── IMediaMetricsService.struct │ │ │ │ │ ├── IMediaResourceMonitor.struct │ │ │ │ │ ├── IMediaRoute2ProviderService.struct │ │ │ │ │ ├── IMediaRoute2ProviderServiceCallback.struct │ │ │ │ │ ├── IMediaRouter2.struct │ │ │ │ │ ├── IMediaRouter2Manager.struct │ │ │ │ │ ├── IMediaRouterClient.struct │ │ │ │ │ ├── IMediaRouterService.struct │ │ │ │ │ ├── IMediaScannerListener.struct │ │ │ │ │ ├── IMediaScannerService.struct │ │ │ │ │ ├── IMediaSession2.struct │ │ │ │ │ ├── IMediaSession2Service.struct │ │ │ │ │ ├── IMediaTranscodingService.struct │ │ │ │ │ ├── IMuteAwaitConnectionCallback.struct │ │ │ │ │ ├── INativeSpatializerCallback.struct │ │ │ │ │ ├── INearbyMediaDevicesProvider.struct │ │ │ │ │ ├── INearbyMediaDevicesUpdateCallback.struct │ │ │ │ │ ├── IPlaybackConfigDispatcher.struct │ │ │ │ │ ├── IPlayer.struct │ │ │ │ │ ├── IRecordingConfigDispatcher.struct │ │ │ │ │ ├── IRemoteDisplayCallback.struct │ │ │ │ │ ├── IRemoteDisplayProvider.struct │ │ │ │ │ ├── IRemoteSessionCallback.struct │ │ │ │ │ ├── IRemoteVolumeObserver.struct │ │ │ │ │ ├── IResourceManagerClient.struct │ │ │ │ │ ├── IResourceManagerService.struct │ │ │ │ │ ├── IResourceObserver.struct │ │ │ │ │ ├── IResourceObserverService.struct │ │ │ │ │ ├── IRingtonePlayer.struct │ │ │ │ │ ├── ISpatializer.struct │ │ │ │ │ ├── ISpatializerCallback.struct │ │ │ │ │ ├── ISpatializerHeadToSoundStagePoseCallback.struct │ │ │ │ │ ├── ISpatializerHeadTrackerAvailableCallback.struct │ │ │ │ │ ├── ISpatializerHeadTrackingCallback.struct │ │ │ │ │ ├── ISpatializerHeadTrackingModeCallback.struct │ │ │ │ │ ├── ISpatializerOutputCallback.struct │ │ │ │ │ ├── IStrategyPreferredDevicesDispatcher.struct │ │ │ │ │ ├── ITranscodingClient.struct │ │ │ │ │ ├── ITranscodingClientCallback.struct │ │ │ │ │ ├── IVolumeController.struct │ │ │ │ │ ├── InterpolatorConfig.struct │ │ │ │ │ ├── MediaObservableFilter.struct │ │ │ │ │ ├── MediaObservableParcel.struct │ │ │ │ │ ├── MediaResourceParcel.struct │ │ │ │ │ ├── MediaResourcePolicyParcel.struct │ │ │ │ │ ├── MediaRouterClientState$RouteInfo.struct │ │ │ │ │ ├── MediaRouterClientState.struct │ │ │ │ │ ├── MicrophoneInfoData.struct │ │ │ │ │ ├── NearbyDevice.struct │ │ │ │ │ ├── OpenInputRequest.struct │ │ │ │ │ ├── OpenInputResponse.struct │ │ │ │ │ ├── OpenOutputRequest.struct │ │ │ │ │ ├── OpenOutputResponse.struct │ │ │ │ │ ├── PlaybackParams.struct │ │ │ │ │ ├── Rating.struct │ │ │ │ │ ├── RecordClientInfo.struct │ │ │ │ │ ├── RemoteDisplayState$RemoteDisplayInfo.struct │ │ │ │ │ ├── RemoteDisplayState.struct │ │ │ │ │ ├── RenderPosition.struct │ │ │ │ │ ├── RouteDiscoveryPreference.struct │ │ │ │ │ ├── Session2Command.struct │ │ │ │ │ ├── SharedFileRegion.struct │ │ │ │ │ ├── SoundTriggerSession.struct │ │ │ │ │ ├── TrackSecondaryOutputInfo.struct │ │ │ │ │ ├── TranscodingRequestParcel.struct │ │ │ │ │ ├── TranscodingResultParcel.struct │ │ │ │ │ ├── TranscodingSessionParcel.struct │ │ │ │ │ ├── TranscodingSessionStats.struct │ │ │ │ │ ├── TranscodingTestConfig.struct │ │ │ │ │ ├── TranscodingVideoTrackFormat.struct │ │ │ │ │ ├── VolumeInfo.struct │ │ │ │ │ ├── VolumePolicy.struct │ │ │ │ │ ├── VolumeShaperConfiguration.struct │ │ │ │ │ ├── VolumeShaperOperation.struct │ │ │ │ │ ├── VolumeShaperState.struct │ │ │ │ │ ├── audio │ │ │ │ │ │ └── common │ │ │ │ │ │ │ ├── AudioConfig.struct │ │ │ │ │ │ │ ├── AudioConfigBase.struct │ │ │ │ │ │ │ ├── AudioDevice.struct │ │ │ │ │ │ │ ├── AudioDeviceDescription.struct │ │ │ │ │ │ │ ├── AudioFormatDescription.struct │ │ │ │ │ │ │ ├── AudioGain.struct │ │ │ │ │ │ │ ├── AudioGainConfig.struct │ │ │ │ │ │ │ ├── AudioMMapPolicyInfo.struct │ │ │ │ │ │ │ ├── AudioOffloadInfo.struct │ │ │ │ │ │ │ ├── AudioPort.struct │ │ │ │ │ │ │ ├── AudioPortConfig.struct │ │ │ │ │ │ │ ├── AudioPortDeviceExt.struct │ │ │ │ │ │ │ ├── AudioPortMixExt.struct │ │ │ │ │ │ │ ├── AudioProfile.struct │ │ │ │ │ │ │ ├── AudioUuid.struct │ │ │ │ │ │ │ ├── ExtraAudioDescriptor.struct │ │ │ │ │ │ │ └── Int.struct │ │ │ │ │ ├── audiopolicy │ │ │ │ │ │ ├── AudioProductStrategy$AudioAttributesGroup.struct │ │ │ │ │ │ ├── AudioProductStrategy.struct │ │ │ │ │ │ ├── AudioVolumeGroup.struct │ │ │ │ │ │ └── IAudioPolicyCallback.struct │ │ │ │ │ ├── eco │ │ │ │ │ │ ├── IECOService.struct │ │ │ │ │ │ ├── IECOServiceInfoListener.struct │ │ │ │ │ │ ├── IECOServiceStatsProvider.struct │ │ │ │ │ │ └── IECOSession.struct │ │ │ │ │ ├── metrics │ │ │ │ │ │ ├── IMediaMetricsManager.struct │ │ │ │ │ │ ├── NetworkEvent.struct │ │ │ │ │ │ ├── PlaybackErrorEvent.struct │ │ │ │ │ │ ├── PlaybackMetrics.struct │ │ │ │ │ │ ├── PlaybackStateEvent.struct │ │ │ │ │ │ └── TrackChangeEvent.struct │ │ │ │ │ ├── midi │ │ │ │ │ │ ├── IBluetoothMidiService.struct │ │ │ │ │ │ ├── IMidiDeviceListener.struct │ │ │ │ │ │ ├── IMidiDeviceOpenCallback.struct │ │ │ │ │ │ ├── IMidiDeviceServer.struct │ │ │ │ │ │ ├── IMidiManager.struct │ │ │ │ │ │ ├── MidiDeviceInfo.struct │ │ │ │ │ │ └── MidiDeviceStatus.struct │ │ │ │ │ ├── misc │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ ├── musicrecognition │ │ │ │ │ │ ├── IMusicRecognitionAttributionTagCallback.struct │ │ │ │ │ │ ├── IMusicRecognitionManager.struct │ │ │ │ │ │ ├── IMusicRecognitionManagerCallback.struct │ │ │ │ │ │ ├── IMusicRecognitionService.struct │ │ │ │ │ │ ├── IMusicRecognitionServiceCallback.struct │ │ │ │ │ │ └── RecognitionRequest.struct │ │ │ │ │ ├── permission │ │ │ │ │ │ └── Identity.struct │ │ │ │ │ ├── projection │ │ │ │ │ │ ├── IMediaProjection.struct │ │ │ │ │ │ ├── IMediaProjectionCallback.struct │ │ │ │ │ │ ├── IMediaProjectionManager.struct │ │ │ │ │ │ ├── IMediaProjectionWatcherCallback.struct │ │ │ │ │ │ └── MediaProjectionInfo.struct │ │ │ │ │ ├── session │ │ │ │ │ │ ├── IActiveSessionsListener.struct │ │ │ │ │ │ ├── IOnMediaKeyEventDispatchedListener.struct │ │ │ │ │ │ ├── IOnMediaKeyEventSessionChangedListener.struct │ │ │ │ │ │ ├── IOnMediaKeyListener.struct │ │ │ │ │ │ ├── IOnVolumeKeyLongPressListener.struct │ │ │ │ │ │ ├── ISession.struct │ │ │ │ │ │ ├── ISession2TokensListener.struct │ │ │ │ │ │ ├── ISessionCallback.struct │ │ │ │ │ │ ├── ISessionController.struct │ │ │ │ │ │ ├── ISessionControllerCallback.struct │ │ │ │ │ │ ├── ISessionManager.struct │ │ │ │ │ │ └── PlaybackState.struct │ │ │ │ │ ├── soundtrigger │ │ │ │ │ │ ├── ConfidenceLevel.struct │ │ │ │ │ │ ├── ISoundTriggerDetectionService.struct │ │ │ │ │ │ ├── ISoundTriggerDetectionServiceClient.struct │ │ │ │ │ │ ├── ModelParameterRange.struct │ │ │ │ │ │ ├── Phrase.struct │ │ │ │ │ │ ├── PhraseRecognitionEvent.struct │ │ │ │ │ │ ├── PhraseRecognitionExtra.struct │ │ │ │ │ │ ├── PhraseSoundModel.struct │ │ │ │ │ │ ├── Properties.struct │ │ │ │ │ │ ├── RecognitionConfig.struct │ │ │ │ │ │ ├── RecognitionEvent.struct │ │ │ │ │ │ └── SoundModel.struct │ │ │ │ │ ├── soundtrigger_middleware │ │ │ │ │ │ ├── ISoundTriggerCallback.struct │ │ │ │ │ │ ├── ISoundTriggerMiddlewareService.struct │ │ │ │ │ │ ├── ISoundTriggerModule.struct │ │ │ │ │ │ └── SoundTriggerModuleDescriptor.struct │ │ │ │ │ └── tv │ │ │ │ │ │ ├── AdRequest.struct │ │ │ │ │ │ ├── AdResponse.struct │ │ │ │ │ │ ├── AitInfo.struct │ │ │ │ │ │ ├── BroadcastInfoRequest.struct │ │ │ │ │ │ ├── BroadcastInfoResponse.struct │ │ │ │ │ │ ├── DvbDeviceInfo.struct │ │ │ │ │ │ ├── ITvInputClient.struct │ │ │ │ │ │ ├── ITvInputHardware.struct │ │ │ │ │ │ ├── ITvInputHardwareCallback.struct │ │ │ │ │ │ ├── ITvInputManager.struct │ │ │ │ │ │ ├── ITvInputManagerCallback.struct │ │ │ │ │ │ ├── ITvInputService.struct │ │ │ │ │ │ ├── ITvInputServiceCallback.struct │ │ │ │ │ │ ├── ITvInputSession.struct │ │ │ │ │ │ ├── ITvInputSessionCallback.struct │ │ │ │ │ │ ├── ITvRemoteProvider.struct │ │ │ │ │ │ ├── ITvRemoteServiceInput.struct │ │ │ │ │ │ ├── TunedInfo.struct │ │ │ │ │ │ ├── TvContentRatingSystemInfo.struct │ │ │ │ │ │ ├── TvInputHardwareInfo.struct │ │ │ │ │ │ ├── TvInputInfo.struct │ │ │ │ │ │ ├── TvTrackInfo.struct │ │ │ │ │ │ ├── interactive │ │ │ │ │ │ ├── AppLinkInfo.struct │ │ │ │ │ │ ├── ITvInteractiveAppClient.struct │ │ │ │ │ │ ├── ITvInteractiveAppManager.struct │ │ │ │ │ │ ├── ITvInteractiveAppManagerCallback.struct │ │ │ │ │ │ ├── ITvInteractiveAppService.struct │ │ │ │ │ │ ├── ITvInteractiveAppServiceCallback.struct │ │ │ │ │ │ ├── ITvInteractiveAppSession.struct │ │ │ │ │ │ ├── ITvInteractiveAppSessionCallback.struct │ │ │ │ │ │ └── TvInteractiveAppServiceInfo.struct │ │ │ │ │ │ ├── tuner │ │ │ │ │ │ ├── ITunerDemux.struct │ │ │ │ │ │ ├── ITunerDescrambler.struct │ │ │ │ │ │ ├── ITunerDvrCallback.struct │ │ │ │ │ │ ├── ITunerFilterCallback.struct │ │ │ │ │ │ ├── ITunerFrontend.struct │ │ │ │ │ │ ├── ITunerFrontendCallback.struct │ │ │ │ │ │ ├── ITunerLnb.struct │ │ │ │ │ │ ├── ITunerLnbCallback.struct │ │ │ │ │ │ ├── ITunerService.struct │ │ │ │ │ │ ├── ITunerTimeFilter.struct │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ ├── ISharedFilterTestServer.struct │ │ │ │ │ │ │ └── ITunerResourceTestServer.struct │ │ │ │ │ │ └── tunerresourcemanager │ │ │ │ │ │ ├── CasSessionRequest.struct │ │ │ │ │ │ ├── IResourcesReclaimListener.struct │ │ │ │ │ │ ├── ITunerResourceManager.struct │ │ │ │ │ │ ├── ResourceClientProfile.struct │ │ │ │ │ │ ├── TunerCiCamRequest.struct │ │ │ │ │ │ ├── TunerDemuxRequest.struct │ │ │ │ │ │ ├── TunerDescramblerRequest.struct │ │ │ │ │ │ ├── TunerFrontendInfo.struct │ │ │ │ │ │ ├── TunerFrontendRequest.struct │ │ │ │ │ │ └── TunerLnbRequest.struct │ │ │ │ ├── nearby │ │ │ │ │ ├── IBroadcastListener.struct │ │ │ │ │ ├── IFastPairHalfSheetCallback.struct │ │ │ │ │ ├── INearbyManager.struct │ │ │ │ │ ├── IScanListener.struct │ │ │ │ │ ├── PairStatusMetadata.struct │ │ │ │ │ └── aidl │ │ │ │ │ │ ├── ByteArrayParcel.struct │ │ │ │ │ │ ├── FastPairAccountDevicesMetadataRequestParcel.struct │ │ │ │ │ │ ├── FastPairAccountKeyDeviceMetadataParcel.struct │ │ │ │ │ │ ├── FastPairAntispoofKeyDeviceMetadataParcel.struct │ │ │ │ │ │ ├── FastPairAntispoofKeyDeviceMetadataRequestParcel.struct │ │ │ │ │ │ ├── FastPairDeviceMetadataParcel.struct │ │ │ │ │ │ ├── FastPairDiscoveryItemParcel.struct │ │ │ │ │ │ ├── FastPairEligibleAccountParcel.struct │ │ │ │ │ │ ├── FastPairEligibleAccountsRequestParcel.struct │ │ │ │ │ │ ├── FastPairManageAccountDeviceRequestParcel.struct │ │ │ │ │ │ ├── FastPairManageAccountRequestParcel.struct │ │ │ │ │ │ ├── IFastPairAccountDevicesMetadataCallback.struct │ │ │ │ │ │ ├── IFastPairAntispoofKeyDeviceMetadataCallback.struct │ │ │ │ │ │ ├── IFastPairDataProvider.struct │ │ │ │ │ │ ├── IFastPairEligibleAccountsCallback.struct │ │ │ │ │ │ ├── IFastPairManageAccountCallback.struct │ │ │ │ │ │ ├── IFastPairManageAccountDeviceCallback.struct │ │ │ │ │ │ ├── IFastPairStatusCallback.struct │ │ │ │ │ │ └── IFastPairUiService.struct │ │ │ │ ├── net │ │ │ │ │ ├── CaptivePortalData.struct │ │ │ │ │ ├── ConnectivityMetricsEvent.struct │ │ │ │ │ ├── DataStallReportParcelable.struct │ │ │ │ │ ├── DhcpInfo.struct │ │ │ │ │ ├── DhcpOption.struct │ │ │ │ │ ├── DhcpResultsParcelable.struct │ │ │ │ │ ├── DscpPolicy.struct │ │ │ │ │ ├── EthernetNetworkManagementException.struct │ │ │ │ │ ├── EthernetNetworkUpdateRequest.struct │ │ │ │ │ ├── ICaptivePortal.struct │ │ │ │ │ ├── IConnectivityDiagnosticsCallback.struct │ │ │ │ │ ├── IDnsResolver.struct │ │ │ │ │ ├── IEthernetManager.struct │ │ │ │ │ ├── IEthernetServiceListener.struct │ │ │ │ │ ├── IIntResultListener.struct │ │ │ │ │ ├── IIpConnectivityMetrics.struct │ │ │ │ │ ├── IIpMemoryStore.struct │ │ │ │ │ ├── IIpMemoryStoreCallbacks.struct │ │ │ │ │ ├── IIpSecService.struct │ │ │ │ │ ├── INetd.struct │ │ │ │ │ ├── INetdEventCallback.struct │ │ │ │ │ ├── INetdUnsolicitedEventListener.struct │ │ │ │ │ ├── INetworkActivityListener.struct │ │ │ │ │ ├── INetworkAgent.struct │ │ │ │ │ ├── INetworkAgentRegistry.struct │ │ │ │ │ ├── INetworkInterfaceOutcomeReceiver.struct │ │ │ │ │ ├── INetworkManagementEventObserver.struct │ │ │ │ │ ├── INetworkMonitor.struct │ │ │ │ │ ├── INetworkMonitorCallbacks.struct │ │ │ │ │ ├── INetworkOfferCallback.struct │ │ │ │ │ ├── INetworkPolicyListener.struct │ │ │ │ │ ├── INetworkPolicyManager.struct │ │ │ │ │ ├── INetworkRecommendationProvider.struct │ │ │ │ │ ├── INetworkScoreCache.struct │ │ │ │ │ ├── INetworkScoreService.struct │ │ │ │ │ ├── INetworkStackConnector.struct │ │ │ │ │ ├── INetworkStackStatusCallback.struct │ │ │ │ │ ├── INetworkStatsService.struct │ │ │ │ │ ├── INetworkStatsSession.struct │ │ │ │ │ ├── IOnCompleteListener.struct │ │ │ │ │ ├── IPacProxyInstalledListener.struct │ │ │ │ │ ├── IPacProxyManager.struct │ │ │ │ │ ├── IQosCallback.struct │ │ │ │ │ ├── ISocketKeepaliveCallback.struct │ │ │ │ │ ├── ITestNetworkManager.struct │ │ │ │ │ ├── ITetheredInterfaceCallback.struct │ │ │ │ │ ├── ITetheringConnector.struct │ │ │ │ │ ├── ITetheringEventCallback.struct │ │ │ │ │ ├── ITetheringStatsProvider.struct │ │ │ │ │ ├── IVpnManager.struct │ │ │ │ │ ├── InformationElementParcelable.struct │ │ │ │ │ ├── InitialConfigurationParcelable.struct │ │ │ │ │ ├── InterfaceConfigurationParcel.struct │ │ │ │ │ ├── IpPrefix.struct │ │ │ │ │ ├── IpSecConfig.struct │ │ │ │ │ ├── IpSecSpiResponse.struct │ │ │ │ │ ├── IpSecTransformResponse.struct │ │ │ │ │ ├── IpSecTunnelInterfaceResponse.struct │ │ │ │ │ ├── IpSecUdpEncapResponse.struct │ │ │ │ │ ├── Layer2InformationParcelable.struct │ │ │ │ │ ├── Layer2PacketParcelable.struct │ │ │ │ │ ├── MacAddress.struct │ │ │ │ │ ├── MarkMaskParcel.struct │ │ │ │ │ ├── NativeNetworkConfig.struct │ │ │ │ │ ├── NattKeepalivePacketDataParcelable.struct │ │ │ │ │ ├── Network.struct │ │ │ │ │ ├── NetworkAgentConfig.struct │ │ │ │ │ ├── NetworkKey.struct │ │ │ │ │ ├── NetworkPolicy.struct │ │ │ │ │ ├── NetworkScore.struct │ │ │ │ │ ├── NetworkScorerAppData.struct │ │ │ │ │ ├── NetworkStateSnapshot.struct │ │ │ │ │ ├── NetworkStats.struct │ │ │ │ │ ├── NetworkStatsHistory.struct │ │ │ │ │ ├── NetworkTemplate.struct │ │ │ │ │ ├── NetworkTestResultParcelable.struct │ │ │ │ │ ├── PrivateDnsConfigParcel.struct │ │ │ │ │ ├── ProvisioningConfigurationParcelable.struct │ │ │ │ │ ├── ProxyInfo.struct │ │ │ │ │ ├── QosFilterParcelable.struct │ │ │ │ │ ├── QosSession.struct │ │ │ │ │ ├── ResolverHostsParcel.struct │ │ │ │ │ ├── ResolverOptionsParcel.struct │ │ │ │ │ ├── ResolverParamsParcel.struct │ │ │ │ │ ├── RouteInfo.struct │ │ │ │ │ ├── RouteInfoParcel.struct │ │ │ │ │ ├── RssiCurve.struct │ │ │ │ │ ├── ScanResultInfoParcelable.struct │ │ │ │ │ ├── ScoredNetwork.struct │ │ │ │ │ ├── TcpKeepalivePacketDataParcelable.struct │ │ │ │ │ ├── TestNetworkInterface.struct │ │ │ │ │ ├── TetherConfigParcel.struct │ │ │ │ │ ├── TetherOffloadRuleParcel.struct │ │ │ │ │ ├── TetherStatesParcel.struct │ │ │ │ │ ├── TetherStatsParcel.struct │ │ │ │ │ ├── TetheredClient.struct │ │ │ │ │ ├── TetheringCallbackStartedParcel.struct │ │ │ │ │ ├── TetheringConfigurationParcel.struct │ │ │ │ │ ├── TetheringInterface.struct │ │ │ │ │ ├── TetheringRequestParcel.struct │ │ │ │ │ ├── UidRangeParcel.struct │ │ │ │ │ ├── UnderlyingNetworkInfo.struct │ │ │ │ │ ├── Uri$HierarchicalUri.struct │ │ │ │ │ ├── Uri$OpaqueUri.struct │ │ │ │ │ ├── Uri$StringUri.struct │ │ │ │ │ ├── Uri.struct │ │ │ │ │ ├── VpnProfileState.struct │ │ │ │ │ ├── apf │ │ │ │ │ │ └── ApfCapabilities.struct │ │ │ │ │ ├── connectivity │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ └── ConnectivityNative.struct │ │ │ │ │ ├── dhcp │ │ │ │ │ │ ├── DhcpLeaseParcelable.struct │ │ │ │ │ │ ├── DhcpServingParamsParcel.struct │ │ │ │ │ │ ├── IDhcpEventCallbacks.struct │ │ │ │ │ │ ├── IDhcpServer.struct │ │ │ │ │ │ └── IDhcpServerCallbacks.struct │ │ │ │ │ ├── ip │ │ │ │ │ │ ├── IIpClient.struct │ │ │ │ │ │ └── IIpClientCallbacks.struct │ │ │ │ │ ├── ipmemorystore │ │ │ │ │ │ ├── Blob.struct │ │ │ │ │ │ ├── IOnBlobRetrievedListener.struct │ │ │ │ │ │ ├── IOnL2KeyResponseListener.struct │ │ │ │ │ │ ├── IOnNetworkAttributesRetrievedListener.struct │ │ │ │ │ │ ├── IOnSameL3NetworkResponseListener.struct │ │ │ │ │ │ ├── IOnStatusAndCountListener.struct │ │ │ │ │ │ ├── IOnStatusListener.struct │ │ │ │ │ │ ├── NetworkAttributesParcelable.struct │ │ │ │ │ │ ├── SameL3NetworkResponseParcelable.struct │ │ │ │ │ │ └── StatusParcelable.struct │ │ │ │ │ ├── lowpan │ │ │ │ │ │ ├── ILowpanEnergyScanCallback.struct │ │ │ │ │ │ ├── ILowpanInterface.struct │ │ │ │ │ │ ├── ILowpanInterfaceListener.struct │ │ │ │ │ │ ├── ILowpanManager.struct │ │ │ │ │ │ ├── ILowpanManagerListener.struct │ │ │ │ │ │ ├── ILowpanNetScanCallback.struct │ │ │ │ │ │ ├── LowpanChannelInfo.struct │ │ │ │ │ │ └── LowpanCredential.struct │ │ │ │ │ ├── mdns │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ ├── DiscoveryInfo.struct │ │ │ │ │ │ │ ├── GetAddressInfo.struct │ │ │ │ │ │ │ ├── IMDns.struct │ │ │ │ │ │ │ ├── IMDnsEventListener.struct │ │ │ │ │ │ │ ├── RegistrationInfo.struct │ │ │ │ │ │ │ └── ResolutionInfo.struct │ │ │ │ │ ├── metrics │ │ │ │ │ │ └── INetdEventListener.struct │ │ │ │ │ ├── netd │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ └── NativeUidRangeConfig.struct │ │ │ │ │ ├── netstats │ │ │ │ │ │ ├── IUsageCallback.struct │ │ │ │ │ │ └── provider │ │ │ │ │ │ │ ├── INetworkStatsProvider.struct │ │ │ │ │ │ │ └── INetworkStatsProviderCallback.struct │ │ │ │ │ ├── networkstack │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ ├── NetworkMonitorParameters.struct │ │ │ │ │ │ │ ├── dhcp │ │ │ │ │ │ │ └── DhcpOption.struct │ │ │ │ │ │ │ ├── ip │ │ │ │ │ │ │ └── ReachabilityLossInfoParcelable.struct │ │ │ │ │ │ │ └── quirks │ │ │ │ │ │ │ └── IPv6ProvisioningLossQuirkParcelable.struct │ │ │ │ │ ├── nsd │ │ │ │ │ │ ├── INsdManager.struct │ │ │ │ │ │ ├── INsdManagerCallback.struct │ │ │ │ │ │ └── INsdServiceConnector.struct │ │ │ │ │ ├── resolv │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ ├── DnsHealthEventParcel.struct │ │ │ │ │ │ │ ├── IDnsResolverUnsolicitedEventListener.struct │ │ │ │ │ │ │ ├── Nat64PrefixEventParcel.struct │ │ │ │ │ │ │ └── PrivateDnsValidationEventParcel.struct │ │ │ │ │ ├── sip │ │ │ │ │ │ ├── ISipService.struct │ │ │ │ │ │ ├── ISipSession.struct │ │ │ │ │ │ ├── ISipSessionListener.struct │ │ │ │ │ │ └── SipProfile.struct │ │ │ │ │ ├── vcn │ │ │ │ │ │ ├── IVcnManagementService.struct │ │ │ │ │ │ ├── IVcnStatusCallback.struct │ │ │ │ │ │ ├── IVcnUnderlyingNetworkPolicyListener.struct │ │ │ │ │ │ └── VcnConfig.struct │ │ │ │ │ └── wifi │ │ │ │ │ │ ├── CoexUnsafeChannel.struct │ │ │ │ │ │ ├── IActionListener.struct │ │ │ │ │ │ ├── IBooleanListener.struct │ │ │ │ │ │ ├── ICoexCallback.struct │ │ │ │ │ │ ├── IDppCallback.struct │ │ │ │ │ │ ├── IInterfaceCreationInfoCallback.struct │ │ │ │ │ │ ├── ILastCallerListener.struct │ │ │ │ │ │ ├── ILocalOnlyHotspotCallback.struct │ │ │ │ │ │ ├── INetworkRequestMatchCallback.struct │ │ │ │ │ │ ├── INetworkRequestUserSelectionCallback.struct │ │ │ │ │ │ ├── IOnWifiActivityEnergyInfoListener.struct │ │ │ │ │ │ ├── IOnWifiDriverCountryCodeChangedListener.struct │ │ │ │ │ │ ├── IOnWifiUsabilityStatsListener.struct │ │ │ │ │ │ ├── IPnoScanResultsCallback.struct │ │ │ │ │ │ ├── IScanResultsCallback.struct │ │ │ │ │ │ ├── IScanResultsListener.struct │ │ │ │ │ │ ├── IScoreUpdateObserver.struct │ │ │ │ │ │ ├── ISubsystemRestartCallback.struct │ │ │ │ │ │ ├── ISuggestionConnectionStatusListener.struct │ │ │ │ │ │ ├── ISuggestionUserApprovalStatusListener.struct │ │ │ │ │ │ ├── ITrafficStateCallback.struct │ │ │ │ │ │ ├── IWifiConnectedNetworkScorer.struct │ │ │ │ │ │ ├── IWifiManager.struct │ │ │ │ │ │ ├── IWifiScanner.struct │ │ │ │ │ │ ├── IWifiVerboseLoggingStatusChangedListener.struct │ │ │ │ │ │ ├── WifiAvailableChannel.struct │ │ │ │ │ │ ├── WifiConnectedSessionInfo.struct │ │ │ │ │ │ ├── WifiNetworkSuggestion.struct │ │ │ │ │ │ ├── WifiSsid.struct │ │ │ │ │ │ ├── aware │ │ │ │ │ │ ├── AwareParams.struct │ │ │ │ │ │ ├── AwareResources.struct │ │ │ │ │ │ ├── ConfigRequest.struct │ │ │ │ │ │ ├── IWifiAwareDiscoverySessionCallback.struct │ │ │ │ │ │ ├── IWifiAwareEventCallback.struct │ │ │ │ │ │ ├── IWifiAwareMacAddressProvider.struct │ │ │ │ │ │ ├── IWifiAwareManager.struct │ │ │ │ │ │ ├── MacAddrMapping.struct │ │ │ │ │ │ └── SubscribeConfig.struct │ │ │ │ │ │ ├── hotspot2 │ │ │ │ │ │ └── IProvisioningCallback.struct │ │ │ │ │ │ ├── nl80211 │ │ │ │ │ │ ├── DeviceWiphyCapabilities.struct │ │ │ │ │ │ ├── IApInterface.struct │ │ │ │ │ │ ├── IApInterfaceEventCallback.struct │ │ │ │ │ │ ├── IClientInterface.struct │ │ │ │ │ │ ├── IInterfaceEventCallback.struct │ │ │ │ │ │ ├── IPnoScanEvent.struct │ │ │ │ │ │ ├── IScanEvent.struct │ │ │ │ │ │ ├── ISendMgmtFrameEvent.struct │ │ │ │ │ │ ├── IWifiScannerImpl.struct │ │ │ │ │ │ ├── IWificond.struct │ │ │ │ │ │ ├── IWificondEventCallback.struct │ │ │ │ │ │ ├── NativeScanResult.struct │ │ │ │ │ │ ├── PnoSettings.struct │ │ │ │ │ │ └── SingleScanSettings.struct │ │ │ │ │ │ ├── p2p │ │ │ │ │ │ └── IWifiP2pManager.struct │ │ │ │ │ │ └── rtt │ │ │ │ │ │ ├── IRttCallback.struct │ │ │ │ │ │ ├── IWifiRttManager.struct │ │ │ │ │ │ └── RangingRequest.struct │ │ │ │ ├── nfc │ │ │ │ │ ├── IAppCallback.struct │ │ │ │ │ ├── INfcAdapter.struct │ │ │ │ │ ├── INfcAdapterExtras.struct │ │ │ │ │ ├── INfcCardEmulation.struct │ │ │ │ │ ├── INfcControllerAlwaysOnListener.struct │ │ │ │ │ ├── INfcDta.struct │ │ │ │ │ ├── INfcFCardEmulation.struct │ │ │ │ │ ├── INfcTag.struct │ │ │ │ │ ├── INfcUnlockHandler.struct │ │ │ │ │ ├── ITagRemovedCallback.struct │ │ │ │ │ ├── NdefMessage.struct │ │ │ │ │ ├── NdefRecord.struct │ │ │ │ │ ├── TechListParcel.struct │ │ │ │ │ ├── TransceiveResult.struct │ │ │ │ │ └── cardemulation │ │ │ │ │ │ ├── AidGroup.struct │ │ │ │ │ │ ├── ApduServiceInfo.struct │ │ │ │ │ │ └── NfcFServiceInfo.struct │ │ │ │ ├── ondevicepersonalization │ │ │ │ │ └── aidl │ │ │ │ │ │ ├── IInitCodeCallback.struct │ │ │ │ │ │ └── IOnDevicePersonalizationManagerService.struct │ │ │ │ ├── os │ │ │ │ │ ├── BatteryProperty.struct │ │ │ │ │ ├── BatteryUsageStats.struct │ │ │ │ │ ├── BatteryUsageStatsQuery.struct │ │ │ │ │ ├── BluetoothBatteryStats.struct │ │ │ │ │ ├── CombinedVibration$Mono.struct │ │ │ │ │ ├── CombinedVibration$Stereo.struct │ │ │ │ │ ├── CombinedVibration.struct │ │ │ │ │ ├── ConnectionInfo.struct │ │ │ │ │ ├── CoolingDevice.struct │ │ │ │ │ ├── CpuUsageInfo.struct │ │ │ │ │ ├── CreateAppDataArgs.struct │ │ │ │ │ ├── CreateAppDataResult.struct │ │ │ │ │ ├── ExternalVibration.struct │ │ │ │ │ ├── FabricatedOverlayInfo.struct │ │ │ │ │ ├── FabricatedOverlayInternal.struct │ │ │ │ │ ├── FabricatedOverlayInternalEntry.struct │ │ │ │ │ ├── IAidlTest.struct │ │ │ │ │ ├── IArtd.struct │ │ │ │ │ ├── IBatteryPropertiesRegistrar.struct │ │ │ │ │ ├── IBinderThreadPriorityService.struct │ │ │ │ │ ├── IBinderWorkSourceNestedService.struct │ │ │ │ │ ├── IBinderWorkSourceService.struct │ │ │ │ │ ├── ICancellationSignal.struct │ │ │ │ │ ├── IClientCallback.struct │ │ │ │ │ ├── IDeviceIdentifiersPolicyService.struct │ │ │ │ │ ├── IDeviceIdleController.struct │ │ │ │ │ ├── IDumpstate.struct │ │ │ │ │ ├── IDumpstateListener.struct │ │ │ │ │ ├── IExternalVibrationController.struct │ │ │ │ │ ├── IExternalVibratorService.struct │ │ │ │ │ ├── IHardwarePropertiesManager.struct │ │ │ │ │ ├── IHintManager.struct │ │ │ │ │ ├── IHintSession.struct │ │ │ │ │ ├── IIdmap2.struct │ │ │ │ │ ├── IIncidentAuthListener.struct │ │ │ │ │ ├── IIncidentCompanion.struct │ │ │ │ │ ├── IIncidentDumpCallback.struct │ │ │ │ │ ├── IIncidentManager.struct │ │ │ │ │ ├── IIncidentReportStatusListener.struct │ │ │ │ │ ├── IInputConstants.struct │ │ │ │ │ ├── IInputFlinger.struct │ │ │ │ │ ├── IInstalld.struct │ │ │ │ │ ├── ILogd.struct │ │ │ │ │ ├── IMessenger.struct │ │ │ │ │ ├── INetworkManagementService.struct │ │ │ │ │ ├── IPendingIntentRef.struct │ │ │ │ │ ├── IPermissionController.struct │ │ │ │ │ ├── IPowerManager.struct │ │ │ │ │ ├── IProcessInfoService.struct │ │ │ │ │ ├── IProgressListener.struct │ │ │ │ │ ├── IPullAtomCallback.struct │ │ │ │ │ ├── IPullAtomResultReceiver.struct │ │ │ │ │ ├── IRecoverySystem.struct │ │ │ │ │ ├── IRecoverySystemProgressListener.struct │ │ │ │ │ ├── IRemoteCallback.struct │ │ │ │ │ ├── ISchedulingPolicyService.struct │ │ │ │ │ ├── IServiceCallback.struct │ │ │ │ │ ├── IServiceManager.struct │ │ │ │ │ ├── ISomeService.struct │ │ │ │ │ ├── IStatsBootstrapAtomService.struct │ │ │ │ │ ├── IStatsCompanionService.struct │ │ │ │ │ ├── IStatsManagerService.struct │ │ │ │ │ ├── IStatsd.struct │ │ │ │ │ ├── IStoraged.struct │ │ │ │ │ ├── ISystemConfig.struct │ │ │ │ │ ├── ISystemUpdateManager.struct │ │ │ │ │ ├── IThermalEventListener.struct │ │ │ │ │ ├── IThermalService.struct │ │ │ │ │ ├── IThermalStatusListener.struct │ │ │ │ │ ├── IUpdateEngine.struct │ │ │ │ │ ├── IUpdateEngineCallback.struct │ │ │ │ │ ├── IUpdateEngineStable.struct │ │ │ │ │ ├── IUpdateEngineStableCallback.struct │ │ │ │ │ ├── IUpdateLock.struct │ │ │ │ │ ├── IUserManager.struct │ │ │ │ │ ├── IUserRestrictionsListener.struct │ │ │ │ │ ├── IVibratorManagerService.struct │ │ │ │ │ ├── IVibratorStateListener.struct │ │ │ │ │ ├── IVold.struct │ │ │ │ │ ├── IVoldListener.struct │ │ │ │ │ ├── IVoldMountCallback.struct │ │ │ │ │ ├── IVoldTaskListener.struct │ │ │ │ │ ├── IWakeLockCallback.struct │ │ │ │ │ ├── Messenger.struct │ │ │ │ │ ├── PackageTagsList.struct │ │ │ │ │ ├── ParcelDuration.struct │ │ │ │ │ ├── ParcelFileDescriptor.struct │ │ │ │ │ ├── ParcelUuid.struct │ │ │ │ │ ├── PatternMatcher.struct │ │ │ │ │ ├── PersistableBundle.struct │ │ │ │ │ ├── PowerSaveState.struct │ │ │ │ │ ├── ReconcileSdkDataArgs.struct │ │ │ │ │ ├── ServiceDebugInfo.struct │ │ │ │ │ ├── SharedMemory.struct │ │ │ │ │ ├── StatsBootstrapAtom.struct │ │ │ │ │ ├── StatsDimensionsValueParcel.struct │ │ │ │ │ ├── Temperature.struct │ │ │ │ │ ├── VibrationAttributes.struct │ │ │ │ │ ├── VibratorInfo.struct │ │ │ │ │ ├── WakeLockStats.struct │ │ │ │ │ ├── WorkSource$WorkChain.struct │ │ │ │ │ ├── WorkSource.struct │ │ │ │ │ ├── connectivity │ │ │ │ │ │ ├── CellularBatteryStats.struct │ │ │ │ │ │ ├── GpsBatteryStats.struct │ │ │ │ │ │ ├── WifiActivityEnergyInfo.struct │ │ │ │ │ │ └── WifiBatteryStats.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── ExceptionalParcelable.struct │ │ │ │ │ │ ├── IEmptyService.struct │ │ │ │ │ │ ├── IParcelExceptionService.struct │ │ │ │ │ │ ├── IParcelFileDescriptorPeer.struct │ │ │ │ │ │ ├── ISeccompIsolatedService.struct │ │ │ │ │ │ ├── ISecondary.struct │ │ │ │ │ │ └── ISharedMemoryService.struct │ │ │ │ │ ├── health │ │ │ │ │ │ └── HealthStatsParceler.struct │ │ │ │ │ ├── image │ │ │ │ │ │ └── IDynamicSystemService.struct │ │ │ │ │ ├── incremental │ │ │ │ │ │ ├── IIncrementalService.struct │ │ │ │ │ │ ├── IIncrementalServiceConnector.struct │ │ │ │ │ │ ├── IStorageHealthListener.struct │ │ │ │ │ │ ├── IStorageLoadingProgressListener.struct │ │ │ │ │ │ ├── IncrementalFileSystemControlParcel.struct │ │ │ │ │ │ ├── IncrementalNewFileParams.struct │ │ │ │ │ │ ├── PerUidReadTimeouts.struct │ │ │ │ │ │ └── StorageHealthCheckParams.struct │ │ │ │ │ ├── logcat │ │ │ │ │ │ └── ILogcatManagerService.struct │ │ │ │ │ ├── storage │ │ │ │ │ │ ├── CrateMetadata.struct │ │ │ │ │ │ ├── DiskInfo.struct │ │ │ │ │ │ ├── IObbActionListener.struct │ │ │ │ │ │ ├── IStorageEventListener.struct │ │ │ │ │ │ ├── IStorageManager.struct │ │ │ │ │ │ ├── IStorageShutdownObserver.struct │ │ │ │ │ │ ├── VolumeInfo.struct │ │ │ │ │ │ └── VolumeRecord.struct │ │ │ │ │ └── storaged │ │ │ │ │ │ └── IStoragedPrivate.struct │ │ │ │ ├── permission │ │ │ │ │ ├── ILegacyPermissionManager.struct │ │ │ │ │ ├── IOnPermissionsChangeListener.struct │ │ │ │ │ ├── IPermissionChecker.struct │ │ │ │ │ ├── IPermissionManager.struct │ │ │ │ │ └── cts │ │ │ │ │ │ └── appthataccesseslocation │ │ │ │ │ │ └── IAccessLocationOnCommand.struct │ │ │ │ ├── pixel │ │ │ │ │ └── perfstatsd │ │ │ │ │ │ └── IPerfstatsdPrivate.struct │ │ │ │ ├── print │ │ │ │ │ ├── ILayoutResultCallback.struct │ │ │ │ │ ├── IPrintDocumentAdapter.struct │ │ │ │ │ ├── IPrintDocumentAdapterObserver.struct │ │ │ │ │ ├── IPrintJobStateChangeListener.struct │ │ │ │ │ ├── IPrintManager.struct │ │ │ │ │ ├── IPrintServicesChangeListener.struct │ │ │ │ │ ├── IPrintSpooler.struct │ │ │ │ │ ├── IPrintSpoolerCallbacks.struct │ │ │ │ │ ├── IPrintSpoolerClient.struct │ │ │ │ │ ├── IPrinterDiscoveryObserver.struct │ │ │ │ │ ├── IWriteResultCallback.struct │ │ │ │ │ ├── PageRange.struct │ │ │ │ │ ├── PrintAttributes.struct │ │ │ │ │ └── PrintJobInfo.struct │ │ │ │ ├── printservice │ │ │ │ │ ├── IPrintService.struct │ │ │ │ │ ├── IPrintServiceClient.struct │ │ │ │ │ ├── PrintServiceInfo.struct │ │ │ │ │ └── recommendation │ │ │ │ │ │ ├── IRecommendationService.struct │ │ │ │ │ │ ├── IRecommendationServiceCallbacks.struct │ │ │ │ │ │ ├── IRecommendationsChangeListener.struct │ │ │ │ │ │ └── RecommendationInfo.struct │ │ │ │ ├── provider │ │ │ │ │ ├── IAsyncContentProvider.struct │ │ │ │ │ ├── ICloudMediaSurfaceController.struct │ │ │ │ │ └── ICloudMediaSurfaceStateChangedCallback.struct │ │ │ │ ├── safetycenter │ │ │ │ │ ├── IOnSafetyCenterDataChangedListener.struct │ │ │ │ │ └── ISafetyCenterManager.struct │ │ │ │ ├── scheduling │ │ │ │ │ ├── IRebootReadinessManager.struct │ │ │ │ │ └── IRequestRebootReadinessStatusListener.struct │ │ │ │ ├── se │ │ │ │ │ └── omapi │ │ │ │ │ │ ├── ISecureElementChannel.struct │ │ │ │ │ │ ├── ISecureElementListener.struct │ │ │ │ │ │ ├── ISecureElementReader.struct │ │ │ │ │ │ ├── ISecureElementService.struct │ │ │ │ │ │ └── ISecureElementSession.struct │ │ │ │ ├── security │ │ │ │ │ ├── AppUriAuthenticationPolicy.struct │ │ │ │ │ ├── IFileIntegrityService.struct │ │ │ │ │ ├── IGenerateRkpKeyService.struct │ │ │ │ │ ├── IKeyChainAliasCallback.struct │ │ │ │ │ ├── IKeyChainService.struct │ │ │ │ │ ├── apc │ │ │ │ │ │ ├── IConfirmationCallback.struct │ │ │ │ │ │ └── IProtectedConfirmation.struct │ │ │ │ │ ├── attestationmanager │ │ │ │ │ │ ├── ByteArray.struct │ │ │ │ │ │ └── IAttestationManager.struct │ │ │ │ │ ├── attestationverification │ │ │ │ │ │ ├── AttestationProfile.struct │ │ │ │ │ │ ├── IAttestationVerificationManagerService.struct │ │ │ │ │ │ ├── IAttestationVerificationService.struct │ │ │ │ │ │ ├── IVerificationResult.struct │ │ │ │ │ │ └── VerificationToken.struct │ │ │ │ │ ├── authorization │ │ │ │ │ │ ├── AuthorizationTokens.struct │ │ │ │ │ │ └── IKeystoreAuthorization.struct │ │ │ │ │ ├── compat │ │ │ │ │ │ └── IKeystoreCompatService.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── BitmapWrapper.struct │ │ │ │ │ │ ├── CVE_2021_0327 │ │ │ │ │ │ │ └── IBadProvider.struct │ │ │ │ │ │ ├── IBinderExchange.struct │ │ │ │ │ │ ├── IBitmapService.struct │ │ │ │ │ │ ├── IIsolatedService.struct │ │ │ │ │ │ └── activity │ │ │ │ │ │ │ └── ISecureRandomService.struct │ │ │ │ │ ├── dice │ │ │ │ │ │ ├── IDiceMaintenance.struct │ │ │ │ │ │ └── IDiceNode.struct │ │ │ │ │ ├── identity │ │ │ │ │ │ ├── AccessControlProfileParcel.struct │ │ │ │ │ │ ├── AuthKeyParcel.struct │ │ │ │ │ │ ├── EntryNamespaceParcel.struct │ │ │ │ │ │ ├── EntryParcel.struct │ │ │ │ │ │ ├── GetEntriesResultParcel.struct │ │ │ │ │ │ ├── ICredential.struct │ │ │ │ │ │ ├── ICredentialStore.struct │ │ │ │ │ │ ├── ICredentialStoreFactory.struct │ │ │ │ │ │ ├── ISession.struct │ │ │ │ │ │ ├── IWritableCredential.struct │ │ │ │ │ │ ├── RequestEntryParcel.struct │ │ │ │ │ │ ├── RequestNamespaceParcel.struct │ │ │ │ │ │ ├── ResultEntryParcel.struct │ │ │ │ │ │ ├── ResultNamespaceParcel.struct │ │ │ │ │ │ └── SecurityHardwareInfoParcel.struct │ │ │ │ │ ├── keymaster │ │ │ │ │ │ ├── IKeyAttestationApplicationIdProvider.struct │ │ │ │ │ │ ├── KeyAttestationApplicationId.struct │ │ │ │ │ │ └── KeyAttestationPackageInfo.struct │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── recovery │ │ │ │ │ │ │ ├── KeyChainProtectionParams.struct │ │ │ │ │ │ │ ├── KeyChainSnapshot.struct │ │ │ │ │ │ │ ├── RecoveryCertPath.struct │ │ │ │ │ │ │ └── WrappedApplicationKey.struct │ │ │ │ │ ├── legacykeystore │ │ │ │ │ │ └── ILegacyKeystore.struct │ │ │ │ │ ├── maintenance │ │ │ │ │ │ └── IKeystoreMaintenance.struct │ │ │ │ │ ├── metrics │ │ │ │ │ │ ├── CrashStats.struct │ │ │ │ │ │ ├── IKeystoreMetrics.struct │ │ │ │ │ │ ├── KeyCreationWithAuthInfo.struct │ │ │ │ │ │ ├── KeyCreationWithGeneralInfo.struct │ │ │ │ │ │ ├── KeyCreationWithPurposeAndModesInfo.struct │ │ │ │ │ │ ├── KeyOperationWithGeneralInfo.struct │ │ │ │ │ │ ├── KeyOperationWithPurposeAndModesInfo.struct │ │ │ │ │ │ ├── Keystore2AtomWithOverflow.struct │ │ │ │ │ │ ├── KeystoreAtom.struct │ │ │ │ │ │ ├── RkpErrorStats.struct │ │ │ │ │ │ ├── RkpPoolStats.struct │ │ │ │ │ │ └── StorageStats.struct │ │ │ │ │ ├── provisioner │ │ │ │ │ │ └── IProvisionerService.struct │ │ │ │ │ └── remoteprovisioning │ │ │ │ │ │ ├── AttestationPoolStatus.struct │ │ │ │ │ │ ├── IRemoteProvisioning.struct │ │ │ │ │ │ ├── IRemotelyProvisionedKeyPool.struct │ │ │ │ │ │ ├── ImplInfo.struct │ │ │ │ │ │ └── RemotelyProvisionedKey.struct │ │ │ │ ├── server │ │ │ │ │ └── wm │ │ │ │ │ │ ├── backgroundactivity │ │ │ │ │ │ └── appa │ │ │ │ │ │ │ └── IBackgroundActivityTestService.struct │ │ │ │ │ │ └── shared │ │ │ │ │ │ ├── ICrossProcessSurfaceControlViewHostTestService.struct │ │ │ │ │ │ └── IUntrustedTouchTestService.struct │ │ │ │ ├── service │ │ │ │ │ ├── ambientcontext │ │ │ │ │ │ └── IAmbientContextDetectionService.struct │ │ │ │ │ ├── appprediction │ │ │ │ │ │ └── IPredictionService.struct │ │ │ │ │ ├── attention │ │ │ │ │ │ ├── IAttentionCallback.struct │ │ │ │ │ │ ├── IAttentionService.struct │ │ │ │ │ │ └── IProximityUpdateCallback.struct │ │ │ │ │ ├── autofill │ │ │ │ │ │ ├── FillRequest.struct │ │ │ │ │ │ ├── IAutoFillService.struct │ │ │ │ │ │ ├── IAutofillFieldClassificationService.struct │ │ │ │ │ │ ├── IFillCallback.struct │ │ │ │ │ │ ├── IInlineSuggestionRenderService.struct │ │ │ │ │ │ ├── IInlineSuggestionUi.struct │ │ │ │ │ │ ├── IInlineSuggestionUiCallback.struct │ │ │ │ │ │ ├── ISaveCallback.struct │ │ │ │ │ │ ├── ISurfacePackageResultCallback.struct │ │ │ │ │ │ ├── UserData.struct │ │ │ │ │ │ └── augmented │ │ │ │ │ │ │ ├── IAugmentedAutofillService.struct │ │ │ │ │ │ │ └── IFillCallback.struct │ │ │ │ │ ├── carrier │ │ │ │ │ │ ├── CarrierIdentifier.struct │ │ │ │ │ │ ├── IApnSourceService.struct │ │ │ │ │ │ ├── ICarrierMessagingCallback.struct │ │ │ │ │ │ ├── ICarrierMessagingClientService.struct │ │ │ │ │ │ ├── ICarrierMessagingService.struct │ │ │ │ │ │ ├── ICarrierService.struct │ │ │ │ │ │ └── MessagePdu.struct │ │ │ │ │ ├── chooser │ │ │ │ │ │ ├── ChooserTarget.struct │ │ │ │ │ │ ├── IChooserTargetResult.struct │ │ │ │ │ │ └── IChooserTargetService.struct │ │ │ │ │ ├── contentcapture │ │ │ │ │ │ ├── FlushMetrics.struct │ │ │ │ │ │ ├── IContentCaptureService.struct │ │ │ │ │ │ ├── IContentCaptureServiceCallback.struct │ │ │ │ │ │ ├── IDataShareCallback.struct │ │ │ │ │ │ ├── IDataShareReadAdapter.struct │ │ │ │ │ │ └── SnapshotData.struct │ │ │ │ │ ├── contentsuggestions │ │ │ │ │ │ └── IContentSuggestionsService.struct │ │ │ │ │ ├── controls │ │ │ │ │ │ ├── Control.struct │ │ │ │ │ │ ├── IControlsActionCallback.struct │ │ │ │ │ │ ├── IControlsProvider.struct │ │ │ │ │ │ ├── IControlsSubscriber.struct │ │ │ │ │ │ └── IControlsSubscription.struct │ │ │ │ │ ├── displayhash │ │ │ │ │ │ └── IDisplayHashingService.struct │ │ │ │ │ ├── dreams │ │ │ │ │ │ ├── IDreamManager.struct │ │ │ │ │ │ ├── IDreamOverlay.struct │ │ │ │ │ │ ├── IDreamOverlayCallback.struct │ │ │ │ │ │ └── IDreamService.struct │ │ │ │ │ ├── euicc │ │ │ │ │ │ ├── DownloadSubscriptionResult.struct │ │ │ │ │ │ ├── IDeleteSubscriptionCallback.struct │ │ │ │ │ │ ├── IDownloadSubscriptionCallback.struct │ │ │ │ │ │ ├── IEraseSubscriptionsCallback.struct │ │ │ │ │ │ ├── IEuiccService.struct │ │ │ │ │ │ ├── IEuiccServiceDumpResultCallback.struct │ │ │ │ │ │ ├── IGetDefaultDownloadableSubscriptionListCallback.struct │ │ │ │ │ │ ├── IGetDownloadableSubscriptionMetadataCallback.struct │ │ │ │ │ │ ├── IGetEidCallback.struct │ │ │ │ │ │ ├── IGetEuiccInfoCallback.struct │ │ │ │ │ │ ├── IGetEuiccProfileInfoListCallback.struct │ │ │ │ │ │ ├── IGetOtaStatusCallback.struct │ │ │ │ │ │ ├── IOtaStatusChangedCallback.struct │ │ │ │ │ │ ├── IRetainSubscriptionsForFactoryResetCallback.struct │ │ │ │ │ │ ├── ISwitchToSubscriptionCallback.struct │ │ │ │ │ │ └── IUpdateSubscriptionNicknameCallback.struct │ │ │ │ │ ├── games │ │ │ │ │ │ ├── GameStartedEvent.struct │ │ │ │ │ │ ├── IGameService.struct │ │ │ │ │ │ ├── IGameServiceController.struct │ │ │ │ │ │ ├── IGameSession.struct │ │ │ │ │ │ ├── IGameSessionController.struct │ │ │ │ │ │ └── testing │ │ │ │ │ │ │ ├── GameSessionEventInfo.struct │ │ │ │ │ │ │ ├── IGameServiceTestService.struct │ │ │ │ │ │ │ └── OnSystemBarVisibilityChangedInfo.struct │ │ │ │ │ ├── gatekeeper │ │ │ │ │ │ └── IGateKeeperService.struct │ │ │ │ │ ├── media │ │ │ │ │ │ ├── IMediaBrowserService.struct │ │ │ │ │ │ └── IMediaBrowserServiceCallbacks.struct │ │ │ │ │ ├── notification │ │ │ │ │ │ ├── Adjustment.struct │ │ │ │ │ │ ├── Condition.struct │ │ │ │ │ │ ├── IConditionListener.struct │ │ │ │ │ │ ├── IConditionProvider.struct │ │ │ │ │ │ ├── INotificationListener.struct │ │ │ │ │ │ ├── IStatusBarNotificationHolder.struct │ │ │ │ │ │ ├── NotificationListenerFilter.struct │ │ │ │ │ │ ├── NotificationRankingUpdate.struct │ │ │ │ │ │ ├── NotificationStats.struct │ │ │ │ │ │ ├── StatusBarNotification.struct │ │ │ │ │ │ ├── ZenModeConfig$ZenRule.struct │ │ │ │ │ │ └── ZenModeConfig.struct │ │ │ │ │ ├── oemlock │ │ │ │ │ │ └── IOemLockService.struct │ │ │ │ │ ├── persistentdata │ │ │ │ │ │ └── IPersistentDataBlockService.struct │ │ │ │ │ ├── quickaccesswallet │ │ │ │ │ │ ├── GetWalletCardsRequest.struct │ │ │ │ │ │ ├── IQuickAccessWalletService.struct │ │ │ │ │ │ ├── IQuickAccessWalletServiceCallbacks.struct │ │ │ │ │ │ ├── SelectWalletCardRequest.struct │ │ │ │ │ │ └── WalletServiceEvent.struct │ │ │ │ │ ├── quicksettings │ │ │ │ │ │ ├── IQSService.struct │ │ │ │ │ │ ├── IQSTileService.struct │ │ │ │ │ │ └── Tile.struct │ │ │ │ │ ├── resolver │ │ │ │ │ │ ├── IResolverRankerResult.struct │ │ │ │ │ │ ├── IResolverRankerService.struct │ │ │ │ │ │ └── ResolverTarget.struct │ │ │ │ │ ├── resumeonreboot │ │ │ │ │ │ └── IResumeOnRebootService.struct │ │ │ │ │ ├── rotationresolver │ │ │ │ │ │ ├── IRotationResolverCallback.struct │ │ │ │ │ │ ├── IRotationResolverService.struct │ │ │ │ │ │ └── RotationResolutionRequest.struct │ │ │ │ │ ├── search │ │ │ │ │ │ └── ISearchUiService.struct │ │ │ │ │ ├── selectiontoolbar │ │ │ │ │ │ ├── ISelectionToolbarRenderService.struct │ │ │ │ │ │ └── ISelectionToolbarRenderServiceCallback.struct │ │ │ │ │ ├── settings │ │ │ │ │ │ └── suggestions │ │ │ │ │ │ │ ├── ISuggestionService.struct │ │ │ │ │ │ │ └── Suggestion.struct │ │ │ │ │ ├── smartspace │ │ │ │ │ │ └── ISmartspaceService.struct │ │ │ │ │ ├── storage │ │ │ │ │ │ └── IExternalStorageService.struct │ │ │ │ │ ├── textclassifier │ │ │ │ │ │ ├── ITextClassifierCallback.struct │ │ │ │ │ │ └── ITextClassifierService.struct │ │ │ │ │ ├── timezone │ │ │ │ │ │ ├── ITimeZoneProvider.struct │ │ │ │ │ │ └── ITimeZoneProviderManager.struct │ │ │ │ │ ├── translation │ │ │ │ │ │ ├── ITranslationCallback.struct │ │ │ │ │ │ └── ITranslationService.struct │ │ │ │ │ ├── trust │ │ │ │ │ │ ├── ITrustAgentService.struct │ │ │ │ │ │ └── ITrustAgentServiceCallback.struct │ │ │ │ │ ├── voice │ │ │ │ │ │ ├── HotwordDetectedResult.struct │ │ │ │ │ │ ├── HotwordRejectedResult.struct │ │ │ │ │ │ ├── IDspHotwordDetectionCallback.struct │ │ │ │ │ │ ├── IHotwordDetectionService.struct │ │ │ │ │ │ ├── IMicrophoneHotwordDetectionVoiceInteractionCallback.struct │ │ │ │ │ │ ├── IVoiceInteractionService.struct │ │ │ │ │ │ ├── IVoiceInteractionSession.struct │ │ │ │ │ │ ├── IVoiceInteractionSessionService.struct │ │ │ │ │ │ └── VisibleActivityInfo.struct │ │ │ │ │ ├── vr │ │ │ │ │ │ ├── IPersistentVrStateCallbacks.struct │ │ │ │ │ │ ├── IVrListener.struct │ │ │ │ │ │ ├── IVrManager.struct │ │ │ │ │ │ └── IVrStateCallbacks.struct │ │ │ │ │ ├── wallpaper │ │ │ │ │ │ ├── IWallpaperConnection.struct │ │ │ │ │ │ ├── IWallpaperEngine.struct │ │ │ │ │ │ └── IWallpaperService.struct │ │ │ │ │ ├── wallpapereffectsgeneration │ │ │ │ │ │ └── IWallpaperEffectsGenerationService.struct │ │ │ │ │ └── watchdog │ │ │ │ │ │ └── IExplicitHealthCheckService.struct │ │ │ │ ├── speech │ │ │ │ │ ├── IRecognitionListener.struct │ │ │ │ │ ├── IRecognitionService.struct │ │ │ │ │ ├── IRecognitionServiceManager.struct │ │ │ │ │ ├── IRecognitionServiceManagerCallback.struct │ │ │ │ │ ├── IRecognitionSupportCallback.struct │ │ │ │ │ ├── RecognitionSupport.struct │ │ │ │ │ └── tts │ │ │ │ │ │ ├── ITextToSpeechCallback.struct │ │ │ │ │ │ ├── ITextToSpeechManager.struct │ │ │ │ │ │ ├── ITextToSpeechService.struct │ │ │ │ │ │ ├── ITextToSpeechSession.struct │ │ │ │ │ │ └── ITextToSpeechSessionCallback.struct │ │ │ │ ├── system │ │ │ │ │ ├── composd │ │ │ │ │ │ ├── ICompilationTask.struct │ │ │ │ │ │ ├── ICompilationTaskCallback.struct │ │ │ │ │ │ └── IIsolatedCompilationService.struct │ │ │ │ │ ├── keystore2 │ │ │ │ │ │ ├── AuthenticatorSpec.struct │ │ │ │ │ │ ├── Authorization.struct │ │ │ │ │ │ ├── CreateOperationResponse.struct │ │ │ │ │ │ ├── EphemeralStorageKeyResponse.struct │ │ │ │ │ │ ├── IKeystoreOperation.struct │ │ │ │ │ │ ├── IKeystoreSecurityLevel.struct │ │ │ │ │ │ ├── IKeystoreService.struct │ │ │ │ │ │ ├── KeyDescriptor.struct │ │ │ │ │ │ ├── KeyEntryResponse.struct │ │ │ │ │ │ ├── KeyMetadata.struct │ │ │ │ │ │ ├── KeyParameters.struct │ │ │ │ │ │ └── OperationChallenge.struct │ │ │ │ │ ├── suspend │ │ │ │ │ │ ├── ISuspendCallback.struct │ │ │ │ │ │ ├── ISuspendControlService.struct │ │ │ │ │ │ ├── ISystemSuspend.struct │ │ │ │ │ │ ├── IWakeLock.struct │ │ │ │ │ │ ├── IWakelockCallback.struct │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── ISuspendControlServiceInternal.struct │ │ │ │ │ │ │ ├── SuspendInfo.struct │ │ │ │ │ │ │ ├── WakeLockInfo.struct │ │ │ │ │ │ │ └── WakeupInfo.struct │ │ │ │ │ ├── virtualizationservice │ │ │ │ │ │ ├── DiskImage.struct │ │ │ │ │ │ ├── IVirtualMachine.struct │ │ │ │ │ │ ├── IVirtualMachineCallback.struct │ │ │ │ │ │ ├── IVirtualizationService.struct │ │ │ │ │ │ ├── Partition.struct │ │ │ │ │ │ ├── VirtualMachineDebugInfo.struct │ │ │ │ │ │ └── VirtualMachineRawConfig.struct │ │ │ │ │ └── virtualmachineservice │ │ │ │ │ │ └── IVirtualMachineService.struct │ │ │ │ ├── telecom │ │ │ │ │ ├── BluetoothCallQualityReport.struct │ │ │ │ │ ├── CallAudioState.struct │ │ │ │ │ ├── ConnectionRequest.struct │ │ │ │ │ ├── PhoneAccountSuggestion.struct │ │ │ │ │ ├── StatusHints.struct │ │ │ │ │ ├── TelecomAnalytics$SessionTiming.struct │ │ │ │ │ ├── TelecomAnalytics.struct │ │ │ │ │ ├── VideoProfile$CameraCapabilities.struct │ │ │ │ │ ├── VideoProfile.struct │ │ │ │ │ └── cts │ │ │ │ │ │ ├── api29incallservice │ │ │ │ │ │ └── ICtsApi29InCallServiceControl.struct │ │ │ │ │ │ ├── carmodetestapp │ │ │ │ │ │ └── ICtsCarModeInCallServiceControl.struct │ │ │ │ │ │ ├── redirectiontestapp │ │ │ │ │ │ └── ICtsCallRedirectionServiceController.struct │ │ │ │ │ │ ├── screeningtestapp │ │ │ │ │ │ └── ICallScreeningControl.struct │ │ │ │ │ │ └── thirdptyincallservice │ │ │ │ │ │ └── ICtsThirdPartyInCallServiceControl.struct │ │ │ │ ├── telephony │ │ │ │ │ ├── ActivityStatsTechSpecificInfo.struct │ │ │ │ │ ├── AvailableNetworkInfo.struct │ │ │ │ │ ├── BarringInfo$BarringServiceInfo.struct │ │ │ │ │ ├── BarringInfo.struct │ │ │ │ │ ├── CallAttributes.struct │ │ │ │ │ ├── CallForwardingInfo.struct │ │ │ │ │ ├── CallQuality.struct │ │ │ │ │ ├── CellIdentity.struct │ │ │ │ │ ├── CellInfo.struct │ │ │ │ │ ├── ClientRequestStats.struct │ │ │ │ │ ├── DataConnectionRealTimeInfo.struct │ │ │ │ │ ├── IBootstrapAuthenticationCallback.struct │ │ │ │ │ ├── ICellBroadcastService.struct │ │ │ │ │ ├── ICellInfoCallback.struct │ │ │ │ │ ├── INetworkService.struct │ │ │ │ │ ├── INetworkServiceCallback.struct │ │ │ │ │ ├── IccOpenLogicalChannelResponse.struct │ │ │ │ │ ├── LinkCapacityEstimate.struct │ │ │ │ │ ├── ModemActivityInfo.struct │ │ │ │ │ ├── ModemInfo.struct │ │ │ │ │ ├── NeighboringCellInfo.struct │ │ │ │ │ ├── NetworkRegistrationInfo.struct │ │ │ │ │ ├── NetworkScanRequest.struct │ │ │ │ │ ├── PhoneCapability.struct │ │ │ │ │ ├── PhoneNumberRange.struct │ │ │ │ │ ├── PhysicalChannelConfig.struct │ │ │ │ │ ├── PreciseCallState.struct │ │ │ │ │ ├── PreciseDataConnectionState.struct │ │ │ │ │ ├── RadioAccessSpecifier.struct │ │ │ │ │ ├── ServiceState.struct │ │ │ │ │ ├── SignalStrengthUpdateRequest.struct │ │ │ │ │ ├── SignalThresholdInfo.struct │ │ │ │ │ ├── SubscriptionPlan.struct │ │ │ │ │ ├── TelephonyDisplayInfo.struct │ │ │ │ │ ├── TelephonyHistogram.struct │ │ │ │ │ ├── ThermalMitigationRequest.struct │ │ │ │ │ ├── UiccSlotMapping.struct │ │ │ │ │ ├── cdma │ │ │ │ │ │ └── CdmaSmsCbProgramData.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── embmstestapp │ │ │ │ │ │ │ ├── ICtsDownloadMiddlewareControl.struct │ │ │ │ │ │ │ ├── ICtsGroupCallMiddlewareControl.struct │ │ │ │ │ │ │ └── ICtsStreamingMiddlewareControl.struct │ │ │ │ │ │ ├── externalimsservice │ │ │ │ │ │ │ └── ITestExternalImsService.struct │ │ │ │ │ │ └── locationaccessingapp │ │ │ │ │ │ │ └── ICtsLocationAccessControl.struct │ │ │ │ │ ├── data │ │ │ │ │ │ ├── DataCallResponse.struct │ │ │ │ │ │ ├── DataProfile.struct │ │ │ │ │ │ ├── EpsBearerQosSessionAttributes.struct │ │ │ │ │ │ ├── IDataService.struct │ │ │ │ │ │ ├── IDataServiceCallback.struct │ │ │ │ │ │ ├── IQualifiedNetworksService.struct │ │ │ │ │ │ ├── IQualifiedNetworksServiceCallback.struct │ │ │ │ │ │ ├── NetworkSliceInfo.struct │ │ │ │ │ │ ├── NrQosSessionAttributes.struct │ │ │ │ │ │ ├── QosBearerFilter$PortRange.struct │ │ │ │ │ │ ├── QosBearerFilter.struct │ │ │ │ │ │ ├── QosBearerSession.struct │ │ │ │ │ │ ├── ThrottleStatus.struct │ │ │ │ │ │ └── TrafficDescriptor.struct │ │ │ │ │ ├── emergency │ │ │ │ │ │ └── EmergencyNumber.struct │ │ │ │ │ ├── euicc │ │ │ │ │ │ ├── EuiccInfo.struct │ │ │ │ │ │ └── EuiccNotification.struct │ │ │ │ │ ├── gba │ │ │ │ │ │ ├── IGbaService.struct │ │ │ │ │ │ └── UaSecurityProtocolIdentifier.struct │ │ │ │ │ ├── ims │ │ │ │ │ │ ├── DelegateRegistrationState.struct │ │ │ │ │ │ ├── DelegateRequest.struct │ │ │ │ │ │ ├── FeatureTagState.struct │ │ │ │ │ │ ├── ImsCallForwardInfo.struct │ │ │ │ │ │ ├── ImsCallProfile.struct │ │ │ │ │ │ ├── ImsConferenceState.struct │ │ │ │ │ │ ├── ImsExternalCallState.struct │ │ │ │ │ │ ├── ImsReasonInfo.struct │ │ │ │ │ │ ├── ImsRegistrationAttributes.struct │ │ │ │ │ │ ├── ImsSsData.struct │ │ │ │ │ │ ├── ImsSsInfo.struct │ │ │ │ │ │ ├── ImsSuppServiceNotification.struct │ │ │ │ │ │ ├── RcsClientConfiguration.struct │ │ │ │ │ │ ├── RcsContactTerminatedReason.struct │ │ │ │ │ │ ├── RcsContactUceCapability.struct │ │ │ │ │ │ ├── RtpHeaderExtension.struct │ │ │ │ │ │ ├── RtpHeaderExtensionType.struct │ │ │ │ │ │ ├── SipDelegateConfiguration.struct │ │ │ │ │ │ ├── SipDelegateImsConfiguration.struct │ │ │ │ │ │ ├── SipMessage.struct │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ ├── ICapabilityExchangeEventListener.struct │ │ │ │ │ │ │ ├── IFeatureProvisioningCallback.struct │ │ │ │ │ │ │ ├── IImsCallSessionListener.struct │ │ │ │ │ │ │ ├── IImsCapabilityCallback.struct │ │ │ │ │ │ │ ├── IImsConfig.struct │ │ │ │ │ │ │ ├── IImsConfigCallback.struct │ │ │ │ │ │ │ ├── IImsMmTelFeature.struct │ │ │ │ │ │ │ ├── IImsMmTelListener.struct │ │ │ │ │ │ │ ├── IImsRcsController.struct │ │ │ │ │ │ │ ├── IImsRcsFeature.struct │ │ │ │ │ │ │ ├── IImsRegistration.struct │ │ │ │ │ │ │ ├── IImsRegistrationCallback.struct │ │ │ │ │ │ │ ├── IImsServiceController.struct │ │ │ │ │ │ │ ├── IImsServiceControllerListener.struct │ │ │ │ │ │ │ ├── IImsSmsListener.struct │ │ │ │ │ │ │ ├── IOptionsRequestCallback.struct │ │ │ │ │ │ │ ├── IOptionsResponseCallback.struct │ │ │ │ │ │ │ ├── IPublishResponseCallback.struct │ │ │ │ │ │ │ ├── IRcsConfigCallback.struct │ │ │ │ │ │ │ ├── IRcsUceControllerCallback.struct │ │ │ │ │ │ │ ├── IRcsUcePublishStateCallback.struct │ │ │ │ │ │ │ ├── ISipDelegate.struct │ │ │ │ │ │ │ ├── ISipDelegateConnectionStateCallback.struct │ │ │ │ │ │ │ ├── ISipDelegateMessageCallback.struct │ │ │ │ │ │ │ ├── ISipDelegateStateCallback.struct │ │ │ │ │ │ │ ├── ISipTransport.struct │ │ │ │ │ │ │ └── ISubscribeResponseCallback.struct │ │ │ │ │ │ ├── feature │ │ │ │ │ │ │ └── CapabilityChangeRequest.struct │ │ │ │ │ │ └── stub │ │ │ │ │ │ │ └── ImsFeatureConfiguration.struct │ │ │ │ │ └── mbms │ │ │ │ │ │ ├── DownloadRequest.struct │ │ │ │ │ │ ├── FileInfo.struct │ │ │ │ │ │ ├── FileServiceInfo.struct │ │ │ │ │ │ ├── IDownloadProgressListener.struct │ │ │ │ │ │ ├── IDownloadStatusListener.struct │ │ │ │ │ │ ├── IGroupCallCallback.struct │ │ │ │ │ │ ├── IMbmsDownloadSessionCallback.struct │ │ │ │ │ │ ├── IMbmsGroupCallSessionCallback.struct │ │ │ │ │ │ ├── IMbmsStreamingSessionCallback.struct │ │ │ │ │ │ ├── IStreamingServiceCallback.struct │ │ │ │ │ │ ├── StreamingServiceInfo.struct │ │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── IMbmsDownloadService.struct │ │ │ │ │ │ ├── IMbmsGroupCallService.struct │ │ │ │ │ │ └── IMbmsStreamingService.struct │ │ │ │ ├── tests │ │ │ │ │ └── binder │ │ │ │ │ │ └── IBenchmark.struct │ │ │ │ ├── tracing │ │ │ │ │ ├── ITracingServiceProxy.struct │ │ │ │ │ └── TraceReportParams.struct │ │ │ │ ├── util │ │ │ │ │ ├── IRemoteMemoryIntArray.struct │ │ │ │ │ ├── MemoryIntArray.struct │ │ │ │ │ ├── MergedConfiguration.struct │ │ │ │ │ ├── PropertyParcel.struct │ │ │ │ │ └── StatsEventParcel.struct │ │ │ │ ├── uwb │ │ │ │ │ ├── IUwbAdapter.struct │ │ │ │ │ ├── IUwbAdapterStateCallbacks.struct │ │ │ │ │ ├── IUwbAdfProvisionStateCallbacks.struct │ │ │ │ │ ├── IUwbRangingCallbacks.struct │ │ │ │ │ ├── IUwbVendorUciCallback.struct │ │ │ │ │ ├── SessionHandle.struct │ │ │ │ │ └── UwbAddress.struct │ │ │ │ ├── vendor │ │ │ │ │ └── powerstats │ │ │ │ │ │ ├── IPixelPowerStatsCallback.struct │ │ │ │ │ │ ├── IPixelPowerStatsProvider.struct │ │ │ │ │ │ ├── IPixelStateResidencyCallback.struct │ │ │ │ │ │ ├── IPixelStateResidencyProvider.struct │ │ │ │ │ │ └── StateResidencyData.struct │ │ │ │ ├── view │ │ │ │ │ ├── AppTransitionAnimationSpec.struct │ │ │ │ │ ├── ContentRecordingSession.struct │ │ │ │ │ ├── IAppTransitionAnimationSpecsFuture.struct │ │ │ │ │ ├── ICrossWindowBlurEnabledListener.struct │ │ │ │ │ ├── IDisplayChangeWindowCallback.struct │ │ │ │ │ ├── IDisplayChangeWindowController.struct │ │ │ │ │ ├── IDisplayFoldListener.struct │ │ │ │ │ ├── IDisplayWindowInsetsController.struct │ │ │ │ │ ├── IDisplayWindowListener.struct │ │ │ │ │ ├── IDockedStackListener.struct │ │ │ │ │ ├── IGraphicsStats.struct │ │ │ │ │ ├── IGraphicsStatsCallback.struct │ │ │ │ │ ├── IInputFilter.struct │ │ │ │ │ ├── IInputFilterHost.struct │ │ │ │ │ ├── IInputMonitorHost.struct │ │ │ │ │ ├── IOnKeyguardExitResult.struct │ │ │ │ │ ├── IPinnedTaskListener.struct │ │ │ │ │ ├── IRecentsAnimationController.struct │ │ │ │ │ ├── IRecentsAnimationRunner.struct │ │ │ │ │ ├── IRemoteAnimationFinishedCallback.struct │ │ │ │ │ ├── IRemoteAnimationRunner.struct │ │ │ │ │ ├── IRotationWatcher.struct │ │ │ │ │ ├── IScrollCaptureCallbacks.struct │ │ │ │ │ ├── IScrollCaptureConnection.struct │ │ │ │ │ ├── IScrollCaptureResponseListener.struct │ │ │ │ │ ├── ISurfaceControlViewHost.struct │ │ │ │ │ ├── ISystemGestureExclusionListener.struct │ │ │ │ │ ├── IWallpaperVisibilityListener.struct │ │ │ │ │ ├── IWindow.struct │ │ │ │ │ ├── IWindowFocusObserver.struct │ │ │ │ │ ├── IWindowId.struct │ │ │ │ │ ├── IWindowManager.struct │ │ │ │ │ ├── IWindowSession.struct │ │ │ │ │ ├── IWindowSessionCallback.struct │ │ │ │ │ ├── InputChannel.struct │ │ │ │ │ ├── InputEvent.struct │ │ │ │ │ ├── InsetsVisibilities.struct │ │ │ │ │ ├── KeyEvent.struct │ │ │ │ │ ├── MotionEvent.struct │ │ │ │ │ ├── PointerIcon.struct │ │ │ │ │ ├── Surface.struct │ │ │ │ │ ├── SurfaceControl$Transaction.struct │ │ │ │ │ ├── SurfaceControl.struct │ │ │ │ │ ├── VerifiedInputEvent.struct │ │ │ │ │ ├── WindowAnimationFrameStats.struct │ │ │ │ │ ├── WindowContentFrameStats.struct │ │ │ │ │ ├── accessibility │ │ │ │ │ │ ├── AccessibilityEvent.struct │ │ │ │ │ │ ├── AccessibilityNodeInfo$AccessibilityAction.struct │ │ │ │ │ │ ├── AccessibilityNodeInfo$TouchDelegateInfo.struct │ │ │ │ │ │ ├── AccessibilityNodeInfo.struct │ │ │ │ │ │ ├── IAccessibilityEmbeddedConnection.struct │ │ │ │ │ │ ├── IAccessibilityInteractionConnection.struct │ │ │ │ │ │ ├── IAccessibilityInteractionConnectionCallback.struct │ │ │ │ │ │ ├── IAccessibilityManager.struct │ │ │ │ │ │ ├── IAccessibilityManagerClient.struct │ │ │ │ │ │ ├── IRemoteMagnificationAnimationCallback.struct │ │ │ │ │ │ ├── IWindowMagnificationConnection.struct │ │ │ │ │ │ └── IWindowMagnificationConnectionCallback.struct │ │ │ │ │ ├── autofill │ │ │ │ │ │ ├── AutofillId.struct │ │ │ │ │ │ ├── AutofillValue.struct │ │ │ │ │ │ ├── IAugmentedAutofillManagerClient.struct │ │ │ │ │ │ ├── IAutoFillManager.struct │ │ │ │ │ │ ├── IAutoFillManagerClient.struct │ │ │ │ │ │ └── IAutofillWindowPresenter.struct │ │ │ │ │ ├── contentcapture │ │ │ │ │ │ ├── ContentCaptureCondition.struct │ │ │ │ │ │ ├── ContentCaptureContext.struct │ │ │ │ │ │ ├── DataRemovalRequest.struct │ │ │ │ │ │ ├── DataShareRequest.struct │ │ │ │ │ │ ├── IContentCaptureDirectManager.struct │ │ │ │ │ │ ├── IContentCaptureManager.struct │ │ │ │ │ │ ├── IContentCaptureOptionsCallback.struct │ │ │ │ │ │ └── IDataShareWriteAdapter.struct │ │ │ │ │ ├── displayhash │ │ │ │ │ │ ├── DisplayHash.struct │ │ │ │ │ │ └── VerifiedDisplayHash.struct │ │ │ │ │ ├── inputmethod │ │ │ │ │ │ ├── CompletionInfo.struct │ │ │ │ │ │ ├── CorrectionInfo.struct │ │ │ │ │ │ ├── CursorAnchorInfo.struct │ │ │ │ │ │ ├── EditorInfo.struct │ │ │ │ │ │ ├── ExtractedText.struct │ │ │ │ │ │ ├── ExtractedTextRequest.struct │ │ │ │ │ │ ├── InlineSuggestionsRequest.struct │ │ │ │ │ │ ├── InlineSuggestionsResponse.struct │ │ │ │ │ │ ├── InputBinding.struct │ │ │ │ │ │ ├── InputMethodInfo.struct │ │ │ │ │ │ ├── InputMethodSubtype.struct │ │ │ │ │ │ ├── SurroundingText.struct │ │ │ │ │ │ ├── TextAttribute.struct │ │ │ │ │ │ └── cts │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── IWindowFocusStealer.struct │ │ │ │ │ ├── selectiontoolbar │ │ │ │ │ │ ├── ISelectionToolbarCallback.struct │ │ │ │ │ │ ├── ISelectionToolbarManager.struct │ │ │ │ │ │ ├── ShowInfo.struct │ │ │ │ │ │ └── ToolbarMenuItem.struct │ │ │ │ │ ├── textclassifier │ │ │ │ │ │ ├── SelectionEvent.struct │ │ │ │ │ │ ├── TextClassificationContext.struct │ │ │ │ │ │ ├── TextClassificationSessionId.struct │ │ │ │ │ │ ├── TextClassifierEvent$ConversationActionsEvent.struct │ │ │ │ │ │ ├── TextClassifierEvent$LanguageDetectionEvent.struct │ │ │ │ │ │ ├── TextClassifierEvent$TextLinkifyEvent.struct │ │ │ │ │ │ ├── TextClassifierEvent$TextSelectionEvent.struct │ │ │ │ │ │ └── TextClassifierEvent.struct │ │ │ │ │ ├── textservice │ │ │ │ │ │ ├── SentenceSuggestionsInfo.struct │ │ │ │ │ │ ├── SpellCheckerInfo.struct │ │ │ │ │ │ ├── SpellCheckerSubtype.struct │ │ │ │ │ │ ├── SuggestionsInfo.struct │ │ │ │ │ │ └── TextInfo.struct │ │ │ │ │ └── translation │ │ │ │ │ │ ├── ITranslationDirectManager.struct │ │ │ │ │ │ ├── ITranslationManager.struct │ │ │ │ │ │ ├── ITranslationServiceCallback.struct │ │ │ │ │ │ ├── TranslationCapability.struct │ │ │ │ │ │ ├── TranslationContext.struct │ │ │ │ │ │ ├── TranslationRequest.struct │ │ │ │ │ │ ├── TranslationResponse.struct │ │ │ │ │ │ └── UiTranslationSpec.struct │ │ │ │ ├── virtualdevice │ │ │ │ │ └── cts │ │ │ │ │ │ └── IStreamedTestApp.struct │ │ │ │ ├── webkit │ │ │ │ │ ├── IWebViewUpdateService.struct │ │ │ │ │ ├── WebViewProviderInfo.struct │ │ │ │ │ ├── WebViewProviderResponse.struct │ │ │ │ │ └── cts │ │ │ │ │ │ └── ITestProcessService.struct │ │ │ │ └── window │ │ │ │ │ ├── ClientWindowFrames.struct │ │ │ │ │ ├── DisplayAreaInfo.struct │ │ │ │ │ ├── IBackAnimationRunner.struct │ │ │ │ │ ├── IBackNaviAnimationController.struct │ │ │ │ │ ├── IDisplayAreaOrganizer.struct │ │ │ │ │ ├── IDisplayAreaOrganizerController.struct │ │ │ │ │ ├── IOnBackInvokedCallback.struct │ │ │ │ │ ├── IRemoteTransition.struct │ │ │ │ │ ├── IRemoteTransitionFinishedCallback.struct │ │ │ │ │ ├── ITaskFpsCallback.struct │ │ │ │ │ ├── ITaskFragmentOrganizer.struct │ │ │ │ │ ├── ITaskFragmentOrganizerController.struct │ │ │ │ │ ├── ITaskOrganizer.struct │ │ │ │ │ ├── ITaskOrganizerController.struct │ │ │ │ │ ├── ITransitionMetricsReporter.struct │ │ │ │ │ ├── ITransitionPlayer.struct │ │ │ │ │ ├── IWindowContainerToken.struct │ │ │ │ │ ├── IWindowContainerTransactionCallback.struct │ │ │ │ │ ├── IWindowOrganizerController.struct │ │ │ │ │ ├── ImeOnBackInvokedDispatcher.struct │ │ │ │ │ ├── PictureInPictureSurfaceTransaction.struct │ │ │ │ │ └── SizeConfigurationBuckets.struct │ │ │ ├── another_package │ │ │ │ └── IFaz.struct │ │ │ ├── classPaths.txt │ │ │ ├── com │ │ │ │ ├── android │ │ │ │ │ ├── bips │ │ │ │ │ │ ├── jni │ │ │ │ │ │ │ └── SizeD.struct │ │ │ │ │ │ └── render │ │ │ │ │ │ │ └── IPdfRender.struct │ │ │ │ │ ├── car │ │ │ │ │ │ ├── cartelemetryapp │ │ │ │ │ │ │ ├── ICarMetricsCollectorService.struct │ │ │ │ │ │ │ ├── IConfigData.struct │ │ │ │ │ │ │ ├── IConfigStateListener.struct │ │ │ │ │ │ │ └── IResultListener.struct │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── ICarServiceHelper.struct │ │ │ │ │ │ │ ├── ICarSystemServerClient.struct │ │ │ │ │ │ │ ├── LargeParcelable.struct │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── IJavaTestBinder.struct │ │ │ │ │ │ │ │ └── TestLargeParcelable.struct │ │ │ │ │ │ ├── keventreader │ │ │ │ │ │ │ ├── IEventCallback.struct │ │ │ │ │ │ │ ├── IEventProvider.struct │ │ │ │ │ │ │ └── KeypressEvent.struct │ │ │ │ │ │ ├── procfsinspector │ │ │ │ │ │ │ ├── IProcfsInspector.struct │ │ │ │ │ │ │ └── ProcessInfo.struct │ │ │ │ │ │ ├── radio │ │ │ │ │ │ │ ├── bands │ │ │ │ │ │ │ │ ├── ProgramType.struct │ │ │ │ │ │ │ │ └── RegionConfig.struct │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ ├── IRadioAppCallback.struct │ │ │ │ │ │ │ │ ├── IRadioAppService.struct │ │ │ │ │ │ │ │ └── ITuneCallback.struct │ │ │ │ │ │ ├── setupwizardlib │ │ │ │ │ │ │ ├── IInitialLockSetupService.struct │ │ │ │ │ │ │ └── LockConfig.struct │ │ │ │ │ │ └── telemetry │ │ │ │ │ │ │ └── scriptexecutorinterface │ │ │ │ │ │ │ ├── BundleList.struct │ │ │ │ │ │ │ ├── IScriptExecutor.struct │ │ │ │ │ │ │ └── IScriptExecutorListener.struct │ │ │ │ │ ├── compatibility │ │ │ │ │ │ └── common │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── devicepolicy │ │ │ │ │ │ │ └── provisioning │ │ │ │ │ │ │ └── IBooleanCallback.struct │ │ │ │ │ ├── compos │ │ │ │ │ │ └── ICompOsService.struct │ │ │ │ │ ├── cts │ │ │ │ │ │ ├── IBinderPermissionTestService.struct │ │ │ │ │ │ ├── appdataisolation │ │ │ │ │ │ │ └── appa │ │ │ │ │ │ │ │ └── IIsolatedService.struct │ │ │ │ │ │ ├── appsearch │ │ │ │ │ │ │ └── ICommandReceiver.struct │ │ │ │ │ │ ├── blob │ │ │ │ │ │ │ └── ICommandReceiver.struct │ │ │ │ │ │ ├── comp │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ ├── deviceowner │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ └── hostside │ │ │ │ │ │ │ │ ├── IMyService.struct │ │ │ │ │ │ │ │ ├── INetworkCallback.struct │ │ │ │ │ │ │ │ ├── INetworkStateObserver.struct │ │ │ │ │ │ │ │ └── IRemoteSocketFactory.struct │ │ │ │ │ │ └── verifier │ │ │ │ │ │ │ ├── managedprovisioning │ │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ │ └── projection │ │ │ │ │ │ │ └── IProjectionService.struct │ │ │ │ │ ├── development │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ ├── dialer │ │ │ │ │ │ └── simulator │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── ISimulatorService.struct │ │ │ │ │ ├── eventlib │ │ │ │ │ │ └── IQueryService.struct │ │ │ │ │ ├── frameworks │ │ │ │ │ │ ├── coretests │ │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ │ ├── IBinderProxyCountingService.struct │ │ │ │ │ │ │ │ ├── IBpcCallbackObserver.struct │ │ │ │ │ │ │ │ ├── IBpcTestAppCmdService.struct │ │ │ │ │ │ │ │ ├── IBpcTestServiceCmdService.struct │ │ │ │ │ │ │ │ ├── ICmdCallback.struct │ │ │ │ │ │ │ │ ├── ICmdReceiver.struct │ │ │ │ │ │ │ │ ├── ITestRemoteCallback.struct │ │ │ │ │ │ │ │ └── ITestServiceConnectorService.struct │ │ │ │ │ │ └── perftests │ │ │ │ │ │ │ └── am │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── ICommandReceiver.struct │ │ │ │ │ │ │ └── ITimeReceiverCallback.struct │ │ │ │ │ ├── ims │ │ │ │ │ │ ├── IRcsPresenceListener.struct │ │ │ │ │ │ ├── ImsConfigListener.struct │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── IImsCallSession.struct │ │ │ │ │ │ │ ├── IImsCallSessionListener.struct │ │ │ │ │ │ │ ├── IImsConfig.struct │ │ │ │ │ │ │ ├── IImsEcbm.struct │ │ │ │ │ │ │ ├── IImsEcbmListener.struct │ │ │ │ │ │ │ ├── IImsExternalCallStateListener.struct │ │ │ │ │ │ │ ├── IImsFeatureStatusCallback.struct │ │ │ │ │ │ │ ├── IImsMMTelFeature.struct │ │ │ │ │ │ │ ├── IImsMultiEndpoint.struct │ │ │ │ │ │ │ ├── IImsRcsFeature.struct │ │ │ │ │ │ │ ├── IImsRegistrationListener.struct │ │ │ │ │ │ │ ├── IImsService.struct │ │ │ │ │ │ │ ├── IImsServiceController.struct │ │ │ │ │ │ │ ├── IImsServiceFeatureCallback.struct │ │ │ │ │ │ │ ├── IImsStreamMediaSession.struct │ │ │ │ │ │ │ ├── IImsUt.struct │ │ │ │ │ │ │ ├── IImsUtListener.struct │ │ │ │ │ │ │ ├── IImsVideoCallCallback.struct │ │ │ │ │ │ │ ├── IImsVideoCallProvider.struct │ │ │ │ │ │ │ ├── IRcsPresence.struct │ │ │ │ │ │ │ ├── IRcsService.struct │ │ │ │ │ │ │ └── uce │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── CapInfo.struct │ │ │ │ │ │ │ ├── StatusCode.struct │ │ │ │ │ │ │ └── UceLong.struct │ │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ ├── IOptionsListener.struct │ │ │ │ │ │ │ ├── IOptionsService.struct │ │ │ │ │ │ │ ├── OptionsCapInfo.struct │ │ │ │ │ │ │ ├── OptionsCmdStatus.struct │ │ │ │ │ │ │ └── OptionsSipResponse.struct │ │ │ │ │ │ │ ├── presence │ │ │ │ │ │ │ ├── IPresenceListener.struct │ │ │ │ │ │ │ ├── IPresenceService.struct │ │ │ │ │ │ │ ├── PresCapInfo.struct │ │ │ │ │ │ │ ├── PresCmdStatus.struct │ │ │ │ │ │ │ ├── PresPublishTriggerType.struct │ │ │ │ │ │ │ ├── PresResInfo.struct │ │ │ │ │ │ │ ├── PresRlmiInfo.struct │ │ │ │ │ │ │ ├── PresServiceInfo.struct │ │ │ │ │ │ │ ├── PresSipResponse.struct │ │ │ │ │ │ │ └── PresTupleInfo.struct │ │ │ │ │ │ │ └── uceservice │ │ │ │ │ │ │ ├── IUceListener.struct │ │ │ │ │ │ │ └── IUceService.struct │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── IAppOpsActiveCallback.struct │ │ │ │ │ │ │ ├── IAppOpsAsyncNotedCallback.struct │ │ │ │ │ │ │ ├── IAppOpsCallback.struct │ │ │ │ │ │ │ ├── IAppOpsNotedCallback.struct │ │ │ │ │ │ │ ├── IAppOpsService.struct │ │ │ │ │ │ │ ├── IAppOpsStartedCallback.struct │ │ │ │ │ │ │ ├── IBatteryStats.struct │ │ │ │ │ │ │ ├── IHotwordRecognitionStatusCallback.struct │ │ │ │ │ │ │ ├── ILogAccessDialogCallback.struct │ │ │ │ │ │ │ ├── IMediaContainerService.struct │ │ │ │ │ │ │ ├── ISoundTriggerService.struct │ │ │ │ │ │ │ ├── ISoundTriggerSession.struct │ │ │ │ │ │ │ ├── IVoiceActionCheckCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractionManagerService.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSessionListener.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSessionShowCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractionSoundTriggerSession.struct │ │ │ │ │ │ │ ├── IVoiceInteractor.struct │ │ │ │ │ │ │ ├── IVoiceInteractorCallback.struct │ │ │ │ │ │ │ ├── IVoiceInteractorRequest.struct │ │ │ │ │ │ │ └── procstats │ │ │ │ │ │ │ │ └── IProcessStats.struct │ │ │ │ │ │ ├── appwidget │ │ │ │ │ │ │ ├── IAppWidgetHost.struct │ │ │ │ │ │ │ └── IAppWidgetService.struct │ │ │ │ │ │ ├── backup │ │ │ │ │ │ │ ├── IObbBackupService.struct │ │ │ │ │ │ │ └── ITransportStatusCallback.struct │ │ │ │ │ │ ├── compat │ │ │ │ │ │ │ ├── CompatibilityChangeConfig.struct │ │ │ │ │ │ │ ├── CompatibilityChangeInfo.struct │ │ │ │ │ │ │ ├── CompatibilityOverrideConfig.struct │ │ │ │ │ │ │ ├── IOverrideValidator.struct │ │ │ │ │ │ │ ├── IPlatformCompat.struct │ │ │ │ │ │ │ ├── IPlatformCompatNative.struct │ │ │ │ │ │ │ └── OverrideAllowedState.struct │ │ │ │ │ │ ├── graphics │ │ │ │ │ │ │ └── fonts │ │ │ │ │ │ │ │ └── IFontManager.struct │ │ │ │ │ │ ├── infra │ │ │ │ │ │ │ ├── AndroidFuture.struct │ │ │ │ │ │ │ └── IAndroidFuture.struct │ │ │ │ │ │ ├── inputmethod │ │ │ │ │ │ │ ├── IAccessibilityInputMethodSession.struct │ │ │ │ │ │ │ ├── IAccessibilityInputMethodSessionCallback.struct │ │ │ │ │ │ │ ├── IInputContentUriToken.struct │ │ │ │ │ │ │ ├── IInputMethodPrivilegedOperations.struct │ │ │ │ │ │ │ ├── IRemoteAccessibilityInputConnection.struct │ │ │ │ │ │ │ └── InputConnectionCommandHeader.struct │ │ │ │ │ │ ├── logging │ │ │ │ │ │ │ └── InstanceId.struct │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ ├── INetworkWatchlistManager.struct │ │ │ │ │ │ │ ├── IOemNetd.struct │ │ │ │ │ │ │ ├── IOemNetdUnsolicitedEventListener.struct │ │ │ │ │ │ │ ├── LegacyVpnInfo.struct │ │ │ │ │ │ │ └── VpnProfile.struct │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ ├── AppFuseMount.struct │ │ │ │ │ │ │ ├── IBinaryTransparencyService.struct │ │ │ │ │ │ │ ├── IDropBoxManagerService.struct │ │ │ │ │ │ │ ├── IParcelFileDescriptorFactory.struct │ │ │ │ │ │ │ ├── IResultReceiver.struct │ │ │ │ │ │ │ └── IShellCallback.struct │ │ │ │ │ │ ├── policy │ │ │ │ │ │ │ ├── IKeyguardDismissCallback.struct │ │ │ │ │ │ │ ├── IKeyguardDrawnCallback.struct │ │ │ │ │ │ │ ├── IKeyguardExitCallback.struct │ │ │ │ │ │ │ ├── IKeyguardLockedStateListener.struct │ │ │ │ │ │ │ ├── IKeyguardService.struct │ │ │ │ │ │ │ ├── IKeyguardStateCallback.struct │ │ │ │ │ │ │ └── IShortcutService.struct │ │ │ │ │ │ ├── statusbar │ │ │ │ │ │ │ ├── IAddTileResultCallback.struct │ │ │ │ │ │ │ ├── ISessionListener.struct │ │ │ │ │ │ │ ├── IStatusBar.struct │ │ │ │ │ │ │ ├── IStatusBarService.struct │ │ │ │ │ │ │ ├── IUndoMediaTransferCallback.struct │ │ │ │ │ │ │ ├── LetterboxDetails.struct │ │ │ │ │ │ │ └── StatusBarIcon.struct │ │ │ │ │ │ ├── telecom │ │ │ │ │ │ │ ├── ICallDiagnosticService.struct │ │ │ │ │ │ │ ├── ICallDiagnosticServiceAdapter.struct │ │ │ │ │ │ │ ├── ICallRedirectionAdapter.struct │ │ │ │ │ │ │ ├── ICallRedirectionService.struct │ │ │ │ │ │ │ ├── ICallScreeningAdapter.struct │ │ │ │ │ │ │ ├── ICallScreeningService.struct │ │ │ │ │ │ │ ├── IConnectionService.struct │ │ │ │ │ │ │ ├── IConnectionServiceAdapter.struct │ │ │ │ │ │ │ ├── IDeviceIdleControllerAdapter.struct │ │ │ │ │ │ │ ├── IInCallAdapter.struct │ │ │ │ │ │ │ ├── IInCallService.struct │ │ │ │ │ │ │ ├── IInternalServiceRetriever.struct │ │ │ │ │ │ │ ├── IPhoneAccountSuggestionCallback.struct │ │ │ │ │ │ │ ├── IPhoneAccountSuggestionService.struct │ │ │ │ │ │ │ ├── ITelecomLoader.struct │ │ │ │ │ │ │ ├── ITelecomService.struct │ │ │ │ │ │ │ ├── IVideoCallback.struct │ │ │ │ │ │ │ ├── IVideoProvider.struct │ │ │ │ │ │ │ └── RemoteServiceCallback.struct │ │ │ │ │ │ ├── telephony │ │ │ │ │ │ │ ├── IBooleanConsumer.struct │ │ │ │ │ │ │ ├── ICallForwardingInfoCallback.struct │ │ │ │ │ │ │ ├── ICarrierConfigLoader.struct │ │ │ │ │ │ │ ├── ICarrierPrivilegesCallback.struct │ │ │ │ │ │ │ ├── IIccPhoneBook.struct │ │ │ │ │ │ │ ├── IImsStateCallback.struct │ │ │ │ │ │ │ ├── IIntegerConsumer.struct │ │ │ │ │ │ │ ├── IMms.struct │ │ │ │ │ │ │ ├── INumberVerificationCallback.struct │ │ │ │ │ │ │ ├── IOnSubscriptionsChangedListener.struct │ │ │ │ │ │ │ ├── IOns.struct │ │ │ │ │ │ │ ├── IPhoneStateListener.struct │ │ │ │ │ │ │ ├── IPhoneSubInfo.struct │ │ │ │ │ │ │ ├── ISetOpportunisticDataCallback.struct │ │ │ │ │ │ │ ├── ISms.struct │ │ │ │ │ │ │ ├── ISub.struct │ │ │ │ │ │ │ ├── ITelephony.struct │ │ │ │ │ │ │ ├── ITelephonyRegistry.struct │ │ │ │ │ │ │ ├── IUpdateAvailableNetworksCallback.struct │ │ │ │ │ │ │ ├── IWapPushManager.struct │ │ │ │ │ │ │ ├── IccLogicalChannelRequest.struct │ │ │ │ │ │ │ ├── SmsRawData.struct │ │ │ │ │ │ │ ├── euicc │ │ │ │ │ │ │ │ ├── IAuthenticateServerCallback.struct │ │ │ │ │ │ │ │ ├── ICancelSessionCallback.struct │ │ │ │ │ │ │ │ ├── IDeleteProfileCallback.struct │ │ │ │ │ │ │ │ ├── IDisableProfileCallback.struct │ │ │ │ │ │ │ │ ├── IEuiccCardController.struct │ │ │ │ │ │ │ │ ├── IEuiccController.struct │ │ │ │ │ │ │ │ ├── IGetAllProfilesCallback.struct │ │ │ │ │ │ │ │ ├── IGetDefaultSmdpAddressCallback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccChallengeCallback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccInfo1Callback.struct │ │ │ │ │ │ │ │ ├── IGetEuiccInfo2Callback.struct │ │ │ │ │ │ │ │ ├── IGetProfileCallback.struct │ │ │ │ │ │ │ │ ├── IGetRulesAuthTableCallback.struct │ │ │ │ │ │ │ │ ├── IGetSmdsAddressCallback.struct │ │ │ │ │ │ │ │ ├── IListNotificationsCallback.struct │ │ │ │ │ │ │ │ ├── ILoadBoundProfilePackageCallback.struct │ │ │ │ │ │ │ │ ├── IPrepareDownloadCallback.struct │ │ │ │ │ │ │ │ ├── IRemoveNotificationFromListCallback.struct │ │ │ │ │ │ │ │ ├── IResetMemoryCallback.struct │ │ │ │ │ │ │ │ ├── IRetrieveNotificationCallback.struct │ │ │ │ │ │ │ │ ├── IRetrieveNotificationListCallback.struct │ │ │ │ │ │ │ │ ├── ISetDefaultSmdpAddressCallback.struct │ │ │ │ │ │ │ │ ├── ISetNicknameCallback.struct │ │ │ │ │ │ │ │ └── ISwitchToProfileCallback.struct │ │ │ │ │ │ │ └── uicc │ │ │ │ │ │ │ │ ├── AdnCapacity.struct │ │ │ │ │ │ │ │ └── AdnRecord.struct │ │ │ │ │ │ ├── textservice │ │ │ │ │ │ │ ├── ISpellCheckerService.struct │ │ │ │ │ │ │ ├── ISpellCheckerServiceCallback.struct │ │ │ │ │ │ │ ├── ISpellCheckerSession.struct │ │ │ │ │ │ │ ├── ISpellCheckerSessionListener.struct │ │ │ │ │ │ │ ├── ITextServicesManager.struct │ │ │ │ │ │ │ └── ITextServicesSessionListener.struct │ │ │ │ │ │ ├── view │ │ │ │ │ │ │ ├── AppearanceRegion.struct │ │ │ │ │ │ │ ├── IDragAndDropPermissions.struct │ │ │ │ │ │ │ ├── IInlineSuggestionsRequestCallback.struct │ │ │ │ │ │ │ ├── IInlineSuggestionsResponseCallback.struct │ │ │ │ │ │ │ ├── IInputContext.struct │ │ │ │ │ │ │ ├── IInputMethod.struct │ │ │ │ │ │ │ ├── IInputMethodClient.struct │ │ │ │ │ │ │ ├── IInputMethodManager.struct │ │ │ │ │ │ │ ├── IInputMethodSession.struct │ │ │ │ │ │ │ ├── IInputSessionCallback.struct │ │ │ │ │ │ │ ├── InlineSuggestionsRequestInfo.struct │ │ │ │ │ │ │ └── inline │ │ │ │ │ │ │ │ ├── IInlineContentCallback.struct │ │ │ │ │ │ │ │ └── IInlineContentProvider.struct │ │ │ │ │ │ └── widget │ │ │ │ │ │ │ ├── ICheckCredentialProgressCallback.struct │ │ │ │ │ │ │ ├── ILockSettings.struct │ │ │ │ │ │ │ ├── IRemoteViewsFactory.struct │ │ │ │ │ │ │ ├── IWeakEscrowTokenActivatedListener.struct │ │ │ │ │ │ │ ├── IWeakEscrowTokenRemovedListener.struct │ │ │ │ │ │ │ ├── LockscreenCredential.struct │ │ │ │ │ │ │ └── VerifyCredentialResponse.struct │ │ │ │ │ ├── keychain │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ └── support │ │ │ │ │ │ │ └── IKeyChainServiceTestSupport.struct │ │ │ │ │ ├── microdroid │ │ │ │ │ │ └── testservice │ │ │ │ │ │ │ └── ITestService.struct │ │ │ │ │ ├── modules │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── ISynchronousResultReceiver.struct │ │ │ │ │ ├── net │ │ │ │ │ │ ├── IProxyCallback.struct │ │ │ │ │ │ ├── IProxyPortListener.struct │ │ │ │ │ │ └── IProxyService.struct │ │ │ │ │ ├── onemedia │ │ │ │ │ │ ├── IPlayerCallback.struct │ │ │ │ │ │ ├── IPlayerService.struct │ │ │ │ │ │ └── playback │ │ │ │ │ │ │ └── IRequestCallback.struct │ │ │ │ │ ├── printspooler │ │ │ │ │ │ └── renderer │ │ │ │ │ │ │ ├── IPdfEditor.struct │ │ │ │ │ │ │ └── IPdfRenderer.struct │ │ │ │ │ ├── sdksandbox │ │ │ │ │ │ ├── ISdkSandboxManagerToSdkSandboxCallback.struct │ │ │ │ │ │ ├── ISdkSandboxService.struct │ │ │ │ │ │ └── ISdkSandboxToSdkSandboxManagerCallback.struct │ │ │ │ │ ├── server │ │ │ │ │ │ ├── net │ │ │ │ │ │ │ └── integrationtests │ │ │ │ │ │ │ │ └── INetworkStackInstrumentation.struct │ │ │ │ │ │ └── profcollect │ │ │ │ │ │ │ ├── IProfCollectd.struct │ │ │ │ │ │ │ └── IProviderStatusCallback.struct │ │ │ │ │ ├── smspush │ │ │ │ │ │ └── unitTests │ │ │ │ │ │ │ └── IDataVerify.struct │ │ │ │ │ ├── suspendapps │ │ │ │ │ │ └── suspendtestapp │ │ │ │ │ │ │ ├── IBroadcastReporter.struct │ │ │ │ │ │ │ └── ITestService.struct │ │ │ │ │ ├── systemui │ │ │ │ │ │ ├── assist │ │ │ │ │ │ │ └── IAssistHandleService.struct │ │ │ │ │ │ ├── screenshot │ │ │ │ │ │ │ ├── ICrossProfileService.struct │ │ │ │ │ │ │ ├── IOnDoneCallback.struct │ │ │ │ │ │ │ └── IScreenshotProxy.struct │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ ├── recents │ │ │ │ │ │ │ ├── IOverviewProxy.struct │ │ │ │ │ │ │ └── ISystemUiProxy.struct │ │ │ │ │ │ │ └── system │ │ │ │ │ │ │ └── smartspace │ │ │ │ │ │ │ ├── ILauncherUnlockAnimationController.struct │ │ │ │ │ │ │ └── ISysuiUnlockAnimationController.struct │ │ │ │ │ ├── test │ │ │ │ │ │ └── notificationlistener │ │ │ │ │ │ │ └── INotificationUriAccessService.struct │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── aidl │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ │ └── basicprojectwithaidl │ │ │ │ │ │ │ ├── ITest.struct │ │ │ │ │ │ │ └── Rect.struct │ │ │ │ │ ├── textclassifier │ │ │ │ │ │ └── downloader │ │ │ │ │ │ │ ├── IModelDownloaderCallback.struct │ │ │ │ │ │ │ └── IModelDownloaderService.struct │ │ │ │ │ ├── tv │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ ├── users │ │ │ │ │ │ │ │ └── IRestrictedProfilePinService.struct │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ └── IActivityTransitionBitmapProvider.struct │ │ │ │ │ │ └── testing │ │ │ │ │ │ │ └── testinput │ │ │ │ │ │ │ ├── ChannelStateData.struct │ │ │ │ │ │ │ └── ITestInputControl.struct │ │ │ │ │ ├── virt │ │ │ │ │ │ └── fs │ │ │ │ │ │ │ ├── FsStat.struct │ │ │ │ │ │ │ ├── IAuthFs.struct │ │ │ │ │ │ │ ├── IAuthFsService.struct │ │ │ │ │ │ │ └── IVirtFdService.struct │ │ │ │ │ └── wm │ │ │ │ │ │ └── shell │ │ │ │ │ │ ├── back │ │ │ │ │ │ └── IBackAnimation.struct │ │ │ │ │ │ ├── desktopmode │ │ │ │ │ │ └── IDesktopMode.struct │ │ │ │ │ │ ├── onehanded │ │ │ │ │ │ └── IOneHanded.struct │ │ │ │ │ │ ├── pip │ │ │ │ │ │ ├── IPip.struct │ │ │ │ │ │ └── IPipAnimationListener.struct │ │ │ │ │ │ ├── recents │ │ │ │ │ │ ├── IRecentTasks.struct │ │ │ │ │ │ └── IRecentTasksListener.struct │ │ │ │ │ │ ├── splitscreen │ │ │ │ │ │ ├── ISplitScreen.struct │ │ │ │ │ │ └── ISplitScreenListener.struct │ │ │ │ │ │ ├── startingsurface │ │ │ │ │ │ ├── IStartingWindow.struct │ │ │ │ │ │ └── IStartingWindowListener.struct │ │ │ │ │ │ └── transition │ │ │ │ │ │ └── IShellTransitions.struct │ │ │ │ ├── example │ │ │ │ │ └── android │ │ │ │ │ │ └── apis │ │ │ │ │ │ └── app │ │ │ │ │ │ ├── IRemoteService.struct │ │ │ │ │ │ ├── IRemoteServiceCallback.struct │ │ │ │ │ │ └── ISecondary.struct │ │ │ │ ├── google │ │ │ │ │ ├── android │ │ │ │ │ │ ├── enterprise │ │ │ │ │ │ │ └── connectedapps │ │ │ │ │ │ │ │ ├── ICrossProfileCallback.struct │ │ │ │ │ │ │ │ └── ICrossProfileService.struct │ │ │ │ │ │ ├── setupcompat │ │ │ │ │ │ │ ├── ISetupCompatService.struct │ │ │ │ │ │ │ └── portal │ │ │ │ │ │ │ │ ├── IPortalProgressCallback.struct │ │ │ │ │ │ │ │ ├── IPortalProgressService.struct │ │ │ │ │ │ │ │ ├── IPortalRegisterResultListener.struct │ │ │ │ │ │ │ │ ├── ISetupNotificationService.struct │ │ │ │ │ │ │ │ └── ISetupNotificationServicePortalExtension.struct │ │ │ │ │ │ └── setupwizard │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── INetworkInterceptService.struct │ │ │ │ │ └── hardware │ │ │ │ │ │ └── pixel │ │ │ │ │ │ └── display │ │ │ │ │ │ ├── IDisplay.struct │ │ │ │ │ │ └── Weight.struct │ │ │ │ └── mediatek │ │ │ │ │ └── tunerservice │ │ │ │ │ └── IMtkTuner.struct │ │ │ ├── device │ │ │ │ ├── generic │ │ │ │ │ └── car │ │ │ │ │ │ └── emulator │ │ │ │ │ │ ├── IVehicleBus.struct │ │ │ │ │ │ └── IVehicleBusCallback.struct │ │ │ │ └── google │ │ │ │ │ └── atv │ │ │ │ │ └── audio_proxy │ │ │ │ │ ├── AudioConfig.struct │ │ │ │ │ ├── IAudioProxy.struct │ │ │ │ │ ├── IStreamProvider.struct │ │ │ │ │ ├── PresentationPosition.struct │ │ │ │ │ ├── TimeSpec.struct │ │ │ │ │ └── WriteStatus.struct │ │ │ ├── google │ │ │ │ └── hardware │ │ │ │ │ └── power │ │ │ │ │ └── extension │ │ │ │ │ └── pixel │ │ │ │ │ └── IPowerExt.struct │ │ │ ├── hidl2aidl │ │ │ │ ├── test │ │ │ │ │ ├── BigStruct.struct │ │ │ │ │ ├── IBar.struct │ │ │ │ │ ├── IFoo.struct │ │ │ │ │ ├── Inner.struct │ │ │ │ │ ├── NameCollision.struct │ │ │ │ │ ├── OnlyIn10.struct │ │ │ │ │ ├── OnlyIn11.struct │ │ │ │ │ ├── OverrideMe.struct │ │ │ │ │ ├── VectorFoo.struct │ │ │ │ │ └── extension │ │ │ │ │ │ └── IFoo.struct │ │ │ │ └── test2 │ │ │ │ │ └── IFoo.struct │ │ │ ├── org │ │ │ │ └── chromium │ │ │ │ │ └── base │ │ │ │ │ ├── ITestCallback.struct │ │ │ │ │ ├── ITestController.struct │ │ │ │ │ └── process_launcher │ │ │ │ │ └── ICallbackInt.struct │ │ │ ├── other_package │ │ │ │ └── IBaz.struct │ │ │ ├── some_package │ │ │ │ ├── IBar.struct │ │ │ │ ├── IFoo.struct │ │ │ │ ├── Thing.struct │ │ │ │ └── sub_package │ │ │ │ │ ├── IFoo.struct │ │ │ │ │ └── SubThing.struct │ │ │ ├── src │ │ │ │ └── com │ │ │ │ │ └── android │ │ │ │ │ └── commands │ │ │ │ │ └── uinput │ │ │ │ │ └── InputAbsInfo.struct │ │ │ ├── test │ │ │ │ └── ParcelableTest.struct │ │ │ ├── test6 │ │ │ │ ├── Bar.struct │ │ │ │ └── Foo.struct │ │ │ ├── test_package │ │ │ │ ├── Bar.struct │ │ │ │ ├── Baz.struct │ │ │ │ ├── ExtendableParcelable.struct │ │ │ │ ├── FixedSize.struct │ │ │ │ ├── Foo.struct │ │ │ │ ├── IBaz.struct │ │ │ │ ├── ICompatTest.struct │ │ │ │ ├── IEmpty.struct │ │ │ │ ├── MyExt.struct │ │ │ │ └── RegularPolygon.struct │ │ │ └── tests_transitive_parcel │ │ │ │ ├── a │ │ │ │ └── IA.struct │ │ │ │ ├── b │ │ │ │ └── B.struct │ │ │ │ └── c │ │ │ │ └── C.struct │ │ └── android9 │ │ │ ├── android │ │ │ ├── IDataSource.struct │ │ │ ├── IGraphicBufferSource.struct │ │ │ ├── IMediaExtractor.struct │ │ │ ├── IMediaExtractorService.struct │ │ │ ├── IOMXBufferSource.struct │ │ │ ├── IOMXNode.struct │ │ │ ├── accessibilityservice │ │ │ │ ├── AccessibilityGestureEvent.struct │ │ │ │ ├── AccessibilityServiceInfo.struct │ │ │ │ ├── IAccessibilityServiceClient.struct │ │ │ │ └── IAccessibilityServiceConnection.struct │ │ │ ├── accounts │ │ │ │ ├── Account.struct │ │ │ │ ├── AuthenticatorDescription.struct │ │ │ │ ├── IAccountAuthenticator.struct │ │ │ │ ├── IAccountAuthenticatorResponse.struct │ │ │ │ ├── IAccountManager.struct │ │ │ │ └── IAccountManagerResponse.struct │ │ │ ├── aidl │ │ │ │ ├── loggable │ │ │ │ │ └── ILoggableInterface.struct │ │ │ │ └── tests │ │ │ │ │ ├── INamedCallback.struct │ │ │ │ │ ├── StructuredParcelable.struct │ │ │ │ │ ├── generic │ │ │ │ │ └── Baz.struct │ │ │ │ │ └── map │ │ │ │ │ ├── Bar.struct │ │ │ │ │ ├── Foo.struct │ │ │ │ │ └── IEmpty.struct │ │ │ ├── apex │ │ │ │ ├── ApexInfo.struct │ │ │ │ ├── ApexInfoList.struct │ │ │ │ ├── ApexSessionInfo.struct │ │ │ │ ├── ApexSessionParams.struct │ │ │ │ └── IApexService.struct │ │ │ ├── app │ │ │ │ ├── AsyncNotedAppOp.struct │ │ │ │ ├── AutomaticZenRule.struct │ │ │ │ ├── ContentProviderHolder.struct │ │ │ │ ├── IActivityController.struct │ │ │ │ ├── IActivityManager.struct │ │ │ │ ├── IActivityPendingResult.struct │ │ │ │ ├── IActivityTaskManager.struct │ │ │ │ ├── IAlarmCompleteListener.struct │ │ │ │ ├── IAlarmListener.struct │ │ │ │ ├── IAlarmManager.struct │ │ │ │ ├── IAppTask.struct │ │ │ │ ├── IAppTraceRetriever.struct │ │ │ │ ├── IApplicationThread.struct │ │ │ │ ├── IAssistDataReceiver.struct │ │ │ │ ├── IBackupAgent.struct │ │ │ │ ├── IEphemeralResolver.struct │ │ │ │ ├── IInputForwarder.struct │ │ │ │ ├── IInstantAppResolver.struct │ │ │ │ ├── IInstrumentationWatcher.struct │ │ │ │ ├── INotificationManager.struct │ │ │ │ ├── IProcessObserver.struct │ │ │ │ ├── IRequestFinishCallback.struct │ │ │ │ ├── ISearchManager.struct │ │ │ │ ├── ISearchManagerCallback.struct │ │ │ │ ├── IServiceConnection.struct │ │ │ │ ├── IStopUserCallback.struct │ │ │ │ ├── ITaskStackListener.struct │ │ │ │ ├── ITransientNotification.struct │ │ │ │ ├── ITransientNotificationCallback.struct │ │ │ │ ├── IUiAutomationConnection.struct │ │ │ │ ├── IUiModeManager.struct │ │ │ │ ├── IUidObserver.struct │ │ │ │ ├── IUriGrantsManager.struct │ │ │ │ ├── IUserSwitchObserver.struct │ │ │ │ ├── IWallpaperManager.struct │ │ │ │ ├── IWallpaperManagerCallback.struct │ │ │ │ ├── IWindowToken.struct │ │ │ │ ├── Notification$Action.struct │ │ │ │ ├── Notification$BubbleMetadata.struct │ │ │ │ ├── Notification.struct │ │ │ │ ├── NotificationChannel.struct │ │ │ │ ├── NotificationChannelGroup.struct │ │ │ │ ├── NotificationHistory.struct │ │ │ │ ├── PendingIntent.struct │ │ │ │ ├── PictureInPictureParams.struct │ │ │ │ ├── ProfilerInfo.struct │ │ │ │ ├── RemoteAction.struct │ │ │ │ ├── RemoteInput.struct │ │ │ │ ├── RuntimeAppOpAccessMessage.struct │ │ │ │ ├── SearchableInfo.struct │ │ │ │ ├── SyncNotedAppOp.struct │ │ │ │ ├── Vr2dDisplayProperties.struct │ │ │ │ ├── WaitResult.struct │ │ │ │ ├── WallpaperColors.struct │ │ │ │ ├── WallpaperInfo.struct │ │ │ │ ├── admin │ │ │ │ │ ├── FactoryResetProtectionPolicy.struct │ │ │ │ │ ├── IDeviceAdminService.struct │ │ │ │ │ ├── IDevicePolicyManager.struct │ │ │ │ │ ├── IKeyguardCallback.struct │ │ │ │ │ ├── IKeyguardClient.struct │ │ │ │ │ ├── NetworkEvent.struct │ │ │ │ │ ├── PasswordMetrics.struct │ │ │ │ │ ├── StartInstallingUpdateCallback.struct │ │ │ │ │ ├── SystemUpdateInfo.struct │ │ │ │ │ ├── SystemUpdatePolicy$ValidationFailedException.struct │ │ │ │ │ └── SystemUpdatePolicy.struct │ │ │ │ ├── appops │ │ │ │ │ └── cts │ │ │ │ │ │ ├── IAppOpsForegroundControlService.struct │ │ │ │ │ │ ├── IAppOpsUserClient.struct │ │ │ │ │ │ └── IAppOpsUserService.struct │ │ │ │ ├── assist │ │ │ │ │ ├── AssistContent.struct │ │ │ │ │ ├── AssistStructure$HtmlInfoNode.struct │ │ │ │ │ └── AssistStructure.struct │ │ │ │ ├── backup │ │ │ │ │ ├── BackupProgress.struct │ │ │ │ │ ├── IBackupCallback.struct │ │ │ │ │ ├── IBackupManager.struct │ │ │ │ │ ├── IBackupManagerMonitor.struct │ │ │ │ │ ├── IBackupObserver.struct │ │ │ │ │ ├── IFullBackupRestoreObserver.struct │ │ │ │ │ ├── IRestoreObserver.struct │ │ │ │ │ ├── IRestoreSession.struct │ │ │ │ │ ├── ISelectBackupTransportCallback.struct │ │ │ │ │ ├── RestoreDescription.struct │ │ │ │ │ └── RestoreSet.struct │ │ │ │ ├── blob │ │ │ │ │ ├── BlobHandle.struct │ │ │ │ │ ├── BlobInfo.struct │ │ │ │ │ ├── IBlobCommitCallback.struct │ │ │ │ │ ├── IBlobStoreManager.struct │ │ │ │ │ ├── IBlobStoreSession.struct │ │ │ │ │ └── LeaseInfo.struct │ │ │ │ ├── contentsuggestions │ │ │ │ │ ├── ClassificationsRequest.struct │ │ │ │ │ ├── ContentClassification.struct │ │ │ │ │ ├── ContentSelection.struct │ │ │ │ │ ├── IClassificationsCallback.struct │ │ │ │ │ ├── IContentSuggestionsManager.struct │ │ │ │ │ ├── ISelectionsCallback.struct │ │ │ │ │ └── SelectionsRequest.struct │ │ │ │ ├── job │ │ │ │ │ ├── IJobCallback.struct │ │ │ │ │ ├── IJobScheduler.struct │ │ │ │ │ ├── IJobService.struct │ │ │ │ │ ├── JobInfo$TriggerContentUri.struct │ │ │ │ │ ├── JobInfo.struct │ │ │ │ │ ├── JobParameters.struct │ │ │ │ │ └── JobWorkItem.struct │ │ │ │ ├── prediction │ │ │ │ │ ├── AppPredictionContext.struct │ │ │ │ │ ├── AppPredictionSessionId.struct │ │ │ │ │ ├── AppTargetEvent.struct │ │ │ │ │ ├── IPredictionCallback.struct │ │ │ │ │ └── IPredictionManager.struct │ │ │ │ ├── role │ │ │ │ │ ├── IOnRoleHoldersChangedListener.struct │ │ │ │ │ ├── IRoleController.struct │ │ │ │ │ └── IRoleManager.struct │ │ │ │ ├── servertransaction │ │ │ │ │ └── ClientTransaction.struct │ │ │ │ ├── slice │ │ │ │ │ ├── ISliceListener.struct │ │ │ │ │ ├── ISliceManager.struct │ │ │ │ │ ├── Slice.struct │ │ │ │ │ ├── SliceItem.struct │ │ │ │ │ └── SliceSpec.struct │ │ │ │ ├── stubs │ │ │ │ │ └── ISecondary.struct │ │ │ │ ├── timedetector │ │ │ │ │ ├── ITimeDetectorService.struct │ │ │ │ │ ├── ManualTimeSuggestion.struct │ │ │ │ │ ├── NetworkTimeSuggestion.struct │ │ │ │ │ └── TelephonyTimeSuggestion.struct │ │ │ │ ├── timezone │ │ │ │ │ ├── ICallback.struct │ │ │ │ │ ├── IRulesManager.struct │ │ │ │ │ └── RulesState.struct │ │ │ │ ├── timezonedetector │ │ │ │ │ ├── ITimeZoneDetectorService.struct │ │ │ │ │ ├── ManualTimeZoneSuggestion.struct │ │ │ │ │ └── TelephonyTimeZoneSuggestion.struct │ │ │ │ ├── trust │ │ │ │ │ ├── IStrongAuthTracker.struct │ │ │ │ │ ├── ITrustListener.struct │ │ │ │ │ └── ITrustManager.struct │ │ │ │ └── usage │ │ │ │ │ ├── CacheQuotaHint.struct │ │ │ │ │ ├── ExternalStorageStats.struct │ │ │ │ │ ├── ICacheQuotaService.struct │ │ │ │ │ ├── IStorageStatsManager.struct │ │ │ │ │ ├── IUsageStatsManager.struct │ │ │ │ │ ├── StorageStats.struct │ │ │ │ │ ├── UsageEvents.struct │ │ │ │ │ └── cts │ │ │ │ │ └── ITestReceiver.struct │ │ │ ├── appsecurity │ │ │ │ └── cts │ │ │ │ │ └── keyrotationtest │ │ │ │ │ └── service │ │ │ │ │ └── ISignatureQueryService.struct │ │ │ ├── appwidget │ │ │ │ └── AppWidgetProviderInfo.struct │ │ │ ├── automotive │ │ │ │ ├── computepipe │ │ │ │ │ ├── registry │ │ │ │ │ │ ├── IClientInfo.struct │ │ │ │ │ │ ├── IPipeQuery.struct │ │ │ │ │ │ └── IPipeRegistration.struct │ │ │ │ │ └── runner │ │ │ │ │ │ ├── IPipeDebugger.struct │ │ │ │ │ │ ├── IPipeRunner.struct │ │ │ │ │ │ ├── IPipeStateCallback.struct │ │ │ │ │ │ ├── IPipeStream.struct │ │ │ │ │ │ ├── PacketDescriptor.struct │ │ │ │ │ │ ├── PipeDescriptor.struct │ │ │ │ │ │ ├── PipeInputConfig.struct │ │ │ │ │ │ ├── PipeInputConfigCameraDesc.struct │ │ │ │ │ │ ├── PipeInputConfigImageFileDesc.struct │ │ │ │ │ │ ├── PipeInputConfigInputSourceDesc.struct │ │ │ │ │ │ ├── PipeInputConfigVideoFileDesc.struct │ │ │ │ │ │ ├── PipeOffloadConfig.struct │ │ │ │ │ │ ├── PipeOffloadConfigOffloadDesc.struct │ │ │ │ │ │ ├── PipeOutputConfig.struct │ │ │ │ │ │ ├── PipeOutputConfigOutputDesc.struct │ │ │ │ │ │ ├── PipeTerminationConfig.struct │ │ │ │ │ │ ├── PipeTerminationConfigTerminationDesc.struct │ │ │ │ │ │ └── ProfilingData.struct │ │ │ │ └── watchdog │ │ │ │ │ ├── ICarWatchdog.struct │ │ │ │ │ ├── ICarWatchdogClient.struct │ │ │ │ │ └── ICarWatchdogMonitor.struct │ │ │ ├── bluetooth │ │ │ │ ├── BluetoothActivityEnergyInfo.struct │ │ │ │ ├── BluetoothAudioConfig.struct │ │ │ │ ├── BluetoothAvrcpPlayerSettings.struct │ │ │ │ ├── BluetoothCodecConfig.struct │ │ │ │ ├── BluetoothCodecStatus.struct │ │ │ │ ├── BluetoothDevice.struct │ │ │ │ ├── BluetoothGattCharacteristic.struct │ │ │ │ ├── BluetoothGattDescriptor.struct │ │ │ │ ├── BluetoothGattIncludedService.struct │ │ │ │ ├── BluetoothGattService.struct │ │ │ │ ├── BluetoothHeadsetClientCall.struct │ │ │ │ ├── BluetoothHealthAppConfiguration.struct │ │ │ │ ├── BluetoothHidDeviceAppQosSettings.struct │ │ │ │ ├── BluetoothHidDeviceAppSdpSettings.struct │ │ │ │ ├── IBluetooth.struct │ │ │ │ ├── IBluetoothA2dp.struct │ │ │ │ ├── IBluetoothA2dpSink.struct │ │ │ │ ├── IBluetoothA2dpSinkCallback.struct │ │ │ │ ├── IBluetoothA2dpSource.struct │ │ │ │ ├── IBluetoothA2dpSourceCallback.struct │ │ │ │ ├── IBluetoothAvrcpControl.struct │ │ │ │ ├── IBluetoothAvrcpControlCallback.struct │ │ │ │ ├── IBluetoothAvrcpController.struct │ │ │ │ ├── IBluetoothAvrcpTarget.struct │ │ │ │ ├── IBluetoothAvrcpTargetCallback.struct │ │ │ │ ├── IBluetoothCallback.struct │ │ │ │ ├── IBluetoothGatt.struct │ │ │ │ ├── IBluetoothGattCallback.struct │ │ │ │ ├── IBluetoothGattClient.struct │ │ │ │ ├── IBluetoothGattClientCallback.struct │ │ │ │ ├── IBluetoothGattServer.struct │ │ │ │ ├── IBluetoothGattServerCallback.struct │ │ │ │ ├── IBluetoothHeadset.struct │ │ │ │ ├── IBluetoothHeadsetClient.struct │ │ │ │ ├── IBluetoothHeadsetPhone.struct │ │ │ │ ├── IBluetoothHealth.struct │ │ │ │ ├── IBluetoothHearingAid.struct │ │ │ │ ├── IBluetoothHidDevice.struct │ │ │ │ ├── IBluetoothHidDeviceCallback.struct │ │ │ │ ├── IBluetoothHidHost.struct │ │ │ │ ├── IBluetoothLeAdvertiser.struct │ │ │ │ ├── IBluetoothLeAdvertiserCallback.struct │ │ │ │ ├── IBluetoothLeScanner.struct │ │ │ │ ├── IBluetoothLeScannerCallback.struct │ │ │ │ ├── IBluetoothLowEnergy.struct │ │ │ │ ├── IBluetoothLowEnergyCallback.struct │ │ │ │ ├── IBluetoothManager.struct │ │ │ │ ├── IBluetoothManagerCallback.struct │ │ │ │ ├── IBluetoothMap.struct │ │ │ │ ├── IBluetoothMapClient.struct │ │ │ │ ├── IBluetoothMetadataListener.struct │ │ │ │ ├── IBluetoothPan.struct │ │ │ │ ├── IBluetoothPbap.struct │ │ │ │ ├── IBluetoothPbapClient.struct │ │ │ │ ├── IBluetoothProfileServiceConnection.struct │ │ │ │ ├── IBluetoothSap.struct │ │ │ │ ├── IBluetoothSocketManager.struct │ │ │ │ ├── IBluetoothStateChangeCallback.struct │ │ │ │ ├── UidTraffic.struct │ │ │ │ └── le │ │ │ │ │ ├── AdvertiseData.struct │ │ │ │ │ ├── AdvertisingSetParameters.struct │ │ │ │ │ ├── IAdvertisingSetCallback.struct │ │ │ │ │ ├── IPeriodicAdvertisingCallback.struct │ │ │ │ │ ├── IScannerCallback.struct │ │ │ │ │ ├── PeriodicAdvertisingParameters.struct │ │ │ │ │ ├── PeriodicAdvertisingReport.struct │ │ │ │ │ ├── ScanFilter.struct │ │ │ │ │ ├── ScanResult.struct │ │ │ │ │ └── ScanSettings.struct │ │ │ ├── brillo │ │ │ │ └── IUpdateEngine.struct │ │ │ ├── car │ │ │ │ ├── IAppFocus.struct │ │ │ │ ├── IAppFocusListener.struct │ │ │ │ ├── IAppFocusOwnershipCallback.struct │ │ │ │ ├── ICar.struct │ │ │ │ ├── ICarBluetooth.struct │ │ │ │ ├── ICarBluetoothUserService.struct │ │ │ │ ├── ICarBugreportCallback.struct │ │ │ │ ├── ICarBugreportService.struct │ │ │ │ ├── ICarConnectionListener.struct │ │ │ │ ├── ICarInfo.struct │ │ │ │ ├── ICarOccupantZone.struct │ │ │ │ ├── ICarOccupantZoneCallback.struct │ │ │ │ ├── ICarProjection.struct │ │ │ │ ├── ICarProjectionCallback.struct │ │ │ │ ├── ICarProjectionKeyEventHandler.struct │ │ │ │ ├── ICarProjectionStatusListener.struct │ │ │ │ ├── ICarUserService.struct │ │ │ │ ├── IExperimentalCar.struct │ │ │ │ ├── IExperimentalCarHelper.struct │ │ │ │ ├── ILocationManagerProxy.struct │ │ │ │ ├── IPerUserCarService.struct │ │ │ │ ├── IUsbAoapSupportCheckService.struct │ │ │ │ ├── cluster │ │ │ │ │ ├── IInstrumentClusterManagerCallback.struct │ │ │ │ │ ├── IInstrumentClusterManagerService.struct │ │ │ │ │ └── renderer │ │ │ │ │ │ ├── IInstrumentCluster.struct │ │ │ │ │ │ ├── IInstrumentClusterCallback.struct │ │ │ │ │ │ ├── IInstrumentClusterHelper.struct │ │ │ │ │ │ └── IInstrumentClusterNavigation.struct │ │ │ │ ├── content │ │ │ │ │ └── pm │ │ │ │ │ │ ├── AppBlockingPackageInfo.struct │ │ │ │ │ │ ├── CarAppBlockingPolicy.struct │ │ │ │ │ │ ├── ICarAppBlockingPolicy.struct │ │ │ │ │ │ ├── ICarAppBlockingPolicySetter.struct │ │ │ │ │ │ └── ICarPackageManager.struct │ │ │ │ ├── diagnostic │ │ │ │ │ ├── CarDiagnosticEvent.struct │ │ │ │ │ ├── ICarDiagnostic.struct │ │ │ │ │ └── ICarDiagnosticEventListener.struct │ │ │ │ ├── drivingstate │ │ │ │ │ ├── CarDrivingStateEvent.struct │ │ │ │ │ ├── CarUxRestrictions.struct │ │ │ │ │ ├── CarUxRestrictionsConfiguration$RestrictionsPerSpeedRange.struct │ │ │ │ │ ├── CarUxRestrictionsConfiguration.struct │ │ │ │ │ ├── ICarDrivingState.struct │ │ │ │ │ ├── ICarDrivingStateChangeListener.struct │ │ │ │ │ ├── ICarUxRestrictionsChangeListener.struct │ │ │ │ │ └── ICarUxRestrictionsManager.struct │ │ │ │ ├── experimental │ │ │ │ │ ├── DriverAwarenessEvent.struct │ │ │ │ │ ├── DriverAwarenessSupplierConfig.struct │ │ │ │ │ ├── DriverDistractionChangeEvent.struct │ │ │ │ │ ├── IDriverAwarenessSupplier.struct │ │ │ │ │ ├── IDriverAwarenessSupplierCallback.struct │ │ │ │ │ ├── IDriverDistractionChangeListener.struct │ │ │ │ │ ├── IDriverDistractionManager.struct │ │ │ │ │ └── ITestDemoExperimental.struct │ │ │ │ ├── hardware │ │ │ │ │ ├── CarPropertyConfig.struct │ │ │ │ │ ├── CarPropertyValue.struct │ │ │ │ │ ├── CarSensorConfig.struct │ │ │ │ │ ├── CarSensorEvent.struct │ │ │ │ │ ├── ICarSensor.struct │ │ │ │ │ ├── ICarSensorEventListener.struct │ │ │ │ │ ├── power │ │ │ │ │ │ ├── ICarPower.struct │ │ │ │ │ │ └── ICarPowerStateListener.struct │ │ │ │ │ └── property │ │ │ │ │ │ ├── CarPropertyEvent.struct │ │ │ │ │ │ ├── ICarProperty.struct │ │ │ │ │ │ └── ICarPropertyEventListener.struct │ │ │ │ ├── input │ │ │ │ │ ├── ICarInput.struct │ │ │ │ │ ├── ICarInputCallback.struct │ │ │ │ │ ├── ICarInputListener.struct │ │ │ │ │ └── RotaryEvent.struct │ │ │ │ ├── media │ │ │ │ │ ├── CarAudioPatchHandle.struct │ │ │ │ │ ├── ICarAudio.struct │ │ │ │ │ ├── ICarMedia.struct │ │ │ │ │ ├── ICarMediaSourceListener.struct │ │ │ │ │ └── ICarVolumeCallback.struct │ │ │ │ ├── navigation │ │ │ │ │ └── CarNavigationInstrumentCluster.struct │ │ │ │ ├── occupantawareness │ │ │ │ │ ├── IOccupantAwarenessEventCallback.struct │ │ │ │ │ ├── IOccupantAwarenessManager.struct │ │ │ │ │ ├── OccupantAwarenessDetection.struct │ │ │ │ │ └── SystemStatusEvent.struct │ │ │ │ ├── projection │ │ │ │ │ ├── ProjectionStatus$MobileDevice.struct │ │ │ │ │ └── ProjectionStatus.struct │ │ │ │ ├── settings │ │ │ │ │ ├── ICarConfigurationManager.struct │ │ │ │ │ └── SpeedBumpConfiguration.struct │ │ │ │ ├── storagemonitoring │ │ │ │ │ ├── ICarStorageMonitoring.struct │ │ │ │ │ ├── IIoStatsListener.struct │ │ │ │ │ ├── IoStats.struct │ │ │ │ │ ├── IoStatsEntry.struct │ │ │ │ │ ├── WearEstimate.struct │ │ │ │ │ └── WearEstimateChange.struct │ │ │ │ ├── test │ │ │ │ │ └── ICarTest.struct │ │ │ │ ├── trust │ │ │ │ │ ├── ICarTrustAgentBleCallback.struct │ │ │ │ │ ├── ICarTrustAgentBleService.struct │ │ │ │ │ ├── ICarTrustAgentEnrollment.struct │ │ │ │ │ ├── ICarTrustAgentEnrollmentCallback.struct │ │ │ │ │ ├── ICarTrustAgentEnrolmentCallback.struct │ │ │ │ │ ├── ICarTrustAgentTokenRequestDelegate.struct │ │ │ │ │ ├── ICarTrustAgentTokenResponseCallback.struct │ │ │ │ │ ├── ICarTrustAgentUnlockCallback.struct │ │ │ │ │ └── TrustedDeviceInfo.struct │ │ │ │ ├── user │ │ │ │ │ ├── IUserNotice.struct │ │ │ │ │ ├── IUserNoticeUI.struct │ │ │ │ │ ├── UserIdentificationAssociationResponse.struct │ │ │ │ │ └── UserRemovalResult.struct │ │ │ │ ├── vms │ │ │ │ │ ├── IVmsBrokerService.struct │ │ │ │ │ ├── IVmsClientCallback.struct │ │ │ │ │ ├── IVmsPublisherClient.struct │ │ │ │ │ ├── IVmsPublisherService.struct │ │ │ │ │ ├── IVmsSubscriberClient.struct │ │ │ │ │ ├── IVmsSubscriberService.struct │ │ │ │ │ ├── VmsAssociatedLayer.struct │ │ │ │ │ ├── VmsAvailableLayers.struct │ │ │ │ │ ├── VmsLayer.struct │ │ │ │ │ ├── VmsLayerDependency.struct │ │ │ │ │ ├── VmsLayersOffering.struct │ │ │ │ │ ├── VmsProviderInfo.struct │ │ │ │ │ ├── VmsRegistrationInfo.struct │ │ │ │ │ └── VmsSubscriptionState.struct │ │ │ │ └── watchdog │ │ │ │ │ ├── ICarWatchdogService.struct │ │ │ │ │ └── ICarWatchdogServiceCallback.struct │ │ │ ├── companion │ │ │ │ ├── AssociationRequest.struct │ │ │ │ ├── ICompanionDeviceDiscoveryService.struct │ │ │ │ ├── ICompanionDeviceDiscoveryServiceCallback.struct │ │ │ │ ├── ICompanionDeviceManager.struct │ │ │ │ └── IFindDeviceCallback.struct │ │ │ ├── content │ │ │ │ ├── AutofillOptions.struct │ │ │ │ ├── ClipData.struct │ │ │ │ ├── ClipDescription.struct │ │ │ │ ├── ComponentName.struct │ │ │ │ ├── ContentCaptureOptions.struct │ │ │ │ ├── ContentValues.struct │ │ │ │ ├── IClipboard.struct │ │ │ │ ├── IContentService.struct │ │ │ │ ├── ICrossUserContentService.struct │ │ │ │ ├── IIntentReceiver.struct │ │ │ │ ├── IIntentSender.struct │ │ │ │ ├── IOnPrimaryClipChangedListener.struct │ │ │ │ ├── IRestrictionsManager.struct │ │ │ │ ├── ISyncAdapter.struct │ │ │ │ ├── ISyncAdapterUnsyncableAccountCallback.struct │ │ │ │ ├── ISyncContext.struct │ │ │ │ ├── ISyncServiceAdapter.struct │ │ │ │ ├── ISyncStatusObserver.struct │ │ │ │ ├── Intent$ShortcutIconResource.struct │ │ │ │ ├── Intent.struct │ │ │ │ ├── IntentFilter.struct │ │ │ │ ├── IntentSender.struct │ │ │ │ ├── LocusId.struct │ │ │ │ ├── PeriodicSync.struct │ │ │ │ ├── SyncAdapterType.struct │ │ │ │ ├── SyncInfo.struct │ │ │ │ ├── SyncRequest.struct │ │ │ │ ├── SyncResult.struct │ │ │ │ ├── SyncStats.struct │ │ │ │ ├── SyncStatusInfo.struct │ │ │ │ ├── integrity │ │ │ │ │ └── IAppIntegrityManager.struct │ │ │ │ ├── om │ │ │ │ │ ├── IOverlayManager.struct │ │ │ │ │ └── OverlayInfo.struct │ │ │ │ ├── pm │ │ │ │ │ ├── ActivityInfo.struct │ │ │ │ │ ├── ApplicationInfo.struct │ │ │ │ │ ├── ChangedPackages.struct │ │ │ │ │ ├── ConfigurationInfo.struct │ │ │ │ │ ├── DataLoaderParamsParcel.struct │ │ │ │ │ ├── FeatureGroupInfo.struct │ │ │ │ │ ├── FeatureInfo.struct │ │ │ │ │ ├── FileSystemControlParcel.struct │ │ │ │ │ ├── ICrossProfileApps.struct │ │ │ │ │ ├── IDataLoader.struct │ │ │ │ │ ├── IDataLoaderManager.struct │ │ │ │ │ ├── IDataLoaderStatusListener.struct │ │ │ │ │ ├── IDexModuleRegisterCallback.struct │ │ │ │ │ ├── ILauncherApps.struct │ │ │ │ │ ├── IOnAppsChangedListener.struct │ │ │ │ │ ├── IOnPermissionsChangeListener.struct │ │ │ │ │ ├── IOtaDexopt.struct │ │ │ │ │ ├── IPackageChangeObserver.struct │ │ │ │ │ ├── IPackageDataObserver.struct │ │ │ │ │ ├── IPackageDeleteObserver.struct │ │ │ │ │ ├── IPackageDeleteObserver2.struct │ │ │ │ │ ├── IPackageInstallObserver2.struct │ │ │ │ │ ├── IPackageInstaller.struct │ │ │ │ │ ├── IPackageInstallerCallback.struct │ │ │ │ │ ├── IPackageInstallerSession.struct │ │ │ │ │ ├── IPackageInstallerSessionFileSystemConnector.struct │ │ │ │ │ ├── IPackageManager.struct │ │ │ │ │ ├── IPackageManagerNative.struct │ │ │ │ │ ├── IPackageMoveObserver.struct │ │ │ │ │ ├── IPackageStatsObserver.struct │ │ │ │ │ ├── IPinItemRequest.struct │ │ │ │ │ ├── IShortcutChangeCallback.struct │ │ │ │ │ ├── IShortcutService.struct │ │ │ │ │ ├── InstallSourceInfo.struct │ │ │ │ │ ├── InstallationFileParcel.struct │ │ │ │ │ ├── InstantAppRequestInfo.struct │ │ │ │ │ ├── InstrumentationInfo.struct │ │ │ │ │ ├── KeySet.struct │ │ │ │ │ ├── ModuleInfo.struct │ │ │ │ │ ├── PackageChangeEvent.struct │ │ │ │ │ ├── PackageCleanItem.struct │ │ │ │ │ ├── PackageInfo.struct │ │ │ │ │ ├── PackageInfoLite.struct │ │ │ │ │ ├── PackageStats.struct │ │ │ │ │ ├── PathPermission.struct │ │ │ │ │ ├── PermissionGroupInfo.struct │ │ │ │ │ ├── PermissionInfo.struct │ │ │ │ │ ├── ProviderInfo.struct │ │ │ │ │ ├── ProviderInfoList.struct │ │ │ │ │ ├── ResolveInfo.struct │ │ │ │ │ ├── ServiceInfo.struct │ │ │ │ │ ├── SharedLibraryInfo.struct │ │ │ │ │ ├── ShortcutInfo.struct │ │ │ │ │ ├── ShortcutQueryWrapper.struct │ │ │ │ │ ├── Signature.struct │ │ │ │ │ ├── SigningInfo.struct │ │ │ │ │ ├── SuspendDialogInfo.struct │ │ │ │ │ ├── UserInfo.struct │ │ │ │ │ ├── VerifierDeviceIdentity.struct │ │ │ │ │ ├── VersionedPackage.struct │ │ │ │ │ ├── dex │ │ │ │ │ │ ├── IArtManager.struct │ │ │ │ │ │ └── ISnapshotRuntimeProfileCallback.struct │ │ │ │ │ └── permission │ │ │ │ │ │ ├── IRuntimePermissionPresenter.struct │ │ │ │ │ │ └── SplitPermissionInfoParcelable.struct │ │ │ │ ├── res │ │ │ │ │ ├── ColorStateList.struct │ │ │ │ │ ├── CompatibilityInfo.struct │ │ │ │ │ ├── Configuration.struct │ │ │ │ │ └── ObbInfo.struct │ │ │ │ └── rollback │ │ │ │ │ └── IRollbackManager.struct │ │ │ ├── database │ │ │ │ └── IContentObserver.struct │ │ │ ├── debug │ │ │ │ ├── IAdbManager.struct │ │ │ │ └── IAdbTransport.struct │ │ │ ├── dvr │ │ │ │ ├── IVirtualTouchpadService.struct │ │ │ │ ├── IVrComposer.struct │ │ │ │ ├── IVrComposerCallback.struct │ │ │ │ └── VirtualTouchpadService.struct │ │ │ ├── graphics │ │ │ │ ├── Bitmap.struct │ │ │ │ ├── GraphicBuffer.struct │ │ │ │ ├── Insets.struct │ │ │ │ ├── Point.struct │ │ │ │ ├── Rect.struct │ │ │ │ ├── Region.struct │ │ │ │ └── drawable │ │ │ │ │ └── Icon.struct │ │ │ ├── gsi │ │ │ │ ├── AvbPublicKey.struct │ │ │ │ ├── GsiProgress.struct │ │ │ │ ├── IGsiService.struct │ │ │ │ ├── IGsiServiceCallback.struct │ │ │ │ ├── IImageService.struct │ │ │ │ ├── IProgressCallback.struct │ │ │ │ └── MappedImage.struct │ │ │ ├── hardware │ │ │ │ ├── CameraInfo.struct │ │ │ │ ├── CameraStatus.struct │ │ │ │ ├── ICamera.struct │ │ │ │ ├── ICameraClient.struct │ │ │ │ ├── ICameraService.struct │ │ │ │ ├── ICameraServiceListener.struct │ │ │ │ ├── ICameraServiceProxy.struct │ │ │ │ ├── IConsumerIrService.struct │ │ │ │ ├── ISensorPrivacyListener.struct │ │ │ │ ├── ISensorPrivacyManager.struct │ │ │ │ ├── ISerialManager.struct │ │ │ │ ├── automotive │ │ │ │ │ └── occupant_awareness │ │ │ │ │ │ ├── DriverMonitoringDetection.struct │ │ │ │ │ │ ├── GazeDetection.struct │ │ │ │ │ │ ├── IOccupantAwareness.struct │ │ │ │ │ │ ├── IOccupantAwarenessClientCallback.struct │ │ │ │ │ │ ├── OccupantDetection.struct │ │ │ │ │ │ ├── OccupantDetections.struct │ │ │ │ │ │ └── PresenceDetection.struct │ │ │ │ ├── biometrics │ │ │ │ │ ├── BiometricSourceType.struct │ │ │ │ │ ├── IAuthService.struct │ │ │ │ │ ├── IBiometricAuthenticator.struct │ │ │ │ │ ├── IBiometricEnabledOnKeyguardCallback.struct │ │ │ │ │ ├── IBiometricPromptReceiver.struct │ │ │ │ │ ├── IBiometricService.struct │ │ │ │ │ ├── IBiometricServiceLockoutResetCallback.struct │ │ │ │ │ ├── IBiometricServiceReceiver.struct │ │ │ │ │ └── IBiometricServiceReceiverInternal.struct │ │ │ │ ├── camera2 │ │ │ │ │ ├── CaptureRequest.struct │ │ │ │ │ ├── ICameraDeviceCallbacks.struct │ │ │ │ │ ├── ICameraDeviceUser.struct │ │ │ │ │ ├── ICameraOfflineSession.struct │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── CameraMetadataNative.struct │ │ │ │ │ │ ├── CaptureResultExtras.struct │ │ │ │ │ │ └── PhysicalCaptureResultInfo.struct │ │ │ │ │ ├── params │ │ │ │ │ │ ├── OutputConfiguration.struct │ │ │ │ │ │ ├── SessionConfiguration.struct │ │ │ │ │ │ ├── VendorTagDescriptor.struct │ │ │ │ │ │ └── VendorTagDescriptorCache.struct │ │ │ │ │ └── utils │ │ │ │ │ │ ├── CameraIdAndSessionConfiguration.struct │ │ │ │ │ │ ├── ConcurrentCameraIdCombination.struct │ │ │ │ │ │ └── SubmitInfo.struct │ │ │ │ ├── citadel │ │ │ │ │ └── ICitadeld.struct │ │ │ │ ├── common │ │ │ │ │ └── NativeHandle.struct │ │ │ │ ├── display │ │ │ │ │ ├── BrightnessConfiguration.struct │ │ │ │ │ ├── BrightnessCorrection.struct │ │ │ │ │ ├── Curve.struct │ │ │ │ │ ├── IColorDisplayManager.struct │ │ │ │ │ ├── IDisplayManager.struct │ │ │ │ │ ├── IDisplayManagerCallback.struct │ │ │ │ │ ├── IVirtualDisplayCallback.struct │ │ │ │ │ ├── Time.struct │ │ │ │ │ ├── VirtualDisplayConfig.struct │ │ │ │ │ ├── WifiDisplay.struct │ │ │ │ │ ├── WifiDisplaySessionInfo.struct │ │ │ │ │ └── WifiDisplayStatus.struct │ │ │ │ ├── face │ │ │ │ │ ├── Face.struct │ │ │ │ │ ├── IFaceService.struct │ │ │ │ │ └── IFaceServiceReceiver.struct │ │ │ │ ├── fingerprint │ │ │ │ │ ├── Fingerprint.struct │ │ │ │ │ ├── IFingerprintClientActiveCallback.struct │ │ │ │ │ ├── IFingerprintService.struct │ │ │ │ │ ├── IFingerprintServiceLockoutResetCallback.struct │ │ │ │ │ └── IFingerprintServiceReceiver.struct │ │ │ │ ├── graphics │ │ │ │ │ └── common │ │ │ │ │ │ ├── Cta861_3.struct │ │ │ │ │ │ ├── ExtendableType.struct │ │ │ │ │ │ ├── HardwareBuffer.struct │ │ │ │ │ │ ├── HardwareBufferDescription.struct │ │ │ │ │ │ ├── PlaneLayout.struct │ │ │ │ │ │ ├── PlaneLayoutComponent.struct │ │ │ │ │ │ ├── Rect.struct │ │ │ │ │ │ ├── Smpte2086.struct │ │ │ │ │ │ └── XyColor.struct │ │ │ │ ├── hdmi │ │ │ │ │ ├── HdmiDeviceInfo.struct │ │ │ │ │ ├── HdmiHotplugEvent.struct │ │ │ │ │ ├── HdmiPortInfo.struct │ │ │ │ │ ├── IHdmiCecVolumeControlFeatureListener.struct │ │ │ │ │ ├── IHdmiControlCallback.struct │ │ │ │ │ ├── IHdmiControlService.struct │ │ │ │ │ ├── IHdmiControlStatusChangeListener.struct │ │ │ │ │ ├── IHdmiDeviceEventListener.struct │ │ │ │ │ ├── IHdmiHotplugEventListener.struct │ │ │ │ │ ├── IHdmiInputChangeListener.struct │ │ │ │ │ ├── IHdmiMhlVendorCommandListener.struct │ │ │ │ │ ├── IHdmiRecordListener.struct │ │ │ │ │ ├── IHdmiSystemAudioModeChangeListener.struct │ │ │ │ │ └── IHdmiVendorCommandListener.struct │ │ │ │ ├── identity │ │ │ │ │ ├── Certificate.struct │ │ │ │ │ ├── HardwareInformation.struct │ │ │ │ │ ├── IIdentityCredential.struct │ │ │ │ │ ├── IIdentityCredentialStore.struct │ │ │ │ │ ├── IWritableIdentityCredential.struct │ │ │ │ │ ├── RequestDataItem.struct │ │ │ │ │ ├── RequestNamespace.struct │ │ │ │ │ └── SecureAccessControlProfile.struct │ │ │ │ ├── input │ │ │ │ │ ├── IInputDevicesChangedListener.struct │ │ │ │ │ ├── IInputManager.struct │ │ │ │ │ ├── ITabletModeChangedListener.struct │ │ │ │ │ ├── InputDeviceIdentifier.struct │ │ │ │ │ ├── KeyboardLayout.struct │ │ │ │ │ └── TouchCalibration.struct │ │ │ │ ├── iris │ │ │ │ │ └── IIrisService.struct │ │ │ │ ├── keymaster │ │ │ │ │ ├── HardwareAuthToken.struct │ │ │ │ │ ├── Timestamp.struct │ │ │ │ │ └── VerificationToken.struct │ │ │ │ ├── light │ │ │ │ │ ├── HwLight.struct │ │ │ │ │ ├── HwLightState.struct │ │ │ │ │ └── ILights.struct │ │ │ │ ├── lights │ │ │ │ │ ├── ILightsManager.struct │ │ │ │ │ ├── Light.struct │ │ │ │ │ └── LightState.struct │ │ │ │ ├── location │ │ │ │ │ ├── ActivityChangedEvent.struct │ │ │ │ │ ├── ActivityRecognitionEvent.struct │ │ │ │ │ ├── ContextHubInfo.struct │ │ │ │ │ ├── ContextHubMessage.struct │ │ │ │ │ ├── GeofenceHardwareMonitorEvent.struct │ │ │ │ │ ├── GeofenceHardwareRequestParcelable.struct │ │ │ │ │ ├── IActivityRecognitionHardware.struct │ │ │ │ │ ├── IActivityRecognitionHardwareClient.struct │ │ │ │ │ ├── IActivityRecognitionHardwareSink.struct │ │ │ │ │ ├── IActivityRecognitionHardwareWatcher.struct │ │ │ │ │ ├── IContextHubCallback.struct │ │ │ │ │ ├── IContextHubClient.struct │ │ │ │ │ ├── IContextHubClientCallback.struct │ │ │ │ │ ├── IContextHubService.struct │ │ │ │ │ ├── IContextHubTransactionCallback.struct │ │ │ │ │ ├── IGeofenceHardware.struct │ │ │ │ │ ├── IGeofenceHardwareCallback.struct │ │ │ │ │ ├── IGeofenceHardwareMonitorCallback.struct │ │ │ │ │ ├── MemoryRegion.struct │ │ │ │ │ ├── NanoApp.struct │ │ │ │ │ ├── NanoAppBinary.struct │ │ │ │ │ ├── NanoAppFilter.struct │ │ │ │ │ ├── NanoAppInstanceInfo.struct │ │ │ │ │ ├── NanoAppMessage.struct │ │ │ │ │ └── NanoAppState.struct │ │ │ │ ├── power │ │ │ │ │ └── IPower.struct │ │ │ │ ├── radio │ │ │ │ │ ├── Announcement.struct │ │ │ │ │ ├── IAnnouncementListener.struct │ │ │ │ │ ├── ICloseHandle.struct │ │ │ │ │ ├── IRadioService.struct │ │ │ │ │ ├── ITuner.struct │ │ │ │ │ ├── ITunerCallback.struct │ │ │ │ │ ├── ProgramSelector$Identifier.struct │ │ │ │ │ └── ProgramSelector.struct │ │ │ │ ├── rebootescrow │ │ │ │ │ └── IRebootEscrow.struct │ │ │ │ ├── soundtrigger │ │ │ │ │ ├── IRecognitionStatusCallback.struct │ │ │ │ │ └── KeyphraseMetadata.struct │ │ │ │ ├── tests │ │ │ │ │ └── extension │ │ │ │ │ │ └── vibrator │ │ │ │ │ │ └── ICustomVibrator.struct │ │ │ │ ├── usb │ │ │ │ │ ├── IUsbManager.struct │ │ │ │ │ ├── IUsbSerialReader.struct │ │ │ │ │ ├── ParcelableUsbPort.struct │ │ │ │ │ ├── UsbAccessory.struct │ │ │ │ │ ├── UsbDevice.struct │ │ │ │ │ ├── UsbPort.struct │ │ │ │ │ └── UsbPortStatus.struct │ │ │ │ └── vibrator │ │ │ │ │ ├── CompositeEffect.struct │ │ │ │ │ ├── IVibrator.struct │ │ │ │ │ └── IVibratorCallback.struct │ │ │ ├── location │ │ │ │ ├── Address.struct │ │ │ │ ├── Country.struct │ │ │ │ ├── Criteria.struct │ │ │ │ ├── GeocoderParams.struct │ │ │ │ ├── Geofence.struct │ │ │ │ ├── GnssAntennaInfo$PhaseCenterOffset.struct │ │ │ │ ├── GnssAntennaInfo$SphericalCorrections.struct │ │ │ │ ├── GnssAntennaInfo.struct │ │ │ │ ├── GnssMeasurement.struct │ │ │ │ ├── GnssMeasurementCorrections.struct │ │ │ │ ├── GnssMeasurementsEvent.struct │ │ │ │ ├── GnssNavigationMessage.struct │ │ │ │ ├── GnssRequest.struct │ │ │ │ ├── IBatchedLocationCallback.struct │ │ │ │ ├── ICountryDetector.struct │ │ │ │ ├── ICountryListener.struct │ │ │ │ ├── IFusedGeofenceHardware.struct │ │ │ │ ├── IGeocodeProvider.struct │ │ │ │ ├── IGeofenceProvider.struct │ │ │ │ ├── IGnssAntennaInfoListener.struct │ │ │ │ ├── IGnssMeasurementsListener.struct │ │ │ │ ├── IGnssNavigationMessageListener.struct │ │ │ │ ├── IGnssStatusListener.struct │ │ │ │ ├── IGnssStatusProvider.struct │ │ │ │ ├── IGpsGeofenceHardware.struct │ │ │ │ ├── ILocationListener.struct │ │ │ │ ├── ILocationManager.struct │ │ │ │ ├── INetInitiatedListener.struct │ │ │ │ ├── Location.struct │ │ │ │ ├── LocationRequest.struct │ │ │ │ └── LocationTime.struct │ │ │ ├── lpdump │ │ │ │ └── ILpdump.struct │ │ │ ├── media │ │ │ │ ├── AudioAttributes.struct │ │ │ │ ├── AudioDeviceAttributes.struct │ │ │ │ ├── AudioFocusInfo.struct │ │ │ │ ├── AudioFormat.struct │ │ │ │ ├── AudioPlaybackConfiguration.struct │ │ │ │ ├── AudioRecordingConfiguration.struct │ │ │ │ ├── AudioRoutesInfo.struct │ │ │ │ ├── Controller2Link.struct │ │ │ │ ├── IAudioFocusDispatcher.struct │ │ │ │ ├── IAudioRecord.struct │ │ │ │ ├── IAudioRoutesObserver.struct │ │ │ │ ├── IAudioServerStateDispatcher.struct │ │ │ │ ├── IAudioService.struct │ │ │ │ ├── IAudioTrackCallback.struct │ │ │ │ ├── ICaptureStateListener.struct │ │ │ │ ├── IMediaController2.struct │ │ │ │ ├── IMediaExtractorUpdateService.struct │ │ │ │ ├── IMediaHTTPConnection.struct │ │ │ │ ├── IMediaHTTPService.struct │ │ │ │ ├── IMediaResourceMonitor.struct │ │ │ │ ├── IMediaRoute2ProviderService.struct │ │ │ │ ├── IMediaRoute2ProviderServiceCallback.struct │ │ │ │ ├── IMediaRouter2.struct │ │ │ │ ├── IMediaRouter2Manager.struct │ │ │ │ ├── IMediaRouterClient.struct │ │ │ │ ├── IMediaRouterService.struct │ │ │ │ ├── IMediaScannerListener.struct │ │ │ │ ├── IMediaScannerService.struct │ │ │ │ ├── IMediaSession2.struct │ │ │ │ ├── IMediaSession2Service.struct │ │ │ │ ├── IMediaTranscodingService.struct │ │ │ │ ├── IPlaybackConfigDispatcher.struct │ │ │ │ ├── IPlayer.struct │ │ │ │ ├── IRecordingConfigDispatcher.struct │ │ │ │ ├── IRemoteDisplayCallback.struct │ │ │ │ ├── IRemoteDisplayProvider.struct │ │ │ │ ├── IRemoteVolumeController.struct │ │ │ │ ├── IRemoteVolumeObserver.struct │ │ │ │ ├── IResourceManagerClient.struct │ │ │ │ ├── IResourceManagerService.struct │ │ │ │ ├── IRingtonePlayer.struct │ │ │ │ ├── ISessionTokensListener.struct │ │ │ │ ├── IStrategyPreferredDeviceDispatcher.struct │ │ │ │ ├── ITranscodingServiceClient.struct │ │ │ │ ├── IVolumeController.struct │ │ │ │ ├── MediaMetadata.struct │ │ │ │ ├── MediaResourceParcel.struct │ │ │ │ ├── MediaResourcePolicyParcel.struct │ │ │ │ ├── MediaRoute2Info.struct │ │ │ │ ├── MediaRoute2ProviderInfo.struct │ │ │ │ ├── MediaRouterClientState$RouteInfo.struct │ │ │ │ ├── MediaRouterClientState.struct │ │ │ │ ├── PlaybackParams.struct │ │ │ │ ├── Rating.struct │ │ │ │ ├── RemoteDisplayState$RemoteDisplayInfo.struct │ │ │ │ ├── RemoteDisplayState.struct │ │ │ │ ├── RouteDiscoveryPreference.struct │ │ │ │ ├── RoutingSessionInfo.struct │ │ │ │ ├── Session2Command.struct │ │ │ │ ├── Session2Token.struct │ │ │ │ ├── TranscodingJobParcel.struct │ │ │ │ ├── TranscodingRequestParcel.struct │ │ │ │ ├── TranscodingResultParcel.struct │ │ │ │ ├── VolumePolicy.struct │ │ │ │ ├── audio │ │ │ │ │ └── common │ │ │ │ │ │ ├── AudioConfig.struct │ │ │ │ │ │ └── AudioOffloadInfo.struct │ │ │ │ ├── audiopolicy │ │ │ │ │ ├── AudioPolicyConfig.struct │ │ │ │ │ ├── AudioProductStrategy$AudioAttributesGroup.struct │ │ │ │ │ ├── AudioProductStrategy.struct │ │ │ │ │ ├── AudioVolumeGroup.struct │ │ │ │ │ └── IAudioPolicyCallback.struct │ │ │ │ ├── eco │ │ │ │ │ ├── IECOService.struct │ │ │ │ │ ├── IECOServiceInfoListener.struct │ │ │ │ │ ├── IECOServiceStatsProvider.struct │ │ │ │ │ └── IECOSession.struct │ │ │ │ ├── midi │ │ │ │ │ ├── IBluetoothMidiService.struct │ │ │ │ │ ├── IMidiDeviceListener.struct │ │ │ │ │ ├── IMidiDeviceOpenCallback.struct │ │ │ │ │ ├── IMidiDeviceServer.struct │ │ │ │ │ ├── IMidiManager.struct │ │ │ │ │ ├── MidiDeviceInfo.struct │ │ │ │ │ └── MidiDeviceStatus.struct │ │ │ │ ├── projection │ │ │ │ │ ├── IMediaProjection.struct │ │ │ │ │ ├── IMediaProjectionCallback.struct │ │ │ │ │ ├── IMediaProjectionManager.struct │ │ │ │ │ ├── IMediaProjectionWatcherCallback.struct │ │ │ │ │ └── MediaProjectionInfo.struct │ │ │ │ ├── session │ │ │ │ │ ├── IActiveSessionsListener.struct │ │ │ │ │ ├── ICallback.struct │ │ │ │ │ ├── IOnMediaKeyEventDispatchedListener.struct │ │ │ │ │ ├── IOnMediaKeyEventSessionChangedListener.struct │ │ │ │ │ ├── IOnMediaKeyListener.struct │ │ │ │ │ ├── IOnVolumeKeyLongPressListener.struct │ │ │ │ │ ├── ISession.struct │ │ │ │ │ ├── ISession2TokensListener.struct │ │ │ │ │ ├── ISessionCallback.struct │ │ │ │ │ ├── ISessionController.struct │ │ │ │ │ ├── ISessionControllerCallback.struct │ │ │ │ │ ├── ISessionManager.struct │ │ │ │ │ ├── ParcelableVolumeInfo.struct │ │ │ │ │ └── PlaybackState.struct │ │ │ │ ├── soundtrigger │ │ │ │ │ ├── ISoundTriggerDetectionService.struct │ │ │ │ │ └── ISoundTriggerDetectionServiceClient.struct │ │ │ │ ├── soundtrigger_middleware │ │ │ │ │ ├── ConfidenceLevel.struct │ │ │ │ │ ├── ISoundTriggerCallback.struct │ │ │ │ │ ├── ISoundTriggerMiddlewareService.struct │ │ │ │ │ ├── ISoundTriggerModule.struct │ │ │ │ │ ├── ModelParameterRange.struct │ │ │ │ │ ├── Phrase.struct │ │ │ │ │ ├── PhraseRecognitionEvent.struct │ │ │ │ │ ├── PhraseRecognitionExtra.struct │ │ │ │ │ ├── PhraseSoundModel.struct │ │ │ │ │ ├── RecognitionConfig.struct │ │ │ │ │ ├── RecognitionEvent.struct │ │ │ │ │ ├── SoundModel.struct │ │ │ │ │ ├── SoundTriggerModuleDescriptor.struct │ │ │ │ │ └── SoundTriggerModuleProperties.struct │ │ │ │ └── tv │ │ │ │ │ ├── DvbDeviceInfo.struct │ │ │ │ │ ├── ITvInputClient.struct │ │ │ │ │ ├── ITvInputHardware.struct │ │ │ │ │ ├── ITvInputHardwareCallback.struct │ │ │ │ │ ├── ITvInputManager.struct │ │ │ │ │ ├── ITvInputManagerCallback.struct │ │ │ │ │ ├── ITvInputService.struct │ │ │ │ │ ├── ITvInputServiceCallback.struct │ │ │ │ │ ├── ITvInputSession.struct │ │ │ │ │ ├── ITvInputSessionCallback.struct │ │ │ │ │ ├── ITvRemoteProvider.struct │ │ │ │ │ ├── ITvRemoteServiceInput.struct │ │ │ │ │ ├── TvContentRatingSystemInfo.struct │ │ │ │ │ ├── TvInputHardwareInfo.struct │ │ │ │ │ ├── TvInputInfo.struct │ │ │ │ │ ├── TvStreamConfig.struct │ │ │ │ │ ├── TvTrackInfo.struct │ │ │ │ │ └── tunerresourcemanager │ │ │ │ │ ├── CasSessionRequest.struct │ │ │ │ │ ├── IResourcesReclaimListener.struct │ │ │ │ │ ├── ITunerResourceManager.struct │ │ │ │ │ ├── ResourceClientProfile.struct │ │ │ │ │ ├── TunerDemuxRequest.struct │ │ │ │ │ ├── TunerDescramblerRequest.struct │ │ │ │ │ ├── TunerFrontendInfo.struct │ │ │ │ │ ├── TunerFrontendRequest.struct │ │ │ │ │ └── TunerLnbRequest.struct │ │ │ ├── net │ │ │ │ ├── CaptivePortalData.struct │ │ │ │ ├── ConnectionInfo.struct │ │ │ │ ├── ConnectivityMetricsEvent.struct │ │ │ │ ├── DataStallReportParcelable.struct │ │ │ │ ├── DataUsageRequest.struct │ │ │ │ ├── DhcpInfo.struct │ │ │ │ ├── DhcpResultsParcelable.struct │ │ │ │ ├── ICaptivePortal.struct │ │ │ │ ├── IConnectivityDiagnosticsCallback.struct │ │ │ │ ├── IConnectivityManager.struct │ │ │ │ ├── IDnsResolver.struct │ │ │ │ ├── IEthernetManager.struct │ │ │ │ ├── IEthernetServiceListener.struct │ │ │ │ ├── IIntResultListener.struct │ │ │ │ ├── IIpConnectivityMetrics.struct │ │ │ │ ├── IIpMemoryStore.struct │ │ │ │ ├── IIpMemoryStoreCallbacks.struct │ │ │ │ ├── IIpSecService.struct │ │ │ │ ├── INetd.struct │ │ │ │ ├── INetdEventCallback.struct │ │ │ │ ├── INetdUnsolicitedEventListener.struct │ │ │ │ ├── INetworkManagementEventObserver.struct │ │ │ │ ├── INetworkMonitor.struct │ │ │ │ ├── INetworkMonitorCallbacks.struct │ │ │ │ ├── INetworkPolicyListener.struct │ │ │ │ ├── INetworkPolicyManager.struct │ │ │ │ ├── INetworkRecommendationProvider.struct │ │ │ │ ├── INetworkScoreCache.struct │ │ │ │ ├── INetworkScoreService.struct │ │ │ │ ├── INetworkStackConnector.struct │ │ │ │ ├── INetworkStackStatusCallback.struct │ │ │ │ ├── INetworkStatsService.struct │ │ │ │ ├── INetworkStatsSession.struct │ │ │ │ ├── ISocketKeepaliveCallback.struct │ │ │ │ ├── ITestNetworkManager.struct │ │ │ │ ├── ITetheredInterfaceCallback.struct │ │ │ │ ├── ITetheringConnector.struct │ │ │ │ ├── ITetheringEventCallback.struct │ │ │ │ ├── ITetheringStatsProvider.struct │ │ │ │ ├── InformationElementParcelable.struct │ │ │ │ ├── InitialConfigurationParcelable.struct │ │ │ │ ├── InterfaceConfiguration.struct │ │ │ │ ├── InterfaceConfigurationParcel.struct │ │ │ │ ├── IpConfiguration.struct │ │ │ │ ├── IpPrefix.struct │ │ │ │ ├── IpSecConfig.struct │ │ │ │ ├── IpSecSpiResponse.struct │ │ │ │ ├── IpSecTransformResponse.struct │ │ │ │ ├── IpSecTunnelInterfaceResponse.struct │ │ │ │ ├── IpSecUdpEncapResponse.struct │ │ │ │ ├── Layer2InformationParcelable.struct │ │ │ │ ├── Layer2PacketParcelable.struct │ │ │ │ ├── LinkAddress.struct │ │ │ │ ├── LinkProperties.struct │ │ │ │ ├── MacAddress.struct │ │ │ │ ├── MarkMaskParcel.struct │ │ │ │ ├── NattKeepalivePacketDataParcelable.struct │ │ │ │ ├── Network.struct │ │ │ │ ├── NetworkAgentConfig.struct │ │ │ │ ├── NetworkCapabilities.struct │ │ │ │ ├── NetworkInfo.struct │ │ │ │ ├── NetworkKey.struct │ │ │ │ ├── NetworkMisc.struct │ │ │ │ ├── NetworkPolicy.struct │ │ │ │ ├── NetworkQuotaInfo.struct │ │ │ │ ├── NetworkRequest.struct │ │ │ │ ├── NetworkScorerAppData.struct │ │ │ │ ├── NetworkState.struct │ │ │ │ ├── NetworkStats.struct │ │ │ │ ├── NetworkStatsHistory.struct │ │ │ │ ├── NetworkTemplate.struct │ │ │ │ ├── NetworkTestResultParcelable.struct │ │ │ │ ├── PrivateDnsConfigParcel.struct │ │ │ │ ├── ProvisioningConfigurationParcelable.struct │ │ │ │ ├── ProxyInfo.struct │ │ │ │ ├── ResolverHostsParcel.struct │ │ │ │ ├── ResolverOptionsParcel.struct │ │ │ │ ├── ResolverParamsParcel.struct │ │ │ │ ├── RouteInfo.struct │ │ │ │ ├── RouteInfoParcel.struct │ │ │ │ ├── RssiCurve.struct │ │ │ │ ├── ScanResultInfoParcelable.struct │ │ │ │ ├── ScoredNetwork.struct │ │ │ │ ├── StaticIpConfiguration.struct │ │ │ │ ├── TcpKeepalivePacketDataParcelable.struct │ │ │ │ ├── TestNetworkInterface.struct │ │ │ │ ├── TetherConfigParcel.struct │ │ │ │ ├── TetherOffloadRuleParcel.struct │ │ │ │ ├── TetherStatesParcel.struct │ │ │ │ ├── TetherStatsParcel.struct │ │ │ │ ├── TetheredClient$AddressInfo.struct │ │ │ │ ├── TetheredClient.struct │ │ │ │ ├── TetheringCallbackStartedParcel.struct │ │ │ │ ├── TetheringConfigurationParcel.struct │ │ │ │ ├── TetheringRequestParcel.struct │ │ │ │ ├── UidRange.struct │ │ │ │ ├── UidRangeParcel.struct │ │ │ │ ├── Uri$HierarchicalUri.struct │ │ │ │ ├── Uri$OpaqueUri.struct │ │ │ │ ├── Uri$StringUri.struct │ │ │ │ ├── Uri.struct │ │ │ │ ├── apf │ │ │ │ │ └── ApfCapabilities.struct │ │ │ │ ├── dhcp │ │ │ │ │ ├── DhcpLeaseParcelable.struct │ │ │ │ │ ├── DhcpServingParamsParcel.struct │ │ │ │ │ ├── IDhcpEventCallbacks.struct │ │ │ │ │ ├── IDhcpServer.struct │ │ │ │ │ └── IDhcpServerCallbacks.struct │ │ │ │ ├── ip │ │ │ │ │ ├── IIpClient.struct │ │ │ │ │ └── IIpClientCallbacks.struct │ │ │ │ ├── ipmemorystore │ │ │ │ │ ├── Blob.struct │ │ │ │ │ ├── IOnBlobRetrievedListener.struct │ │ │ │ │ ├── IOnL2KeyResponseListener.struct │ │ │ │ │ ├── IOnNetworkAttributesRetrievedListener.struct │ │ │ │ │ ├── IOnSameL3NetworkResponseListener.struct │ │ │ │ │ ├── IOnStatusAndCountListener.struct │ │ │ │ │ ├── IOnStatusListener.struct │ │ │ │ │ ├── NetworkAttributesParcelable.struct │ │ │ │ │ ├── SameL3NetworkResponseParcelable.struct │ │ │ │ │ └── StatusParcelable.struct │ │ │ │ ├── lowpan │ │ │ │ │ ├── ILowpanEnergyScanCallback.struct │ │ │ │ │ ├── ILowpanInterface.struct │ │ │ │ │ ├── ILowpanInterfaceListener.struct │ │ │ │ │ ├── ILowpanManager.struct │ │ │ │ │ ├── ILowpanManagerListener.struct │ │ │ │ │ ├── ILowpanNetScanCallback.struct │ │ │ │ │ ├── LowpanBeaconInfo.struct │ │ │ │ │ ├── LowpanChannelInfo.struct │ │ │ │ │ ├── LowpanCredential.struct │ │ │ │ │ ├── LowpanIdentity.struct │ │ │ │ │ └── LowpanProvision.struct │ │ │ │ ├── metrics │ │ │ │ │ └── INetdEventListener.struct │ │ │ │ ├── netstats │ │ │ │ │ └── provider │ │ │ │ │ │ ├── INetworkStatsProvider.struct │ │ │ │ │ │ └── INetworkStatsProviderCallback.struct │ │ │ │ ├── nsd │ │ │ │ │ └── INsdManager.struct │ │ │ │ ├── sip │ │ │ │ │ ├── ISipService.struct │ │ │ │ │ ├── ISipSession.struct │ │ │ │ │ ├── ISipSessionListener.struct │ │ │ │ │ └── SipProfile.struct │ │ │ │ └── wifi │ │ │ │ │ ├── IActionListener.struct │ │ │ │ │ ├── IApInterface.struct │ │ │ │ │ ├── IApInterfaceEventCallback.struct │ │ │ │ │ ├── IClientInterface.struct │ │ │ │ │ ├── IDppCallback.struct │ │ │ │ │ ├── IInterfaceEventCallback.struct │ │ │ │ │ ├── ILocalOnlyHotspotCallback.struct │ │ │ │ │ ├── INetworkRequestMatchCallback.struct │ │ │ │ │ ├── INetworkRequestUserSelectionCallback.struct │ │ │ │ │ ├── IOnWifiActivityEnergyInfoListener.struct │ │ │ │ │ ├── IOnWifiUsabilityStatsListener.struct │ │ │ │ │ ├── IPnoScanEvent.struct │ │ │ │ │ ├── IScanEvent.struct │ │ │ │ │ ├── IScanResultsCallback.struct │ │ │ │ │ ├── IScanResultsListener.struct │ │ │ │ │ ├── IScoreUpdateObserver.struct │ │ │ │ │ ├── ISoftApCallback.struct │ │ │ │ │ ├── ISuggestionConnectionStatusListener.struct │ │ │ │ │ ├── ITrafficStateCallback.struct │ │ │ │ │ ├── ITxPacketCountListener.struct │ │ │ │ │ ├── IWifiConnectedNetworkScorer.struct │ │ │ │ │ ├── IWifiManager.struct │ │ │ │ │ ├── IWifiScanner.struct │ │ │ │ │ ├── IWifiScannerImpl.struct │ │ │ │ │ ├── IWificond.struct │ │ │ │ │ ├── ScanResult.struct │ │ │ │ │ ├── SoftApCapability.struct │ │ │ │ │ ├── SoftApConfiguration.struct │ │ │ │ │ ├── SoftApInfo.struct │ │ │ │ │ ├── SupplicantState.struct │ │ │ │ │ ├── WifiActivityEnergyInfo.struct │ │ │ │ │ ├── WifiApiServiceInfo.struct │ │ │ │ │ ├── WifiClient.struct │ │ │ │ │ ├── WifiConfiguration.struct │ │ │ │ │ ├── WifiInfo.struct │ │ │ │ │ ├── WifiNetworkSuggestion.struct │ │ │ │ │ ├── WifiSsid.struct │ │ │ │ │ ├── WifiUsabilityStatsEntry.struct │ │ │ │ │ ├── aware │ │ │ │ │ ├── Characteristics.struct │ │ │ │ │ ├── ConfigRequest.struct │ │ │ │ │ ├── IWifiAwareDiscoverySessionCallback.struct │ │ │ │ │ ├── IWifiAwareEventCallback.struct │ │ │ │ │ ├── IWifiAwareMacAddressProvider.struct │ │ │ │ │ ├── IWifiAwareManager.struct │ │ │ │ │ ├── PublishConfig.struct │ │ │ │ │ └── SubscribeConfig.struct │ │ │ │ │ ├── hotspot2 │ │ │ │ │ ├── IProvisioningCallback.struct │ │ │ │ │ ├── OsuProvider.struct │ │ │ │ │ └── PasspointConfiguration.struct │ │ │ │ │ ├── nl80211 │ │ │ │ │ ├── DeviceWiphyCapabilities.struct │ │ │ │ │ ├── IApInterface.struct │ │ │ │ │ ├── IApInterfaceEventCallback.struct │ │ │ │ │ ├── IClientInterface.struct │ │ │ │ │ ├── IInterfaceEventCallback.struct │ │ │ │ │ ├── IPnoScanEvent.struct │ │ │ │ │ ├── IScanEvent.struct │ │ │ │ │ ├── ISendMgmtFrameEvent.struct │ │ │ │ │ ├── IWifiScannerImpl.struct │ │ │ │ │ ├── IWificond.struct │ │ │ │ │ ├── NativeScanResult.struct │ │ │ │ │ ├── NativeWifiClient.struct │ │ │ │ │ ├── PnoSettings.struct │ │ │ │ │ └── SingleScanSettings.struct │ │ │ │ │ ├── p2p │ │ │ │ │ └── IWifiP2pManager.struct │ │ │ │ │ └── rtt │ │ │ │ │ ├── IRttCallback.struct │ │ │ │ │ ├── IWifiRttManager.struct │ │ │ │ │ ├── RangingRequest.struct │ │ │ │ │ └── RangingResult.struct │ │ │ ├── nfc │ │ │ │ ├── BeamShareData.struct │ │ │ │ ├── IAppCallback.struct │ │ │ │ ├── INfcAdapter.struct │ │ │ │ ├── INfcAdapterExtras.struct │ │ │ │ ├── INfcCardEmulation.struct │ │ │ │ ├── INfcDta.struct │ │ │ │ ├── INfcFCardEmulation.struct │ │ │ │ ├── INfcTag.struct │ │ │ │ ├── INfcUnlockHandler.struct │ │ │ │ ├── ITagRemovedCallback.struct │ │ │ │ ├── NdefMessage.struct │ │ │ │ ├── NdefRecord.struct │ │ │ │ ├── Tag.struct │ │ │ │ ├── TechListParcel.struct │ │ │ │ ├── TransceiveResult.struct │ │ │ │ └── cardemulation │ │ │ │ │ ├── AidGroup.struct │ │ │ │ │ ├── ApduServiceInfo.struct │ │ │ │ │ └── NfcFServiceInfo.struct │ │ │ ├── os │ │ │ │ ├── BatteryProperties.struct │ │ │ │ ├── BatteryProperty.struct │ │ │ │ ├── BatterySaverPolicyConfig.struct │ │ │ │ ├── Bundle.struct │ │ │ │ ├── CoolingDevice.struct │ │ │ │ ├── CpuUsageInfo.struct │ │ │ │ ├── ExternalVibration.struct │ │ │ │ ├── IAidlTest.struct │ │ │ │ ├── IBatteryPropertiesListener.struct │ │ │ │ ├── IBatteryPropertiesRegistrar.struct │ │ │ │ ├── IBinderThreadPriorityService.struct │ │ │ │ ├── IBinderWorkSourceNestedService.struct │ │ │ │ ├── IBinderWorkSourceService.struct │ │ │ │ ├── ICancellationSignal.struct │ │ │ │ ├── IClientCallback.struct │ │ │ │ ├── IDeviceIdentifiersPolicyService.struct │ │ │ │ ├── IDeviceIdleController.struct │ │ │ │ ├── IDumpstate.struct │ │ │ │ ├── IDumpstateListener.struct │ │ │ │ ├── IDumpstateToken.struct │ │ │ │ ├── IExternalVibrationController.struct │ │ │ │ ├── IExternalVibratorService.struct │ │ │ │ ├── IHardwarePropertiesManager.struct │ │ │ │ ├── IIdmap2.struct │ │ │ │ ├── IIncidentAuthListener.struct │ │ │ │ ├── IIncidentCompanion.struct │ │ │ │ ├── IIncidentDumpCallback.struct │ │ │ │ ├── IIncidentManager.struct │ │ │ │ ├── IIncidentReportStatusListener.struct │ │ │ │ ├── IInstalld.struct │ │ │ │ ├── IMaintenanceActivityListener.struct │ │ │ │ ├── IMessenger.struct │ │ │ │ ├── INetworkActivityListener.struct │ │ │ │ ├── INetworkManagementService.struct │ │ │ │ ├── IPendingIntentRef.struct │ │ │ │ ├── IPerfProfd.struct │ │ │ │ ├── IPermissionController.struct │ │ │ │ ├── IPowerManager.struct │ │ │ │ ├── IProcessInfoService.struct │ │ │ │ ├── IProgressListener.struct │ │ │ │ ├── IPullAtomCallback.struct │ │ │ │ ├── IPullAtomResultReceiver.struct │ │ │ │ ├── IRecoverySystem.struct │ │ │ │ ├── IRecoverySystemProgressListener.struct │ │ │ │ ├── IRemoteCallback.struct │ │ │ │ ├── ISchedulingPolicyService.struct │ │ │ │ ├── IServiceCallback.struct │ │ │ │ ├── IServiceManager.struct │ │ │ │ ├── ISomeService.struct │ │ │ │ ├── IStatsCompanionService.struct │ │ │ │ ├── IStatsManager.struct │ │ │ │ ├── IStatsManagerService.struct │ │ │ │ ├── IStatsd.struct │ │ │ │ ├── IStoraged.struct │ │ │ │ ├── ISystemConfig.struct │ │ │ │ ├── ISystemUpdateManager.struct │ │ │ │ ├── IThermalEventListener.struct │ │ │ │ ├── IThermalService.struct │ │ │ │ ├── IThermalStatusListener.struct │ │ │ │ ├── IUpdateEngine.struct │ │ │ │ ├── IUpdateEngineCallback.struct │ │ │ │ ├── IUpdateLock.struct │ │ │ │ ├── IUserManager.struct │ │ │ │ ├── IUserRestrictionsListener.struct │ │ │ │ ├── IVibratorService.struct │ │ │ │ ├── IVibratorStateListener.struct │ │ │ │ ├── IVold.struct │ │ │ │ ├── IVoldListener.struct │ │ │ │ ├── IVoldMountCallback.struct │ │ │ │ ├── IVoldTaskListener.struct │ │ │ │ ├── IncidentReportArgs.struct │ │ │ │ ├── LocaleList.struct │ │ │ │ ├── Message.struct │ │ │ │ ├── Messenger.struct │ │ │ │ ├── OverlayablePolicy.struct │ │ │ │ ├── ParcelFileDescriptor.struct │ │ │ │ ├── ParcelUuid.struct │ │ │ │ ├── PatternMatcher.struct │ │ │ │ ├── PersistableBundle.struct │ │ │ │ ├── PowerSaveState.struct │ │ │ │ ├── RemoteCallback.struct │ │ │ │ ├── ResultReceiver.struct │ │ │ │ ├── SharedMemory.struct │ │ │ │ ├── StatsDimensionsValue.struct │ │ │ │ ├── StatsDimensionsValueParcel.struct │ │ │ │ ├── StatsLogEventWrapper.struct │ │ │ │ ├── Temperature.struct │ │ │ │ ├── UserHandle.struct │ │ │ │ ├── VibrationAttributes.struct │ │ │ │ ├── VibrationEffect$Composed.struct │ │ │ │ ├── VibrationEffect$OneShot.struct │ │ │ │ ├── VibrationEffect$Prebaked.struct │ │ │ │ ├── VibrationEffect$PrimitiveEffect.struct │ │ │ │ ├── VibrationEffect$Waveform.struct │ │ │ │ ├── VibrationEffect.struct │ │ │ │ ├── WorkSource$WorkChain.struct │ │ │ │ ├── WorkSource.struct │ │ │ │ ├── connectivity │ │ │ │ │ ├── CellularBatteryStats.struct │ │ │ │ │ ├── GpsBatteryStats.struct │ │ │ │ │ ├── WifiActivityEnergyInfo.struct │ │ │ │ │ └── WifiBatteryStats.struct │ │ │ │ ├── cts │ │ │ │ │ ├── ExceptionalParcelable.struct │ │ │ │ │ ├── IEmptyService.struct │ │ │ │ │ ├── IParcelExceptionService.struct │ │ │ │ │ ├── IParcelFileDescriptorPeer.struct │ │ │ │ │ ├── ISeccompIsolatedService.struct │ │ │ │ │ ├── ISecondary.struct │ │ │ │ │ └── ISharedMemoryService.struct │ │ │ │ ├── health │ │ │ │ │ └── HealthStatsParceler.struct │ │ │ │ ├── image │ │ │ │ │ └── IDynamicSystemService.struct │ │ │ │ ├── incremental │ │ │ │ │ ├── IIncrementalService.struct │ │ │ │ │ ├── IIncrementalServiceConnector.struct │ │ │ │ │ ├── IStorageHealthListener.struct │ │ │ │ │ ├── IncrementalFileSystemControlParcel.struct │ │ │ │ │ ├── IncrementalNewFileParams.struct │ │ │ │ │ └── StorageHealthCheckParams.struct │ │ │ │ ├── storage │ │ │ │ │ ├── CrateMetadata.struct │ │ │ │ │ ├── DiskInfo.struct │ │ │ │ │ ├── IObbActionListener.struct │ │ │ │ │ ├── IStorageEventListener.struct │ │ │ │ │ ├── IStorageManager.struct │ │ │ │ │ ├── IStorageShutdownObserver.struct │ │ │ │ │ ├── StorageVolume.struct │ │ │ │ │ ├── VolumeInfo.struct │ │ │ │ │ └── VolumeRecord.struct │ │ │ │ └── storaged │ │ │ │ │ └── IStoragedPrivate.struct │ │ │ ├── permission │ │ │ │ ├── IOnPermissionsChangeListener.struct │ │ │ │ ├── IPermissionController.struct │ │ │ │ ├── IPermissionManager.struct │ │ │ │ └── cts │ │ │ │ │ └── appthataccesseslocation │ │ │ │ │ └── IAccessLocationOnCommand.struct │ │ │ ├── pixel │ │ │ │ └── perfstatsd │ │ │ │ │ └── IPerfstatsdPrivate.struct │ │ │ ├── print │ │ │ │ ├── ILayoutResultCallback.struct │ │ │ │ ├── IPrintDocumentAdapter.struct │ │ │ │ ├── IPrintDocumentAdapterObserver.struct │ │ │ │ ├── IPrintJobStateChangeListener.struct │ │ │ │ ├── IPrintManager.struct │ │ │ │ ├── IPrintServicesChangeListener.struct │ │ │ │ ├── IPrintSpooler.struct │ │ │ │ ├── IPrintSpoolerCallbacks.struct │ │ │ │ ├── IPrintSpoolerClient.struct │ │ │ │ ├── IPrinterDiscoveryObserver.struct │ │ │ │ ├── IWriteResultCallback.struct │ │ │ │ ├── PageRange.struct │ │ │ │ ├── PrintAttributes.struct │ │ │ │ ├── PrintDocumentInfo.struct │ │ │ │ ├── PrintJobId.struct │ │ │ │ ├── PrintJobInfo.struct │ │ │ │ └── PrinterId.struct │ │ │ ├── printservice │ │ │ │ ├── IPrintService.struct │ │ │ │ ├── IPrintServiceClient.struct │ │ │ │ ├── PrintServiceInfo.struct │ │ │ │ └── recommendation │ │ │ │ │ ├── IRecommendationService.struct │ │ │ │ │ ├── IRecommendationServiceCallbacks.struct │ │ │ │ │ ├── IRecommendationsChangeListener.struct │ │ │ │ │ └── RecommendationInfo.struct │ │ │ ├── se │ │ │ │ └── omapi │ │ │ │ │ ├── ISecureElementChannel.struct │ │ │ │ │ ├── ISecureElementListener.struct │ │ │ │ │ ├── ISecureElementReader.struct │ │ │ │ │ ├── ISecureElementService.struct │ │ │ │ │ └── ISecureElementSession.struct │ │ │ ├── security │ │ │ │ ├── IConfirmationPromptCallback.struct │ │ │ │ ├── IFileIntegrityService.struct │ │ │ │ ├── IKeyChainAliasCallback.struct │ │ │ │ ├── IKeyChainService.struct │ │ │ │ ├── IKeystoreService.struct │ │ │ │ ├── KeystoreArguments.struct │ │ │ │ ├── cts │ │ │ │ │ ├── CVE_2021_0327 │ │ │ │ │ │ └── IBadProvider.struct │ │ │ │ │ ├── IBinderExchange.struct │ │ │ │ │ ├── IIsolatedService.struct │ │ │ │ │ └── activity │ │ │ │ │ │ └── ISecureRandomService.struct │ │ │ │ ├── identity │ │ │ │ │ ├── AccessControlProfileParcel.struct │ │ │ │ │ ├── AuthKeyParcel.struct │ │ │ │ │ ├── EntryNamespaceParcel.struct │ │ │ │ │ ├── EntryParcel.struct │ │ │ │ │ ├── GetEntriesResultParcel.struct │ │ │ │ │ ├── ICredential.struct │ │ │ │ │ ├── ICredentialStore.struct │ │ │ │ │ ├── ICredentialStoreFactory.struct │ │ │ │ │ ├── IWritableCredential.struct │ │ │ │ │ ├── RequestEntryParcel.struct │ │ │ │ │ ├── RequestNamespaceParcel.struct │ │ │ │ │ ├── ResultEntryParcel.struct │ │ │ │ │ ├── ResultNamespaceParcel.struct │ │ │ │ │ └── SecurityHardwareInfoParcel.struct │ │ │ │ ├── keymaster │ │ │ │ │ ├── ExportResult.struct │ │ │ │ │ ├── IKeyAttestationApplicationIdProvider.struct │ │ │ │ │ ├── KeyAttestationApplicationId.struct │ │ │ │ │ ├── KeyAttestationPackageInfo.struct │ │ │ │ │ ├── KeyCharacteristics.struct │ │ │ │ │ ├── KeymasterArgument.struct │ │ │ │ │ ├── KeymasterArguments.struct │ │ │ │ │ ├── KeymasterBlob.struct │ │ │ │ │ ├── KeymasterCertificateChain.struct │ │ │ │ │ └── OperationResult.struct │ │ │ │ └── keystore │ │ │ │ │ ├── ICredstoreTokenCallback.struct │ │ │ │ │ ├── IKeystoreCertificateChainCallback.struct │ │ │ │ │ ├── IKeystoreExportKeyCallback.struct │ │ │ │ │ ├── IKeystoreKeyCharacteristicsCallback.struct │ │ │ │ │ ├── IKeystoreOperationResultCallback.struct │ │ │ │ │ ├── IKeystoreResponseCallback.struct │ │ │ │ │ ├── IKeystoreService.struct │ │ │ │ │ ├── KeystoreResponse.struct │ │ │ │ │ ├── ParcelableKeyGenParameterSpec.struct │ │ │ │ │ └── recovery │ │ │ │ │ ├── KeyChainProtectionParams.struct │ │ │ │ │ ├── KeyChainSnapshot.struct │ │ │ │ │ ├── RecoveryCertPath.struct │ │ │ │ │ └── WrappedApplicationKey.struct │ │ │ ├── service │ │ │ │ ├── appprediction │ │ │ │ │ └── IPredictionService.struct │ │ │ │ ├── attention │ │ │ │ │ ├── IAttentionCallback.struct │ │ │ │ │ └── IAttentionService.struct │ │ │ │ ├── autofill │ │ │ │ │ ├── Dataset$DatasetFieldFilter.struct │ │ │ │ │ ├── Dataset.struct │ │ │ │ │ ├── FillEventHistory.struct │ │ │ │ │ ├── FillRequest.struct │ │ │ │ │ ├── FillResponse.struct │ │ │ │ │ ├── IAutoFillService.struct │ │ │ │ │ ├── IAutofillFieldClassificationService.struct │ │ │ │ │ ├── IFillCallback.struct │ │ │ │ │ ├── IInlineSuggestionRenderService.struct │ │ │ │ │ ├── IInlineSuggestionUi.struct │ │ │ │ │ ├── IInlineSuggestionUiCallback.struct │ │ │ │ │ ├── ISaveCallback.struct │ │ │ │ │ ├── ISurfacePackageResultCallback.struct │ │ │ │ │ ├── InlinePresentation.struct │ │ │ │ │ ├── SaveRequest.struct │ │ │ │ │ ├── UserData.struct │ │ │ │ │ └── augmented │ │ │ │ │ │ ├── IAugmentedAutofillService.struct │ │ │ │ │ │ └── IFillCallback.struct │ │ │ │ ├── carrier │ │ │ │ │ ├── CarrierIdentifier.struct │ │ │ │ │ ├── IApnSourceService.struct │ │ │ │ │ ├── ICarrierMessagingCallback.struct │ │ │ │ │ ├── ICarrierMessagingClientService.struct │ │ │ │ │ ├── ICarrierMessagingService.struct │ │ │ │ │ ├── ICarrierService.struct │ │ │ │ │ └── MessagePdu.struct │ │ │ │ ├── chooser │ │ │ │ │ ├── ChooserTarget.struct │ │ │ │ │ ├── IChooserTargetResult.struct │ │ │ │ │ └── IChooserTargetService.struct │ │ │ │ ├── contentcapture │ │ │ │ │ ├── ActivityEvent.struct │ │ │ │ │ ├── FlushMetrics.struct │ │ │ │ │ ├── IContentCaptureService.struct │ │ │ │ │ ├── IContentCaptureServiceCallback.struct │ │ │ │ │ ├── IDataShareCallback.struct │ │ │ │ │ ├── IDataShareReadAdapter.struct │ │ │ │ │ └── SnapshotData.struct │ │ │ │ ├── contentsuggestions │ │ │ │ │ └── IContentSuggestionsService.struct │ │ │ │ ├── controls │ │ │ │ │ ├── Control.struct │ │ │ │ │ ├── IControlsActionCallback.struct │ │ │ │ │ ├── IControlsProvider.struct │ │ │ │ │ ├── IControlsSubscriber.struct │ │ │ │ │ ├── IControlsSubscription.struct │ │ │ │ │ ├── actions │ │ │ │ │ │ └── ControlActionWrapper.struct │ │ │ │ │ └── templates │ │ │ │ │ │ └── ControlTemplateWrapper.struct │ │ │ │ ├── dreams │ │ │ │ │ ├── IDreamManager.struct │ │ │ │ │ └── IDreamService.struct │ │ │ │ ├── euicc │ │ │ │ │ ├── DownloadSubscriptionResult.struct │ │ │ │ │ ├── EuiccProfileInfo.struct │ │ │ │ │ ├── GetDefaultDownloadableSubscriptionListResult.struct │ │ │ │ │ ├── GetDownloadableSubscriptionMetadataResult.struct │ │ │ │ │ ├── GetEuiccProfileInfoListResult.struct │ │ │ │ │ ├── IDeleteSubscriptionCallback.struct │ │ │ │ │ ├── IDownloadSubscriptionCallback.struct │ │ │ │ │ ├── IEraseSubscriptionsCallback.struct │ │ │ │ │ ├── IEuiccService.struct │ │ │ │ │ ├── IEuiccServiceDumpResultCallback.struct │ │ │ │ │ ├── IGetDefaultDownloadableSubscriptionListCallback.struct │ │ │ │ │ ├── IGetDownloadableSubscriptionMetadataCallback.struct │ │ │ │ │ ├── IGetEidCallback.struct │ │ │ │ │ ├── IGetEuiccInfoCallback.struct │ │ │ │ │ ├── IGetEuiccProfileInfoListCallback.struct │ │ │ │ │ ├── IGetOtaStatusCallback.struct │ │ │ │ │ ├── IOtaStatusChangedCallback.struct │ │ │ │ │ ├── IRetainSubscriptionsForFactoryResetCallback.struct │ │ │ │ │ ├── ISwitchToSubscriptionCallback.struct │ │ │ │ │ └── IUpdateSubscriptionNicknameCallback.struct │ │ │ │ ├── gatekeeper │ │ │ │ │ ├── GateKeeperResponse.struct │ │ │ │ │ └── IGateKeeperService.struct │ │ │ │ ├── media │ │ │ │ │ ├── IMediaBrowserService.struct │ │ │ │ │ └── IMediaBrowserServiceCallbacks.struct │ │ │ │ ├── notification │ │ │ │ │ ├── Adjustment.struct │ │ │ │ │ ├── Condition.struct │ │ │ │ │ ├── IConditionListener.struct │ │ │ │ │ ├── IConditionProvider.struct │ │ │ │ │ ├── INotificationListener.struct │ │ │ │ │ ├── IStatusBarNotificationHolder.struct │ │ │ │ │ ├── NotificationRankingUpdate.struct │ │ │ │ │ ├── NotificationStats.struct │ │ │ │ │ ├── StatusBarNotification.struct │ │ │ │ │ ├── ZenModeConfig$ZenRule.struct │ │ │ │ │ └── ZenModeConfig.struct │ │ │ │ ├── oemlock │ │ │ │ │ └── IOemLockService.struct │ │ │ │ ├── persistentdata │ │ │ │ │ └── IPersistentDataBlockService.struct │ │ │ │ ├── quickaccesswallet │ │ │ │ │ ├── GetWalletCardsError.struct │ │ │ │ │ ├── GetWalletCardsRequest.struct │ │ │ │ │ ├── GetWalletCardsResponse.struct │ │ │ │ │ ├── IQuickAccessWalletService.struct │ │ │ │ │ ├── IQuickAccessWalletServiceCallbacks.struct │ │ │ │ │ ├── SelectWalletCardRequest.struct │ │ │ │ │ ├── WalletServiceEvent.struct │ │ │ │ │ └── WalletServiceEventListenerRequest.struct │ │ │ │ ├── quicksettings │ │ │ │ │ ├── IQSService.struct │ │ │ │ │ ├── IQSTileService.struct │ │ │ │ │ └── Tile.struct │ │ │ │ ├── resolver │ │ │ │ │ ├── IResolverRankerResult.struct │ │ │ │ │ ├── IResolverRankerService.struct │ │ │ │ │ └── ResolverTarget.struct │ │ │ │ ├── settings │ │ │ │ │ └── suggestions │ │ │ │ │ │ ├── ISuggestionService.struct │ │ │ │ │ │ └── Suggestion.struct │ │ │ │ ├── storage │ │ │ │ │ └── IExternalStorageService.struct │ │ │ │ ├── textclassifier │ │ │ │ │ ├── ITextClassificationCallback.struct │ │ │ │ │ ├── ITextClassifierCallback.struct │ │ │ │ │ ├── ITextClassifierService.struct │ │ │ │ │ ├── ITextLinksCallback.struct │ │ │ │ │ └── ITextSelectionCallback.struct │ │ │ │ ├── trust │ │ │ │ │ ├── ITrustAgentService.struct │ │ │ │ │ └── ITrustAgentServiceCallback.struct │ │ │ │ ├── voice │ │ │ │ │ ├── IVoiceInteractionService.struct │ │ │ │ │ ├── IVoiceInteractionSession.struct │ │ │ │ │ └── IVoiceInteractionSessionService.struct │ │ │ │ ├── vr │ │ │ │ │ ├── IPersistentVrStateCallbacks.struct │ │ │ │ │ ├── IVrListener.struct │ │ │ │ │ ├── IVrManager.struct │ │ │ │ │ └── IVrStateCallbacks.struct │ │ │ │ ├── wallpaper │ │ │ │ │ ├── IWallpaperConnection.struct │ │ │ │ │ ├── IWallpaperEngine.struct │ │ │ │ │ └── IWallpaperService.struct │ │ │ │ └── watchdog │ │ │ │ │ └── IExplicitHealthCheckService.struct │ │ │ ├── speech │ │ │ │ ├── IRecognitionListener.struct │ │ │ │ ├── IRecognitionService.struct │ │ │ │ └── tts │ │ │ │ │ ├── ITextToSpeechCallback.struct │ │ │ │ │ ├── ITextToSpeechService.struct │ │ │ │ │ └── Voice.struct │ │ │ ├── support │ │ │ │ ├── customtabs │ │ │ │ │ ├── ICustomTabsCallback.struct │ │ │ │ │ ├── ICustomTabsService.struct │ │ │ │ │ └── IPostMessageService.struct │ │ │ │ ├── mediacompat │ │ │ │ │ └── testlib │ │ │ │ │ │ └── ITestHelperForServiceApp.struct │ │ │ │ └── v4 │ │ │ │ │ ├── app │ │ │ │ │ └── INotificationSideChannel.struct │ │ │ │ │ ├── media │ │ │ │ │ ├── MediaDescriptionCompat.struct │ │ │ │ │ ├── MediaMetadataCompat.struct │ │ │ │ │ ├── RatingCompat.struct │ │ │ │ │ └── session │ │ │ │ │ │ ├── IMediaControllerCallback.struct │ │ │ │ │ │ ├── IMediaSession.struct │ │ │ │ │ │ ├── ParcelableVolumeInfo.struct │ │ │ │ │ │ └── PlaybackStateCompat.struct │ │ │ │ │ └── os │ │ │ │ │ └── IResultReceiver.struct │ │ │ ├── system │ │ │ │ └── suspend │ │ │ │ │ ├── ISuspendCallback.struct │ │ │ │ │ ├── ISuspendControlService.struct │ │ │ │ │ └── WakeLockInfo.struct │ │ │ ├── telecom │ │ │ │ ├── CallAudioState.struct │ │ │ │ ├── ConnectionRequest.struct │ │ │ │ ├── DisconnectCause.struct │ │ │ │ ├── ParcelableCall.struct │ │ │ │ ├── ParcelableConference.struct │ │ │ │ ├── ParcelableConnection.struct │ │ │ │ ├── PhoneAccount.struct │ │ │ │ ├── PhoneAccountHandle.struct │ │ │ │ ├── PhoneAccountSuggestion.struct │ │ │ │ ├── StatusHints.struct │ │ │ │ ├── TelecomAnalytics$SessionTiming.struct │ │ │ │ ├── TelecomAnalytics.struct │ │ │ │ ├── VideoProfile$CameraCapabilities.struct │ │ │ │ ├── VideoProfile.struct │ │ │ │ └── cts │ │ │ │ │ ├── api29incallservice │ │ │ │ │ └── ICtsApi29InCallServiceControl.struct │ │ │ │ │ ├── carmodetestapp │ │ │ │ │ └── ICtsCarModeInCallServiceControl.struct │ │ │ │ │ ├── redirectiontestapp │ │ │ │ │ └── ICtsCallRedirectionServiceController.struct │ │ │ │ │ ├── screeningtestapp │ │ │ │ │ └── ICallScreeningControl.struct │ │ │ │ │ └── thirdptyincallservice │ │ │ │ │ └── ICtsThirdPartyInCallServiceControl.struct │ │ │ ├── telephony │ │ │ │ ├── AvailableNetworkInfo.struct │ │ │ │ ├── BarringInfo$BarringServiceInfo.struct │ │ │ │ ├── BarringInfo.struct │ │ │ │ ├── CallAttributes.struct │ │ │ │ ├── CallForwardingInfo.struct │ │ │ │ ├── CallQuality.struct │ │ │ │ ├── CarrierRestrictionRules.struct │ │ │ │ ├── CellIdentity.struct │ │ │ │ ├── CellInfo.struct │ │ │ │ ├── ClientRequestStats.struct │ │ │ │ ├── DataConnectionRealTimeInfo.struct │ │ │ │ ├── ICellBroadcastService.struct │ │ │ │ ├── ICellInfoCallback.struct │ │ │ │ ├── INetworkService.struct │ │ │ │ ├── INetworkServiceCallback.struct │ │ │ │ ├── IccOpenLogicalChannelResponse.struct │ │ │ │ ├── ImsiEncryptionInfo.struct │ │ │ │ ├── ModemActivityInfo.struct │ │ │ │ ├── ModemInfo.struct │ │ │ │ ├── NeighboringCellInfo.struct │ │ │ │ ├── NetworkRegistrationInfo.struct │ │ │ │ ├── NetworkRegistrationState.struct │ │ │ │ ├── NetworkScanRequest.struct │ │ │ │ ├── PhoneCapability.struct │ │ │ │ ├── PhoneNumberRange.struct │ │ │ │ ├── PhysicalChannelConfig.struct │ │ │ │ ├── PreciseCallState.struct │ │ │ │ ├── PreciseDataConnectionState.struct │ │ │ │ ├── RadioAccessFamily.struct │ │ │ │ ├── RadioAccessSpecifier.struct │ │ │ │ ├── ServiceState.struct │ │ │ │ ├── SignalStrength.struct │ │ │ │ ├── SubscriptionInfo.struct │ │ │ │ ├── SubscriptionPlan.struct │ │ │ │ ├── TelephonyDisplayInfo.struct │ │ │ │ ├── TelephonyHistogram.struct │ │ │ │ ├── UiccAccessRule.struct │ │ │ │ ├── UiccCardInfo.struct │ │ │ │ ├── UiccSlotInfo.struct │ │ │ │ ├── VisualVoicemailSmsFilterSettings.struct │ │ │ │ ├── VoLteServiceState.struct │ │ │ │ ├── cdma │ │ │ │ │ └── CdmaSmsCbProgramData.struct │ │ │ │ ├── cts │ │ │ │ │ ├── embmstestapp │ │ │ │ │ │ ├── ICtsDownloadMiddlewareControl.struct │ │ │ │ │ │ ├── ICtsGroupCallMiddlewareControl.struct │ │ │ │ │ │ └── ICtsStreamingMiddlewareControl.struct │ │ │ │ │ ├── externalimsservice │ │ │ │ │ │ └── ITestExternalImsService.struct │ │ │ │ │ └── locationaccessingapp │ │ │ │ │ │ └── ICtsLocationAccessControl.struct │ │ │ │ ├── data │ │ │ │ │ ├── ApnSetting.struct │ │ │ │ │ ├── DataCallResponse.struct │ │ │ │ │ ├── DataProfile.struct │ │ │ │ │ ├── IDataService.struct │ │ │ │ │ ├── IDataServiceCallback.struct │ │ │ │ │ ├── IQualifiedNetworksService.struct │ │ │ │ │ └── IQualifiedNetworksServiceCallback.struct │ │ │ │ ├── emergency │ │ │ │ │ └── EmergencyNumber.struct │ │ │ │ ├── euicc │ │ │ │ │ ├── DownloadableSubscription.struct │ │ │ │ │ ├── EuiccInfo.struct │ │ │ │ │ ├── EuiccNotification.struct │ │ │ │ │ └── EuiccRulesAuthTable.struct │ │ │ │ ├── ims │ │ │ │ │ ├── ImsCallForwardInfo.struct │ │ │ │ │ ├── ImsCallProfile.struct │ │ │ │ │ ├── ImsConferenceState.struct │ │ │ │ │ ├── ImsExternalCallState.struct │ │ │ │ │ ├── ImsReasonInfo.struct │ │ │ │ │ ├── ImsSsData.struct │ │ │ │ │ ├── ImsSsInfo.struct │ │ │ │ │ ├── ImsStreamMediaProfile.struct │ │ │ │ │ ├── ImsSuppServiceNotification.struct │ │ │ │ │ ├── RcsContactUceCapability.struct │ │ │ │ │ ├── aidl │ │ │ │ │ │ ├── IImsCallSessionListener.struct │ │ │ │ │ │ ├── IImsCapabilityCallback.struct │ │ │ │ │ │ ├── IImsConfig.struct │ │ │ │ │ │ ├── IImsConfigCallback.struct │ │ │ │ │ │ ├── IImsMmTelFeature.struct │ │ │ │ │ │ ├── IImsMmTelListener.struct │ │ │ │ │ │ ├── IImsRcsController.struct │ │ │ │ │ │ ├── IImsRcsFeature.struct │ │ │ │ │ │ ├── IImsRegistration.struct │ │ │ │ │ │ ├── IImsRegistrationCallback.struct │ │ │ │ │ │ ├── IImsServiceController.struct │ │ │ │ │ │ ├── IImsServiceControllerListener.struct │ │ │ │ │ │ ├── IImsSmsListener.struct │ │ │ │ │ │ ├── IRcsFeatureListener.struct │ │ │ │ │ │ └── IRcsUceControllerCallback.struct │ │ │ │ │ ├── feature │ │ │ │ │ │ └── CapabilityChangeRequest.struct │ │ │ │ │ └── stub │ │ │ │ │ │ └── ImsFeatureConfiguration.struct │ │ │ │ └── mbms │ │ │ │ │ ├── DownloadRequest.struct │ │ │ │ │ ├── FileInfo.struct │ │ │ │ │ ├── FileServiceInfo.struct │ │ │ │ │ ├── IDownloadProgressListener.struct │ │ │ │ │ ├── IDownloadStatusListener.struct │ │ │ │ │ ├── IGroupCallCallback.struct │ │ │ │ │ ├── IMbmsDownloadSessionCallback.struct │ │ │ │ │ ├── IMbmsGroupCallSessionCallback.struct │ │ │ │ │ ├── IMbmsStreamingSessionCallback.struct │ │ │ │ │ ├── IStreamingServiceCallback.struct │ │ │ │ │ ├── StreamingServiceInfo.struct │ │ │ │ │ └── vendor │ │ │ │ │ ├── IMbmsDownloadService.struct │ │ │ │ │ ├── IMbmsGroupCallService.struct │ │ │ │ │ └── IMbmsStreamingService.struct │ │ │ ├── tests │ │ │ │ └── binder │ │ │ │ │ └── IBenchmark.struct │ │ │ ├── text │ │ │ │ └── style │ │ │ │ │ └── SuggestionSpan.struct │ │ │ ├── tpm_manager │ │ │ │ ├── ITpmManagerClient.struct │ │ │ │ ├── ITpmNvram.struct │ │ │ │ └── ITpmOwnership.struct │ │ │ ├── trunks │ │ │ │ ├── ITrunks.struct │ │ │ │ └── ITrunksClient.struct │ │ │ ├── util │ │ │ │ ├── IRemoteMemoryIntArray.struct │ │ │ │ ├── MemoryIntArray.struct │ │ │ │ ├── MergedConfiguration.struct │ │ │ │ └── StatsEventParcel.struct │ │ │ ├── vendor │ │ │ │ └── powerstats │ │ │ │ │ ├── IPixelPowerStatsCallback.struct │ │ │ │ │ ├── IPixelPowerStatsProvider.struct │ │ │ │ │ └── StateResidencyData.struct │ │ │ ├── view │ │ │ │ ├── AppTransitionAnimationSpec.struct │ │ │ │ ├── DisplayInfo.struct │ │ │ │ ├── DragEvent.struct │ │ │ │ ├── IAppTransitionAnimationSpecsFuture.struct │ │ │ │ ├── IApplicationToken.struct │ │ │ │ ├── IDisplayFoldListener.struct │ │ │ │ ├── IDisplayWindowInsetsController.struct │ │ │ │ ├── IDisplayWindowListener.struct │ │ │ │ ├── IDisplayWindowRotationCallback.struct │ │ │ │ ├── IDisplayWindowRotationController.struct │ │ │ │ ├── IDockedStackListener.struct │ │ │ │ ├── IGraphicsStats.struct │ │ │ │ ├── IGraphicsStatsCallback.struct │ │ │ │ ├── IInputFilter.struct │ │ │ │ ├── IInputFilterHost.struct │ │ │ │ ├── IInputMonitorHost.struct │ │ │ │ ├── IOnKeyguardExitResult.struct │ │ │ │ ├── IPinnedStackController.struct │ │ │ │ ├── IPinnedStackListener.struct │ │ │ │ ├── IRecentsAnimationController.struct │ │ │ │ ├── IRecentsAnimationRunner.struct │ │ │ │ ├── IRemoteAnimationFinishedCallback.struct │ │ │ │ ├── IRemoteAnimationRunner.struct │ │ │ │ ├── IRotationWatcher.struct │ │ │ │ ├── IScrollCaptureClient.struct │ │ │ │ ├── IScrollCaptureController.struct │ │ │ │ ├── ISystemGestureExclusionListener.struct │ │ │ │ ├── IWallpaperVisibilityListener.struct │ │ │ │ ├── IWindow.struct │ │ │ │ ├── IWindowFocusObserver.struct │ │ │ │ ├── IWindowId.struct │ │ │ │ ├── IWindowManager.struct │ │ │ │ ├── IWindowSession.struct │ │ │ │ ├── IWindowSessionCallback.struct │ │ │ │ ├── InputChannel.struct │ │ │ │ ├── InputDevice.struct │ │ │ │ ├── InputEvent.struct │ │ │ │ ├── InputMonitor.struct │ │ │ │ ├── InsetsSourceControl.struct │ │ │ │ ├── InsetsState.struct │ │ │ │ ├── KeyCharacterMap.struct │ │ │ │ ├── KeyEvent.struct │ │ │ │ ├── MagnificationSpec.struct │ │ │ │ ├── MotionEvent.struct │ │ │ │ ├── PointerIcon.struct │ │ │ │ ├── RemoteAnimationAdapter.struct │ │ │ │ ├── RemoteAnimationDefinition$RemoteAnimationAdapterEntry.struct │ │ │ │ ├── RemoteAnimationDefinition.struct │ │ │ │ ├── RemoteAnimationTarget.struct │ │ │ │ ├── Surface.struct │ │ │ │ ├── SurfaceControl$Transaction.struct │ │ │ │ ├── SurfaceControl.struct │ │ │ │ ├── VerifiedInputEvent.struct │ │ │ │ ├── WindowAnimationFrameStats.struct │ │ │ │ ├── WindowContentFrameStats.struct │ │ │ │ ├── accessibility │ │ │ │ │ ├── AccessibilityEvent.struct │ │ │ │ │ ├── AccessibilityNodeInfo$AccessibilityAction.struct │ │ │ │ │ ├── AccessibilityNodeInfo$TouchDelegateInfo.struct │ │ │ │ │ ├── AccessibilityNodeInfo.struct │ │ │ │ │ ├── AccessibilityWindowInfo$WindowListSparseArray.struct │ │ │ │ │ ├── AccessibilityWindowInfo.struct │ │ │ │ │ ├── IAccessibilityEmbeddedConnection.struct │ │ │ │ │ ├── IAccessibilityInteractionConnection.struct │ │ │ │ │ ├── IAccessibilityInteractionConnectionCallback.struct │ │ │ │ │ ├── IAccessibilityManager.struct │ │ │ │ │ ├── IAccessibilityManagerClient.struct │ │ │ │ │ ├── IWindowMagnificationConnection.struct │ │ │ │ │ └── IWindowMagnificationConnectionCallback.struct │ │ │ │ ├── autofill │ │ │ │ │ ├── AutofillId.struct │ │ │ │ │ ├── AutofillValue.struct │ │ │ │ │ ├── IAugmentedAutofillManagerClient.struct │ │ │ │ │ ├── IAutoFillManager.struct │ │ │ │ │ ├── IAutoFillManagerClient.struct │ │ │ │ │ └── IAutofillWindowPresenter.struct │ │ │ │ ├── contentcapture │ │ │ │ │ ├── ContentCaptureCondition.struct │ │ │ │ │ ├── ContentCaptureContext.struct │ │ │ │ │ ├── DataRemovalRequest.struct │ │ │ │ │ ├── DataShareRequest.struct │ │ │ │ │ ├── IContentCaptureDirectManager.struct │ │ │ │ │ ├── IContentCaptureManager.struct │ │ │ │ │ └── IDataShareWriteAdapter.struct │ │ │ │ ├── inputmethod │ │ │ │ │ ├── CompletionInfo.struct │ │ │ │ │ ├── CorrectionInfo.struct │ │ │ │ │ ├── CursorAnchorInfo.struct │ │ │ │ │ ├── EditorInfo.struct │ │ │ │ │ ├── ExtractedText.struct │ │ │ │ │ ├── ExtractedTextRequest.struct │ │ │ │ │ ├── InlineSuggestionsRequest.struct │ │ │ │ │ ├── InlineSuggestionsResponse.struct │ │ │ │ │ ├── InputBinding.struct │ │ │ │ │ ├── InputContentInfo.struct │ │ │ │ │ ├── InputMethodInfo.struct │ │ │ │ │ ├── InputMethodSubtype.struct │ │ │ │ │ └── cts │ │ │ │ │ │ └── util │ │ │ │ │ │ └── IWindowFocusStealer.struct │ │ │ │ ├── textclassifier │ │ │ │ │ ├── EntityConfidence.struct │ │ │ │ │ ├── SelectionEvent.struct │ │ │ │ │ ├── TextClassification$Request.struct │ │ │ │ │ ├── TextClassification.struct │ │ │ │ │ ├── TextClassificationContext.struct │ │ │ │ │ ├── TextClassificationSessionId.struct │ │ │ │ │ ├── TextClassifierEvent$ConversationActionsEvent.struct │ │ │ │ │ ├── TextClassifierEvent$LanguageDetectionEvent.struct │ │ │ │ │ ├── TextClassifierEvent$TextLinkifyEvent.struct │ │ │ │ │ ├── TextClassifierEvent$TextSelectionEvent.struct │ │ │ │ │ ├── TextClassifierEvent.struct │ │ │ │ │ ├── TextLinks$Request.struct │ │ │ │ │ ├── TextLinks$TextLink.struct │ │ │ │ │ ├── TextLinks.struct │ │ │ │ │ ├── TextSelection$Request.struct │ │ │ │ │ └── TextSelection.struct │ │ │ │ └── textservice │ │ │ │ │ ├── SentenceSuggestionsInfo.struct │ │ │ │ │ ├── SpellCheckerInfo.struct │ │ │ │ │ ├── SpellCheckerSubtype.struct │ │ │ │ │ ├── SuggestionsInfo.struct │ │ │ │ │ └── TextInfo.struct │ │ │ ├── webkit │ │ │ │ ├── IWebViewUpdateService.struct │ │ │ │ ├── WebViewProviderInfo.struct │ │ │ │ └── WebViewProviderResponse.struct │ │ │ ├── widget │ │ │ │ └── RemoteViews.struct │ │ │ └── window │ │ │ │ ├── DisplayAreaInfo.struct │ │ │ │ ├── IDisplayAreaOrganizer.struct │ │ │ │ ├── IDisplayAreaOrganizerController.struct │ │ │ │ ├── ITaskOrganizer.struct │ │ │ │ ├── ITaskOrganizerController.struct │ │ │ │ ├── IWindowContainerToken.struct │ │ │ │ ├── IWindowContainerTransactionCallback.struct │ │ │ │ ├── IWindowOrganizerController.struct │ │ │ │ ├── WindowContainerToken.struct │ │ │ │ ├── WindowContainerTransaction$Change.struct │ │ │ │ ├── WindowContainerTransaction$HierarchyOp.struct │ │ │ │ └── WindowContainerTransaction.struct │ │ │ ├── another_package │ │ │ └── IFaz.struct │ │ │ ├── classPaths.txt │ │ │ ├── com │ │ │ ├── android │ │ │ │ ├── bips │ │ │ │ │ ├── jni │ │ │ │ │ │ └── SizeD.struct │ │ │ │ │ └── render │ │ │ │ │ │ └── IPdfRender.struct │ │ │ │ ├── car │ │ │ │ │ ├── broadcastradio │ │ │ │ │ │ └── support │ │ │ │ │ │ │ └── Program.struct │ │ │ │ │ ├── companiondevicesupport │ │ │ │ │ │ └── api │ │ │ │ │ │ │ ├── external │ │ │ │ │ │ │ ├── AssociatedDevice.struct │ │ │ │ │ │ │ ├── CompanionDevice.struct │ │ │ │ │ │ │ ├── IConnectedDeviceManager.struct │ │ │ │ │ │ │ ├── IConnectionCallback.struct │ │ │ │ │ │ │ ├── IDeviceAssociationCallback.struct │ │ │ │ │ │ │ └── IDeviceCallback.struct │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── association │ │ │ │ │ │ │ ├── IAssociatedDeviceManager.struct │ │ │ │ │ │ │ └── IAssociationCallback.struct │ │ │ │ │ │ │ └── trust │ │ │ │ │ │ │ ├── ITrustedDeviceAgentDelegate.struct │ │ │ │ │ │ │ ├── ITrustedDeviceCallback.struct │ │ │ │ │ │ │ ├── ITrustedDeviceEnrollmentCallback.struct │ │ │ │ │ │ │ ├── ITrustedDeviceManager.struct │ │ │ │ │ │ │ └── TrustedDevice.struct │ │ │ │ │ ├── keventreader │ │ │ │ │ │ ├── IEventCallback.struct │ │ │ │ │ │ ├── IEventProvider.struct │ │ │ │ │ │ └── KeypressEvent.struct │ │ │ │ │ ├── procfsinspector │ │ │ │ │ │ ├── IProcfsInspector.struct │ │ │ │ │ │ └── ProcessInfo.struct │ │ │ │ │ ├── radio │ │ │ │ │ │ ├── audio │ │ │ │ │ │ │ └── IPlaybackStateListener.struct │ │ │ │ │ │ ├── bands │ │ │ │ │ │ │ ├── ProgramType.struct │ │ │ │ │ │ │ └── RegionConfig.struct │ │ │ │ │ │ └── service │ │ │ │ │ │ │ ├── IRadioAppCallback.struct │ │ │ │ │ │ │ ├── IRadioAppService.struct │ │ │ │ │ │ │ ├── IRadioCallback.struct │ │ │ │ │ │ │ ├── IRadioManager.struct │ │ │ │ │ │ │ └── ITuneCallback.struct │ │ │ │ │ └── setupwizardlib │ │ │ │ │ │ ├── IInitialLockSetupService.struct │ │ │ │ │ │ └── LockConfig.struct │ │ │ │ ├── compatibility │ │ │ │ │ └── common │ │ │ │ │ │ └── util │ │ │ │ │ │ └── devicepolicy │ │ │ │ │ │ └── provisioning │ │ │ │ │ │ └── IBooleanCallback.struct │ │ │ │ ├── cts │ │ │ │ │ ├── IBinderPermissionTestService.struct │ │ │ │ │ ├── appdataisolation │ │ │ │ │ │ └── appa │ │ │ │ │ │ │ └── IIsolatedService.struct │ │ │ │ │ ├── blob │ │ │ │ │ │ └── ICommandReceiver.struct │ │ │ │ │ ├── comp │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ ├── deviceowner │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ ├── net │ │ │ │ │ │ └── hostside │ │ │ │ │ │ │ ├── IMyService.struct │ │ │ │ │ │ │ ├── INetworkCallback.struct │ │ │ │ │ │ │ ├── INetworkStateObserver.struct │ │ │ │ │ │ │ └── IRemoteSocketFactory.struct │ │ │ │ │ └── verifier │ │ │ │ │ │ ├── managedprovisioning │ │ │ │ │ │ └── ICrossUserService.struct │ │ │ │ │ │ └── projection │ │ │ │ │ │ └── IProjectionService.struct │ │ │ │ ├── development │ │ │ │ │ └── IRemoteService.struct │ │ │ │ ├── dialer │ │ │ │ │ └── simulator │ │ │ │ │ │ └── service │ │ │ │ │ │ └── ISimulatorService.struct │ │ │ │ ├── emailcommon │ │ │ │ │ ├── provider │ │ │ │ │ │ └── Policy.struct │ │ │ │ │ └── service │ │ │ │ │ │ ├── HostAuthCompat.struct │ │ │ │ │ │ ├── IAccountService.struct │ │ │ │ │ │ ├── IEmailService.struct │ │ │ │ │ │ ├── IEmailServiceCallback.struct │ │ │ │ │ │ ├── IPolicyService.struct │ │ │ │ │ │ └── SearchParams.struct │ │ │ │ ├── frameworks │ │ │ │ │ ├── coretests │ │ │ │ │ │ └── aidl │ │ │ │ │ │ │ ├── IBinderProxyCountingService.struct │ │ │ │ │ │ │ ├── IBpcCallbackObserver.struct │ │ │ │ │ │ │ ├── IBpcTestAppCmdService.struct │ │ │ │ │ │ │ ├── IBpcTestServiceCmdService.struct │ │ │ │ │ │ │ ├── ICmdCallback.struct │ │ │ │ │ │ │ ├── ICmdReceiver.struct │ │ │ │ │ │ │ └── ITestRemoteCallback.struct │ │ │ │ │ └── perftests │ │ │ │ │ │ └── am │ │ │ │ │ │ └── util │ │ │ │ │ │ ├── ICommandReceiver.struct │ │ │ │ │ │ └── ITimeReceiverCallback.struct │ │ │ │ ├── ims │ │ │ │ │ ├── IRcsPresenceListener.struct │ │ │ │ │ ├── ImsConfigListener.struct │ │ │ │ │ └── internal │ │ │ │ │ │ ├── IImsCallSession.struct │ │ │ │ │ │ ├── IImsCallSessionListener.struct │ │ │ │ │ │ ├── IImsConfig.struct │ │ │ │ │ │ ├── IImsEcbm.struct │ │ │ │ │ │ ├── IImsEcbmListener.struct │ │ │ │ │ │ ├── IImsExternalCallStateListener.struct │ │ │ │ │ │ ├── IImsFeatureStatusCallback.struct │ │ │ │ │ │ ├── IImsMMTelFeature.struct │ │ │ │ │ │ ├── IImsMultiEndpoint.struct │ │ │ │ │ │ ├── IImsRcsFeature.struct │ │ │ │ │ │ ├── IImsRegistrationListener.struct │ │ │ │ │ │ ├── IImsService.struct │ │ │ │ │ │ ├── IImsServiceController.struct │ │ │ │ │ │ ├── IImsServiceFeatureCallback.struct │ │ │ │ │ │ ├── IImsStreamMediaSession.struct │ │ │ │ │ │ ├── IImsUt.struct │ │ │ │ │ │ ├── IImsUtListener.struct │ │ │ │ │ │ ├── IImsVideoCallCallback.struct │ │ │ │ │ │ ├── IImsVideoCallProvider.struct │ │ │ │ │ │ ├── IRcsPresence.struct │ │ │ │ │ │ ├── IRcsService.struct │ │ │ │ │ │ └── uce │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── CapInfo.struct │ │ │ │ │ │ ├── StatusCode.struct │ │ │ │ │ │ └── UceLong.struct │ │ │ │ │ │ ├── options │ │ │ │ │ │ ├── IOptionsListener.struct │ │ │ │ │ │ ├── IOptionsService.struct │ │ │ │ │ │ ├── OptionsCapInfo.struct │ │ │ │ │ │ ├── OptionsCmdStatus.struct │ │ │ │ │ │ └── OptionsSipResponse.struct │ │ │ │ │ │ ├── presence │ │ │ │ │ │ ├── IPresenceListener.struct │ │ │ │ │ │ ├── IPresenceService.struct │ │ │ │ │ │ ├── PresCapInfo.struct │ │ │ │ │ │ ├── PresCmdStatus.struct │ │ │ │ │ │ ├── PresPublishTriggerType.struct │ │ │ │ │ │ ├── PresResInfo.struct │ │ │ │ │ │ ├── PresRlmiInfo.struct │ │ │ │ │ │ ├── PresServiceInfo.struct │ │ │ │ │ │ ├── PresSipResponse.struct │ │ │ │ │ │ └── PresTupleInfo.struct │ │ │ │ │ │ └── uceservice │ │ │ │ │ │ ├── IUceListener.struct │ │ │ │ │ │ └── IUceService.struct │ │ │ │ ├── internal │ │ │ │ │ ├── app │ │ │ │ │ │ ├── IAppOpsActiveCallback.struct │ │ │ │ │ │ ├── IAppOpsAsyncNotedCallback.struct │ │ │ │ │ │ ├── IAppOpsCallback.struct │ │ │ │ │ │ ├── IAppOpsNotedCallback.struct │ │ │ │ │ │ ├── IAppOpsService.struct │ │ │ │ │ │ ├── IAppOpsStartedCallback.struct │ │ │ │ │ │ ├── IBatteryStats.struct │ │ │ │ │ │ ├── IMediaContainerService.struct │ │ │ │ │ │ ├── ISoundTriggerService.struct │ │ │ │ │ │ ├── IVoiceActionCheckCallback.struct │ │ │ │ │ │ ├── IVoiceInteractionManagerService.struct │ │ │ │ │ │ ├── IVoiceInteractionSessionListener.struct │ │ │ │ │ │ ├── IVoiceInteractionSessionShowCallback.struct │ │ │ │ │ │ ├── IVoiceInteractor.struct │ │ │ │ │ │ ├── IVoiceInteractorCallback.struct │ │ │ │ │ │ ├── IVoiceInteractorRequest.struct │ │ │ │ │ │ ├── MessageSamplingConfig.struct │ │ │ │ │ │ └── procstats │ │ │ │ │ │ │ ├── IProcessStats.struct │ │ │ │ │ │ │ └── ProcessStats.struct │ │ │ │ │ ├── appwidget │ │ │ │ │ │ ├── IAppWidgetHost.struct │ │ │ │ │ │ └── IAppWidgetService.struct │ │ │ │ │ ├── backup │ │ │ │ │ │ ├── IBackupTransport.struct │ │ │ │ │ │ └── IObbBackupService.struct │ │ │ │ │ ├── car │ │ │ │ │ │ └── ICarServiceHelper.struct │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── CompatibilityChangeConfig.struct │ │ │ │ │ │ ├── CompatibilityChangeInfo.struct │ │ │ │ │ │ ├── IOverrideValidator.struct │ │ │ │ │ │ ├── IPlatformCompat.struct │ │ │ │ │ │ ├── IPlatformCompatNative.struct │ │ │ │ │ │ └── OverrideAllowedState.struct │ │ │ │ │ ├── infra │ │ │ │ │ │ ├── AndroidFuture.struct │ │ │ │ │ │ └── IAndroidFuture.struct │ │ │ │ │ ├── inputmethod │ │ │ │ │ │ ├── ICharSequenceResultCallback.struct │ │ │ │ │ │ ├── IExtractedTextResultCallback.struct │ │ │ │ │ │ ├── IInputContentUriToken.struct │ │ │ │ │ │ ├── IInputMethodPrivilegedOperations.struct │ │ │ │ │ │ ├── IIntResultCallback.struct │ │ │ │ │ │ ├── IMultiClientInputMethod.struct │ │ │ │ │ │ ├── IMultiClientInputMethodPrivilegedOperations.struct │ │ │ │ │ │ └── IMultiClientInputMethodSession.struct │ │ │ │ │ ├── location │ │ │ │ │ │ ├── ILocationProvider.struct │ │ │ │ │ │ ├── ILocationProviderManager.struct │ │ │ │ │ │ ├── ProviderProperties.struct │ │ │ │ │ │ └── ProviderRequest.struct │ │ │ │ │ ├── logging │ │ │ │ │ │ └── InstanceId.struct │ │ │ │ │ ├── net │ │ │ │ │ │ ├── INetworkWatchlistManager.struct │ │ │ │ │ │ ├── IOemNetd.struct │ │ │ │ │ │ ├── IOemNetdUnsolicitedEventListener.struct │ │ │ │ │ │ ├── LegacyVpnInfo.struct │ │ │ │ │ │ ├── VpnConfig.struct │ │ │ │ │ │ ├── VpnInfo.struct │ │ │ │ │ │ └── VpnProfile.struct │ │ │ │ │ ├── os │ │ │ │ │ │ ├── AppFuseMount.struct │ │ │ │ │ │ ├── IDropBoxManagerService.struct │ │ │ │ │ │ ├── IParcelFileDescriptorFactory.struct │ │ │ │ │ │ ├── IResultReceiver.struct │ │ │ │ │ │ └── IShellCallback.struct │ │ │ │ │ ├── policy │ │ │ │ │ │ ├── IKeyguardDismissCallback.struct │ │ │ │ │ │ ├── IKeyguardDrawnCallback.struct │ │ │ │ │ │ ├── IKeyguardExitCallback.struct │ │ │ │ │ │ ├── IKeyguardService.struct │ │ │ │ │ │ ├── IKeyguardStateCallback.struct │ │ │ │ │ │ └── IShortcutService.struct │ │ │ │ │ ├── statusbar │ │ │ │ │ │ ├── IStatusBar.struct │ │ │ │ │ │ ├── IStatusBarService.struct │ │ │ │ │ │ ├── NotificationVisibility.struct │ │ │ │ │ │ ├── RegisterStatusBarResult.struct │ │ │ │ │ │ └── StatusBarIcon.struct │ │ │ │ │ ├── telecom │ │ │ │ │ │ ├── ICallRedirectionAdapter.struct │ │ │ │ │ │ ├── ICallRedirectionService.struct │ │ │ │ │ │ ├── ICallScreeningAdapter.struct │ │ │ │ │ │ ├── ICallScreeningService.struct │ │ │ │ │ │ ├── IConnectionService.struct │ │ │ │ │ │ ├── IConnectionServiceAdapter.struct │ │ │ │ │ │ ├── IDeviceIdleControllerAdapter.struct │ │ │ │ │ │ ├── IInCallAdapter.struct │ │ │ │ │ │ ├── IInCallService.struct │ │ │ │ │ │ ├── IInternalServiceRetriever.struct │ │ │ │ │ │ ├── IPhoneAccountSuggestionCallback.struct │ │ │ │ │ │ ├── IPhoneAccountSuggestionService.struct │ │ │ │ │ │ ├── ITelecomLoader.struct │ │ │ │ │ │ ├── ITelecomService.struct │ │ │ │ │ │ ├── IVideoCallback.struct │ │ │ │ │ │ ├── IVideoProvider.struct │ │ │ │ │ │ └── RemoteServiceCallback.struct │ │ │ │ │ ├── telephony │ │ │ │ │ │ ├── CellNetworkScanResult.struct │ │ │ │ │ │ ├── IApnSourceService.struct │ │ │ │ │ │ ├── IBooleanConsumer.struct │ │ │ │ │ │ ├── ICarrierConfigLoader.struct │ │ │ │ │ │ ├── IIccPhoneBook.struct │ │ │ │ │ │ ├── IIntegerConsumer.struct │ │ │ │ │ │ ├── IMms.struct │ │ │ │ │ │ ├── INumberVerificationCallback.struct │ │ │ │ │ │ ├── IOnSubscriptionsChangedListener.struct │ │ │ │ │ │ ├── IOns.struct │ │ │ │ │ │ ├── IPhoneStateListener.struct │ │ │ │ │ │ ├── IPhoneSubInfo.struct │ │ │ │ │ │ ├── ISetOpportunisticDataCallback.struct │ │ │ │ │ │ ├── ISms.struct │ │ │ │ │ │ ├── ISub.struct │ │ │ │ │ │ ├── ITelephony.struct │ │ │ │ │ │ ├── ITelephonyRegistry.struct │ │ │ │ │ │ ├── IUpdateAvailableNetworksCallback.struct │ │ │ │ │ │ ├── IWapPushManager.struct │ │ │ │ │ │ ├── OperatorInfo.struct │ │ │ │ │ │ ├── SmsRawData.struct │ │ │ │ │ │ ├── euicc │ │ │ │ │ │ │ ├── IAuthenticateServerCallback.struct │ │ │ │ │ │ │ ├── ICancelSessionCallback.struct │ │ │ │ │ │ │ ├── IDeleteProfileCallback.struct │ │ │ │ │ │ │ ├── IDisableProfileCallback.struct │ │ │ │ │ │ │ ├── IEuiccCardController.struct │ │ │ │ │ │ │ ├── IEuiccController.struct │ │ │ │ │ │ │ ├── IGetAllProfilesCallback.struct │ │ │ │ │ │ │ ├── IGetDefaultSmdpAddressCallback.struct │ │ │ │ │ │ │ ├── IGetEuiccChallengeCallback.struct │ │ │ │ │ │ │ ├── IGetEuiccInfo1Callback.struct │ │ │ │ │ │ │ ├── IGetEuiccInfo2Callback.struct │ │ │ │ │ │ │ ├── IGetProfileCallback.struct │ │ │ │ │ │ │ ├── IGetRulesAuthTableCallback.struct │ │ │ │ │ │ │ ├── IGetSmdsAddressCallback.struct │ │ │ │ │ │ │ ├── IListNotificationsCallback.struct │ │ │ │ │ │ │ ├── ILoadBoundProfilePackageCallback.struct │ │ │ │ │ │ │ ├── IPrepareDownloadCallback.struct │ │ │ │ │ │ │ ├── IRemoveNotificationFromListCallback.struct │ │ │ │ │ │ │ ├── IResetMemoryCallback.struct │ │ │ │ │ │ │ ├── IRetrieveNotificationCallback.struct │ │ │ │ │ │ │ ├── IRetrieveNotificationListCallback.struct │ │ │ │ │ │ │ ├── ISetDefaultSmdpAddressCallback.struct │ │ │ │ │ │ │ ├── ISetNicknameCallback.struct │ │ │ │ │ │ │ └── ISwitchToProfileCallback.struct │ │ │ │ │ │ └── uicc │ │ │ │ │ │ │ └── AdnRecord.struct │ │ │ │ │ ├── textservice │ │ │ │ │ │ ├── ISpellCheckerService.struct │ │ │ │ │ │ ├── ISpellCheckerServiceCallback.struct │ │ │ │ │ │ ├── ISpellCheckerSession.struct │ │ │ │ │ │ ├── ISpellCheckerSessionListener.struct │ │ │ │ │ │ ├── ITextServicesManager.struct │ │ │ │ │ │ └── ITextServicesSessionListener.struct │ │ │ │ │ ├── view │ │ │ │ │ │ ├── AppearanceRegion.struct │ │ │ │ │ │ ├── IDragAndDropPermissions.struct │ │ │ │ │ │ ├── IInlineSuggestionsRequestCallback.struct │ │ │ │ │ │ ├── IInlineSuggestionsResponseCallback.struct │ │ │ │ │ │ ├── IInputContext.struct │ │ │ │ │ │ ├── IInputContextCallback.struct │ │ │ │ │ │ ├── IInputMethod.struct │ │ │ │ │ │ ├── IInputMethodClient.struct │ │ │ │ │ │ ├── IInputMethodManager.struct │ │ │ │ │ │ ├── IInputMethodSession.struct │ │ │ │ │ │ ├── IInputSessionCallback.struct │ │ │ │ │ │ ├── InlineSuggestionsRequestInfo.struct │ │ │ │ │ │ ├── InputBindResult.struct │ │ │ │ │ │ └── inline │ │ │ │ │ │ │ ├── IInlineContentCallback.struct │ │ │ │ │ │ │ └── IInlineContentProvider.struct │ │ │ │ │ └── widget │ │ │ │ │ │ ├── ICheckCredentialProgressCallback.struct │ │ │ │ │ │ ├── ILockSettings.struct │ │ │ │ │ │ ├── IRemoteViewsFactory.struct │ │ │ │ │ │ ├── LockscreenCredential.struct │ │ │ │ │ │ └── VerifyCredentialResponse.struct │ │ │ │ ├── keychain │ │ │ │ │ └── tests │ │ │ │ │ │ └── support │ │ │ │ │ │ └── IKeyChainServiceTestSupport.struct │ │ │ │ ├── media │ │ │ │ │ ├── IMediaController2.struct │ │ │ │ │ └── IMediaSession2.struct │ │ │ │ ├── net │ │ │ │ │ ├── IProxyCallback.struct │ │ │ │ │ ├── IProxyPortListener.struct │ │ │ │ │ └── IProxyService.struct │ │ │ │ ├── onemedia │ │ │ │ │ ├── IPlayerCallback.struct │ │ │ │ │ ├── IPlayerService.struct │ │ │ │ │ └── playback │ │ │ │ │ │ └── IRequestCallback.struct │ │ │ │ ├── phone │ │ │ │ │ ├── INetworkQueryService.struct │ │ │ │ │ └── INetworkQueryServiceCallback.struct │ │ │ │ ├── printspooler │ │ │ │ │ └── renderer │ │ │ │ │ │ ├── IPdfEditor.struct │ │ │ │ │ │ └── IPdfRenderer.struct │ │ │ │ ├── providers │ │ │ │ │ └── media │ │ │ │ │ │ └── IMtpService.struct │ │ │ │ ├── rpc_performance │ │ │ │ │ └── IService.struct │ │ │ │ ├── server │ │ │ │ │ ├── net │ │ │ │ │ │ └── integrationtests │ │ │ │ │ │ │ └── INetworkStackInstrumentation.struct │ │ │ │ │ └── wifi │ │ │ │ │ │ └── wificond │ │ │ │ │ │ ├── NativeScanResult.struct │ │ │ │ │ │ ├── PnoSettings.struct │ │ │ │ │ │ └── SingleScanSettings.struct │ │ │ │ ├── servicestests │ │ │ │ │ └── aidl │ │ │ │ │ │ ├── ICmdReceiverService.struct │ │ │ │ │ │ └── INetworkStateObserver.struct │ │ │ │ ├── smspush │ │ │ │ │ └── unitTests │ │ │ │ │ │ └── IDataVerify.struct │ │ │ │ ├── strictmodetest │ │ │ │ │ └── IService.struct │ │ │ │ ├── suspendapps │ │ │ │ │ └── suspendtestapp │ │ │ │ │ │ ├── IBroadcastReporter.struct │ │ │ │ │ │ └── ITestService.struct │ │ │ │ ├── systemui │ │ │ │ │ ├── assist │ │ │ │ │ │ └── IAssistHandleService.struct │ │ │ │ │ ├── recents │ │ │ │ │ │ ├── IRecentsNonSystemUserCallbacks.struct │ │ │ │ │ │ └── IRecentsSystemUserCallbacks.struct │ │ │ │ │ └── shared │ │ │ │ │ │ ├── recents │ │ │ │ │ │ ├── IOverviewProxy.struct │ │ │ │ │ │ ├── IPinnedStackAnimationListener.struct │ │ │ │ │ │ └── ISystemUiProxy.struct │ │ │ │ │ │ └── system │ │ │ │ │ │ └── GraphicBufferCompat.struct │ │ │ │ ├── test │ │ │ │ │ └── notificationlistener │ │ │ │ │ │ └── INotificationUriAccessService.struct │ │ │ │ ├── testing │ │ │ │ │ └── alarmservice │ │ │ │ │ │ └── Alarm.struct │ │ │ │ ├── tests │ │ │ │ │ ├── aidl │ │ │ │ │ │ └── main │ │ │ │ │ │ │ └── IRemoteService.struct │ │ │ │ │ └── basicprojectwithaidl │ │ │ │ │ │ ├── ITest.struct │ │ │ │ │ │ └── Rect.struct │ │ │ │ └── tv │ │ │ │ │ ├── settings │ │ │ │ │ ├── users │ │ │ │ │ │ └── IRestrictedProfilePinService.struct │ │ │ │ │ └── util │ │ │ │ │ │ └── IActivityTransitionBitmapProvider.struct │ │ │ │ │ └── testing │ │ │ │ │ └── testinput │ │ │ │ │ ├── ChannelStateData.struct │ │ │ │ │ └── ITestInputControl.struct │ │ │ ├── example │ │ │ │ └── android │ │ │ │ │ └── apis │ │ │ │ │ └── app │ │ │ │ │ ├── IRemoteService.struct │ │ │ │ │ ├── IRemoteServiceCallback.struct │ │ │ │ │ └── ISecondary.struct │ │ │ ├── google │ │ │ │ ├── android │ │ │ │ │ ├── setupcompat │ │ │ │ │ │ └── ISetupCompatService.struct │ │ │ │ │ ├── setupwizard │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── INetworkInterceptService.struct │ │ │ │ │ └── startop │ │ │ │ │ │ └── iorap │ │ │ │ │ │ ├── ActivityInfo.struct │ │ │ │ │ │ ├── AppIntentEvent.struct │ │ │ │ │ │ ├── AppLaunchEvent.struct │ │ │ │ │ │ ├── DexOptEvent.struct │ │ │ │ │ │ ├── IIorap.struct │ │ │ │ │ │ ├── ITaskListener.struct │ │ │ │ │ │ ├── JobScheduledEvent.struct │ │ │ │ │ │ ├── PackageEvent.struct │ │ │ │ │ │ ├── RequestId.struct │ │ │ │ │ │ ├── SystemServiceEvent.struct │ │ │ │ │ │ ├── SystemServiceUserEvent.struct │ │ │ │ │ │ └── TaskResult.struct │ │ │ │ └── hardware │ │ │ │ │ └── pixel │ │ │ │ │ └── display │ │ │ │ │ └── IDisplay.struct │ │ │ └── mediatek │ │ │ │ └── tunerservice │ │ │ │ └── IMtkTuner.struct │ │ │ ├── google │ │ │ └── hardware │ │ │ │ └── power │ │ │ │ └── extension │ │ │ │ └── pixel │ │ │ │ └── IPowerExt.struct │ │ │ ├── org │ │ │ └── codeaurora │ │ │ │ ├── ims │ │ │ │ └── internal │ │ │ │ │ ├── IQtiImsExt.struct │ │ │ │ │ └── IQtiImsExtListener.struct │ │ │ │ └── internal │ │ │ │ └── IExtTelephony.struct │ │ │ ├── other_package │ │ │ └── IBaz.struct │ │ │ ├── some_package │ │ │ ├── IBar.struct │ │ │ ├── IFoo.struct │ │ │ ├── Thing.struct │ │ │ └── sub_package │ │ │ │ ├── IFoo.struct │ │ │ │ └── SubThing.struct │ │ │ ├── test │ │ │ └── ParcelableTest.struct │ │ │ └── test_package │ │ │ ├── Bar.struct │ │ │ ├── Foo.struct │ │ │ ├── IBaz.struct │ │ │ ├── IEmpty.struct │ │ │ ├── ITest.struct │ │ │ └── RegularPolygon.struct │ ├── structure.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_arg_parse.py │ │ ├── test_generator.py │ │ ├── test_parcel.py │ │ ├── test_parsed_parcel.py │ │ └── tui │ │ │ ├── __init__.py │ │ │ ├── test_filter.py │ │ │ ├── test_selection.py │ │ │ └── test_util.py │ └── tui │ │ ├── __init__.py │ │ ├── data_types.py │ │ ├── filter.py │ │ ├── frequency_counter.py │ │ ├── interface.py │ │ ├── listing.py │ │ ├── selection.py │ │ ├── table.py │ │ ├── util.py │ │ └── widget │ │ ├── __init__.py │ │ ├── filters.py │ │ ├── frame.py │ │ ├── frequency.py │ │ ├── help.py │ │ ├── hexdump.py │ │ ├── structure.py │ │ ├── toolbar.py │ │ └── transactions.py ├── requirements.txt └── setup.py ├── pyproject.toml └── tox.ini /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/.github/workflows/style.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | line_length = 120 3 | profile = black 4 | -------------------------------------------------------------------------------- /.mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/.mypy.ini -------------------------------------------------------------------------------- /.pydocstyle: -------------------------------------------------------------------------------- 1 | [pydocstyle] 2 | match = (?!test_).*\.py 3 | -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- 1 | [FORMAT] 2 | max-line-length=120 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/README.md -------------------------------------------------------------------------------- /STRUCTURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/STRUCTURES.md -------------------------------------------------------------------------------- /binder-trace-after-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder-trace-after-config.png -------------------------------------------------------------------------------- /binder-trace-before-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder-trace-before-config.png -------------------------------------------------------------------------------- /binder-trace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder-trace.gif -------------------------------------------------------------------------------- /binder-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder-trace.png -------------------------------------------------------------------------------- /binder_trace/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/.gitignore -------------------------------------------------------------------------------- /binder_trace/binder_trace/__init__.py: -------------------------------------------------------------------------------- 1 | """binder-trace.""" 2 | -------------------------------------------------------------------------------- /binder_trace/binder_trace/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/__main__.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/config.json -------------------------------------------------------------------------------- /binder_trace/binder_trace/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/constants.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/generator.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/js/interceptbinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/js/interceptbinder.js -------------------------------------------------------------------------------- /binder_trace/binder_trace/loggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/loggers.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/override_IBulkCursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/override_IBulkCursor.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/override_IContentProvider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/override_IContentProvider.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/overrides.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/parcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/parcel.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/parsedParcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/parsedParcel.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/parseerror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/parseerror.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/parsing.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/android/IOMXNode.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/android/IOMXNode.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/android/car/ICar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/android/car/ICar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/android/net/INetd.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/android/net/INetd.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/android/net/Network.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/android/net/Network.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/android/net/Uri.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/android/net/Uri.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/android/nfc/INfcDta.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/android/nfc/INfcDta.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/android/nfc/INfcTag.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/android/nfc/INfcTag.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/android/os/Bundle.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/android/os/Bundle.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/android/os/IIdmap2.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/android/os/IIdmap2.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/android/os/IVold.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/android/os/IVold.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/classPaths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/classPaths.txt -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/other_package/IBaz.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/other_package/IBaz.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/some_package/IBar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/some_package/IBar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/some_package/IFoo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/some_package/IFoo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/some_package/Thing.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/some_package/Thing.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/test/ParcelableTest.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/test/ParcelableTest.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/test_package/Bar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/test_package/Bar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/test_package/Foo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/test_package/Foo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/test_package/IBaz.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/test_package/IBaz.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/test_package/IEmpty.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/test_package/IEmpty.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-10.0.0_r47/test_package/ITest.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-10.0.0_r47/test_package/ITest.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/android/IDataSource.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/android/IDataSource.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/android/IOMXNode.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/android/IOMXNode.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/android/car/ICar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/android/car/ICar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/android/net/INetd.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/android/net/INetd.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/android/net/Network.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/android/net/Network.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/android/net/Uri.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/android/net/Uri.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/android/nfc/INfcDta.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/android/nfc/INfcDta.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/android/nfc/INfcTag.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/android/nfc/INfcTag.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/android/os/Bundle.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/android/os/Bundle.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/android/os/IIdmap2.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/android/os/IIdmap2.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/android/os/IStatsd.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/android/os/IStatsd.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/android/os/IVold.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/android/os/IVold.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/classPaths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/classPaths.txt -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/other_package/IBaz.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/other_package/IBaz.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/some_package/IBar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/some_package/IBar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/some_package/IFoo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/some_package/IFoo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/some_package/Thing.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/some_package/Thing.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/test/ParcelableTest.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/test/ParcelableTest.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/test_package/Bar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/test_package/Bar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/test_package/Foo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/test_package/Foo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/test_package/IBaz.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/test_package/IBaz.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/test_package/IEmpty.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/test_package/IEmpty.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-11.0.0_r48/test_package/ITest.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-11.0.0_r48/test_package/ITest.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/aaudio/Endpoint.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/aaudio/Endpoint.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/aaudio/RingBuffer.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/aaudio/RingBuffer.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/aaudio/SharedRegion.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/aaudio/SharedRegion.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/android/IDataSource.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/android/IDataSource.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/android/IOMXNode.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/android/IOMXNode.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/android/car/ICar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/android/car/ICar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/android/media/Int.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/android/media/Int.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/android/net/INetd.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/android/net/INetd.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/android/net/Network.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/android/net/Network.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/android/net/Uri.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/android/net/Uri.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/android/nfc/INfcDta.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/android/nfc/INfcDta.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/android/nfc/INfcTag.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/android/nfc/INfcTag.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/android/nfc/Tag.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/android/nfc/Tag.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/android/os/Bundle.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/android/os/Bundle.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/android/os/IIdmap2.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/android/os/IIdmap2.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/android/os/IStatsd.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/android/os/IStatsd.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/android/os/IVold.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/android/os/IVold.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/android/os/Message.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/android/os/Message.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/classPaths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/classPaths.txt -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/hidl2aidl/test/IBar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/hidl2aidl/test/IBar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/hidl2aidl/test/IFoo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/hidl2aidl/test/IFoo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/other_package/IBaz.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/other_package/IBaz.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/some_package/IBar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/some_package/IBar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/some_package/IFoo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/some_package/IFoo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/some_package/Thing.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/some_package/Thing.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/test/ParcelableTest.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/test/ParcelableTest.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/test_package/Bar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/test_package/Bar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/test_package/Baz.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/test_package/Baz.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/test_package/Foo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/test_package/Foo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/test_package/IBaz.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/test_package/IBaz.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/test_package/IEmpty.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/test_package/IEmpty.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-12.1.0_r27/test_package/MyExt.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-12.1.0_r27/test_package/MyExt.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/a/b/AB.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/a/b/AB.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/a/b/AB2.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/a/b/AB2.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/aaudio/Endpoint.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/aaudio/Endpoint.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/aaudio/RingBuffer.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/aaudio/RingBuffer.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/aaudio/SharedRegion.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/aaudio/SharedRegion.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/android/IDataSource.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/android/IDataSource.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/android/IOMXNode.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/android/IOMXNode.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/android/car/ICar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/android/car/ICar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/android/gui/ARect.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/android/gui/ARect.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/android/gui/Color.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/android/gui/Color.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/android/gui/Size.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/android/gui/Size.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/android/net/INetd.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/android/net/INetd.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/android/net/Uri.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/android/net/Uri.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/android/os/ILogd.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/android/os/ILogd.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/android/os/IVold.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/android/os/IVold.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/c/d/ABCD.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/c/d/ABCD.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/c/d/CD.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/c/d/CD.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/c/d/CD2.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/c/d/CD2.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/classPaths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/classPaths.txt -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/foo/IFoo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/foo/IFoo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/test6/Bar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/test6/Bar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/test6/Foo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/test6/Foo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/test_package/Bar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/test_package/Bar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/test_package/Baz.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/test_package/Baz.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-14.0.0_r28/test_package/Foo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-14.0.0_r28/test_package/Foo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-8.1.0_r81/android/IOMXNode.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-8.1.0_r81/android/IOMXNode.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-8.1.0_r81/android/car/ICar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-8.1.0_r81/android/car/ICar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-8.1.0_r81/android/net/INetd.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-8.1.0_r81/android/net/INetd.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-8.1.0_r81/android/net/Uri.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-8.1.0_r81/android/net/Uri.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-8.1.0_r81/android/os/Bundle.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-8.1.0_r81/android/os/Bundle.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android-8.1.0_r81/classPaths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android-8.1.0_r81/classPaths.txt -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/IOMXBufferSource.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/IOMXBufferSource.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/IOMXNode.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/IOMXNode.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/accounts/Account.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/accounts/Account.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/apex/ApexInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/apex/ApexInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/apex/ApexInfoList.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/apex/ApexInfoList.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/apex/IApexService.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/apex/IApexService.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/app/IAlarmManager.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/app/IAlarmManager.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/app/IAppTask.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/app/IAppTask.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/app/IBackupAgent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/app/IBackupAgent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/app/IUidObserver.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/app/IUidObserver.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/app/Notification.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/app/Notification.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/app/PendingIntent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/app/PendingIntent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/app/ProfilerInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/app/ProfilerInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/app/RemoteInput.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/app/RemoteInput.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/app/WaitResult.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/app/WaitResult.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/app/WallpaperInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/app/WallpaperInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/app/job/JobInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/app/job/JobInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/app/slice/Slice.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/app/slice/Slice.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/car/IAppFocus.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/car/IAppFocus.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/car/ICar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/car/ICar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/car/ICarBluetooth.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/car/ICarBluetooth.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/car/ICarInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/car/ICarInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/car/test/ICarTest.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/car/test/ICarTest.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/car/vms/VmsLayer.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/car/vms/VmsLayer.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/content/ClipData.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/content/ClipData.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/content/Intent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/content/Intent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/content/SyncInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/content/SyncInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/content/SyncStats.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/content/SyncStats.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/content/pm/KeySet.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/content/pm/KeySet.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/debug/IAdbManager.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/debug/IAdbManager.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/dvr/IVrComposer.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/dvr/IVrComposer.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/graphics/Bitmap.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/graphics/Bitmap.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/graphics/Insets.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/graphics/Insets.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/graphics/Point.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/graphics/Point.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/graphics/Rect.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/graphics/Rect.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/graphics/Region.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/graphics/Region.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/gsi/GsiProgress.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/gsi/GsiProgress.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/gsi/IGsiService.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/gsi/IGsiService.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/hardware/ICamera.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/hardware/ICamera.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/location/Address.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/location/Address.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/location/Country.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/location/Country.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/location/Criteria.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/location/Criteria.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/location/Geofence.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/location/Geofence.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/location/Location.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/location/Location.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/lpdump/ILpdump.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/lpdump/ILpdump.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/media/AudioFormat.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/media/AudioFormat.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/media/IPlayer.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/media/IPlayer.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/media/Rating.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/media/Rating.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/DhcpInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/DhcpInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/IDnsResolver.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/IDnsResolver.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/IIpSecService.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/IIpSecService.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/INetd.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/INetd.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/IpPrefix.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/IpPrefix.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/IpSecConfig.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/IpSecConfig.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/LinkAddress.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/LinkAddress.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/MacAddress.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/MacAddress.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/Network.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/Network.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/NetworkInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/NetworkInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/NetworkKey.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/NetworkKey.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/NetworkMisc.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/NetworkMisc.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/NetworkPolicy.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/NetworkPolicy.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/NetworkState.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/NetworkState.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/NetworkStats.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/NetworkStats.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/ProxyInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/ProxyInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/RouteInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/RouteInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/RssiCurve.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/RssiCurve.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/ScoredNetwork.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/ScoredNetwork.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/UidRange.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/UidRange.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/Uri$OpaqueUri.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/Uri$OpaqueUri.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/Uri$StringUri.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/Uri$StringUri.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/Uri.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/Uri.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/ip/IIpClient.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/ip/IIpClient.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/wifi/WifiInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/wifi/WifiInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/net/wifi/WifiSsid.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/net/wifi/WifiSsid.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/nfc/BeamShareData.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/nfc/BeamShareData.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/nfc/IAppCallback.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/nfc/IAppCallback.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/nfc/INfcAdapter.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/nfc/INfcAdapter.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/nfc/INfcDta.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/nfc/INfcDta.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/nfc/INfcTag.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/nfc/INfcTag.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/nfc/NdefMessage.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/nfc/NdefMessage.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/nfc/NdefRecord.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/nfc/NdefRecord.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/nfc/Tag.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/nfc/Tag.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/Bundle.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/Bundle.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/CoolingDevice.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/CoolingDevice.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/CpuUsageInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/CpuUsageInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/IAidlTest.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/IAidlTest.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/IDumpstate.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/IDumpstate.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/IIdmap2.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/IIdmap2.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/IInstalld.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/IInstalld.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/IMessenger.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/IMessenger.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/IPerfProfd.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/IPerfProfd.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/IPowerManager.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/IPowerManager.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/ISomeService.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/ISomeService.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/IStatsManager.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/IStatsManager.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/IStoraged.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/IStoraged.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/IUpdateEngine.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/IUpdateEngine.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/IUpdateLock.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/IUpdateLock.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/IUserManager.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/IUserManager.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/IVold.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/IVold.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/IVoldListener.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/IVoldListener.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/LocaleList.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/LocaleList.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/Message.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/Message.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/Messenger.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/Messenger.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/ParcelUuid.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/ParcelUuid.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/PatternMatcher.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/PatternMatcher.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/PowerSaveState.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/PowerSaveState.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/RemoteCallback.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/RemoteCallback.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/ResultReceiver.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/ResultReceiver.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/SharedMemory.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/SharedMemory.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/Temperature.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/Temperature.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/UserHandle.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/UserHandle.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/WorkSource.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/WorkSource.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/os/cts/ISecondary.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/os/cts/ISecondary.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/print/PageRange.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/print/PageRange.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/print/PrintJobId.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/print/PrintJobId.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/print/PrinterId.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/print/PrinterId.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/speech/tts/Voice.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/speech/tts/Voice.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/view/DisplayInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/view/DisplayInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/view/DragEvent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/view/DragEvent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/view/IInputFilter.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/view/IInputFilter.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/view/IWindow.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/view/IWindow.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/view/IWindowId.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/view/IWindowId.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/view/InputChannel.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/view/InputChannel.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/view/InputDevice.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/view/InputDevice.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/view/InputEvent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/view/InputEvent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/view/InputMonitor.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/view/InputMonitor.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/view/InsetsState.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/view/InsetsState.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/view/KeyEvent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/view/KeyEvent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/view/MotionEvent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/view/MotionEvent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/view/PointerIcon.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/view/PointerIcon.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/android/view/Surface.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/android/view/Surface.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/another_package/IFaz.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/another_package/IFaz.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/classPaths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/classPaths.txt -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/other_package/IBaz.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/other_package/IBaz.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/some_package/IBar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/some_package/IBar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/some_package/IFoo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/some_package/IFoo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/some_package/Thing.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/some_package/Thing.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/test/ParcelableTest.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/test/ParcelableTest.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/test_package/Bar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/test_package/Bar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/test_package/Foo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/test_package/Foo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/test_package/IBaz.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/test_package/IBaz.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/test_package/IEmpty.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/test_package/IEmpty.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android10/test_package/ITest.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android10/test_package/ITest.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/IDataSource.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/IDataSource.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/IMediaExtractor.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/IMediaExtractor.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/IOMXBufferSource.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/IOMXBufferSource.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/IOMXNode.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/IOMXNode.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/accounts/Account.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/accounts/Account.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/apex/ApexInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/apex/ApexInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/apex/ApexInfoList.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/apex/ApexInfoList.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/apex/IApexService.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/apex/IApexService.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/app/IAlarmManager.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/app/IAlarmManager.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/app/IAppTask.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/app/IAppTask.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/app/IBackupAgent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/app/IBackupAgent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/app/IUidObserver.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/app/IUidObserver.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/app/IWindowToken.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/app/IWindowToken.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/app/Notification.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/app/Notification.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/app/PendingIntent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/app/PendingIntent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/app/ProfilerInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/app/ProfilerInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/app/RemoteAction.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/app/RemoteAction.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/app/RemoteInput.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/app/RemoteInput.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/app/WaitResult.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/app/WaitResult.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/app/WallpaperInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/app/WallpaperInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/app/blob/BlobInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/app/blob/BlobInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/app/job/JobInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/app/job/JobInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/app/slice/Slice.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/app/slice/Slice.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/car/IAppFocus.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/car/IAppFocus.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/car/ICar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/car/ICar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/car/ICarBluetooth.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/car/ICarBluetooth.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/car/ICarInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/car/ICarInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/car/test/ICarTest.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/car/test/ICarTest.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/car/vms/VmsLayer.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/car/vms/VmsLayer.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/content/ClipData.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/content/ClipData.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/content/Intent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/content/Intent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/content/LocusId.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/content/LocusId.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/content/SyncInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/content/SyncInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/content/SyncStats.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/content/SyncStats.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/content/pm/KeySet.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/content/pm/KeySet.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/debug/IAdbManager.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/debug/IAdbManager.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/dvr/IVrComposer.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/dvr/IVrComposer.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/graphics/Bitmap.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/graphics/Bitmap.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/graphics/Insets.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/graphics/Insets.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/graphics/Point.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/graphics/Point.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/graphics/Rect.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/graphics/Rect.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/graphics/Region.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/graphics/Region.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/gsi/AvbPublicKey.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/gsi/AvbPublicKey.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/gsi/GsiProgress.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/gsi/GsiProgress.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/gsi/IGsiService.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/gsi/IGsiService.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/gsi/IImageService.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/gsi/IImageService.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/gsi/MappedImage.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/gsi/MappedImage.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/hardware/ICamera.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/hardware/ICamera.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/location/Address.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/location/Address.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/location/Country.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/location/Country.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/location/Criteria.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/location/Criteria.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/location/Geofence.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/location/Geofence.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/location/Location.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/location/Location.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/lpdump/ILpdump.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/lpdump/ILpdump.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/media/AudioFormat.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/media/AudioFormat.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/media/IPlayer.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/media/IPlayer.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/media/Rating.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/media/Rating.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/DhcpInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/DhcpInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/IDnsResolver.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/IDnsResolver.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/IIpSecService.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/IIpSecService.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/INetd.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/INetd.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/IpPrefix.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/IpPrefix.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/IpSecConfig.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/IpSecConfig.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/LinkAddress.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/LinkAddress.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/MacAddress.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/MacAddress.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/Network.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/Network.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/NetworkInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/NetworkInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/NetworkKey.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/NetworkKey.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/NetworkPolicy.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/NetworkPolicy.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/NetworkState.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/NetworkState.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/NetworkStats.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/NetworkStats.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/ProxyInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/ProxyInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/RouteInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/RouteInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/RssiCurve.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/RssiCurve.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/ScoredNetwork.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/ScoredNetwork.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/UidRange.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/UidRange.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/Uri$OpaqueUri.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/Uri$OpaqueUri.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/Uri$StringUri.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/Uri$StringUri.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/Uri.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/Uri.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/ip/IIpClient.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/ip/IIpClient.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/wifi/WifiInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/wifi/WifiInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/net/wifi/WifiSsid.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/net/wifi/WifiSsid.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/nfc/BeamShareData.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/nfc/BeamShareData.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/nfc/IAppCallback.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/nfc/IAppCallback.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/nfc/INfcAdapter.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/nfc/INfcAdapter.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/nfc/INfcDta.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/nfc/INfcDta.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/nfc/INfcTag.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/nfc/INfcTag.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/nfc/NdefMessage.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/nfc/NdefMessage.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/nfc/NdefRecord.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/nfc/NdefRecord.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/nfc/Tag.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/nfc/Tag.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/Bundle.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/Bundle.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/CoolingDevice.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/CoolingDevice.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/CpuUsageInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/CpuUsageInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/IAidlTest.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/IAidlTest.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/IDumpstate.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/IDumpstate.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/IIdmap2.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/IIdmap2.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/IInstalld.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/IInstalld.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/IMessenger.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/IMessenger.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/IPowerManager.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/IPowerManager.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/ISomeService.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/ISomeService.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/IStatsd.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/IStatsd.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/IStoraged.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/IStoraged.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/ISystemConfig.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/ISystemConfig.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/IUpdateEngine.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/IUpdateEngine.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/IUpdateLock.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/IUpdateLock.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/IUserManager.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/IUserManager.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/IVold.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/IVold.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/IVoldListener.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/IVoldListener.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/LocaleList.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/LocaleList.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/Message.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/Message.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/Messenger.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/Messenger.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/ParcelUuid.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/ParcelUuid.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/PatternMatcher.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/PatternMatcher.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/PowerSaveState.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/PowerSaveState.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/RemoteCallback.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/RemoteCallback.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/ResultReceiver.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/ResultReceiver.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/SharedMemory.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/SharedMemory.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/Temperature.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/Temperature.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/UserHandle.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/UserHandle.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/WorkSource.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/WorkSource.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/os/cts/ISecondary.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/os/cts/ISecondary.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/print/PageRange.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/print/PageRange.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/print/PrintJobId.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/print/PrintJobId.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/print/PrinterId.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/print/PrinterId.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/speech/tts/Voice.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/speech/tts/Voice.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/view/DisplayInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/view/DisplayInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/view/DragEvent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/view/DragEvent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/view/IInputFilter.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/view/IInputFilter.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/view/IWindow.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/view/IWindow.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/view/IWindowId.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/view/IWindowId.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/view/InputChannel.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/view/InputChannel.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/view/InputDevice.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/view/InputDevice.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/view/InputEvent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/view/InputEvent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/view/InputMonitor.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/view/InputMonitor.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/view/InsetsState.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/view/InsetsState.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/view/KeyEvent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/view/KeyEvent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/view/MotionEvent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/view/MotionEvent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/view/PointerIcon.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/view/PointerIcon.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/android/view/Surface.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/android/view/Surface.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/another_package/IFaz.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/another_package/IFaz.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/classPaths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/classPaths.txt -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/other_package/IBaz.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/other_package/IBaz.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/some_package/IBar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/some_package/IBar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/some_package/IFoo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/some_package/IFoo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/some_package/Thing.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/some_package/Thing.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/test/ParcelableTest.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/test/ParcelableTest.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/test_package/Bar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/test_package/Bar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/test_package/Foo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/test_package/Foo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/test_package/IBaz.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/test_package/IBaz.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/test_package/IEmpty.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/test_package/IEmpty.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android11/test_package/ITest.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android11/test_package/ITest.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android13.0.0-r_49/aaudio/Endpoint.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android13.0.0-r_49/aaudio/Endpoint.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android13.0.0-r_49/android/IOMXNode.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android13.0.0-r_49/android/IOMXNode.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android13.0.0-r_49/android/car/ICar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android13.0.0-r_49/android/car/ICar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android13.0.0-r_49/android/gui/Rect.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android13.0.0-r_49/android/gui/Rect.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android13.0.0-r_49/android/gui/Size.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android13.0.0-r_49/android/gui/Size.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android13.0.0-r_49/android/net/Uri.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android13.0.0-r_49/android/net/Uri.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android13.0.0-r_49/android/os/IArtd.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android13.0.0-r_49/android/os/IArtd.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android13.0.0-r_49/android/os/ILogd.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android13.0.0-r_49/android/os/ILogd.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android13.0.0-r_49/android/os/IVold.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android13.0.0-r_49/android/os/IVold.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android13.0.0-r_49/classPaths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android13.0.0-r_49/classPaths.txt -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android13.0.0-r_49/test6/Bar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android13.0.0-r_49/test6/Bar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android13.0.0-r_49/test6/Foo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android13.0.0-r_49/test6/Foo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android13.0.0-r_49/test_package/Bar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android13.0.0-r_49/test_package/Bar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android13.0.0-r_49/test_package/Baz.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android13.0.0-r_49/test_package/Baz.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android13.0.0-r_49/test_package/Foo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android13.0.0-r_49/test_package/Foo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/IDataSource.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/IDataSource.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/IMediaExtractor.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/IMediaExtractor.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/IOMXBufferSource.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/IOMXBufferSource.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/IOMXNode.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/IOMXNode.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/accounts/Account.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/accounts/Account.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/aidl/tests/map/Bar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/aidl/tests/map/Bar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/aidl/tests/map/Foo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/aidl/tests/map/Foo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/apex/ApexInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/apex/ApexInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/apex/ApexInfoList.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/apex/ApexInfoList.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/apex/IApexService.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/apex/IApexService.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/IAlarmListener.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/IAlarmListener.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/IAlarmManager.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/IAlarmManager.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/IAppTask.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/IAppTask.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/IBackupAgent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/IBackupAgent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/ISearchManager.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/ISearchManager.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/IUiModeManager.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/IUiModeManager.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/IUidObserver.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/IUidObserver.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/IWindowToken.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/IWindowToken.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/Notification.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/Notification.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/PendingIntent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/PendingIntent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/ProfilerInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/ProfilerInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/RemoteAction.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/RemoteAction.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/RemoteInput.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/RemoteInput.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/SearchableInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/SearchableInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/SyncNotedAppOp.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/SyncNotedAppOp.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/WaitResult.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/WaitResult.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/WallpaperInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/WallpaperInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/blob/BlobInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/blob/BlobInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/blob/LeaseInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/blob/LeaseInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/job/JobInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/job/JobInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/app/slice/Slice.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/app/slice/Slice.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/car/IAppFocus.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/car/IAppFocus.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/car/ICar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/car/ICar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/car/ICarBluetooth.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/car/ICarBluetooth.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/car/ICarInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/car/ICarInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/car/ICarProjection.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/car/ICarProjection.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/car/test/ICarTest.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/car/test/ICarTest.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/car/vms/VmsLayer.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/car/vms/VmsLayer.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/content/ClipData.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/content/ClipData.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/content/IClipboard.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/content/IClipboard.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/content/Intent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/content/Intent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/content/LocusId.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/content/LocusId.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/content/SyncInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/content/SyncInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/content/SyncResult.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/content/SyncResult.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/content/SyncStats.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/content/SyncStats.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/content/pm/KeySet.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/content/pm/KeySet.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/debug/IAdbManager.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/debug/IAdbManager.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/dvr/IVrComposer.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/dvr/IVrComposer.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/graphics/Bitmap.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/graphics/Bitmap.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/graphics/Insets.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/graphics/Insets.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/graphics/Point.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/graphics/Point.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/graphics/Rect.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/graphics/Rect.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/graphics/Region.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/graphics/Region.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/gsi/AvbPublicKey.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/gsi/AvbPublicKey.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/gsi/GsiProgress.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/gsi/GsiProgress.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/gsi/IGsiService.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/gsi/IGsiService.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/gsi/IImageService.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/gsi/IImageService.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/gsi/MappedImage.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/gsi/MappedImage.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/hardware/ICamera.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/hardware/ICamera.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/hardware/face/Face.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/hardware/face/Face.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/location/Address.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/location/Address.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/location/Country.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/location/Country.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/location/Criteria.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/location/Criteria.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/location/Geofence.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/location/Geofence.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/location/Location.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/location/Location.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/lpdump/ILpdump.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/lpdump/ILpdump.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/media/AudioFormat.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/media/AudioFormat.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/media/IAudioRecord.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/media/IAudioRecord.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/media/IPlayer.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/media/IPlayer.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/media/Rating.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/media/Rating.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/media/VolumePolicy.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/media/VolumePolicy.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/ConnectionInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/ConnectionInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/DhcpInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/DhcpInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/ICaptivePortal.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/ICaptivePortal.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/IDnsResolver.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/IDnsResolver.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/IIpMemoryStore.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/IIpMemoryStore.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/IIpSecService.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/IIpSecService.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/INetd.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/INetd.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/IpPrefix.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/IpPrefix.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/IpSecConfig.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/IpSecConfig.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/LinkAddress.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/LinkAddress.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/LinkProperties.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/LinkProperties.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/MacAddress.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/MacAddress.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/MarkMaskParcel.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/MarkMaskParcel.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/Network.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/Network.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/NetworkInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/NetworkInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/NetworkKey.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/NetworkKey.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/NetworkMisc.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/NetworkMisc.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/NetworkPolicy.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/NetworkPolicy.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/NetworkRequest.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/NetworkRequest.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/NetworkState.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/NetworkState.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/NetworkStats.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/NetworkStats.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/ProxyInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/ProxyInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/RouteInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/RouteInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/RssiCurve.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/RssiCurve.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/ScoredNetwork.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/ScoredNetwork.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/TetheredClient.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/TetheredClient.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/UidRange.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/UidRange.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/UidRangeParcel.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/UidRangeParcel.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/Uri$OpaqueUri.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/Uri$OpaqueUri.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/Uri$StringUri.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/Uri$StringUri.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/Uri.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/Uri.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/ip/IIpClient.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/ip/IIpClient.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/sip/SipProfile.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/sip/SipProfile.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/wifi/IWificond.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/wifi/IWificond.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/wifi/WifiInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/wifi/WifiInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/net/wifi/WifiSsid.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/net/wifi/WifiSsid.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/nfc/BeamShareData.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/nfc/BeamShareData.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/nfc/IAppCallback.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/nfc/IAppCallback.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/nfc/INfcAdapter.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/nfc/INfcAdapter.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/nfc/INfcDta.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/nfc/INfcDta.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/nfc/INfcTag.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/nfc/INfcTag.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/nfc/NdefMessage.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/nfc/NdefMessage.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/nfc/NdefRecord.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/nfc/NdefRecord.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/nfc/Tag.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/nfc/Tag.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/nfc/TechListParcel.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/nfc/TechListParcel.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/BatteryProperty.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/BatteryProperty.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/Bundle.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/Bundle.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/CoolingDevice.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/CoolingDevice.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/CpuUsageInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/CpuUsageInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IAidlTest.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IAidlTest.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IClientCallback.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IClientCallback.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IDumpstate.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IDumpstate.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IDumpstateToken.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IDumpstateToken.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IIdmap2.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IIdmap2.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IInstalld.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IInstalld.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IMessenger.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IMessenger.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IPerfProfd.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IPerfProfd.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IPowerManager.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IPowerManager.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IRecoverySystem.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IRecoverySystem.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IRemoteCallback.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IRemoteCallback.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IServiceManager.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IServiceManager.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/ISomeService.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/ISomeService.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IStatsManager.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IStatsManager.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IStatsd.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IStatsd.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IStoraged.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IStoraged.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/ISystemConfig.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/ISystemConfig.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IThermalService.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IThermalService.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IUpdateEngine.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IUpdateEngine.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IUpdateLock.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IUpdateLock.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IUserManager.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IUserManager.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IVold.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IVold.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/IVoldListener.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/IVoldListener.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/LocaleList.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/LocaleList.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/Message.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/Message.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/Messenger.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/Messenger.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/ParcelUuid.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/ParcelUuid.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/PatternMatcher.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/PatternMatcher.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/PowerSaveState.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/PowerSaveState.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/RemoteCallback.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/RemoteCallback.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/ResultReceiver.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/ResultReceiver.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/SharedMemory.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/SharedMemory.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/Temperature.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/Temperature.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/UserHandle.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/UserHandle.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/VibrationEffect.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/VibrationEffect.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/WorkSource.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/WorkSource.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/os/cts/ISecondary.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/os/cts/ISecondary.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/print/PageRange.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/print/PageRange.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/print/PrintJobId.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/print/PrintJobId.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/print/PrintJobInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/print/PrintJobInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/print/PrinterId.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/print/PrinterId.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/speech/tts/Voice.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/speech/tts/Voice.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/telephony/CellInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/telephony/CellInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/trunks/ITrunks.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/trunks/ITrunks.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/view/DisplayInfo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/view/DisplayInfo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/view/DragEvent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/view/DragEvent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/view/IInputFilter.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/view/IInputFilter.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/view/IWindow.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/view/IWindow.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/view/IWindowId.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/view/IWindowId.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/view/InputChannel.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/view/InputChannel.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/view/InputDevice.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/view/InputDevice.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/view/InputEvent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/view/InputEvent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/view/InputMonitor.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/view/InputMonitor.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/view/InsetsState.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/view/InsetsState.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/view/KeyEvent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/view/KeyEvent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/view/MotionEvent.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/view/MotionEvent.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/view/PointerIcon.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/view/PointerIcon.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/view/Surface.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/view/Surface.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/android/widget/RemoteViews.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/android/widget/RemoteViews.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/another_package/IFaz.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/another_package/IFaz.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/classPaths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/classPaths.txt -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/com/android/bips/jni/SizeD.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/com/android/bips/jni/SizeD.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/other_package/IBaz.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/other_package/IBaz.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/some_package/IBar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/some_package/IBar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/some_package/IFoo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/some_package/IFoo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/some_package/Thing.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/some_package/Thing.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/test/ParcelableTest.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/test/ParcelableTest.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/test_package/Bar.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/test_package/Bar.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/test_package/Foo.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/test_package/Foo.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/test_package/IBaz.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/test_package/IBaz.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/test_package/IEmpty.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/test_package/IEmpty.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structs/android9/test_package/ITest.struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structs/android9/test_package/ITest.struct -------------------------------------------------------------------------------- /binder_trace/binder_trace/structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/structure.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """binder-trace tests.""" 2 | -------------------------------------------------------------------------------- /binder_trace/binder_trace/tests/test_arg_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tests/test_arg_parse.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tests/test_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tests/test_generator.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tests/test_parcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tests/test_parcel.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tests/test_parsed_parcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tests/test_parsed_parcel.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tests/tui/__init__.py: -------------------------------------------------------------------------------- 1 | """binder-trace TUI tests.""" 2 | -------------------------------------------------------------------------------- /binder_trace/binder_trace/tests/tui/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tests/tui/test_filter.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tests/tui/test_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tests/tui/test_selection.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tests/tui/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tests/tui/test_util.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tui/__init__.py: -------------------------------------------------------------------------------- 1 | """TUI package.""" 2 | -------------------------------------------------------------------------------- /binder_trace/binder_trace/tui/data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tui/data_types.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tui/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tui/filter.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tui/frequency_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tui/frequency_counter.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tui/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tui/interface.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tui/listing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tui/listing.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tui/selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tui/selection.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tui/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tui/table.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tui/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tui/util.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tui/widget/__init__.py: -------------------------------------------------------------------------------- 1 | """Widget package.""" 2 | -------------------------------------------------------------------------------- /binder_trace/binder_trace/tui/widget/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tui/widget/filters.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tui/widget/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tui/widget/frame.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tui/widget/frequency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tui/widget/frequency.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tui/widget/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tui/widget/help.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tui/widget/hexdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tui/widget/hexdump.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tui/widget/structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tui/widget/structure.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tui/widget/toolbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tui/widget/toolbar.py -------------------------------------------------------------------------------- /binder_trace/binder_trace/tui/widget/transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/binder_trace/tui/widget/transactions.py -------------------------------------------------------------------------------- /binder_trace/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/requirements.txt -------------------------------------------------------------------------------- /binder_trace/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/binder_trace/setup.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [tool.black] 2 | line-length = 120 3 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundryzero/binder-trace/HEAD/tox.ini --------------------------------------------------------------------------------