// Autogenerated by jnigen. DO NOT EDIT! // ignore_for_file: annotate_overrides // ignore_for_file: camel_case_extensions // ignore_for_file: camel_case_types // ignore_for_file: constant_identifier_names // ignore_for_file: file_names // ignore_for_file: no_leading_underscores_for_local_identifiers // ignore_for_file: non_constant_identifier_names // ignore_for_file: overridden_fields // ignore_for_file: unnecessary_cast // ignore_for_file: unused_element // ignore_for_file: unused_import import "dart:isolate" show ReceivePort; import "dart:ffi" as ffi; import "package:jni/internal_helpers_for_jnigen.dart"; import "package:jni/jni.dart" as jni; // Auto-generated initialization code. final ffi.Pointer Function(String sym) jniLookup = ProtectedJniExtensions.initGeneratedLibrary("health_connect"); /// from: androidx.health.connect.client.HealthConnectClient class HealthConnectClient extends jni.JObject { late final jni.JObjType? _$type; @override jni.JObjType get $type => _$type ??= type; HealthConnectClient.fromRef( jni.JObjectPtr ref, ) : super.fromRef(ref); /// The type which includes information such as the signature of this class. static const type = $HealthConnectClientType(); static final _get_Companion = jniLookup>( "get_HealthConnectClient__Companion") .asFunction(); /// from: static public final androidx.health.connect.client.HealthConnectClient$Companion Companion /// The returned object must be deleted after use, by calling the `delete` method. static jni.JObject get Companion => const jni.JObjectType().fromRef(_get_Companion().object); /// from: static public final java.lang.String DEFAULT_PROVIDER_PACKAGE_NAME static const DEFAULT_PROVIDER_PACKAGE_NAME = "com.google.android.apps.healthdata"; static final _getPermissionController = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "HealthConnectClient__getPermissionController") .asFunction)>(); /// from: public abstract androidx.health.connect.client.PermissionController getPermissionController() /// The returned object must be deleted after use, by calling the `delete` method. PermissionController getPermissionController() => const $PermissionControllerType() .fromRef(_getPermissionController(reference).object); static final _insertRecords = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("HealthConnectClient__insertRecords") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.lang.Object insertRecords(java.util.List list, kotlin.coroutines.Continuation continuation) /// The returned object must be deleted after use, by calling the `delete` method. Future insertRecords(jni.JObject list) async { final $p = ReceivePort(); final $c = jni.Jni.newPortContinuation($p); _insertRecords(reference, list.reference, $c).object; final $o = jni.JObjectPtr.fromAddress(await $p.first); final $k = const jni.JObjectType().getClass().reference; if (jni.Jni.env.IsInstanceOf($o, $k) == 0) { throw "Failed"; } return const jni.JObjectType().fromRef($o); } static final _updateRecords = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("HealthConnectClient__updateRecords") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.lang.Object updateRecords(java.util.List list, kotlin.coroutines.Continuation continuation) /// The returned object must be deleted after use, by calling the `delete` method. Future updateRecords(jni.JObject list) async { final $p = ReceivePort(); final $c = jni.Jni.newPortContinuation($p); _updateRecords(reference, list.reference, $c).object; final $o = jni.JObjectPtr.fromAddress(await $p.first); final $k = const jni.JObjectType().getClass().reference; if (jni.Jni.env.IsInstanceOf($o, $k) == 0) { throw "Failed"; } return const jni.JObjectType().fromRef($o); } static final _deleteRecords = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("HealthConnectClient__deleteRecords") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.lang.Object deleteRecords(kotlin.reflect.KClass kClass, java.util.List list, java.util.List list1, kotlin.coroutines.Continuation continuation) /// The returned object must be deleted after use, by calling the `delete` method. Future deleteRecords( jni.JObject kClass, jni.JObject list, jni.JObject list1) async { final $p = ReceivePort(); final $c = jni.Jni.newPortContinuation($p); _deleteRecords( reference, kClass.reference, list.reference, list1.reference, $c) .object; final $o = jni.JObjectPtr.fromAddress(await $p.first); final $k = const jni.JObjectType().getClass().reference; if (jni.Jni.env.IsInstanceOf($o, $k) == 0) { throw "Failed"; } return const jni.JObjectType().fromRef($o); } static final _deleteRecords1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>( "HealthConnectClient__deleteRecords1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.lang.Object deleteRecords(kotlin.reflect.KClass kClass, androidx.health.connect.client.time.TimeRangeFilter timeRangeFilter, kotlin.coroutines.Continuation continuation) /// The returned object must be deleted after use, by calling the `delete` method. Future deleteRecords1( jni.JObject kClass, TimeRangeFilter timeRangeFilter) async { final $p = ReceivePort(); final $c = jni.Jni.newPortContinuation($p); _deleteRecords1(reference, kClass.reference, timeRangeFilter.reference, $c) .object; final $o = jni.JObjectPtr.fromAddress(await $p.first); final $k = const jni.JObjectType().getClass().reference; if (jni.Jni.env.IsInstanceOf($o, $k) == 0) { throw "Failed"; } return const jni.JObjectType().fromRef($o); } static final _readRecord = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("HealthConnectClient__readRecord") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.lang.Object readRecord(kotlin.reflect.KClass kClass, java.lang.String string, kotlin.coroutines.Continuation continuation) /// The returned object must be deleted after use, by calling the `delete` method. Future readRecord( jni.JObjType $T, jni.JObject kClass, jni.JString string) async { final $p = ReceivePort(); final $c = jni.Jni.newPortContinuation($p); _readRecord(reference, kClass.reference, string.reference, $c).object; final $o = jni.JObjectPtr.fromAddress(await $p.first); final $k = const jni.JObjectType().getClass().reference; if (jni.Jni.env.IsInstanceOf($o, $k) == 0) { throw "Failed"; } return const jni.JObjectType().fromRef($o); } static final _readRecords = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("HealthConnectClient__readRecords") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.lang.Object readRecords(androidx.health.connect.client.request.ReadRecordsRequest readRecordsRequest, kotlin.coroutines.Continuation continuation) /// The returned object must be deleted after use, by calling the `delete` method. Future readRecords( jni.JObjType $T, ReadRecordsRequest readRecordsRequest) async { final $p = ReceivePort(); final $c = jni.Jni.newPortContinuation($p); _readRecords(reference, readRecordsRequest.reference, $c).object; final $o = jni.JObjectPtr.fromAddress(await $p.first); final $k = const jni.JObjectType().getClass().reference; if (jni.Jni.env.IsInstanceOf($o, $k) == 0) { throw "Failed"; } return const jni.JObjectType().fromRef($o); } static final _aggregate = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("HealthConnectClient__aggregate") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.lang.Object aggregate(androidx.health.connect.client.request.AggregateRequest aggregateRequest, kotlin.coroutines.Continuation continuation) /// The returned object must be deleted after use, by calling the `delete` method. Future aggregate(AggregateRequest aggregateRequest) async { final $p = ReceivePort(); final $c = jni.Jni.newPortContinuation($p); _aggregate(reference, aggregateRequest.reference, $c).object; final $o = jni.JObjectPtr.fromAddress(await $p.first); final $k = const $AggregationResultType().getClass().reference; if (jni.Jni.env.IsInstanceOf($o, $k) == 0) { throw "Failed"; } return const $AggregationResultType().fromRef($o); } static final _aggregateGroupByDuration = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>>( "HealthConnectClient__aggregateGroupByDuration") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.lang.Object aggregateGroupByDuration(androidx.health.connect.client.request.AggregateGroupByDurationRequest aggregateGroupByDurationRequest, kotlin.coroutines.Continuation continuation) /// The returned object must be deleted after use, by calling the `delete` method. Future aggregateGroupByDuration( AggregateGroupByDurationRequest aggregateGroupByDurationRequest) async { final $p = ReceivePort(); final $c = jni.Jni.newPortContinuation($p); _aggregateGroupByDuration( reference, aggregateGroupByDurationRequest.reference, $c) .object; final $o = jni.JObjectPtr.fromAddress(await $p.first); final $k = const jni.JObjectType().getClass().reference; if (jni.Jni.env.IsInstanceOf($o, $k) == 0) { throw "Failed"; } return const jni.JObjectType().fromRef($o); } static final _aggregateGroupByPeriod = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>>( "HealthConnectClient__aggregateGroupByPeriod") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.lang.Object aggregateGroupByPeriod(androidx.health.connect.client.request.AggregateGroupByPeriodRequest aggregateGroupByPeriodRequest, kotlin.coroutines.Continuation continuation) /// The returned object must be deleted after use, by calling the `delete` method. Future aggregateGroupByPeriod( AggregateGroupByPeriodRequest aggregateGroupByPeriodRequest) async { final $p = ReceivePort(); final $c = jni.Jni.newPortContinuation($p); _aggregateGroupByPeriod( reference, aggregateGroupByPeriodRequest.reference, $c) .object; final $o = jni.JObjectPtr.fromAddress(await $p.first); final $k = const jni.JObjectType().getClass().reference; if (jni.Jni.env.IsInstanceOf($o, $k) == 0) { throw "Failed"; } return const jni.JObjectType().fromRef($o); } static final _getChangesToken = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>>( "HealthConnectClient__getChangesToken") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.lang.Object getChangesToken(androidx.health.connect.client.request.ChangesTokenRequest changesTokenRequest, kotlin.coroutines.Continuation continuation) /// The returned object must be deleted after use, by calling the `delete` method. Future getChangesToken( ChangesTokenRequest changesTokenRequest) async { final $p = ReceivePort(); final $c = jni.Jni.newPortContinuation($p); _getChangesToken(reference, changesTokenRequest.reference, $c).object; final $o = jni.JObjectPtr.fromAddress(await $p.first); final $k = const jni.JStringType().getClass().reference; if (jni.Jni.env.IsInstanceOf($o, $k) == 0) { throw "Failed"; } return const jni.JStringType().fromRef($o); } static final _getChanges = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("HealthConnectClient__getChanges") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.lang.Object getChanges(java.lang.String string, kotlin.coroutines.Continuation continuation) /// The returned object must be deleted after use, by calling the `delete` method. Future getChanges(jni.JString string) async { final $p = ReceivePort(); final $c = jni.Jni.newPortContinuation($p); _getChanges(reference, string.reference, $c).object; final $o = jni.JObjectPtr.fromAddress(await $p.first); final $k = const jni.JObjectType().getClass().reference; if (jni.Jni.env.IsInstanceOf($o, $k) == 0) { throw "Failed"; } return const jni.JObjectType().fromRef($o); } static final _isAvailable = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("HealthConnectClient__isAvailable") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: static public boolean isAvailable(android.content.Context context, java.util.List list) static bool isAvailable(Context context, jni.JObject list) => _isAvailable(context.reference, list.reference).boolean; static final _getOrCreate = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("HealthConnectClient__getOrCreate") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: static public androidx.health.connect.client.HealthConnectClient getOrCreate(android.content.Context context, java.util.List list) /// The returned object must be deleted after use, by calling the `delete` method. static HealthConnectClient getOrCreate(Context context, jni.JObject list) => const $HealthConnectClientType() .fromRef(_getOrCreate(context.reference, list.reference).object); static final _isAvailable1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("HealthConnectClient__isAvailable1") .asFunction)>(); /// from: static public boolean isAvailable(android.content.Context context) static bool isAvailable1(Context context) => _isAvailable1(context.reference).boolean; static final _getOrCreate1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("HealthConnectClient__getOrCreate1") .asFunction)>(); /// from: static public androidx.health.connect.client.HealthConnectClient getOrCreate(android.content.Context context) /// The returned object must be deleted after use, by calling the `delete` method. static HealthConnectClient getOrCreate1(Context context) => const $HealthConnectClientType() .fromRef(_getOrCreate1(context.reference).object); } class $HealthConnectClientType extends jni.JObjType { const $HealthConnectClientType(); @override String get signature => r"Landroidx/health/connect/client/HealthConnectClient;"; @override HealthConnectClient fromRef(jni.JObjectPtr ref) => HealthConnectClient.fromRef(ref); } extension $HealthConnectClientArray on jni.JArray { HealthConnectClient operator [](int index) { return (elementType as $HealthConnectClientType) .fromRef(elementAt(index, jni.JniCallType.objectType).object); } void operator []=(int index, HealthConnectClient value) { (this as jni.JArray)[index] = value; } } /// from: androidx.health.connect.client.PermissionController class PermissionController extends jni.JObject { late final jni.JObjType? _$type; @override jni.JObjType get $type => _$type ??= type; PermissionController.fromRef( jni.JObjectPtr ref, ) : super.fromRef(ref); /// The type which includes information such as the signature of this class. static const type = $PermissionControllerType(); static final _createRequestPermissionActivityContract = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "PermissionController__createRequestPermissionActivityContract") .asFunction)>(); /// from: public abstract androidx.activity.result.contract.ActivityResultContract createRequestPermissionActivityContract() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject createRequestPermissionActivityContract() => const jni.JObjectType() .fromRef(_createRequestPermissionActivityContract(reference).object); static final _getGrantedPermissions = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>>( "PermissionController__getGrantedPermissions") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.lang.Object getGrantedPermissions(java.util.Set set, kotlin.coroutines.Continuation continuation) /// The returned object must be deleted after use, by calling the `delete` method. Future> getGrantedPermissions(Set set0) async { final $p = ReceivePort(); final $c = jni.Jni.newPortContinuation($p); _getGrantedPermissions(reference, set0.reference, $c).object; final $o = jni.JObjectPtr.fromAddress(await $p.first); final $k = const $SetType(jni.JObjectType()).getClass().reference; if (jni.Jni.env.IsInstanceOf($o, $k) == 0) { throw "Failed"; } return const $SetType(jni.JObjectType()).fromRef($o); } static final _revokeAllPermissions = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "PermissionController__revokeAllPermissions") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.lang.Object revokeAllPermissions(kotlin.coroutines.Continuation continuation) /// The returned object must be deleted after use, by calling the `delete` method. Future revokeAllPermissions() async { final $p = ReceivePort(); final $c = jni.Jni.newPortContinuation($p); _revokeAllPermissions(reference, $c).object; final $o = jni.JObjectPtr.fromAddress(await $p.first); final $k = const jni.JObjectType().getClass().reference; if (jni.Jni.env.IsInstanceOf($o, $k) == 0) { throw "Failed"; } return const jni.JObjectType().fromRef($o); } } class $PermissionControllerType extends jni.JObjType { const $PermissionControllerType(); @override String get signature => r"Landroidx/health/connect/client/PermissionController;"; @override PermissionController fromRef(jni.JObjectPtr ref) => PermissionController.fromRef(ref); } extension $PermissionControllerArray on jni.JArray { PermissionController operator [](int index) { return (elementType as $PermissionControllerType) .fromRef(elementAt(index, jni.JniCallType.objectType).object); } void operator []=(int index, PermissionController value) { (this as jni.JArray)[index] = value; } } /// from: androidx.health.connect.client.records.StepsRecord class StepsRecord extends jni.JObject { late final jni.JObjType? _$type; @override jni.JObjType get $type => _$type ??= type; StepsRecord.fromRef( jni.JObjectPtr ref, ) : super.fromRef(ref); /// The type which includes information such as the signature of this class. static const type = $StepsRecordType(); static final _get_Companion = jniLookup>( "get_StepsRecord__Companion") .asFunction(); /// from: static public final androidx.health.connect.client.records.StepsRecord$Companion Companion /// The returned object must be deleted after use, by calling the `delete` method. static jni.JObject get Companion => const jni.JObjectType().fromRef(_get_Companion().object); static final _get_COUNT_TOTAL = jniLookup>( "get_StepsRecord__COUNT_TOTAL") .asFunction(); /// from: static public final androidx.health.connect.client.aggregate.AggregateMetric COUNT_TOTAL /// The returned object must be deleted after use, by calling the `delete` method. static AggregateMetric get COUNT_TOTAL => const $AggregateMetricType($LongType()) .fromRef(_get_COUNT_TOTAL().object); static final _ctor = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Int64, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("StepsRecord__ctor") .asFunction< jni.JniResult Function( int, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void (long j, java.time.Instant instant, java.time.ZoneOffset zoneOffset, java.time.Instant instant1, java.time.ZoneOffset zoneOffset1, androidx.health.connect.client.records.metadata.Metadata metadata) StepsRecord(int j, Instant instant, jni.JObject zoneOffset, Instant instant1, jni.JObject zoneOffset1, jni.JObject metadata) : super.fromRef(_ctor(j, instant.reference, zoneOffset.reference, instant1.reference, zoneOffset1.reference, metadata.reference) .object); static final _ctor1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Int64, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer)>>("StepsRecord__ctor1") .asFunction< jni.JniResult Function( int, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, int, ffi.Pointer)>(); /// from: public void (long j, java.time.Instant instant, java.time.ZoneOffset zoneOffset, java.time.Instant instant1, java.time.ZoneOffset zoneOffset1, androidx.health.connect.client.records.metadata.Metadata metadata, int i, kotlin.jvm.internal.DefaultConstructorMarker defaultConstructorMarker) StepsRecord.ctor1( int j, Instant instant, jni.JObject zoneOffset, Instant instant1, jni.JObject zoneOffset1, jni.JObject metadata, int i, jni.JObject defaultConstructorMarker) : super.fromRef(_ctor1( j, instant.reference, zoneOffset.reference, instant1.reference, zoneOffset1.reference, metadata.reference, i, defaultConstructorMarker.reference) .object); static final _getCount = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("StepsRecord__getCount") .asFunction)>(); /// from: public final long getCount() int getCount() => _getCount(reference).long; static final _getStartTime = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("StepsRecord__getStartTime") .asFunction)>(); /// from: public java.time.Instant getStartTime() /// The returned object must be deleted after use, by calling the `delete` method. Instant getStartTime() => const $InstantType().fromRef(_getStartTime(reference).object); static final _getStartZoneOffset = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("StepsRecord__getStartZoneOffset") .asFunction)>(); /// from: public java.time.ZoneOffset getStartZoneOffset() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getStartZoneOffset() => const jni.JObjectType().fromRef(_getStartZoneOffset(reference).object); static final _getEndTime = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("StepsRecord__getEndTime") .asFunction)>(); /// from: public java.time.Instant getEndTime() /// The returned object must be deleted after use, by calling the `delete` method. Instant getEndTime() => const $InstantType().fromRef(_getEndTime(reference).object); static final _getEndZoneOffset = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("StepsRecord__getEndZoneOffset") .asFunction)>(); /// from: public java.time.ZoneOffset getEndZoneOffset() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getEndZoneOffset() => const jni.JObjectType().fromRef(_getEndZoneOffset(reference).object); static final _getMetadata = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("StepsRecord__getMetadata") .asFunction)>(); /// from: public androidx.health.connect.client.records.metadata.Metadata getMetadata() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getMetadata() => const jni.JObjectType().fromRef(_getMetadata(reference).object); static final _equals1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("StepsRecord__equals1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean equals(java.lang.Object object) bool equals1(jni.JObject object) => _equals1(reference, object.reference).boolean; static final _hashCode1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("StepsRecord__hashCode1") .asFunction)>(); /// from: public int hashCode() int hashCode1() => _hashCode1(reference).integer; } class $StepsRecordType extends jni.JObjType { const $StepsRecordType(); @override String get signature => r"Landroidx/health/connect/client/records/StepsRecord;"; @override StepsRecord fromRef(jni.JObjectPtr ref) => StepsRecord.fromRef(ref); } extension $StepsRecordArray on jni.JArray { StepsRecord operator [](int index) { return (elementType as $StepsRecordType) .fromRef(elementAt(index, jni.JniCallType.objectType).object); } void operator []=(int index, StepsRecord value) { (this as jni.JArray)[index] = value; } } /// from: androidx.health.connect.client.time.TimeRangeFilter$Companion class TimeRangeFilter_Companion extends jni.JObject { late final jni.JObjType? _$type; @override jni.JObjType get $type => _$type ??= type; TimeRangeFilter_Companion.fromRef( jni.JObjectPtr ref, ) : super.fromRef(ref); /// The type which includes information such as the signature of this class. static const type = $TimeRangeFilter_CompanionType(); static final _between = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("TimeRangeFilter_Companion__between") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public final androidx.health.connect.client.time.TimeRangeFilter between(java.time.Instant instant, java.time.Instant instant1) /// The returned object must be deleted after use, by calling the `delete` method. TimeRangeFilter between(Instant instant, Instant instant1) => const $TimeRangeFilterType().fromRef( _between(reference, instant.reference, instant1.reference).object); static final _between1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>>( "TimeRangeFilter_Companion__between1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public final androidx.health.connect.client.time.TimeRangeFilter between(java.time.LocalDateTime localDateTime, java.time.LocalDateTime localDateTime1) /// The returned object must be deleted after use, by calling the `delete` method. TimeRangeFilter between1( jni.JObject localDateTime, jni.JObject localDateTime1) => const $TimeRangeFilterType().fromRef(_between1( reference, localDateTime.reference, localDateTime1.reference) .object); static final _before = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("TimeRangeFilter_Companion__before") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public final androidx.health.connect.client.time.TimeRangeFilter before(java.time.Instant instant) /// The returned object must be deleted after use, by calling the `delete` method. TimeRangeFilter before(Instant instant) => const $TimeRangeFilterType() .fromRef(_before(reference, instant.reference).object); static final _before1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("TimeRangeFilter_Companion__before1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public final androidx.health.connect.client.time.TimeRangeFilter before(java.time.LocalDateTime localDateTime) /// The returned object must be deleted after use, by calling the `delete` method. TimeRangeFilter before1(jni.JObject localDateTime) => const $TimeRangeFilterType() .fromRef(_before1(reference, localDateTime.reference).object); static final _after = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("TimeRangeFilter_Companion__after") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public final androidx.health.connect.client.time.TimeRangeFilter after(java.time.Instant instant) /// The returned object must be deleted after use, by calling the `delete` method. TimeRangeFilter after(Instant instant) => const $TimeRangeFilterType() .fromRef(_after(reference, instant.reference).object); static final _after1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("TimeRangeFilter_Companion__after1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public final androidx.health.connect.client.time.TimeRangeFilter after(java.time.LocalDateTime localDateTime) /// The returned object must be deleted after use, by calling the `delete` method. TimeRangeFilter after1(jni.JObject localDateTime) => const $TimeRangeFilterType() .fromRef(_after1(reference, localDateTime.reference).object); static final _ctor = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("TimeRangeFilter_Companion__ctor") .asFunction)>(); /// from: public void (kotlin.jvm.internal.DefaultConstructorMarker defaultConstructorMarker) TimeRangeFilter_Companion(jni.JObject defaultConstructorMarker) : super.fromRef(_ctor(defaultConstructorMarker.reference).object); } class $TimeRangeFilter_CompanionType extends jni.JObjType { const $TimeRangeFilter_CompanionType(); @override String get signature => r"Landroidx/health/connect/client/time/TimeRangeFilter$Companion;"; @override TimeRangeFilter_Companion fromRef(jni.JObjectPtr ref) => TimeRangeFilter_Companion.fromRef(ref); } extension $TimeRangeFilter_CompanionArray on jni.JArray { TimeRangeFilter_Companion operator [](int index) { return (elementType as $TimeRangeFilter_CompanionType) .fromRef(elementAt(index, jni.JniCallType.objectType).object); } void operator []=(int index, TimeRangeFilter_Companion value) { (this as jni.JArray)[index] = value; } } /// from: androidx.health.connect.client.time.TimeRangeFilter class TimeRangeFilter extends jni.JObject { late final jni.JObjType? _$type; @override jni.JObjType get $type => _$type ??= type; TimeRangeFilter.fromRef( jni.JObjectPtr ref, ) : super.fromRef(ref); /// The type which includes information such as the signature of this class. static const type = $TimeRangeFilterType(); static final _get_Companion = jniLookup>( "get_TimeRangeFilter__Companion") .asFunction(); /// from: static public final androidx.health.connect.client.time.TimeRangeFilter$Companion Companion /// The returned object must be deleted after use, by calling the `delete` method. static TimeRangeFilter_Companion get Companion => const $TimeRangeFilter_CompanionType().fromRef(_get_Companion().object); static final _ctor = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("TimeRangeFilter__ctor") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void (java.time.Instant instant, java.time.Instant instant1, java.time.LocalDateTime localDateTime, java.time.LocalDateTime localDateTime1) TimeRangeFilter(Instant instant, Instant instant1, jni.JObject localDateTime, jni.JObject localDateTime1) : super.fromRef(_ctor(instant.reference, instant1.reference, localDateTime.reference, localDateTime1.reference) .object); static final _ctor1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer)>>("TimeRangeFilter__ctor1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, int, ffi.Pointer)>(); /// from: public void (java.time.Instant instant, java.time.Instant instant1, java.time.LocalDateTime localDateTime, java.time.LocalDateTime localDateTime1, int i, kotlin.jvm.internal.DefaultConstructorMarker defaultConstructorMarker) TimeRangeFilter.ctor1( Instant instant, Instant instant1, jni.JObject localDateTime, jni.JObject localDateTime1, int i, jni.JObject defaultConstructorMarker) : super.fromRef(_ctor1( instant.reference, instant1.reference, localDateTime.reference, localDateTime1.reference, i, defaultConstructorMarker.reference) .object); static final _equals1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("TimeRangeFilter__equals1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean equals(java.lang.Object object) bool equals1(jni.JObject object) => _equals1(reference, object.reference).boolean; static final _hashCode1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("TimeRangeFilter__hashCode1") .asFunction)>(); /// from: public int hashCode() int hashCode1() => _hashCode1(reference).integer; static final _ctor2 = jniLookup>( "TimeRangeFilter__ctor2") .asFunction(); /// from: public void () TimeRangeFilter.ctor2() : super.fromRef(_ctor2().object); static final _between = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("TimeRangeFilter__between") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: static public final androidx.health.connect.client.time.TimeRangeFilter between(java.time.Instant instant, java.time.Instant instant1) /// The returned object must be deleted after use, by calling the `delete` method. static TimeRangeFilter between(Instant instant, Instant instant1) => const $TimeRangeFilterType() .fromRef(_between(instant.reference, instant1.reference).object); static final _between1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("TimeRangeFilter__between1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: static public final androidx.health.connect.client.time.TimeRangeFilter between(java.time.LocalDateTime localDateTime, java.time.LocalDateTime localDateTime1) /// The returned object must be deleted after use, by calling the `delete` method. static TimeRangeFilter between1( jni.JObject localDateTime, jni.JObject localDateTime1) => const $TimeRangeFilterType().fromRef( _between1(localDateTime.reference, localDateTime1.reference).object); static final _before = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("TimeRangeFilter__before") .asFunction)>(); /// from: static public final androidx.health.connect.client.time.TimeRangeFilter before(java.time.Instant instant) /// The returned object must be deleted after use, by calling the `delete` method. static TimeRangeFilter before(Instant instant) => const $TimeRangeFilterType().fromRef(_before(instant.reference).object); static final _before1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("TimeRangeFilter__before1") .asFunction)>(); /// from: static public final androidx.health.connect.client.time.TimeRangeFilter before(java.time.LocalDateTime localDateTime) /// The returned object must be deleted after use, by calling the `delete` method. static TimeRangeFilter before1(jni.JObject localDateTime) => const $TimeRangeFilterType() .fromRef(_before1(localDateTime.reference).object); static final _after = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("TimeRangeFilter__after") .asFunction)>(); /// from: static public final androidx.health.connect.client.time.TimeRangeFilter after(java.time.Instant instant) /// The returned object must be deleted after use, by calling the `delete` method. static TimeRangeFilter after(Instant instant) => const $TimeRangeFilterType().fromRef(_after(instant.reference).object); static final _after1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("TimeRangeFilter__after1") .asFunction)>(); /// from: static public final androidx.health.connect.client.time.TimeRangeFilter after(java.time.LocalDateTime localDateTime) /// The returned object must be deleted after use, by calling the `delete` method. static TimeRangeFilter after1(jni.JObject localDateTime) => const $TimeRangeFilterType() .fromRef(_after1(localDateTime.reference).object); } class $TimeRangeFilterType extends jni.JObjType { const $TimeRangeFilterType(); @override String get signature => r"Landroidx/health/connect/client/time/TimeRangeFilter;"; @override TimeRangeFilter fromRef(jni.JObjectPtr ref) => TimeRangeFilter.fromRef(ref); } extension $TimeRangeFilterArray on jni.JArray { TimeRangeFilter operator [](int index) { return (elementType as $TimeRangeFilterType) .fromRef(elementAt(index, jni.JniCallType.objectType).object); } void operator []=(int index, TimeRangeFilter value) { (this as jni.JArray)[index] = value; } } /// from: android.content.Context class Context extends jni.JObject { late final jni.JObjType? _$type; @override jni.JObjType get $type => _$type ??= type; Context.fromRef( jni.JObjectPtr ref, ) : super.fromRef(ref); /// The type which includes information such as the signature of this class. static const type = $ContextType(); /// from: static public final java.lang.String ACCESSIBILITY_SERVICE static const ACCESSIBILITY_SERVICE = "accessibility"; /// from: static public final java.lang.String ACCOUNT_SERVICE static const ACCOUNT_SERVICE = "account"; /// from: static public final java.lang.String ACTIVITY_SERVICE static const ACTIVITY_SERVICE = "activity"; /// from: static public final java.lang.String ALARM_SERVICE static const ALARM_SERVICE = "alarm"; /// from: static public final java.lang.String APPWIDGET_SERVICE static const APPWIDGET_SERVICE = "appwidget"; /// from: static public final java.lang.String APP_OPS_SERVICE static const APP_OPS_SERVICE = "appops"; /// from: static public final java.lang.String APP_SEARCH_SERVICE static const APP_SEARCH_SERVICE = "app_search"; /// from: static public final java.lang.String AUDIO_SERVICE static const AUDIO_SERVICE = "audio"; /// from: static public final java.lang.String BATTERY_SERVICE static const BATTERY_SERVICE = "batterymanager"; /// from: static public final int BIND_ABOVE_CLIENT static const BIND_ABOVE_CLIENT = 8; /// from: static public final int BIND_ADJUST_WITH_ACTIVITY static const BIND_ADJUST_WITH_ACTIVITY = 128; /// from: static public final int BIND_ALLOW_OOM_MANAGEMENT static const BIND_ALLOW_OOM_MANAGEMENT = 16; /// from: static public final int BIND_AUTO_CREATE static const BIND_AUTO_CREATE = 1; /// from: static public final int BIND_DEBUG_UNBIND static const BIND_DEBUG_UNBIND = 2; /// from: static public final int BIND_EXTERNAL_SERVICE static const BIND_EXTERNAL_SERVICE = -2147483648; /// from: static public final int BIND_IMPORTANT static const BIND_IMPORTANT = 64; /// from: static public final int BIND_INCLUDE_CAPABILITIES static const BIND_INCLUDE_CAPABILITIES = 4096; /// from: static public final int BIND_NOT_FOREGROUND static const BIND_NOT_FOREGROUND = 4; /// from: static public final int BIND_NOT_PERCEPTIBLE static const BIND_NOT_PERCEPTIBLE = 256; /// from: static public final int BIND_WAIVE_PRIORITY static const BIND_WAIVE_PRIORITY = 32; /// from: static public final java.lang.String BIOMETRIC_SERVICE static const BIOMETRIC_SERVICE = "biometric"; /// from: static public final java.lang.String BLOB_STORE_SERVICE static const BLOB_STORE_SERVICE = "blob_store"; /// from: static public final java.lang.String BLUETOOTH_SERVICE static const BLUETOOTH_SERVICE = "bluetooth"; /// from: static public final java.lang.String BUGREPORT_SERVICE static const BUGREPORT_SERVICE = "bugreport"; /// from: static public final java.lang.String CAMERA_SERVICE static const CAMERA_SERVICE = "camera"; /// from: static public final java.lang.String CAPTIONING_SERVICE static const CAPTIONING_SERVICE = "captioning"; /// from: static public final java.lang.String CARRIER_CONFIG_SERVICE static const CARRIER_CONFIG_SERVICE = "carrier_config"; /// from: static public final java.lang.String CLIPBOARD_SERVICE static const CLIPBOARD_SERVICE = "clipboard"; /// from: static public final java.lang.String COMPANION_DEVICE_SERVICE static const COMPANION_DEVICE_SERVICE = "companiondevice"; /// from: static public final java.lang.String CONNECTIVITY_DIAGNOSTICS_SERVICE static const CONNECTIVITY_DIAGNOSTICS_SERVICE = "connectivity_diagnostics"; /// from: static public final java.lang.String CONNECTIVITY_SERVICE static const CONNECTIVITY_SERVICE = "connectivity"; /// from: static public final java.lang.String CONSUMER_IR_SERVICE static const CONSUMER_IR_SERVICE = "consumer_ir"; /// from: static public final int CONTEXT_IGNORE_SECURITY static const CONTEXT_IGNORE_SECURITY = 2; /// from: static public final int CONTEXT_INCLUDE_CODE static const CONTEXT_INCLUDE_CODE = 1; /// from: static public final int CONTEXT_RESTRICTED static const CONTEXT_RESTRICTED = 4; /// from: static public final java.lang.String CROSS_PROFILE_APPS_SERVICE static const CROSS_PROFILE_APPS_SERVICE = "crossprofileapps"; /// from: static public final java.lang.String DEVICE_POLICY_SERVICE static const DEVICE_POLICY_SERVICE = "device_policy"; /// from: static public final java.lang.String DISPLAY_HASH_SERVICE static const DISPLAY_HASH_SERVICE = "display_hash"; /// from: static public final java.lang.String DISPLAY_SERVICE static const DISPLAY_SERVICE = "display"; /// from: static public final java.lang.String DOMAIN_VERIFICATION_SERVICE static const DOMAIN_VERIFICATION_SERVICE = "domain_verification"; /// from: static public final java.lang.String DOWNLOAD_SERVICE static const DOWNLOAD_SERVICE = "download"; /// from: static public final java.lang.String DROPBOX_SERVICE static const DROPBOX_SERVICE = "dropbox"; /// from: static public final java.lang.String EUICC_SERVICE static const EUICC_SERVICE = "euicc"; /// from: static public final java.lang.String FILE_INTEGRITY_SERVICE static const FILE_INTEGRITY_SERVICE = "file_integrity"; /// from: static public final java.lang.String FINGERPRINT_SERVICE static const FINGERPRINT_SERVICE = "fingerprint"; /// from: static public final java.lang.String GAME_SERVICE static const GAME_SERVICE = "game"; /// from: static public final java.lang.String HARDWARE_PROPERTIES_SERVICE static const HARDWARE_PROPERTIES_SERVICE = "hardware_properties"; /// from: static public final java.lang.String INPUT_METHOD_SERVICE static const INPUT_METHOD_SERVICE = "input_method"; /// from: static public final java.lang.String INPUT_SERVICE static const INPUT_SERVICE = "input"; /// from: static public final java.lang.String IPSEC_SERVICE static const IPSEC_SERVICE = "ipsec"; /// from: static public final java.lang.String JOB_SCHEDULER_SERVICE static const JOB_SCHEDULER_SERVICE = "jobscheduler"; /// from: static public final java.lang.String KEYGUARD_SERVICE static const KEYGUARD_SERVICE = "keyguard"; /// from: static public final java.lang.String LAUNCHER_APPS_SERVICE static const LAUNCHER_APPS_SERVICE = "launcherapps"; /// from: static public final java.lang.String LAYOUT_INFLATER_SERVICE static const LAYOUT_INFLATER_SERVICE = "layout_inflater"; /// from: static public final java.lang.String LOCALE_SERVICE static const LOCALE_SERVICE = "locale"; /// from: static public final java.lang.String LOCATION_SERVICE static const LOCATION_SERVICE = "location"; /// from: static public final java.lang.String MEDIA_COMMUNICATION_SERVICE static const MEDIA_COMMUNICATION_SERVICE = "media_communication"; /// from: static public final java.lang.String MEDIA_METRICS_SERVICE static const MEDIA_METRICS_SERVICE = "media_metrics"; /// from: static public final java.lang.String MEDIA_PROJECTION_SERVICE static const MEDIA_PROJECTION_SERVICE = "media_projection"; /// from: static public final java.lang.String MEDIA_ROUTER_SERVICE static const MEDIA_ROUTER_SERVICE = "media_router"; /// from: static public final java.lang.String MEDIA_SESSION_SERVICE static const MEDIA_SESSION_SERVICE = "media_session"; /// from: static public final java.lang.String MIDI_SERVICE static const MIDI_SERVICE = "midi"; /// from: static public final int MODE_APPEND static const MODE_APPEND = 32768; /// from: static public final int MODE_ENABLE_WRITE_AHEAD_LOGGING static const MODE_ENABLE_WRITE_AHEAD_LOGGING = 8; /// from: static public final int MODE_MULTI_PROCESS static const MODE_MULTI_PROCESS = 4; /// from: static public final int MODE_NO_LOCALIZED_COLLATORS static const MODE_NO_LOCALIZED_COLLATORS = 16; /// from: static public final int MODE_PRIVATE static const MODE_PRIVATE = 0; /// from: static public final int MODE_WORLD_READABLE static const MODE_WORLD_READABLE = 1; /// from: static public final int MODE_WORLD_WRITEABLE static const MODE_WORLD_WRITEABLE = 2; /// from: static public final java.lang.String NETWORK_STATS_SERVICE static const NETWORK_STATS_SERVICE = "netstats"; /// from: static public final java.lang.String NFC_SERVICE static const NFC_SERVICE = "nfc"; /// from: static public final java.lang.String NOTIFICATION_SERVICE static const NOTIFICATION_SERVICE = "notification"; /// from: static public final java.lang.String NSD_SERVICE static const NSD_SERVICE = "servicediscovery"; /// from: static public final java.lang.String PEOPLE_SERVICE static const PEOPLE_SERVICE = "people"; /// from: static public final java.lang.String PERFORMANCE_HINT_SERVICE static const PERFORMANCE_HINT_SERVICE = "performance_hint"; /// from: static public final java.lang.String POWER_SERVICE static const POWER_SERVICE = "power"; /// from: static public final java.lang.String PRINT_SERVICE static const PRINT_SERVICE = "print"; /// from: static public final int RECEIVER_EXPORTED static const RECEIVER_EXPORTED = 2; /// from: static public final int RECEIVER_NOT_EXPORTED static const RECEIVER_NOT_EXPORTED = 4; /// from: static public final int RECEIVER_VISIBLE_TO_INSTANT_APPS static const RECEIVER_VISIBLE_TO_INSTANT_APPS = 1; /// from: static public final java.lang.String RESTRICTIONS_SERVICE static const RESTRICTIONS_SERVICE = "restrictions"; /// from: static public final java.lang.String ROLE_SERVICE static const ROLE_SERVICE = "role"; /// from: static public final java.lang.String SEARCH_SERVICE static const SEARCH_SERVICE = "search"; /// from: static public final java.lang.String SENSOR_SERVICE static const SENSOR_SERVICE = "sensor"; /// from: static public final java.lang.String SHORTCUT_SERVICE static const SHORTCUT_SERVICE = "shortcut"; /// from: static public final java.lang.String STATUS_BAR_SERVICE static const STATUS_BAR_SERVICE = "statusbar"; /// from: static public final java.lang.String STORAGE_SERVICE static const STORAGE_SERVICE = "storage"; /// from: static public final java.lang.String STORAGE_STATS_SERVICE static const STORAGE_STATS_SERVICE = "storagestats"; /// from: static public final java.lang.String SYSTEM_HEALTH_SERVICE static const SYSTEM_HEALTH_SERVICE = "systemhealth"; /// from: static public final java.lang.String TELECOM_SERVICE static const TELECOM_SERVICE = "telecom"; /// from: static public final java.lang.String TELEPHONY_IMS_SERVICE static const TELEPHONY_IMS_SERVICE = "telephony_ims"; /// from: static public final java.lang.String TELEPHONY_SERVICE static const TELEPHONY_SERVICE = "phone"; /// from: static public final java.lang.String TELEPHONY_SUBSCRIPTION_SERVICE static const TELEPHONY_SUBSCRIPTION_SERVICE = "telephony_subscription_service"; /// from: static public final java.lang.String TEXT_CLASSIFICATION_SERVICE static const TEXT_CLASSIFICATION_SERVICE = "textclassification"; /// from: static public final java.lang.String TEXT_SERVICES_MANAGER_SERVICE static const TEXT_SERVICES_MANAGER_SERVICE = "textservices"; /// from: static public final java.lang.String TV_INPUT_SERVICE static const TV_INPUT_SERVICE = "tv_input"; /// from: static public final java.lang.String TV_INTERACTIVE_APP_SERVICE static const TV_INTERACTIVE_APP_SERVICE = "tv_interactive_app"; /// from: static public final java.lang.String UI_MODE_SERVICE static const UI_MODE_SERVICE = "uimode"; /// from: static public final java.lang.String USAGE_STATS_SERVICE static const USAGE_STATS_SERVICE = "usagestats"; /// from: static public final java.lang.String USB_SERVICE static const USB_SERVICE = "usb"; /// from: static public final java.lang.String USER_SERVICE static const USER_SERVICE = "user"; /// from: static public final java.lang.String VIBRATOR_MANAGER_SERVICE static const VIBRATOR_MANAGER_SERVICE = "vibrator_manager"; /// from: static public final java.lang.String VIBRATOR_SERVICE static const VIBRATOR_SERVICE = "vibrator"; /// from: static public final java.lang.String VPN_MANAGEMENT_SERVICE static const VPN_MANAGEMENT_SERVICE = "vpn_management"; /// from: static public final java.lang.String WALLPAPER_SERVICE static const WALLPAPER_SERVICE = "wallpaper"; /// from: static public final java.lang.String WIFI_AWARE_SERVICE static const WIFI_AWARE_SERVICE = "wifiaware"; /// from: static public final java.lang.String WIFI_P2P_SERVICE static const WIFI_P2P_SERVICE = "wifip2p"; /// from: static public final java.lang.String WIFI_RTT_RANGING_SERVICE static const WIFI_RTT_RANGING_SERVICE = "wifirtt"; /// from: static public final java.lang.String WIFI_SERVICE static const WIFI_SERVICE = "wifi"; /// from: static public final java.lang.String WINDOW_SERVICE static const WINDOW_SERVICE = "window"; static final _ctor = jniLookup>("Context__ctor") .asFunction(); /// from: public void () Context() : super.fromRef(_ctor().object); static final _getAssets = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getAssets") .asFunction)>(); /// from: public abstract android.content.res.AssetManager getAssets() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getAssets() => const jni.JObjectType().fromRef(_getAssets(reference).object); static final _getResources = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getResources") .asFunction)>(); /// from: public abstract android.content.res.Resources getResources() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getResources() => const jni.JObjectType().fromRef(_getResources(reference).object); static final _getPackageManager = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getPackageManager") .asFunction)>(); /// from: public abstract android.content.pm.PackageManager getPackageManager() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getPackageManager() => const jni.JObjectType().fromRef(_getPackageManager(reference).object); static final _getContentResolver = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getContentResolver") .asFunction)>(); /// from: public abstract android.content.ContentResolver getContentResolver() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getContentResolver() => const jni.JObjectType().fromRef(_getContentResolver(reference).object); static final _getMainLooper = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getMainLooper") .asFunction)>(); /// from: public abstract android.os.Looper getMainLooper() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getMainLooper() => const jni.JObjectType().fromRef(_getMainLooper(reference).object); static final _getMainExecutor = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getMainExecutor") .asFunction)>(); /// from: public java.util.concurrent.Executor getMainExecutor() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getMainExecutor() => const jni.JObjectType().fromRef(_getMainExecutor(reference).object); static final _getApplicationContext = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getApplicationContext") .asFunction)>(); /// from: public abstract android.content.Context getApplicationContext() /// The returned object must be deleted after use, by calling the `delete` method. Context getApplicationContext() => const $ContextType().fromRef(_getApplicationContext(reference).object); static final _registerComponentCallbacks = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Context__registerComponentCallbacks") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void registerComponentCallbacks(android.content.ComponentCallbacks componentCallbacks) void registerComponentCallbacks(jni.JObject componentCallbacks) => _registerComponentCallbacks(reference, componentCallbacks.reference) .check(); static final _unregisterComponentCallbacks = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Context__unregisterComponentCallbacks") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void unregisterComponentCallbacks(android.content.ComponentCallbacks componentCallbacks) void unregisterComponentCallbacks(jni.JObject componentCallbacks) => _unregisterComponentCallbacks(reference, componentCallbacks.reference) .check(); static final _getText = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Context__getText") .asFunction, int)>(); /// from: public final java.lang.CharSequence getText(int i) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getText(int i) => const jni.JObjectType().fromRef(_getText(reference, i).object); static final _getString = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Context__getString") .asFunction, int)>(); /// from: public final java.lang.String getString(int i) /// The returned object must be deleted after use, by calling the `delete` method. jni.JString getString(int i) => const jni.JStringType().fromRef(_getString(reference, i).object); static final _getString1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Context__getString1") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public final java.lang.String getString(int i, java.lang.Object[] objects) /// The returned object must be deleted after use, by calling the `delete` method. jni.JString getString1(int i, jni.JArray objects) => const jni.JStringType() .fromRef(_getString1(reference, i, objects.reference).object); static final _getColor = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Context__getColor") .asFunction, int)>(); /// from: public final int getColor(int i) int getColor(int i) => _getColor(reference, i).integer; static final _getDrawable = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Context__getDrawable") .asFunction, int)>(); /// from: public final android.graphics.drawable.Drawable getDrawable(int i) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getDrawable(int i) => const jni.JObjectType().fromRef(_getDrawable(reference, i).object); static final _getColorStateList = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32)>>("Context__getColorStateList") .asFunction, int)>(); /// from: public final android.content.res.ColorStateList getColorStateList(int i) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getColorStateList(int i) => const jni.JObjectType().fromRef(_getColorStateList(reference, i).object); static final _setTheme = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Context__setTheme") .asFunction, int)>(); /// from: public abstract void setTheme(int i) void setTheme(int i) => _setTheme(reference, i).check(); static final _getTheme = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getTheme") .asFunction)>(); /// from: public abstract android.content.res.Resources$Theme getTheme() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getTheme() => const jni.JObjectType().fromRef(_getTheme(reference).object); static final _obtainStyledAttributes = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__obtainStyledAttributes") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public final android.content.res.TypedArray obtainStyledAttributes(int[] is) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject obtainStyledAttributes(jni.JArray is0) => const jni.JObjectType() .fromRef(_obtainStyledAttributes(reference, is0.reference).object); static final _obtainStyledAttributes1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Context__obtainStyledAttributes1") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public final android.content.res.TypedArray obtainStyledAttributes(int i, int[] is) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject obtainStyledAttributes1(int i, jni.JArray is0) => const jni.JObjectType().fromRef( _obtainStyledAttributes1(reference, i, is0.reference).object); static final _obtainStyledAttributes2 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Context__obtainStyledAttributes2") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public final android.content.res.TypedArray obtainStyledAttributes(android.util.AttributeSet attributeSet, int[] is) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject obtainStyledAttributes2( jni.JObject attributeSet, jni.JArray is0) => const jni.JObjectType().fromRef(_obtainStyledAttributes2( reference, attributeSet.reference, is0.reference) .object); static final _obtainStyledAttributes3 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Int32)>>("Context__obtainStyledAttributes3") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, int, int)>(); /// from: public final android.content.res.TypedArray obtainStyledAttributes(android.util.AttributeSet attributeSet, int[] is, int i, int i1) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject obtainStyledAttributes3( jni.JObject attributeSet, jni.JArray is0, int i, int i1) => const jni.JObjectType().fromRef(_obtainStyledAttributes3( reference, attributeSet.reference, is0.reference, i, i1) .object); static final _getClassLoader = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getClassLoader") .asFunction)>(); /// from: public abstract java.lang.ClassLoader getClassLoader() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getClassLoader() => const jni.JObjectType().fromRef(_getClassLoader(reference).object); static final _getPackageName = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getPackageName") .asFunction)>(); /// from: public abstract java.lang.String getPackageName() /// The returned object must be deleted after use, by calling the `delete` method. jni.JString getPackageName() => const jni.JStringType().fromRef(_getPackageName(reference).object); static final _getOpPackageName = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getOpPackageName") .asFunction)>(); /// from: public java.lang.String getOpPackageName() /// The returned object must be deleted after use, by calling the `delete` method. jni.JString getOpPackageName() => const jni.JStringType().fromRef(_getOpPackageName(reference).object); static final _getAttributionTag = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getAttributionTag") .asFunction)>(); /// from: public java.lang.String getAttributionTag() /// The returned object must be deleted after use, by calling the `delete` method. jni.JString getAttributionTag() => const jni.JStringType().fromRef(_getAttributionTag(reference).object); static final _getAttributionSource = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getAttributionSource") .asFunction)>(); /// from: public android.content.AttributionSource getAttributionSource() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getAttributionSource() => const jni.JObjectType().fromRef(_getAttributionSource(reference).object); static final _getParams = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getParams") .asFunction)>(); /// from: public android.content.ContextParams getParams() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getParams() => const jni.JObjectType().fromRef(_getParams(reference).object); static final _getApplicationInfo = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getApplicationInfo") .asFunction)>(); /// from: public abstract android.content.pm.ApplicationInfo getApplicationInfo() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getApplicationInfo() => const jni.JObjectType().fromRef(_getApplicationInfo(reference).object); static final _getPackageResourcePath = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getPackageResourcePath") .asFunction)>(); /// from: public abstract java.lang.String getPackageResourcePath() /// The returned object must be deleted after use, by calling the `delete` method. jni.JString getPackageResourcePath() => const jni.JStringType() .fromRef(_getPackageResourcePath(reference).object); static final _getPackageCodePath = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getPackageCodePath") .asFunction)>(); /// from: public abstract java.lang.String getPackageCodePath() /// The returned object must be deleted after use, by calling the `delete` method. jni.JString getPackageCodePath() => const jni.JStringType().fromRef(_getPackageCodePath(reference).object); static final _getSharedPreferences = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Context__getSharedPreferences") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public abstract android.content.SharedPreferences getSharedPreferences(java.lang.String string, int i) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getSharedPreferences(jni.JString string, int i) => const jni.JObjectType().fromRef( _getSharedPreferences(reference, string.reference, i).object); static final _moveSharedPreferencesFrom = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Context__moveSharedPreferencesFrom") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract boolean moveSharedPreferencesFrom(android.content.Context context, java.lang.String string) bool moveSharedPreferencesFrom(Context context, jni.JString string) => _moveSharedPreferencesFrom(reference, context.reference, string.reference) .boolean; static final _deleteSharedPreferences = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__deleteSharedPreferences") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract boolean deleteSharedPreferences(java.lang.String string) bool deleteSharedPreferences(jni.JString string) => _deleteSharedPreferences(reference, string.reference).boolean; static final _openFileInput = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__openFileInput") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.io.FileInputStream openFileInput(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject openFileInput(jni.JString string) => const jni.JObjectType() .fromRef(_openFileInput(reference, string.reference).object); static final _openFileOutput = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Context__openFileOutput") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public abstract java.io.FileOutputStream openFileOutput(java.lang.String string, int i) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject openFileOutput(jni.JString string, int i) => const jni.JObjectType() .fromRef(_openFileOutput(reference, string.reference, i).object); static final _deleteFile = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__deleteFile") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract boolean deleteFile(java.lang.String string) bool deleteFile(jni.JString string) => _deleteFile(reference, string.reference).boolean; static final _getFileStreamPath = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__getFileStreamPath") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.io.File getFileStreamPath(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getFileStreamPath(jni.JString string) => const jni.JObjectType() .fromRef(_getFileStreamPath(reference, string.reference).object); static final _getDataDir = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getDataDir") .asFunction)>(); /// from: public abstract java.io.File getDataDir() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getDataDir() => const jni.JObjectType().fromRef(_getDataDir(reference).object); static final _getFilesDir = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getFilesDir") .asFunction)>(); /// from: public abstract java.io.File getFilesDir() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getFilesDir() => const jni.JObjectType().fromRef(_getFilesDir(reference).object); static final _getNoBackupFilesDir = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getNoBackupFilesDir") .asFunction)>(); /// from: public abstract java.io.File getNoBackupFilesDir() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getNoBackupFilesDir() => const jni.JObjectType().fromRef(_getNoBackupFilesDir(reference).object); static final _getExternalFilesDir = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__getExternalFilesDir") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.io.File getExternalFilesDir(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getExternalFilesDir(jni.JString string) => const jni.JObjectType() .fromRef(_getExternalFilesDir(reference, string.reference).object); static final _getExternalFilesDirs = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__getExternalFilesDirs") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.io.File[] getExternalFilesDirs(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray getExternalFilesDirs(jni.JString string) => const jni.JArrayType(jni.JObjectType()) .fromRef(_getExternalFilesDirs(reference, string.reference).object); static final _getObbDir = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getObbDir") .asFunction)>(); /// from: public abstract java.io.File getObbDir() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getObbDir() => const jni.JObjectType().fromRef(_getObbDir(reference).object); static final _getObbDirs = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getObbDirs") .asFunction)>(); /// from: public abstract java.io.File[] getObbDirs() /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray getObbDirs() => const jni.JArrayType(jni.JObjectType()) .fromRef(_getObbDirs(reference).object); static final _getCacheDir = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getCacheDir") .asFunction)>(); /// from: public abstract java.io.File getCacheDir() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getCacheDir() => const jni.JObjectType().fromRef(_getCacheDir(reference).object); static final _getCodeCacheDir = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getCodeCacheDir") .asFunction)>(); /// from: public abstract java.io.File getCodeCacheDir() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getCodeCacheDir() => const jni.JObjectType().fromRef(_getCodeCacheDir(reference).object); static final _getExternalCacheDir = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getExternalCacheDir") .asFunction)>(); /// from: public abstract java.io.File getExternalCacheDir() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getExternalCacheDir() => const jni.JObjectType().fromRef(_getExternalCacheDir(reference).object); static final _getExternalCacheDirs = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getExternalCacheDirs") .asFunction)>(); /// from: public abstract java.io.File[] getExternalCacheDirs() /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray getExternalCacheDirs() => const jni.JArrayType(jni.JObjectType()) .fromRef(_getExternalCacheDirs(reference).object); static final _getExternalMediaDirs = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getExternalMediaDirs") .asFunction)>(); /// from: public abstract java.io.File[] getExternalMediaDirs() /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray getExternalMediaDirs() => const jni.JArrayType(jni.JObjectType()) .fromRef(_getExternalMediaDirs(reference).object); static final _fileList = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__fileList") .asFunction)>(); /// from: public abstract java.lang.String[] fileList() /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray fileList() => const jni.JArrayType(jni.JStringType()) .fromRef(_fileList(reference).object); static final _getDir = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Context__getDir") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public abstract java.io.File getDir(java.lang.String string, int i) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getDir(jni.JString string, int i) => const jni.JObjectType() .fromRef(_getDir(reference, string.reference, i).object); static final _openOrCreateDatabase = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Context__openOrCreateDatabase") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, int, ffi.Pointer)>(); /// from: public abstract android.database.sqlite.SQLiteDatabase openOrCreateDatabase(java.lang.String string, int i, android.database.sqlite.SQLiteDatabase$CursorFactory cursorFactory) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject openOrCreateDatabase( jni.JString string, int i, jni.JObject cursorFactory) => const jni.JObjectType().fromRef(_openOrCreateDatabase( reference, string.reference, i, cursorFactory.reference) .object); static final _openOrCreateDatabase1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer, ffi.Pointer)>>("Context__openOrCreateDatabase1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, int, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract android.database.sqlite.SQLiteDatabase openOrCreateDatabase(java.lang.String string, int i, android.database.sqlite.SQLiteDatabase$CursorFactory cursorFactory, android.database.DatabaseErrorHandler databaseErrorHandler) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject openOrCreateDatabase1(jni.JString string, int i, jni.JObject cursorFactory, jni.JObject databaseErrorHandler) => const jni.JObjectType().fromRef(_openOrCreateDatabase1( reference, string.reference, i, cursorFactory.reference, databaseErrorHandler.reference) .object); static final _moveDatabaseFrom = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Context__moveDatabaseFrom") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract boolean moveDatabaseFrom(android.content.Context context, java.lang.String string) bool moveDatabaseFrom(Context context, jni.JString string) => _moveDatabaseFrom(reference, context.reference, string.reference).boolean; static final _deleteDatabase = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__deleteDatabase") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract boolean deleteDatabase(java.lang.String string) bool deleteDatabase(jni.JString string) => _deleteDatabase(reference, string.reference).boolean; static final _getDatabasePath = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__getDatabasePath") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.io.File getDatabasePath(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getDatabasePath(jni.JString string) => const jni.JObjectType() .fromRef(_getDatabasePath(reference, string.reference).object); static final _databaseList = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__databaseList") .asFunction)>(); /// from: public abstract java.lang.String[] databaseList() /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray databaseList() => const jni.JArrayType(jni.JStringType()) .fromRef(_databaseList(reference).object); static final _getWallpaper = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getWallpaper") .asFunction)>(); /// from: public abstract android.graphics.drawable.Drawable getWallpaper() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getWallpaper() => const jni.JObjectType().fromRef(_getWallpaper(reference).object); static final _peekWallpaper = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__peekWallpaper") .asFunction)>(); /// from: public abstract android.graphics.drawable.Drawable peekWallpaper() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject peekWallpaper() => const jni.JObjectType().fromRef(_peekWallpaper(reference).object); static final _getWallpaperDesiredMinimumWidth = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Context__getWallpaperDesiredMinimumWidth") .asFunction)>(); /// from: public abstract int getWallpaperDesiredMinimumWidth() int getWallpaperDesiredMinimumWidth() => _getWallpaperDesiredMinimumWidth(reference).integer; static final _getWallpaperDesiredMinimumHeight = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Context__getWallpaperDesiredMinimumHeight") .asFunction)>(); /// from: public abstract int getWallpaperDesiredMinimumHeight() int getWallpaperDesiredMinimumHeight() => _getWallpaperDesiredMinimumHeight(reference).integer; static final _setWallpaper = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__setWallpaper") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void setWallpaper(android.graphics.Bitmap bitmap) void setWallpaper(jni.JObject bitmap) => _setWallpaper(reference, bitmap.reference).check(); static final _setWallpaper1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__setWallpaper1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void setWallpaper(java.io.InputStream inputStream) void setWallpaper1(jni.JObject inputStream) => _setWallpaper1(reference, inputStream.reference).check(); static final _clearWallpaper = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__clearWallpaper") .asFunction)>(); /// from: public abstract void clearWallpaper() void clearWallpaper() => _clearWallpaper(reference).check(); static final _startActivity = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__startActivity") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void startActivity(android.content.Intent intent) void startActivity(Intent intent) => _startActivity(reference, intent.reference).check(); static final _startActivity1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Context__startActivity1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void startActivity(android.content.Intent intent, android.os.Bundle bundle) void startActivity1(Intent intent, jni.JObject bundle) => _startActivity1(reference, intent.reference, bundle.reference).check(); static final _startActivities = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__startActivities") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void startActivities(android.content.Intent[] intents) void startActivities(jni.JArray intents) => _startActivities(reference, intents.reference).check(); static final _startActivities1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Context__startActivities1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void startActivities(android.content.Intent[] intents, android.os.Bundle bundle) void startActivities1(jni.JArray intents, jni.JObject bundle) => _startActivities1(reference, intents.reference, bundle.reference).check(); static final _startIntentSender = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Int32)>>("Context__startIntentSender") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, int, int, int)>(); /// from: public abstract void startIntentSender(android.content.IntentSender intentSender, android.content.Intent intent, int i, int i1, int i2) void startIntentSender( jni.JObject intentSender, Intent intent, int i, int i1, int i2) => _startIntentSender( reference, intentSender.reference, intent.reference, i, i1, i2) .check(); static final _startIntentSender1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Int32, ffi.Pointer)>>("Context__startIntentSender1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, int, int, int, ffi.Pointer)>(); /// from: public abstract void startIntentSender(android.content.IntentSender intentSender, android.content.Intent intent, int i, int i1, int i2, android.os.Bundle bundle) void startIntentSender1(jni.JObject intentSender, Intent intent, int i, int i1, int i2, jni.JObject bundle) => _startIntentSender1(reference, intentSender.reference, intent.reference, i, i1, i2, bundle.reference) .check(); static final _sendBroadcast = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__sendBroadcast") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void sendBroadcast(android.content.Intent intent) void sendBroadcast(Intent intent) => _sendBroadcast(reference, intent.reference).check(); static final _sendBroadcast1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Context__sendBroadcast1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void sendBroadcast(android.content.Intent intent, java.lang.String string) void sendBroadcast1(Intent intent, jni.JString string) => _sendBroadcast1(reference, intent.reference, string.reference).check(); static final _sendBroadcastWithMultiplePermissions = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>>( "Context__sendBroadcastWithMultiplePermissions") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void sendBroadcastWithMultiplePermissions(android.content.Intent intent, java.lang.String[] strings) void sendBroadcastWithMultiplePermissions( Intent intent, jni.JArray strings) => _sendBroadcastWithMultiplePermissions( reference, intent.reference, strings.reference) .check(); static final _sendOrderedBroadcast = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Context__sendOrderedBroadcast") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void sendOrderedBroadcast(android.content.Intent intent, java.lang.String string) void sendOrderedBroadcast(Intent intent, jni.JString string) => _sendOrderedBroadcast(reference, intent.reference, string.reference) .check(); static final _sendOrderedBroadcast1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer, ffi.Pointer)>>("Context__sendOrderedBroadcast1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, int, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void sendOrderedBroadcast(android.content.Intent intent, java.lang.String string, android.content.BroadcastReceiver broadcastReceiver, android.os.Handler handler, int i, java.lang.String string1, android.os.Bundle bundle) void sendOrderedBroadcast1( Intent intent, jni.JString string, jni.JObject broadcastReceiver, jni.JObject handler, int i, jni.JString string1, jni.JObject bundle) => _sendOrderedBroadcast1( reference, intent.reference, string.reference, broadcastReceiver.reference, handler.reference, i, string1.reference, bundle.reference) .check(); static final _sendBroadcastAsUser = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Context__sendBroadcastAsUser") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void sendBroadcastAsUser(android.content.Intent intent, android.os.UserHandle userHandle) void sendBroadcastAsUser(Intent intent, jni.JObject userHandle) => _sendBroadcastAsUser(reference, intent.reference, userHandle.reference) .check(); static final _sendBroadcastAsUser1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Context__sendBroadcastAsUser1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void sendBroadcastAsUser(android.content.Intent intent, android.os.UserHandle userHandle, java.lang.String string) void sendBroadcastAsUser1( Intent intent, jni.JObject userHandle, jni.JString string) => _sendBroadcastAsUser1(reference, intent.reference, userHandle.reference, string.reference) .check(); static final _sendOrderedBroadcastAsUser = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer, ffi.Pointer)>>( "Context__sendOrderedBroadcastAsUser") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, int, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void sendOrderedBroadcastAsUser(android.content.Intent intent, android.os.UserHandle userHandle, java.lang.String string, android.content.BroadcastReceiver broadcastReceiver, android.os.Handler handler, int i, java.lang.String string1, android.os.Bundle bundle) void sendOrderedBroadcastAsUser( Intent intent, jni.JObject userHandle, jni.JString string, jni.JObject broadcastReceiver, jni.JObject handler, int i, jni.JString string1, jni.JObject bundle) => _sendOrderedBroadcastAsUser( reference, intent.reference, userHandle.reference, string.reference, broadcastReceiver.reference, handler.reference, i, string1.reference, bundle.reference) .check(); static final _sendOrderedBroadcast2 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer, ffi.Pointer)>>("Context__sendOrderedBroadcast2") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, int, ffi.Pointer, ffi.Pointer)>(); /// from: public void sendOrderedBroadcast(android.content.Intent intent, java.lang.String string, java.lang.String string1, android.content.BroadcastReceiver broadcastReceiver, android.os.Handler handler, int i, java.lang.String string2, android.os.Bundle bundle) void sendOrderedBroadcast2( Intent intent, jni.JString string, jni.JString string1, jni.JObject broadcastReceiver, jni.JObject handler, int i, jni.JString string2, jni.JObject bundle) => _sendOrderedBroadcast2( reference, intent.reference, string.reference, string1.reference, broadcastReceiver.reference, handler.reference, i, string2.reference, bundle.reference) .check(); static final _sendStickyBroadcast = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__sendStickyBroadcast") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void sendStickyBroadcast(android.content.Intent intent) void sendStickyBroadcast(Intent intent) => _sendStickyBroadcast(reference, intent.reference).check(); static final _sendStickyBroadcast1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Context__sendStickyBroadcast1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void sendStickyBroadcast(android.content.Intent intent, android.os.Bundle bundle) void sendStickyBroadcast1(Intent intent, jni.JObject bundle) => _sendStickyBroadcast1(reference, intent.reference, bundle.reference) .check(); static final _sendStickyOrderedBroadcast = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer, ffi.Pointer)>>( "Context__sendStickyOrderedBroadcast") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, int, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void sendStickyOrderedBroadcast(android.content.Intent intent, android.content.BroadcastReceiver broadcastReceiver, android.os.Handler handler, int i, java.lang.String string, android.os.Bundle bundle) void sendStickyOrderedBroadcast(Intent intent, jni.JObject broadcastReceiver, jni.JObject handler, int i, jni.JString string, jni.JObject bundle) => _sendStickyOrderedBroadcast( reference, intent.reference, broadcastReceiver.reference, handler.reference, i, string.reference, bundle.reference) .check(); static final _removeStickyBroadcast = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__removeStickyBroadcast") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void removeStickyBroadcast(android.content.Intent intent) void removeStickyBroadcast(Intent intent) => _removeStickyBroadcast(reference, intent.reference).check(); static final _sendStickyBroadcastAsUser = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Context__sendStickyBroadcastAsUser") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void sendStickyBroadcastAsUser(android.content.Intent intent, android.os.UserHandle userHandle) void sendStickyBroadcastAsUser(Intent intent, jni.JObject userHandle) => _sendStickyBroadcastAsUser( reference, intent.reference, userHandle.reference) .check(); static final _sendStickyOrderedBroadcastAsUser = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer, ffi.Pointer)>>( "Context__sendStickyOrderedBroadcastAsUser") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, int, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void sendStickyOrderedBroadcastAsUser(android.content.Intent intent, android.os.UserHandle userHandle, android.content.BroadcastReceiver broadcastReceiver, android.os.Handler handler, int i, java.lang.String string, android.os.Bundle bundle) void sendStickyOrderedBroadcastAsUser( Intent intent, jni.JObject userHandle, jni.JObject broadcastReceiver, jni.JObject handler, int i, jni.JString string, jni.JObject bundle) => _sendStickyOrderedBroadcastAsUser( reference, intent.reference, userHandle.reference, broadcastReceiver.reference, handler.reference, i, string.reference, bundle.reference) .check(); static final _removeStickyBroadcastAsUser = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>>( "Context__removeStickyBroadcastAsUser") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void removeStickyBroadcastAsUser(android.content.Intent intent, android.os.UserHandle userHandle) void removeStickyBroadcastAsUser(Intent intent, jni.JObject userHandle) => _removeStickyBroadcastAsUser( reference, intent.reference, userHandle.reference) .check(); static final _registerReceiver = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Context__registerReceiver") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract android.content.Intent registerReceiver(android.content.BroadcastReceiver broadcastReceiver, android.content.IntentFilter intentFilter) /// The returned object must be deleted after use, by calling the `delete` method. Intent registerReceiver( jni.JObject broadcastReceiver, jni.JObject intentFilter) => const $IntentType().fromRef(_registerReceiver( reference, broadcastReceiver.reference, intentFilter.reference) .object); static final _registerReceiver1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Context__registerReceiver1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, int)>(); /// from: public abstract android.content.Intent registerReceiver(android.content.BroadcastReceiver broadcastReceiver, android.content.IntentFilter intentFilter, int i) /// The returned object must be deleted after use, by calling the `delete` method. Intent registerReceiver1( jni.JObject broadcastReceiver, jni.JObject intentFilter, int i) => const $IntentType().fromRef(_registerReceiver1( reference, broadcastReceiver.reference, intentFilter.reference, i) .object); static final _registerReceiver2 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Context__registerReceiver2") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract android.content.Intent registerReceiver(android.content.BroadcastReceiver broadcastReceiver, android.content.IntentFilter intentFilter, java.lang.String string, android.os.Handler handler) /// The returned object must be deleted after use, by calling the `delete` method. Intent registerReceiver2(jni.JObject broadcastReceiver, jni.JObject intentFilter, jni.JString string, jni.JObject handler) => const $IntentType().fromRef(_registerReceiver2( reference, broadcastReceiver.reference, intentFilter.reference, string.reference, handler.reference) .object); static final _registerReceiver3 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Context__registerReceiver3") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, int)>(); /// from: public abstract android.content.Intent registerReceiver(android.content.BroadcastReceiver broadcastReceiver, android.content.IntentFilter intentFilter, java.lang.String string, android.os.Handler handler, int i) /// The returned object must be deleted after use, by calling the `delete` method. Intent registerReceiver3( jni.JObject broadcastReceiver, jni.JObject intentFilter, jni.JString string, jni.JObject handler, int i) => const $IntentType().fromRef(_registerReceiver3( reference, broadcastReceiver.reference, intentFilter.reference, string.reference, handler.reference, i) .object); static final _unregisterReceiver = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__unregisterReceiver") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void unregisterReceiver(android.content.BroadcastReceiver broadcastReceiver) void unregisterReceiver(jni.JObject broadcastReceiver) => _unregisterReceiver(reference, broadcastReceiver.reference).check(); static final _startService = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__startService") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract android.content.ComponentName startService(android.content.Intent intent) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject startService(Intent intent) => const jni.JObjectType() .fromRef(_startService(reference, intent.reference).object); static final _startForegroundService = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__startForegroundService") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract android.content.ComponentName startForegroundService(android.content.Intent intent) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject startForegroundService(Intent intent) => const jni.JObjectType() .fromRef(_startForegroundService(reference, intent.reference).object); static final _stopService = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__stopService") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract boolean stopService(android.content.Intent intent) bool stopService(Intent intent) => _stopService(reference, intent.reference).boolean; static final _bindService = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Context__bindService") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, int)>(); /// from: public abstract boolean bindService(android.content.Intent intent, android.content.ServiceConnection serviceConnection, int i) bool bindService(Intent intent, jni.JObject serviceConnection, int i) => _bindService(reference, intent.reference, serviceConnection.reference, i) .boolean; static final _bindService1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer, ffi.Pointer)>>("Context__bindService1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, int, ffi.Pointer, ffi.Pointer)>(); /// from: public boolean bindService(android.content.Intent intent, int i, java.util.concurrent.Executor executor, android.content.ServiceConnection serviceConnection) bool bindService1(Intent intent, int i, jni.JObject executor, jni.JObject serviceConnection) => _bindService1(reference, intent.reference, i, executor.reference, serviceConnection.reference) .boolean; static final _bindIsolatedService = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Context__bindIsolatedService") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public boolean bindIsolatedService(android.content.Intent intent, int i, java.lang.String string, java.util.concurrent.Executor executor, android.content.ServiceConnection serviceConnection) bool bindIsolatedService(Intent intent, int i, jni.JString string, jni.JObject executor, jni.JObject serviceConnection) => _bindIsolatedService(reference, intent.reference, i, string.reference, executor.reference, serviceConnection.reference) .boolean; static final _bindServiceAsUser = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Context__bindServiceAsUser") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, int, ffi.Pointer)>(); /// from: public boolean bindServiceAsUser(android.content.Intent intent, android.content.ServiceConnection serviceConnection, int i, android.os.UserHandle userHandle) bool bindServiceAsUser(Intent intent, jni.JObject serviceConnection, int i, jni.JObject userHandle) => _bindServiceAsUser(reference, intent.reference, serviceConnection.reference, i, userHandle.reference) .boolean; static final _updateServiceGroup = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Int32)>>("Context__updateServiceGroup") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int, int)>(); /// from: public void updateServiceGroup(android.content.ServiceConnection serviceConnection, int i, int i1) void updateServiceGroup(jni.JObject serviceConnection, int i, int i1) => _updateServiceGroup(reference, serviceConnection.reference, i, i1) .check(); static final _unbindService = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__unbindService") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void unbindService(android.content.ServiceConnection serviceConnection) void unbindService(jni.JObject serviceConnection) => _unbindService(reference, serviceConnection.reference).check(); static final _startInstrumentation = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Context__startInstrumentation") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract boolean startInstrumentation(android.content.ComponentName componentName, java.lang.String string, android.os.Bundle bundle) bool startInstrumentation( jni.JObject componentName, jni.JString string, jni.JObject bundle) => _startInstrumentation(reference, componentName.reference, string.reference, bundle.reference) .boolean; static final _getSystemService = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__getSystemService") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.lang.Object getSystemService(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getSystemService(jni.JString string) => const jni.JObjectType() .fromRef(_getSystemService(reference, string.reference).object); static final _getSystemService1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__getSystemService1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public final T getSystemService(java.lang.Class class) /// The returned object must be deleted after use, by calling the `delete` method. T getSystemService1( jni.JObjType $T, jni.JObject class0) => $T.fromRef(_getSystemService1(reference, class0.reference).object); static final _getSystemServiceName = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__getSystemServiceName") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.lang.String getSystemServiceName(java.lang.Class class) /// The returned object must be deleted after use, by calling the `delete` method. jni.JString getSystemServiceName(jni.JObject class0) => const jni.JStringType() .fromRef(_getSystemServiceName(reference, class0.reference).object); static final _checkPermission = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Int32)>>("Context__checkPermission") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int, int)>(); /// from: public abstract int checkPermission(java.lang.String string, int i, int i1) int checkPermission(jni.JString string, int i, int i1) => _checkPermission(reference, string.reference, i, i1).integer; static final _checkCallingPermission = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__checkCallingPermission") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract int checkCallingPermission(java.lang.String string) int checkCallingPermission(jni.JString string) => _checkCallingPermission(reference, string.reference).integer; static final _checkCallingOrSelfPermission = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Context__checkCallingOrSelfPermission") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract int checkCallingOrSelfPermission(java.lang.String string) int checkCallingOrSelfPermission(jni.JString string) => _checkCallingOrSelfPermission(reference, string.reference).integer; static final _checkSelfPermission = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__checkSelfPermission") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract int checkSelfPermission(java.lang.String string) int checkSelfPermission(jni.JString string) => _checkSelfPermission(reference, string.reference).integer; static final _enforcePermission = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Pointer)>>("Context__enforcePermission") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, int, int, ffi.Pointer)>(); /// from: public abstract void enforcePermission(java.lang.String string, int i, int i1, java.lang.String string1) void enforcePermission( jni.JString string, int i, int i1, jni.JString string1) => _enforcePermission(reference, string.reference, i, i1, string1.reference) .check(); static final _enforceCallingPermission = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Context__enforceCallingPermission") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void enforceCallingPermission(java.lang.String string, java.lang.String string1) void enforceCallingPermission(jni.JString string, jni.JString string1) => _enforceCallingPermission(reference, string.reference, string1.reference) .check(); static final _enforceCallingOrSelfPermission = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>>( "Context__enforceCallingOrSelfPermission") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public abstract void enforceCallingOrSelfPermission(java.lang.String string, java.lang.String string1) void enforceCallingOrSelfPermission( jni.JString string, jni.JString string1) => _enforceCallingOrSelfPermission( reference, string.reference, string1.reference) .check(); static final _grantUriPermission = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Context__grantUriPermission") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, int)>(); /// from: public abstract void grantUriPermission(java.lang.String string, android.net.Uri uri, int i) void grantUriPermission(jni.JString string, jni.JObject uri, int i) => _grantUriPermission(reference, string.reference, uri.reference, i) .check(); static final _revokeUriPermission = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Context__revokeUriPermission") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public abstract void revokeUriPermission(android.net.Uri uri, int i) void revokeUriPermission(jni.JObject uri, int i) => _revokeUriPermission(reference, uri.reference, i).check(); static final _revokeUriPermission1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Context__revokeUriPermission1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, int)>(); /// from: public abstract void revokeUriPermission(java.lang.String string, android.net.Uri uri, int i) void revokeUriPermission1(jni.JString string, jni.JObject uri, int i) => _revokeUriPermission1(reference, string.reference, uri.reference, i) .check(); static final _checkUriPermission = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Int32)>>("Context__checkUriPermission") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int, int, int)>(); /// from: public abstract int checkUriPermission(android.net.Uri uri, int i, int i1, int i2) int checkUriPermission(jni.JObject uri, int i, int i1, int i2) => _checkUriPermission(reference, uri.reference, i, i1, i2).integer; static final _checkUriPermissions = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Int32)>>("Context__checkUriPermissions") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int, int, int)>(); /// from: public java.lang.Object[] checkUriPermissions(java.util.List list, int i, int i1, int i2) /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray checkUriPermissions( jni.JObject list, int i, int i1, int i2) => const jni.JArrayType(jni.JIntType()).fromRef( _checkUriPermissions(reference, list.reference, i, i1, i2).object); static final _checkCallingUriPermission = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Context__checkCallingUriPermission") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public abstract int checkCallingUriPermission(android.net.Uri uri, int i) int checkCallingUriPermission(jni.JObject uri, int i) => _checkCallingUriPermission(reference, uri.reference, i).integer; static final _checkCallingUriPermissions = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Context__checkCallingUriPermissions") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public java.lang.Object[] checkCallingUriPermissions(java.util.List list, int i) /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray checkCallingUriPermissions(jni.JObject list, int i) => const jni.JArrayType(jni.JIntType()).fromRef( _checkCallingUriPermissions(reference, list.reference, i).object); static final _checkCallingOrSelfUriPermission = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Context__checkCallingOrSelfUriPermission") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public abstract int checkCallingOrSelfUriPermission(android.net.Uri uri, int i) int checkCallingOrSelfUriPermission(jni.JObject uri, int i) => _checkCallingOrSelfUriPermission(reference, uri.reference, i).integer; static final _checkCallingOrSelfUriPermissions = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Context__checkCallingOrSelfUriPermissions") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public java.lang.Object[] checkCallingOrSelfUriPermissions(java.util.List list, int i) /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray checkCallingOrSelfUriPermissions( jni.JObject list, int i) => const jni.JArrayType(jni.JIntType()).fromRef( _checkCallingOrSelfUriPermissions(reference, list.reference, i) .object); static final _checkUriPermission1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Int32)>>("Context__checkUriPermission1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, int, int, int)>(); /// from: public abstract int checkUriPermission(android.net.Uri uri, java.lang.String string, java.lang.String string1, int i, int i1, int i2) int checkUriPermission1(jni.JObject uri, jni.JString string, jni.JString string1, int i, int i1, int i2) => _checkUriPermission1(reference, uri.reference, string.reference, string1.reference, i, i1, i2) .integer; static final _enforceUriPermission = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Int32, ffi.Pointer)>>("Context__enforceUriPermission") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, int, int, int, ffi.Pointer)>(); /// from: public abstract void enforceUriPermission(android.net.Uri uri, int i, int i1, int i2, java.lang.String string) void enforceUriPermission( jni.JObject uri, int i, int i1, int i2, jni.JString string) => _enforceUriPermission( reference, uri.reference, i, i1, i2, string.reference) .check(); static final _enforceCallingUriPermission = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer)>>( "Context__enforceCallingUriPermission") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, int, ffi.Pointer)>(); /// from: public abstract void enforceCallingUriPermission(android.net.Uri uri, int i, java.lang.String string) void enforceCallingUriPermission( jni.JObject uri, int i, jni.JString string) => _enforceCallingUriPermission( reference, uri.reference, i, string.reference) .check(); static final _enforceCallingOrSelfUriPermission = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer)>>( "Context__enforceCallingOrSelfUriPermission") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, int, ffi.Pointer)>(); /// from: public abstract void enforceCallingOrSelfUriPermission(android.net.Uri uri, int i, java.lang.String string) void enforceCallingOrSelfUriPermission( jni.JObject uri, int i, jni.JString string) => _enforceCallingOrSelfUriPermission( reference, uri.reference, i, string.reference) .check(); static final _enforceUriPermission1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Int32, ffi.Pointer)>>("Context__enforceUriPermission1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, int, int, int, ffi.Pointer)>(); /// from: public abstract void enforceUriPermission(android.net.Uri uri, java.lang.String string, java.lang.String string1, int i, int i1, int i2, java.lang.String string2) void enforceUriPermission1(jni.JObject uri, jni.JString string, jni.JString string1, int i, int i1, int i2, jni.JString string2) => _enforceUriPermission1(reference, uri.reference, string.reference, string1.reference, i, i1, i2, string2.reference) .check(); static final _revokeSelfPermissionOnKill = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Context__revokeSelfPermissionOnKill") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void revokeSelfPermissionOnKill(java.lang.String string) void revokeSelfPermissionOnKill(jni.JString string) => _revokeSelfPermissionOnKill(reference, string.reference).check(); static final _revokeSelfPermissionsOnKill = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Context__revokeSelfPermissionsOnKill") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void revokeSelfPermissionsOnKill(java.util.Collection collection) void revokeSelfPermissionsOnKill(jni.JObject collection) => _revokeSelfPermissionsOnKill(reference, collection.reference).check(); static final _createPackageContext = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Context__createPackageContext") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public abstract android.content.Context createPackageContext(java.lang.String string, int i) /// The returned object must be deleted after use, by calling the `delete` method. Context createPackageContext(jni.JString string, int i) => const $ContextType().fromRef( _createPackageContext(reference, string.reference, i).object); static final _createContextForSplit = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__createContextForSplit") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract android.content.Context createContextForSplit(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. Context createContextForSplit(jni.JString string) => const $ContextType() .fromRef(_createContextForSplit(reference, string.reference).object); static final _createConfigurationContext = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Context__createConfigurationContext") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract android.content.Context createConfigurationContext(android.content.res.Configuration configuration) /// The returned object must be deleted after use, by calling the `delete` method. Context createConfigurationContext(jni.JObject configuration) => const $ContextType().fromRef( _createConfigurationContext(reference, configuration.reference) .object); static final _createDisplayContext = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__createDisplayContext") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract android.content.Context createDisplayContext(android.view.Display display) /// The returned object must be deleted after use, by calling the `delete` method. Context createDisplayContext(jni.JObject display) => const $ContextType() .fromRef(_createDisplayContext(reference, display.reference).object); static final _createWindowContext = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Context__createWindowContext") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public android.content.Context createWindowContext(int i, android.os.Bundle bundle) /// The returned object must be deleted after use, by calling the `delete` method. Context createWindowContext(int i, jni.JObject bundle) => const $ContextType() .fromRef(_createWindowContext(reference, i, bundle.reference).object); static final _createWindowContext1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Context__createWindowContext1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, int, ffi.Pointer)>(); /// from: public android.content.Context createWindowContext(android.view.Display display, int i, android.os.Bundle bundle) /// The returned object must be deleted after use, by calling the `delete` method. Context createWindowContext1( jni.JObject display, int i, jni.JObject bundle) => const $ContextType().fromRef(_createWindowContext1( reference, display.reference, i, bundle.reference) .object); static final _createContext = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__createContext") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Context createContext(android.content.ContextParams contextParams) /// The returned object must be deleted after use, by calling the `delete` method. Context createContext(jni.JObject contextParams) => const $ContextType() .fromRef(_createContext(reference, contextParams.reference).object); static final _createAttributionContext = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Context__createAttributionContext") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Context createAttributionContext(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. Context createAttributionContext(jni.JString string) => const $ContextType() .fromRef(_createAttributionContext(reference, string.reference).object); static final _createDeviceProtectedStorageContext = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Context__createDeviceProtectedStorageContext") .asFunction)>(); /// from: public abstract android.content.Context createDeviceProtectedStorageContext() /// The returned object must be deleted after use, by calling the `delete` method. Context createDeviceProtectedStorageContext() => const $ContextType() .fromRef(_createDeviceProtectedStorageContext(reference).object); static final _getDisplay = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__getDisplay") .asFunction)>(); /// from: public android.view.Display getDisplay() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getDisplay() => const jni.JObjectType().fromRef(_getDisplay(reference).object); static final _isRestricted = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__isRestricted") .asFunction)>(); /// from: public boolean isRestricted() bool isRestricted() => _isRestricted(reference).boolean; static final _isDeviceProtectedStorage = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__isDeviceProtectedStorage") .asFunction)>(); /// from: public abstract boolean isDeviceProtectedStorage() bool isDeviceProtectedStorage() => _isDeviceProtectedStorage(reference).boolean; static final _isUiContext = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Context__isUiContext") .asFunction)>(); /// from: public boolean isUiContext() bool isUiContext() => _isUiContext(reference).boolean; } class $ContextType extends jni.JObjType { const $ContextType(); @override String get signature => r"Landroid/content/Context;"; @override Context fromRef(jni.JObjectPtr ref) => Context.fromRef(ref); } extension $ContextArray on jni.JArray { Context operator [](int index) { return (elementType as $ContextType) .fromRef(elementAt(index, jni.JniCallType.objectType).object); } void operator []=(int index, Context value) { (this as jni.JArray)[index] = value; } } /// from: android.content.Intent class Intent extends jni.JObject { late final jni.JObjType? _$type; @override jni.JObjType get $type => _$type ??= type; Intent.fromRef( jni.JObjectPtr ref, ) : super.fromRef(ref); /// The type which includes information such as the signature of this class. static const type = $IntentType(); /// from: static public final java.lang.String ACTION_AIRPLANE_MODE_CHANGED static const ACTION_AIRPLANE_MODE_CHANGED = "android.intent.action.AIRPLANE_MODE"; /// from: static public final java.lang.String ACTION_ALL_APPS static const ACTION_ALL_APPS = "android.intent.action.ALL_APPS"; /// from: static public final java.lang.String ACTION_ANSWER static const ACTION_ANSWER = "android.intent.action.ANSWER"; /// from: static public final java.lang.String ACTION_APPLICATION_LOCALE_CHANGED static const ACTION_APPLICATION_LOCALE_CHANGED = "android.intent.action.APPLICATION_LOCALE_CHANGED"; /// from: static public final java.lang.String ACTION_APPLICATION_PREFERENCES static const ACTION_APPLICATION_PREFERENCES = "android.intent.action.APPLICATION_PREFERENCES"; /// from: static public final java.lang.String ACTION_APPLICATION_RESTRICTIONS_CHANGED static const ACTION_APPLICATION_RESTRICTIONS_CHANGED = "android.intent.action.APPLICATION_RESTRICTIONS_CHANGED"; /// from: static public final java.lang.String ACTION_APP_ERROR static const ACTION_APP_ERROR = "android.intent.action.APP_ERROR"; /// from: static public final java.lang.String ACTION_ASSIST static const ACTION_ASSIST = "android.intent.action.ASSIST"; /// from: static public final java.lang.String ACTION_ATTACH_DATA static const ACTION_ATTACH_DATA = "android.intent.action.ATTACH_DATA"; /// from: static public final java.lang.String ACTION_AUTO_REVOKE_PERMISSIONS static const ACTION_AUTO_REVOKE_PERMISSIONS = "android.intent.action.AUTO_REVOKE_PERMISSIONS"; /// from: static public final java.lang.String ACTION_BATTERY_CHANGED static const ACTION_BATTERY_CHANGED = "android.intent.action.BATTERY_CHANGED"; /// from: static public final java.lang.String ACTION_BATTERY_LOW static const ACTION_BATTERY_LOW = "android.intent.action.BATTERY_LOW"; /// from: static public final java.lang.String ACTION_BATTERY_OKAY static const ACTION_BATTERY_OKAY = "android.intent.action.BATTERY_OKAY"; /// from: static public final java.lang.String ACTION_BOOT_COMPLETED static const ACTION_BOOT_COMPLETED = "android.intent.action.BOOT_COMPLETED"; /// from: static public final java.lang.String ACTION_BUG_REPORT static const ACTION_BUG_REPORT = "android.intent.action.BUG_REPORT"; /// from: static public final java.lang.String ACTION_CALL static const ACTION_CALL = "android.intent.action.CALL"; /// from: static public final java.lang.String ACTION_CALL_BUTTON static const ACTION_CALL_BUTTON = "android.intent.action.CALL_BUTTON"; /// from: static public final java.lang.String ACTION_CAMERA_BUTTON static const ACTION_CAMERA_BUTTON = "android.intent.action.CAMERA_BUTTON"; /// from: static public final java.lang.String ACTION_CARRIER_SETUP static const ACTION_CARRIER_SETUP = "android.intent.action.CARRIER_SETUP"; /// from: static public final java.lang.String ACTION_CHOOSER static const ACTION_CHOOSER = "android.intent.action.CHOOSER"; /// from: static public final java.lang.String ACTION_CLOSE_SYSTEM_DIALOGS static const ACTION_CLOSE_SYSTEM_DIALOGS = "android.intent.action.CLOSE_SYSTEM_DIALOGS"; /// from: static public final java.lang.String ACTION_CONFIGURATION_CHANGED static const ACTION_CONFIGURATION_CHANGED = "android.intent.action.CONFIGURATION_CHANGED"; /// from: static public final java.lang.String ACTION_CREATE_DOCUMENT static const ACTION_CREATE_DOCUMENT = "android.intent.action.CREATE_DOCUMENT"; /// from: static public final java.lang.String ACTION_CREATE_REMINDER static const ACTION_CREATE_REMINDER = "android.intent.action.CREATE_REMINDER"; /// from: static public final java.lang.String ACTION_CREATE_SHORTCUT static const ACTION_CREATE_SHORTCUT = "android.intent.action.CREATE_SHORTCUT"; /// from: static public final java.lang.String ACTION_DATE_CHANGED static const ACTION_DATE_CHANGED = "android.intent.action.DATE_CHANGED"; /// from: static public final java.lang.String ACTION_DEFAULT static const ACTION_DEFAULT = "android.intent.action.VIEW"; /// from: static public final java.lang.String ACTION_DEFINE static const ACTION_DEFINE = "android.intent.action.DEFINE"; /// from: static public final java.lang.String ACTION_DELETE static const ACTION_DELETE = "android.intent.action.DELETE"; /// from: static public final java.lang.String ACTION_DEVICE_STORAGE_LOW static const ACTION_DEVICE_STORAGE_LOW = "android.intent.action.DEVICE_STORAGE_LOW"; /// from: static public final java.lang.String ACTION_DEVICE_STORAGE_OK static const ACTION_DEVICE_STORAGE_OK = "android.intent.action.DEVICE_STORAGE_OK"; /// from: static public final java.lang.String ACTION_DIAL static const ACTION_DIAL = "android.intent.action.DIAL"; /// from: static public final java.lang.String ACTION_DOCK_EVENT static const ACTION_DOCK_EVENT = "android.intent.action.DOCK_EVENT"; /// from: static public final java.lang.String ACTION_DREAMING_STARTED static const ACTION_DREAMING_STARTED = "android.intent.action.DREAMING_STARTED"; /// from: static public final java.lang.String ACTION_DREAMING_STOPPED static const ACTION_DREAMING_STOPPED = "android.intent.action.DREAMING_STOPPED"; /// from: static public final java.lang.String ACTION_EDIT static const ACTION_EDIT = "android.intent.action.EDIT"; /// from: static public final java.lang.String ACTION_EXTERNAL_APPLICATIONS_AVAILABLE static const ACTION_EXTERNAL_APPLICATIONS_AVAILABLE = "android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE"; /// from: static public final java.lang.String ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE static const ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE = "android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE"; /// from: static public final java.lang.String ACTION_FACTORY_TEST static const ACTION_FACTORY_TEST = "android.intent.action.FACTORY_TEST"; /// from: static public final java.lang.String ACTION_GET_CONTENT static const ACTION_GET_CONTENT = "android.intent.action.GET_CONTENT"; /// from: static public final java.lang.String ACTION_GET_RESTRICTION_ENTRIES static const ACTION_GET_RESTRICTION_ENTRIES = "android.intent.action.GET_RESTRICTION_ENTRIES"; /// from: static public final java.lang.String ACTION_GTALK_SERVICE_CONNECTED static const ACTION_GTALK_SERVICE_CONNECTED = "android.intent.action.GTALK_CONNECTED"; /// from: static public final java.lang.String ACTION_GTALK_SERVICE_DISCONNECTED static const ACTION_GTALK_SERVICE_DISCONNECTED = "android.intent.action.GTALK_DISCONNECTED"; /// from: static public final java.lang.String ACTION_HEADSET_PLUG static const ACTION_HEADSET_PLUG = "android.intent.action.HEADSET_PLUG"; /// from: static public final java.lang.String ACTION_INPUT_METHOD_CHANGED static const ACTION_INPUT_METHOD_CHANGED = "android.intent.action.INPUT_METHOD_CHANGED"; /// from: static public final java.lang.String ACTION_INSERT static const ACTION_INSERT = "android.intent.action.INSERT"; /// from: static public final java.lang.String ACTION_INSERT_OR_EDIT static const ACTION_INSERT_OR_EDIT = "android.intent.action.INSERT_OR_EDIT"; /// from: static public final java.lang.String ACTION_INSTALL_FAILURE static const ACTION_INSTALL_FAILURE = "android.intent.action.INSTALL_FAILURE"; /// from: static public final java.lang.String ACTION_INSTALL_PACKAGE static const ACTION_INSTALL_PACKAGE = "android.intent.action.INSTALL_PACKAGE"; /// from: static public final java.lang.String ACTION_LOCALE_CHANGED static const ACTION_LOCALE_CHANGED = "android.intent.action.LOCALE_CHANGED"; /// from: static public final java.lang.String ACTION_LOCKED_BOOT_COMPLETED static const ACTION_LOCKED_BOOT_COMPLETED = "android.intent.action.LOCKED_BOOT_COMPLETED"; /// from: static public final java.lang.String ACTION_MAIN static const ACTION_MAIN = "android.intent.action.MAIN"; /// from: static public final java.lang.String ACTION_MANAGED_PROFILE_ADDED static const ACTION_MANAGED_PROFILE_ADDED = "android.intent.action.MANAGED_PROFILE_ADDED"; /// from: static public final java.lang.String ACTION_MANAGED_PROFILE_AVAILABLE static const ACTION_MANAGED_PROFILE_AVAILABLE = "android.intent.action.MANAGED_PROFILE_AVAILABLE"; /// from: static public final java.lang.String ACTION_MANAGED_PROFILE_REMOVED static const ACTION_MANAGED_PROFILE_REMOVED = "android.intent.action.MANAGED_PROFILE_REMOVED"; /// from: static public final java.lang.String ACTION_MANAGED_PROFILE_UNAVAILABLE static const ACTION_MANAGED_PROFILE_UNAVAILABLE = "android.intent.action.MANAGED_PROFILE_UNAVAILABLE"; /// from: static public final java.lang.String ACTION_MANAGED_PROFILE_UNLOCKED static const ACTION_MANAGED_PROFILE_UNLOCKED = "android.intent.action.MANAGED_PROFILE_UNLOCKED"; /// from: static public final java.lang.String ACTION_MANAGE_NETWORK_USAGE static const ACTION_MANAGE_NETWORK_USAGE = "android.intent.action.MANAGE_NETWORK_USAGE"; /// from: static public final java.lang.String ACTION_MANAGE_PACKAGE_STORAGE static const ACTION_MANAGE_PACKAGE_STORAGE = "android.intent.action.MANAGE_PACKAGE_STORAGE"; /// from: static public final java.lang.String ACTION_MANAGE_UNUSED_APPS static const ACTION_MANAGE_UNUSED_APPS = "android.intent.action.MANAGE_UNUSED_APPS"; /// from: static public final java.lang.String ACTION_MEDIA_BAD_REMOVAL static const ACTION_MEDIA_BAD_REMOVAL = "android.intent.action.MEDIA_BAD_REMOVAL"; /// from: static public final java.lang.String ACTION_MEDIA_BUTTON static const ACTION_MEDIA_BUTTON = "android.intent.action.MEDIA_BUTTON"; /// from: static public final java.lang.String ACTION_MEDIA_CHECKING static const ACTION_MEDIA_CHECKING = "android.intent.action.MEDIA_CHECKING"; /// from: static public final java.lang.String ACTION_MEDIA_EJECT static const ACTION_MEDIA_EJECT = "android.intent.action.MEDIA_EJECT"; /// from: static public final java.lang.String ACTION_MEDIA_MOUNTED static const ACTION_MEDIA_MOUNTED = "android.intent.action.MEDIA_MOUNTED"; /// from: static public final java.lang.String ACTION_MEDIA_NOFS static const ACTION_MEDIA_NOFS = "android.intent.action.MEDIA_NOFS"; /// from: static public final java.lang.String ACTION_MEDIA_REMOVED static const ACTION_MEDIA_REMOVED = "android.intent.action.MEDIA_REMOVED"; /// from: static public final java.lang.String ACTION_MEDIA_SCANNER_FINISHED static const ACTION_MEDIA_SCANNER_FINISHED = "android.intent.action.MEDIA_SCANNER_FINISHED"; /// from: static public final java.lang.String ACTION_MEDIA_SCANNER_SCAN_FILE static const ACTION_MEDIA_SCANNER_SCAN_FILE = "android.intent.action.MEDIA_SCANNER_SCAN_FILE"; /// from: static public final java.lang.String ACTION_MEDIA_SCANNER_STARTED static const ACTION_MEDIA_SCANNER_STARTED = "android.intent.action.MEDIA_SCANNER_STARTED"; /// from: static public final java.lang.String ACTION_MEDIA_SHARED static const ACTION_MEDIA_SHARED = "android.intent.action.MEDIA_SHARED"; /// from: static public final java.lang.String ACTION_MEDIA_UNMOUNTABLE static const ACTION_MEDIA_UNMOUNTABLE = "android.intent.action.MEDIA_UNMOUNTABLE"; /// from: static public final java.lang.String ACTION_MEDIA_UNMOUNTED static const ACTION_MEDIA_UNMOUNTED = "android.intent.action.MEDIA_UNMOUNTED"; /// from: static public final java.lang.String ACTION_MY_PACKAGE_REPLACED static const ACTION_MY_PACKAGE_REPLACED = "android.intent.action.MY_PACKAGE_REPLACED"; /// from: static public final java.lang.String ACTION_MY_PACKAGE_SUSPENDED static const ACTION_MY_PACKAGE_SUSPENDED = "android.intent.action.MY_PACKAGE_SUSPENDED"; /// from: static public final java.lang.String ACTION_MY_PACKAGE_UNSUSPENDED static const ACTION_MY_PACKAGE_UNSUSPENDED = "android.intent.action.MY_PACKAGE_UNSUSPENDED"; /// from: static public final java.lang.String ACTION_NEW_OUTGOING_CALL static const ACTION_NEW_OUTGOING_CALL = "android.intent.action.NEW_OUTGOING_CALL"; /// from: static public final java.lang.String ACTION_OPEN_DOCUMENT static const ACTION_OPEN_DOCUMENT = "android.intent.action.OPEN_DOCUMENT"; /// from: static public final java.lang.String ACTION_OPEN_DOCUMENT_TREE static const ACTION_OPEN_DOCUMENT_TREE = "android.intent.action.OPEN_DOCUMENT_TREE"; /// from: static public final java.lang.String ACTION_PACKAGES_SUSPENDED static const ACTION_PACKAGES_SUSPENDED = "android.intent.action.PACKAGES_SUSPENDED"; /// from: static public final java.lang.String ACTION_PACKAGES_UNSUSPENDED static const ACTION_PACKAGES_UNSUSPENDED = "android.intent.action.PACKAGES_UNSUSPENDED"; /// from: static public final java.lang.String ACTION_PACKAGE_ADDED static const ACTION_PACKAGE_ADDED = "android.intent.action.PACKAGE_ADDED"; /// from: static public final java.lang.String ACTION_PACKAGE_CHANGED static const ACTION_PACKAGE_CHANGED = "android.intent.action.PACKAGE_CHANGED"; /// from: static public final java.lang.String ACTION_PACKAGE_DATA_CLEARED static const ACTION_PACKAGE_DATA_CLEARED = "android.intent.action.PACKAGE_DATA_CLEARED"; /// from: static public final java.lang.String ACTION_PACKAGE_FIRST_LAUNCH static const ACTION_PACKAGE_FIRST_LAUNCH = "android.intent.action.PACKAGE_FIRST_LAUNCH"; /// from: static public final java.lang.String ACTION_PACKAGE_FULLY_REMOVED static const ACTION_PACKAGE_FULLY_REMOVED = "android.intent.action.PACKAGE_FULLY_REMOVED"; /// from: static public final java.lang.String ACTION_PACKAGE_INSTALL static const ACTION_PACKAGE_INSTALL = "android.intent.action.PACKAGE_INSTALL"; /// from: static public final java.lang.String ACTION_PACKAGE_NEEDS_VERIFICATION static const ACTION_PACKAGE_NEEDS_VERIFICATION = "android.intent.action.PACKAGE_NEEDS_VERIFICATION"; /// from: static public final java.lang.String ACTION_PACKAGE_REMOVED static const ACTION_PACKAGE_REMOVED = "android.intent.action.PACKAGE_REMOVED"; /// from: static public final java.lang.String ACTION_PACKAGE_REPLACED static const ACTION_PACKAGE_REPLACED = "android.intent.action.PACKAGE_REPLACED"; /// from: static public final java.lang.String ACTION_PACKAGE_RESTARTED static const ACTION_PACKAGE_RESTARTED = "android.intent.action.PACKAGE_RESTARTED"; /// from: static public final java.lang.String ACTION_PACKAGE_VERIFIED static const ACTION_PACKAGE_VERIFIED = "android.intent.action.PACKAGE_VERIFIED"; /// from: static public final java.lang.String ACTION_PASTE static const ACTION_PASTE = "android.intent.action.PASTE"; /// from: static public final java.lang.String ACTION_PICK static const ACTION_PICK = "android.intent.action.PICK"; /// from: static public final java.lang.String ACTION_PICK_ACTIVITY static const ACTION_PICK_ACTIVITY = "android.intent.action.PICK_ACTIVITY"; /// from: static public final java.lang.String ACTION_POWER_CONNECTED static const ACTION_POWER_CONNECTED = "android.intent.action.ACTION_POWER_CONNECTED"; /// from: static public final java.lang.String ACTION_POWER_DISCONNECTED static const ACTION_POWER_DISCONNECTED = "android.intent.action.ACTION_POWER_DISCONNECTED"; /// from: static public final java.lang.String ACTION_POWER_USAGE_SUMMARY static const ACTION_POWER_USAGE_SUMMARY = "android.intent.action.POWER_USAGE_SUMMARY"; /// from: static public final java.lang.String ACTION_PROCESS_TEXT static const ACTION_PROCESS_TEXT = "android.intent.action.PROCESS_TEXT"; /// from: static public final java.lang.String ACTION_PROFILE_ACCESSIBLE static const ACTION_PROFILE_ACCESSIBLE = "android.intent.action.PROFILE_ACCESSIBLE"; /// from: static public final java.lang.String ACTION_PROFILE_INACCESSIBLE static const ACTION_PROFILE_INACCESSIBLE = "android.intent.action.PROFILE_INACCESSIBLE"; /// from: static public final java.lang.String ACTION_PROVIDER_CHANGED static const ACTION_PROVIDER_CHANGED = "android.intent.action.PROVIDER_CHANGED"; /// from: static public final java.lang.String ACTION_QUICK_CLOCK static const ACTION_QUICK_CLOCK = "android.intent.action.QUICK_CLOCK"; /// from: static public final java.lang.String ACTION_QUICK_VIEW static const ACTION_QUICK_VIEW = "android.intent.action.QUICK_VIEW"; /// from: static public final java.lang.String ACTION_REBOOT static const ACTION_REBOOT = "android.intent.action.REBOOT"; /// from: static public final java.lang.String ACTION_RUN static const ACTION_RUN = "android.intent.action.RUN"; /// from: static public final java.lang.String ACTION_SAFETY_CENTER static const ACTION_SAFETY_CENTER = "android.intent.action.SAFETY_CENTER"; /// from: static public final java.lang.String ACTION_SCREEN_OFF static const ACTION_SCREEN_OFF = "android.intent.action.SCREEN_OFF"; /// from: static public final java.lang.String ACTION_SCREEN_ON static const ACTION_SCREEN_ON = "android.intent.action.SCREEN_ON"; /// from: static public final java.lang.String ACTION_SEARCH static const ACTION_SEARCH = "android.intent.action.SEARCH"; /// from: static public final java.lang.String ACTION_SEARCH_LONG_PRESS static const ACTION_SEARCH_LONG_PRESS = "android.intent.action.SEARCH_LONG_PRESS"; /// from: static public final java.lang.String ACTION_SEND static const ACTION_SEND = "android.intent.action.SEND"; /// from: static public final java.lang.String ACTION_SENDTO static const ACTION_SENDTO = "android.intent.action.SENDTO"; /// from: static public final java.lang.String ACTION_SEND_MULTIPLE static const ACTION_SEND_MULTIPLE = "android.intent.action.SEND_MULTIPLE"; /// from: static public final java.lang.String ACTION_SET_WALLPAPER static const ACTION_SET_WALLPAPER = "android.intent.action.SET_WALLPAPER"; /// from: static public final java.lang.String ACTION_SHOW_APP_INFO static const ACTION_SHOW_APP_INFO = "android.intent.action.SHOW_APP_INFO"; /// from: static public final java.lang.String ACTION_SHOW_WORK_APPS static const ACTION_SHOW_WORK_APPS = "android.intent.action.SHOW_WORK_APPS"; /// from: static public final java.lang.String ACTION_SHUTDOWN static const ACTION_SHUTDOWN = "android.intent.action.ACTION_SHUTDOWN"; /// from: static public final java.lang.String ACTION_SYNC static const ACTION_SYNC = "android.intent.action.SYNC"; /// from: static public final java.lang.String ACTION_SYSTEM_TUTORIAL static const ACTION_SYSTEM_TUTORIAL = "android.intent.action.SYSTEM_TUTORIAL"; /// from: static public final java.lang.String ACTION_TIMEZONE_CHANGED static const ACTION_TIMEZONE_CHANGED = "android.intent.action.TIMEZONE_CHANGED"; /// from: static public final java.lang.String ACTION_TIME_CHANGED static const ACTION_TIME_CHANGED = "android.intent.action.TIME_SET"; /// from: static public final java.lang.String ACTION_TIME_TICK static const ACTION_TIME_TICK = "android.intent.action.TIME_TICK"; /// from: static public final java.lang.String ACTION_TRANSLATE static const ACTION_TRANSLATE = "android.intent.action.TRANSLATE"; /// from: static public final java.lang.String ACTION_UID_REMOVED static const ACTION_UID_REMOVED = "android.intent.action.UID_REMOVED"; /// from: static public final java.lang.String ACTION_UMS_CONNECTED static const ACTION_UMS_CONNECTED = "android.intent.action.UMS_CONNECTED"; /// from: static public final java.lang.String ACTION_UMS_DISCONNECTED static const ACTION_UMS_DISCONNECTED = "android.intent.action.UMS_DISCONNECTED"; /// from: static public final java.lang.String ACTION_UNINSTALL_PACKAGE static const ACTION_UNINSTALL_PACKAGE = "android.intent.action.UNINSTALL_PACKAGE"; /// from: static public final java.lang.String ACTION_USER_BACKGROUND static const ACTION_USER_BACKGROUND = "android.intent.action.USER_BACKGROUND"; /// from: static public final java.lang.String ACTION_USER_FOREGROUND static const ACTION_USER_FOREGROUND = "android.intent.action.USER_FOREGROUND"; /// from: static public final java.lang.String ACTION_USER_INITIALIZE static const ACTION_USER_INITIALIZE = "android.intent.action.USER_INITIALIZE"; /// from: static public final java.lang.String ACTION_USER_PRESENT static const ACTION_USER_PRESENT = "android.intent.action.USER_PRESENT"; /// from: static public final java.lang.String ACTION_USER_UNLOCKED static const ACTION_USER_UNLOCKED = "android.intent.action.USER_UNLOCKED"; /// from: static public final java.lang.String ACTION_VIEW static const ACTION_VIEW = "android.intent.action.VIEW"; /// from: static public final java.lang.String ACTION_VIEW_LOCUS static const ACTION_VIEW_LOCUS = "android.intent.action.VIEW_LOCUS"; /// from: static public final java.lang.String ACTION_VIEW_PERMISSION_USAGE static const ACTION_VIEW_PERMISSION_USAGE = "android.intent.action.VIEW_PERMISSION_USAGE"; /// from: static public final java.lang.String ACTION_VIEW_PERMISSION_USAGE_FOR_PERIOD static const ACTION_VIEW_PERMISSION_USAGE_FOR_PERIOD = "android.intent.action.VIEW_PERMISSION_USAGE_FOR_PERIOD"; /// from: static public final java.lang.String ACTION_VOICE_COMMAND static const ACTION_VOICE_COMMAND = "android.intent.action.VOICE_COMMAND"; /// from: static public final java.lang.String ACTION_WALLPAPER_CHANGED static const ACTION_WALLPAPER_CHANGED = "android.intent.action.WALLPAPER_CHANGED"; /// from: static public final java.lang.String ACTION_WEB_SEARCH static const ACTION_WEB_SEARCH = "android.intent.action.WEB_SEARCH"; /// from: static public final java.lang.String CATEGORY_ACCESSIBILITY_SHORTCUT_TARGET static const CATEGORY_ACCESSIBILITY_SHORTCUT_TARGET = "android.intent.category.ACCESSIBILITY_SHORTCUT_TARGET"; /// from: static public final java.lang.String CATEGORY_ALTERNATIVE static const CATEGORY_ALTERNATIVE = "android.intent.category.ALTERNATIVE"; /// from: static public final java.lang.String CATEGORY_APP_BROWSER static const CATEGORY_APP_BROWSER = "android.intent.category.APP_BROWSER"; /// from: static public final java.lang.String CATEGORY_APP_CALCULATOR static const CATEGORY_APP_CALCULATOR = "android.intent.category.APP_CALCULATOR"; /// from: static public final java.lang.String CATEGORY_APP_CALENDAR static const CATEGORY_APP_CALENDAR = "android.intent.category.APP_CALENDAR"; /// from: static public final java.lang.String CATEGORY_APP_CONTACTS static const CATEGORY_APP_CONTACTS = "android.intent.category.APP_CONTACTS"; /// from: static public final java.lang.String CATEGORY_APP_EMAIL static const CATEGORY_APP_EMAIL = "android.intent.category.APP_EMAIL"; /// from: static public final java.lang.String CATEGORY_APP_FILES static const CATEGORY_APP_FILES = "android.intent.category.APP_FILES"; /// from: static public final java.lang.String CATEGORY_APP_FITNESS static const CATEGORY_APP_FITNESS = "android.intent.category.APP_FITNESS"; /// from: static public final java.lang.String CATEGORY_APP_GALLERY static const CATEGORY_APP_GALLERY = "android.intent.category.APP_GALLERY"; /// from: static public final java.lang.String CATEGORY_APP_MAPS static const CATEGORY_APP_MAPS = "android.intent.category.APP_MAPS"; /// from: static public final java.lang.String CATEGORY_APP_MARKET static const CATEGORY_APP_MARKET = "android.intent.category.APP_MARKET"; /// from: static public final java.lang.String CATEGORY_APP_MESSAGING static const CATEGORY_APP_MESSAGING = "android.intent.category.APP_MESSAGING"; /// from: static public final java.lang.String CATEGORY_APP_MUSIC static const CATEGORY_APP_MUSIC = "android.intent.category.APP_MUSIC"; /// from: static public final java.lang.String CATEGORY_APP_WEATHER static const CATEGORY_APP_WEATHER = "android.intent.category.APP_WEATHER"; /// from: static public final java.lang.String CATEGORY_BROWSABLE static const CATEGORY_BROWSABLE = "android.intent.category.BROWSABLE"; /// from: static public final java.lang.String CATEGORY_CAR_DOCK static const CATEGORY_CAR_DOCK = "android.intent.category.CAR_DOCK"; /// from: static public final java.lang.String CATEGORY_CAR_MODE static const CATEGORY_CAR_MODE = "android.intent.category.CAR_MODE"; /// from: static public final java.lang.String CATEGORY_DEFAULT static const CATEGORY_DEFAULT = "android.intent.category.DEFAULT"; /// from: static public final java.lang.String CATEGORY_DESK_DOCK static const CATEGORY_DESK_DOCK = "android.intent.category.DESK_DOCK"; /// from: static public final java.lang.String CATEGORY_DEVELOPMENT_PREFERENCE static const CATEGORY_DEVELOPMENT_PREFERENCE = "android.intent.category.DEVELOPMENT_PREFERENCE"; /// from: static public final java.lang.String CATEGORY_EMBED static const CATEGORY_EMBED = "android.intent.category.EMBED"; /// from: static public final java.lang.String CATEGORY_FRAMEWORK_INSTRUMENTATION_TEST static const CATEGORY_FRAMEWORK_INSTRUMENTATION_TEST = "android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST"; /// from: static public final java.lang.String CATEGORY_HE_DESK_DOCK static const CATEGORY_HE_DESK_DOCK = "android.intent.category.HE_DESK_DOCK"; /// from: static public final java.lang.String CATEGORY_HOME static const CATEGORY_HOME = "android.intent.category.HOME"; /// from: static public final java.lang.String CATEGORY_INFO static const CATEGORY_INFO = "android.intent.category.INFO"; /// from: static public final java.lang.String CATEGORY_LAUNCHER static const CATEGORY_LAUNCHER = "android.intent.category.LAUNCHER"; /// from: static public final java.lang.String CATEGORY_LEANBACK_LAUNCHER static const CATEGORY_LEANBACK_LAUNCHER = "android.intent.category.LEANBACK_LAUNCHER"; /// from: static public final java.lang.String CATEGORY_LE_DESK_DOCK static const CATEGORY_LE_DESK_DOCK = "android.intent.category.LE_DESK_DOCK"; /// from: static public final java.lang.String CATEGORY_MONKEY static const CATEGORY_MONKEY = "android.intent.category.MONKEY"; /// from: static public final java.lang.String CATEGORY_OPENABLE static const CATEGORY_OPENABLE = "android.intent.category.OPENABLE"; /// from: static public final java.lang.String CATEGORY_PREFERENCE static const CATEGORY_PREFERENCE = "android.intent.category.PREFERENCE"; /// from: static public final java.lang.String CATEGORY_SAMPLE_CODE static const CATEGORY_SAMPLE_CODE = "android.intent.category.SAMPLE_CODE"; /// from: static public final java.lang.String CATEGORY_SECONDARY_HOME static const CATEGORY_SECONDARY_HOME = "android.intent.category.SECONDARY_HOME"; /// from: static public final java.lang.String CATEGORY_SELECTED_ALTERNATIVE static const CATEGORY_SELECTED_ALTERNATIVE = "android.intent.category.SELECTED_ALTERNATIVE"; /// from: static public final java.lang.String CATEGORY_TAB static const CATEGORY_TAB = "android.intent.category.TAB"; /// from: static public final java.lang.String CATEGORY_TEST static const CATEGORY_TEST = "android.intent.category.TEST"; /// from: static public final java.lang.String CATEGORY_TYPED_OPENABLE static const CATEGORY_TYPED_OPENABLE = "android.intent.category.TYPED_OPENABLE"; /// from: static public final java.lang.String CATEGORY_UNIT_TEST static const CATEGORY_UNIT_TEST = "android.intent.category.UNIT_TEST"; /// from: static public final java.lang.String CATEGORY_VOICE static const CATEGORY_VOICE = "android.intent.category.VOICE"; /// from: static public final java.lang.String CATEGORY_VR_HOME static const CATEGORY_VR_HOME = "android.intent.category.VR_HOME"; static final _get_CREATOR = jniLookup>( "get_Intent__CREATOR") .asFunction(); /// from: static public final android.os.Parcelable$Creator CREATOR /// The returned object must be deleted after use, by calling the `delete` method. static jni.JObject get CREATOR => const jni.JObjectType().fromRef(_get_CREATOR().object); /// from: static public final java.lang.String EXTRA_ALARM_COUNT static const EXTRA_ALARM_COUNT = "android.intent.extra.ALARM_COUNT"; /// from: static public final java.lang.String EXTRA_ALLOW_MULTIPLE static const EXTRA_ALLOW_MULTIPLE = "android.intent.extra.ALLOW_MULTIPLE"; /// from: static public final java.lang.String EXTRA_ALLOW_REPLACE static const EXTRA_ALLOW_REPLACE = "android.intent.extra.ALLOW_REPLACE"; /// from: static public final java.lang.String EXTRA_ALTERNATE_INTENTS static const EXTRA_ALTERNATE_INTENTS = "android.intent.extra.ALTERNATE_INTENTS"; /// from: static public final java.lang.String EXTRA_ASSIST_CONTEXT static const EXTRA_ASSIST_CONTEXT = "android.intent.extra.ASSIST_CONTEXT"; /// from: static public final java.lang.String EXTRA_ASSIST_INPUT_DEVICE_ID static const EXTRA_ASSIST_INPUT_DEVICE_ID = "android.intent.extra.ASSIST_INPUT_DEVICE_ID"; /// from: static public final java.lang.String EXTRA_ASSIST_INPUT_HINT_KEYBOARD static const EXTRA_ASSIST_INPUT_HINT_KEYBOARD = "android.intent.extra.ASSIST_INPUT_HINT_KEYBOARD"; /// from: static public final java.lang.String EXTRA_ASSIST_PACKAGE static const EXTRA_ASSIST_PACKAGE = "android.intent.extra.ASSIST_PACKAGE"; /// from: static public final java.lang.String EXTRA_ASSIST_UID static const EXTRA_ASSIST_UID = "android.intent.extra.ASSIST_UID"; /// from: static public final java.lang.String EXTRA_ATTRIBUTION_TAGS static const EXTRA_ATTRIBUTION_TAGS = "android.intent.extra.ATTRIBUTION_TAGS"; /// from: static public final java.lang.String EXTRA_AUTO_LAUNCH_SINGLE_CHOICE static const EXTRA_AUTO_LAUNCH_SINGLE_CHOICE = "android.intent.extra.AUTO_LAUNCH_SINGLE_CHOICE"; /// from: static public final java.lang.String EXTRA_BCC static const EXTRA_BCC = "android.intent.extra.BCC"; /// from: static public final java.lang.String EXTRA_BUG_REPORT static const EXTRA_BUG_REPORT = "android.intent.extra.BUG_REPORT"; /// from: static public final java.lang.String EXTRA_CC static const EXTRA_CC = "android.intent.extra.CC"; /// from: static public final java.lang.String EXTRA_CHANGED_COMPONENT_NAME static const EXTRA_CHANGED_COMPONENT_NAME = "android.intent.extra.changed_component_name"; /// from: static public final java.lang.String EXTRA_CHANGED_COMPONENT_NAME_LIST static const EXTRA_CHANGED_COMPONENT_NAME_LIST = "android.intent.extra.changed_component_name_list"; /// from: static public final java.lang.String EXTRA_CHANGED_PACKAGE_LIST static const EXTRA_CHANGED_PACKAGE_LIST = "android.intent.extra.changed_package_list"; /// from: static public final java.lang.String EXTRA_CHANGED_UID_LIST static const EXTRA_CHANGED_UID_LIST = "android.intent.extra.changed_uid_list"; /// from: static public final java.lang.String EXTRA_CHOOSER_REFINEMENT_INTENT_SENDER static const EXTRA_CHOOSER_REFINEMENT_INTENT_SENDER = "android.intent.extra.CHOOSER_REFINEMENT_INTENT_SENDER"; /// from: static public final java.lang.String EXTRA_CHOOSER_TARGETS static const EXTRA_CHOOSER_TARGETS = "android.intent.extra.CHOOSER_TARGETS"; /// from: static public final java.lang.String EXTRA_CHOSEN_COMPONENT static const EXTRA_CHOSEN_COMPONENT = "android.intent.extra.CHOSEN_COMPONENT"; /// from: static public final java.lang.String EXTRA_CHOSEN_COMPONENT_INTENT_SENDER static const EXTRA_CHOSEN_COMPONENT_INTENT_SENDER = "android.intent.extra.CHOSEN_COMPONENT_INTENT_SENDER"; /// from: static public final java.lang.String EXTRA_COMPONENT_NAME static const EXTRA_COMPONENT_NAME = "android.intent.extra.COMPONENT_NAME"; /// from: static public final java.lang.String EXTRA_CONTENT_ANNOTATIONS static const EXTRA_CONTENT_ANNOTATIONS = "android.intent.extra.CONTENT_ANNOTATIONS"; /// from: static public final java.lang.String EXTRA_CONTENT_QUERY static const EXTRA_CONTENT_QUERY = "android.intent.extra.CONTENT_QUERY"; /// from: static public final java.lang.String EXTRA_DATA_REMOVED static const EXTRA_DATA_REMOVED = "android.intent.extra.DATA_REMOVED"; /// from: static public final java.lang.String EXTRA_DOCK_STATE static const EXTRA_DOCK_STATE = "android.intent.extra.DOCK_STATE"; /// from: static public final int EXTRA_DOCK_STATE_CAR static const EXTRA_DOCK_STATE_CAR = 2; /// from: static public final int EXTRA_DOCK_STATE_DESK static const EXTRA_DOCK_STATE_DESK = 1; /// from: static public final int EXTRA_DOCK_STATE_HE_DESK static const EXTRA_DOCK_STATE_HE_DESK = 4; /// from: static public final int EXTRA_DOCK_STATE_LE_DESK static const EXTRA_DOCK_STATE_LE_DESK = 3; /// from: static public final int EXTRA_DOCK_STATE_UNDOCKED static const EXTRA_DOCK_STATE_UNDOCKED = 0; /// from: static public final java.lang.String EXTRA_DONT_KILL_APP static const EXTRA_DONT_KILL_APP = "android.intent.extra.DONT_KILL_APP"; /// from: static public final java.lang.String EXTRA_DURATION_MILLIS static const EXTRA_DURATION_MILLIS = "android.intent.extra.DURATION_MILLIS"; /// from: static public final java.lang.String EXTRA_EMAIL static const EXTRA_EMAIL = "android.intent.extra.EMAIL"; /// from: static public final java.lang.String EXTRA_END_TIME static const EXTRA_END_TIME = "android.intent.extra.END_TIME"; /// from: static public final java.lang.String EXTRA_EXCLUDE_COMPONENTS static const EXTRA_EXCLUDE_COMPONENTS = "android.intent.extra.EXCLUDE_COMPONENTS"; /// from: static public final java.lang.String EXTRA_FROM_STORAGE static const EXTRA_FROM_STORAGE = "android.intent.extra.FROM_STORAGE"; /// from: static public final java.lang.String EXTRA_HTML_TEXT static const EXTRA_HTML_TEXT = "android.intent.extra.HTML_TEXT"; /// from: static public final java.lang.String EXTRA_INDEX static const EXTRA_INDEX = "android.intent.extra.INDEX"; /// from: static public final java.lang.String EXTRA_INITIAL_INTENTS static const EXTRA_INITIAL_INTENTS = "android.intent.extra.INITIAL_INTENTS"; /// from: static public final java.lang.String EXTRA_INSTALLER_PACKAGE_NAME static const EXTRA_INSTALLER_PACKAGE_NAME = "android.intent.extra.INSTALLER_PACKAGE_NAME"; /// from: static public final java.lang.String EXTRA_INTENT static const EXTRA_INTENT = "android.intent.extra.INTENT"; /// from: static public final java.lang.String EXTRA_KEY_EVENT static const EXTRA_KEY_EVENT = "android.intent.extra.KEY_EVENT"; /// from: static public final java.lang.String EXTRA_LOCALE_LIST static const EXTRA_LOCALE_LIST = "android.intent.extra.LOCALE_LIST"; /// from: static public final java.lang.String EXTRA_LOCAL_ONLY static const EXTRA_LOCAL_ONLY = "android.intent.extra.LOCAL_ONLY"; /// from: static public final java.lang.String EXTRA_LOCUS_ID static const EXTRA_LOCUS_ID = "android.intent.extra.LOCUS_ID"; /// from: static public final java.lang.String EXTRA_MIME_TYPES static const EXTRA_MIME_TYPES = "android.intent.extra.MIME_TYPES"; /// from: static public final java.lang.String EXTRA_NOT_UNKNOWN_SOURCE static const EXTRA_NOT_UNKNOWN_SOURCE = "android.intent.extra.NOT_UNKNOWN_SOURCE"; /// from: static public final java.lang.String EXTRA_ORIGINATING_URI static const EXTRA_ORIGINATING_URI = "android.intent.extra.ORIGINATING_URI"; /// from: static public final java.lang.String EXTRA_PACKAGE_NAME static const EXTRA_PACKAGE_NAME = "android.intent.extra.PACKAGE_NAME"; /// from: static public final java.lang.String EXTRA_PERMISSION_GROUP_NAME static const EXTRA_PERMISSION_GROUP_NAME = "android.intent.extra.PERMISSION_GROUP_NAME"; /// from: static public final java.lang.String EXTRA_PHONE_NUMBER static const EXTRA_PHONE_NUMBER = "android.intent.extra.PHONE_NUMBER"; /// from: static public final java.lang.String EXTRA_PROCESS_TEXT static const EXTRA_PROCESS_TEXT = "android.intent.extra.PROCESS_TEXT"; /// from: static public final java.lang.String EXTRA_PROCESS_TEXT_READONLY static const EXTRA_PROCESS_TEXT_READONLY = "android.intent.extra.PROCESS_TEXT_READONLY"; /// from: static public final java.lang.String EXTRA_QUICK_VIEW_FEATURES static const EXTRA_QUICK_VIEW_FEATURES = "android.intent.extra.QUICK_VIEW_FEATURES"; /// from: static public final java.lang.String EXTRA_QUIET_MODE static const EXTRA_QUIET_MODE = "android.intent.extra.QUIET_MODE"; /// from: static public final java.lang.String EXTRA_REFERRER static const EXTRA_REFERRER = "android.intent.extra.REFERRER"; /// from: static public final java.lang.String EXTRA_REFERRER_NAME static const EXTRA_REFERRER_NAME = "android.intent.extra.REFERRER_NAME"; /// from: static public final java.lang.String EXTRA_REMOTE_INTENT_TOKEN static const EXTRA_REMOTE_INTENT_TOKEN = "android.intent.extra.remote_intent_token"; /// from: static public final java.lang.String EXTRA_REPLACEMENT_EXTRAS static const EXTRA_REPLACEMENT_EXTRAS = "android.intent.extra.REPLACEMENT_EXTRAS"; /// from: static public final java.lang.String EXTRA_REPLACING static const EXTRA_REPLACING = "android.intent.extra.REPLACING"; /// from: static public final java.lang.String EXTRA_RESTRICTIONS_BUNDLE static const EXTRA_RESTRICTIONS_BUNDLE = "android.intent.extra.restrictions_bundle"; /// from: static public final java.lang.String EXTRA_RESTRICTIONS_INTENT static const EXTRA_RESTRICTIONS_INTENT = "android.intent.extra.restrictions_intent"; /// from: static public final java.lang.String EXTRA_RESTRICTIONS_LIST static const EXTRA_RESTRICTIONS_LIST = "android.intent.extra.restrictions_list"; /// from: static public final java.lang.String EXTRA_RESULT_RECEIVER static const EXTRA_RESULT_RECEIVER = "android.intent.extra.RESULT_RECEIVER"; /// from: static public final java.lang.String EXTRA_RETURN_RESULT static const EXTRA_RETURN_RESULT = "android.intent.extra.RETURN_RESULT"; /// from: static public final java.lang.String EXTRA_SHORTCUT_ICON static const EXTRA_SHORTCUT_ICON = "android.intent.extra.shortcut.ICON"; /// from: static public final java.lang.String EXTRA_SHORTCUT_ICON_RESOURCE static const EXTRA_SHORTCUT_ICON_RESOURCE = "android.intent.extra.shortcut.ICON_RESOURCE"; /// from: static public final java.lang.String EXTRA_SHORTCUT_ID static const EXTRA_SHORTCUT_ID = "android.intent.extra.shortcut.ID"; /// from: static public final java.lang.String EXTRA_SHORTCUT_INTENT static const EXTRA_SHORTCUT_INTENT = "android.intent.extra.shortcut.INTENT"; /// from: static public final java.lang.String EXTRA_SHORTCUT_NAME static const EXTRA_SHORTCUT_NAME = "android.intent.extra.shortcut.NAME"; /// from: static public final java.lang.String EXTRA_SHUTDOWN_USERSPACE_ONLY static const EXTRA_SHUTDOWN_USERSPACE_ONLY = "android.intent.extra.SHUTDOWN_USERSPACE_ONLY"; /// from: static public final java.lang.String EXTRA_SPLIT_NAME static const EXTRA_SPLIT_NAME = "android.intent.extra.SPLIT_NAME"; /// from: static public final java.lang.String EXTRA_START_TIME static const EXTRA_START_TIME = "android.intent.extra.START_TIME"; /// from: static public final java.lang.String EXTRA_STREAM static const EXTRA_STREAM = "android.intent.extra.STREAM"; /// from: static public final java.lang.String EXTRA_SUBJECT static const EXTRA_SUBJECT = "android.intent.extra.SUBJECT"; /// from: static public final java.lang.String EXTRA_SUSPENDED_PACKAGE_EXTRAS static const EXTRA_SUSPENDED_PACKAGE_EXTRAS = "android.intent.extra.SUSPENDED_PACKAGE_EXTRAS"; /// from: static public final java.lang.String EXTRA_TEMPLATE static const EXTRA_TEMPLATE = "android.intent.extra.TEMPLATE"; /// from: static public final java.lang.String EXTRA_TEXT static const EXTRA_TEXT = "android.intent.extra.TEXT"; /// from: static public final java.lang.String EXTRA_TIME static const EXTRA_TIME = "android.intent.extra.TIME"; /// from: static public final java.lang.String EXTRA_TIMEZONE static const EXTRA_TIMEZONE = "time-zone"; /// from: static public final java.lang.String EXTRA_TITLE static const EXTRA_TITLE = "android.intent.extra.TITLE"; /// from: static public final java.lang.String EXTRA_UID static const EXTRA_UID = "android.intent.extra.UID"; /// from: static public final java.lang.String EXTRA_USER static const EXTRA_USER = "android.intent.extra.USER"; /// from: static public final java.lang.String EXTRA_USER_INITIATED static const EXTRA_USER_INITIATED = "android.intent.extra.USER_INITIATED"; /// from: static public final int FILL_IN_ACTION static const FILL_IN_ACTION = 1; /// from: static public final int FILL_IN_CATEGORIES static const FILL_IN_CATEGORIES = 4; /// from: static public final int FILL_IN_CLIP_DATA static const FILL_IN_CLIP_DATA = 128; /// from: static public final int FILL_IN_COMPONENT static const FILL_IN_COMPONENT = 8; /// from: static public final int FILL_IN_DATA static const FILL_IN_DATA = 2; /// from: static public final int FILL_IN_IDENTIFIER static const FILL_IN_IDENTIFIER = 256; /// from: static public final int FILL_IN_PACKAGE static const FILL_IN_PACKAGE = 16; /// from: static public final int FILL_IN_SELECTOR static const FILL_IN_SELECTOR = 64; /// from: static public final int FILL_IN_SOURCE_BOUNDS static const FILL_IN_SOURCE_BOUNDS = 32; /// from: static public final int FLAG_ACTIVITY_BROUGHT_TO_FRONT static const FLAG_ACTIVITY_BROUGHT_TO_FRONT = 4194304; /// from: static public final int FLAG_ACTIVITY_CLEAR_TASK static const FLAG_ACTIVITY_CLEAR_TASK = 32768; /// from: static public final int FLAG_ACTIVITY_CLEAR_TOP static const FLAG_ACTIVITY_CLEAR_TOP = 67108864; /// from: static public final int FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET static const FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET = 524288; /// from: static public final int FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS static const FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS = 8388608; /// from: static public final int FLAG_ACTIVITY_FORWARD_RESULT static const FLAG_ACTIVITY_FORWARD_RESULT = 33554432; /// from: static public final int FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY static const FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY = 1048576; /// from: static public final int FLAG_ACTIVITY_LAUNCH_ADJACENT static const FLAG_ACTIVITY_LAUNCH_ADJACENT = 4096; /// from: static public final int FLAG_ACTIVITY_MATCH_EXTERNAL static const FLAG_ACTIVITY_MATCH_EXTERNAL = 2048; /// from: static public final int FLAG_ACTIVITY_MULTIPLE_TASK static const FLAG_ACTIVITY_MULTIPLE_TASK = 134217728; /// from: static public final int FLAG_ACTIVITY_NEW_DOCUMENT static const FLAG_ACTIVITY_NEW_DOCUMENT = 524288; /// from: static public final int FLAG_ACTIVITY_NEW_TASK static const FLAG_ACTIVITY_NEW_TASK = 268435456; /// from: static public final int FLAG_ACTIVITY_NO_ANIMATION static const FLAG_ACTIVITY_NO_ANIMATION = 65536; /// from: static public final int FLAG_ACTIVITY_NO_HISTORY static const FLAG_ACTIVITY_NO_HISTORY = 1073741824; /// from: static public final int FLAG_ACTIVITY_NO_USER_ACTION static const FLAG_ACTIVITY_NO_USER_ACTION = 262144; /// from: static public final int FLAG_ACTIVITY_PREVIOUS_IS_TOP static const FLAG_ACTIVITY_PREVIOUS_IS_TOP = 16777216; /// from: static public final int FLAG_ACTIVITY_REORDER_TO_FRONT static const FLAG_ACTIVITY_REORDER_TO_FRONT = 131072; /// from: static public final int FLAG_ACTIVITY_REQUIRE_DEFAULT static const FLAG_ACTIVITY_REQUIRE_DEFAULT = 512; /// from: static public final int FLAG_ACTIVITY_REQUIRE_NON_BROWSER static const FLAG_ACTIVITY_REQUIRE_NON_BROWSER = 1024; /// from: static public final int FLAG_ACTIVITY_RESET_TASK_IF_NEEDED static const FLAG_ACTIVITY_RESET_TASK_IF_NEEDED = 2097152; /// from: static public final int FLAG_ACTIVITY_RETAIN_IN_RECENTS static const FLAG_ACTIVITY_RETAIN_IN_RECENTS = 8192; /// from: static public final int FLAG_ACTIVITY_SINGLE_TOP static const FLAG_ACTIVITY_SINGLE_TOP = 536870912; /// from: static public final int FLAG_ACTIVITY_TASK_ON_HOME static const FLAG_ACTIVITY_TASK_ON_HOME = 16384; /// from: static public final int FLAG_DEBUG_LOG_RESOLUTION static const FLAG_DEBUG_LOG_RESOLUTION = 8; /// from: static public final int FLAG_DIRECT_BOOT_AUTO static const FLAG_DIRECT_BOOT_AUTO = 256; /// from: static public final int FLAG_EXCLUDE_STOPPED_PACKAGES static const FLAG_EXCLUDE_STOPPED_PACKAGES = 16; /// from: static public final int FLAG_FROM_BACKGROUND static const FLAG_FROM_BACKGROUND = 4; /// from: static public final int FLAG_GRANT_PERSISTABLE_URI_PERMISSION static const FLAG_GRANT_PERSISTABLE_URI_PERMISSION = 64; /// from: static public final int FLAG_GRANT_PREFIX_URI_PERMISSION static const FLAG_GRANT_PREFIX_URI_PERMISSION = 128; /// from: static public final int FLAG_GRANT_READ_URI_PERMISSION static const FLAG_GRANT_READ_URI_PERMISSION = 1; /// from: static public final int FLAG_GRANT_WRITE_URI_PERMISSION static const FLAG_GRANT_WRITE_URI_PERMISSION = 2; /// from: static public final int FLAG_INCLUDE_STOPPED_PACKAGES static const FLAG_INCLUDE_STOPPED_PACKAGES = 32; /// from: static public final int FLAG_RECEIVER_FOREGROUND static const FLAG_RECEIVER_FOREGROUND = 268435456; /// from: static public final int FLAG_RECEIVER_NO_ABORT static const FLAG_RECEIVER_NO_ABORT = 134217728; /// from: static public final int FLAG_RECEIVER_REGISTERED_ONLY static const FLAG_RECEIVER_REGISTERED_ONLY = 1073741824; /// from: static public final int FLAG_RECEIVER_REPLACE_PENDING static const FLAG_RECEIVER_REPLACE_PENDING = 536870912; /// from: static public final int FLAG_RECEIVER_VISIBLE_TO_INSTANT_APPS static const FLAG_RECEIVER_VISIBLE_TO_INSTANT_APPS = 2097152; /// from: static public final java.lang.String METADATA_DOCK_HOME static const METADATA_DOCK_HOME = "android.dock_home"; /// from: static public final int URI_ALLOW_UNSAFE static const URI_ALLOW_UNSAFE = 4; /// from: static public final int URI_ANDROID_APP_SCHEME static const URI_ANDROID_APP_SCHEME = 2; /// from: static public final int URI_INTENT_SCHEME static const URI_INTENT_SCHEME = 1; static final _ctor = jniLookup>("Intent__ctor") .asFunction(); /// from: public void () Intent() : super.fromRef(_ctor().object); static final _ctor1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Intent__ctor1") .asFunction)>(); /// from: public void (android.content.Intent intent) Intent.ctor1(Intent intent) : super.fromRef(_ctor1(intent.reference).object); static final _ctor2 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Intent__ctor2") .asFunction)>(); /// from: public void (java.lang.String string) Intent.ctor2(jni.JString string) : super.fromRef(_ctor2(string.reference).object); static final _ctor3 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__ctor3") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void (java.lang.String string, android.net.Uri uri) Intent.ctor3(jni.JString string, jni.JObject uri) : super.fromRef(_ctor3(string.reference, uri.reference).object); static final _ctor4 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__ctor4") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void (android.content.Context context, java.lang.Class class) Intent.ctor4(Context context, jni.JObject class0) : super.fromRef(_ctor4(context.reference, class0.reference).object); static final _ctor5 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__ctor5") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void (java.lang.String string, android.net.Uri uri, android.content.Context context, java.lang.Class class) Intent.ctor5( jni.JString string, jni.JObject uri, Context context, jni.JObject class0) : super.fromRef(_ctor5(string.reference, uri.reference, context.reference, class0.reference) .object); static final _createChooser = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__createChooser") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: static public android.content.Intent createChooser(android.content.Intent intent, java.lang.CharSequence charSequence) /// The returned object must be deleted after use, by calling the `delete` method. static Intent createChooser(Intent intent, jni.JObject charSequence) => const $IntentType().fromRef( _createChooser(intent.reference, charSequence.reference).object); static final _createChooser1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__createChooser1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: static public android.content.Intent createChooser(android.content.Intent intent, java.lang.CharSequence charSequence, android.content.IntentSender intentSender) /// The returned object must be deleted after use, by calling the `delete` method. static Intent createChooser1( Intent intent, jni.JObject charSequence, jni.JObject intentSender) => const $IntentType().fromRef(_createChooser1( intent.reference, charSequence.reference, intentSender.reference) .object); static final _clone = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Intent__clone") .asFunction)>(); /// from: public java.lang.Object clone() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject clone() => const jni.JObjectType().fromRef(_clone(reference).object); static final _cloneFilter = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__cloneFilter") .asFunction)>(); /// from: public android.content.Intent cloneFilter() /// The returned object must be deleted after use, by calling the `delete` method. Intent cloneFilter() => const $IntentType().fromRef(_cloneFilter(reference).object); static final _makeMainActivity = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__makeMainActivity") .asFunction)>(); /// from: static public android.content.Intent makeMainActivity(android.content.ComponentName componentName) /// The returned object must be deleted after use, by calling the `delete` method. static Intent makeMainActivity(jni.JObject componentName) => const $IntentType() .fromRef(_makeMainActivity(componentName.reference).object); static final _makeMainSelectorActivity = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__makeMainSelectorActivity") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: static public android.content.Intent makeMainSelectorActivity(java.lang.String string, java.lang.String string1) /// The returned object must be deleted after use, by calling the `delete` method. static Intent makeMainSelectorActivity( jni.JString string, jni.JString string1) => const $IntentType().fromRef( _makeMainSelectorActivity(string.reference, string1.reference) .object); static final _makeRestartActivityTask = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__makeRestartActivityTask") .asFunction)>(); /// from: static public android.content.Intent makeRestartActivityTask(android.content.ComponentName componentName) /// The returned object must be deleted after use, by calling the `delete` method. static Intent makeRestartActivityTask(jni.JObject componentName) => const $IntentType() .fromRef(_makeRestartActivityTask(componentName.reference).object); static final _getIntent = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__getIntent") .asFunction)>(); /// from: static public android.content.Intent getIntent(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. static Intent getIntent(jni.JString string) => const $IntentType().fromRef(_getIntent(string.reference).object); static final _parseUri = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Intent__parseUri") .asFunction, int)>(); /// from: static public android.content.Intent parseUri(java.lang.String string, int i) /// The returned object must be deleted after use, by calling the `delete` method. static Intent parseUri(jni.JString string, int i) => const $IntentType().fromRef(_parseUri(string.reference, i).object); static final _getIntentOld = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__getIntentOld") .asFunction)>(); /// from: static public android.content.Intent getIntentOld(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. static Intent getIntentOld(jni.JString string) => const $IntentType().fromRef(_getIntentOld(string.reference).object); static final _getAction = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__getAction") .asFunction)>(); /// from: public java.lang.String getAction() /// The returned object must be deleted after use, by calling the `delete` method. jni.JString getAction() => const jni.JStringType().fromRef(_getAction(reference).object); static final _getData = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Intent__getData") .asFunction)>(); /// from: public android.net.Uri getData() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getData() => const jni.JObjectType().fromRef(_getData(reference).object); static final _getDataString = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__getDataString") .asFunction)>(); /// from: public java.lang.String getDataString() /// The returned object must be deleted after use, by calling the `delete` method. jni.JString getDataString() => const jni.JStringType().fromRef(_getDataString(reference).object); static final _getScheme = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__getScheme") .asFunction)>(); /// from: public java.lang.String getScheme() /// The returned object must be deleted after use, by calling the `delete` method. jni.JString getScheme() => const jni.JStringType().fromRef(_getScheme(reference).object); static final _getType = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Intent__getType") .asFunction)>(); /// from: public java.lang.String getType() /// The returned object must be deleted after use, by calling the `delete` method. jni.JString getType() => const jni.JStringType().fromRef(_getType(reference).object); static final _resolveType = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__resolveType") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.lang.String resolveType(android.content.Context context) /// The returned object must be deleted after use, by calling the `delete` method. jni.JString resolveType(Context context) => const jni.JStringType() .fromRef(_resolveType(reference, context.reference).object); static final _resolveType1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__resolveType1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.lang.String resolveType(android.content.ContentResolver contentResolver) /// The returned object must be deleted after use, by calling the `delete` method. jni.JString resolveType1(jni.JObject contentResolver) => const jni.JStringType() .fromRef(_resolveType1(reference, contentResolver.reference).object); static final _resolveTypeIfNeeded = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__resolveTypeIfNeeded") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.lang.String resolveTypeIfNeeded(android.content.ContentResolver contentResolver) /// The returned object must be deleted after use, by calling the `delete` method. jni.JString resolveTypeIfNeeded(jni.JObject contentResolver) => const jni.JStringType().fromRef( _resolveTypeIfNeeded(reference, contentResolver.reference).object); static final _getIdentifier = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__getIdentifier") .asFunction)>(); /// from: public java.lang.String getIdentifier() /// The returned object must be deleted after use, by calling the `delete` method. jni.JString getIdentifier() => const jni.JStringType().fromRef(_getIdentifier(reference).object); static final _hasCategory = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__hasCategory") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean hasCategory(java.lang.String string) bool hasCategory(jni.JString string) => _hasCategory(reference, string.reference).boolean; static final _getCategories = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__getCategories") .asFunction)>(); /// from: public java.util.Set getCategories() /// The returned object must be deleted after use, by calling the `delete` method. Set getCategories() => const $SetType(jni.JStringType()) .fromRef(_getCategories(reference).object); static final _getSelector = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__getSelector") .asFunction)>(); /// from: public android.content.Intent getSelector() /// The returned object must be deleted after use, by calling the `delete` method. Intent getSelector() => const $IntentType().fromRef(_getSelector(reference).object); static final _getClipData = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__getClipData") .asFunction)>(); /// from: public android.content.ClipData getClipData() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getClipData() => const jni.JObjectType().fromRef(_getClipData(reference).object); static final _setExtrasClassLoader = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__setExtrasClassLoader") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void setExtrasClassLoader(java.lang.ClassLoader classLoader) void setExtrasClassLoader(jni.JObject classLoader) => _setExtrasClassLoader(reference, classLoader.reference).check(); static final _hasExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__hasExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean hasExtra(java.lang.String string) bool hasExtra(jni.JString string) => _hasExtra(reference, string.reference).boolean; static final _hasFileDescriptors = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__hasFileDescriptors") .asFunction)>(); /// from: public boolean hasFileDescriptors() bool hasFileDescriptors() => _hasFileDescriptors(reference).boolean; static final _getBooleanExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Uint8)>>("Intent__getBooleanExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public boolean getBooleanExtra(java.lang.String string, boolean z) bool getBooleanExtra(jni.JString string, bool z) => _getBooleanExtra(reference, string.reference, z ? 1 : 0).boolean; static final _getByteExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Int8)>>("Intent__getByteExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public byte getByteExtra(java.lang.String string, byte b) int getByteExtra(jni.JString string, int b) => _getByteExtra(reference, string.reference, b).byte; static final _getShortExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Int16)>>("Intent__getShortExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public short getShortExtra(java.lang.String string, short s) int getShortExtra(jni.JString string, int s) => _getShortExtra(reference, string.reference, s).short; static final _getCharExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Uint16)>>("Intent__getCharExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public char getCharExtra(java.lang.String string, char c) int getCharExtra(jni.JString string, int c) => _getCharExtra(reference, string.reference, c).char; static final _getIntExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Intent__getIntExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public int getIntExtra(java.lang.String string, int i) int getIntExtra(jni.JString string, int i) => _getIntExtra(reference, string.reference, i).integer; static final _getLongExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Int64)>>("Intent__getLongExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public long getLongExtra(java.lang.String string, long j) int getLongExtra(jni.JString string, int j) => _getLongExtra(reference, string.reference, j).long; static final _getFloatExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Float)>>("Intent__getFloatExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, double)>(); /// from: public float getFloatExtra(java.lang.String string, float f) double getFloatExtra(jni.JString string, double f) => _getFloatExtra(reference, string.reference, f).float; static final _getDoubleExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Double)>>("Intent__getDoubleExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, double)>(); /// from: public double getDoubleExtra(java.lang.String string, double d) double getDoubleExtra(jni.JString string, double d) => _getDoubleExtra(reference, string.reference, d).doubleFloat; static final _getStringExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__getStringExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.lang.String getStringExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JString getStringExtra(jni.JString string) => const jni.JStringType() .fromRef(_getStringExtra(reference, string.reference).object); static final _getCharSequenceExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__getCharSequenceExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.lang.CharSequence getCharSequenceExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getCharSequenceExtra(jni.JString string) => const jni.JObjectType() .fromRef(_getCharSequenceExtra(reference, string.reference).object); static final _getParcelableExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__getParcelableExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public T getParcelableExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. T getParcelableExtra( jni.JObjType $T, jni.JString string) => $T.fromRef(_getParcelableExtra(reference, string.reference).object); static final _getParcelableExtra1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__getParcelableExtra1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public T getParcelableExtra(java.lang.String string, java.lang.Class class) /// The returned object must be deleted after use, by calling the `delete` method. T getParcelableExtra1( jni.JObjType $T, jni.JString string, jni.JObject class0) => $T.fromRef( _getParcelableExtra1(reference, string.reference, class0.reference) .object); static final _getParcelableArrayExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__getParcelableArrayExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.os.Parcelable[] getParcelableArrayExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray getParcelableArrayExtra(jni.JString string) => const jni.JArrayType(jni.JObjectType()).fromRef( _getParcelableArrayExtra(reference, string.reference).object); static final _getParcelableArrayExtra1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__getParcelableArrayExtra1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public java.lang.Object[] getParcelableArrayExtra(java.lang.String string, java.lang.Class class) /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray getParcelableArrayExtra1( jni.JObjType $T, jni.JString string, jni.JObject class0) => jni.JArrayType($T).fromRef(_getParcelableArrayExtra1( reference, string.reference, class0.reference) .object); static final _getParcelableArrayListExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Intent__getParcelableArrayListExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.util.ArrayList getParcelableArrayListExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getParcelableArrayListExtra( jni.JObjType $T, jni.JString string) => const jni.JObjectType().fromRef( _getParcelableArrayListExtra(reference, string.reference).object); static final _getParcelableArrayListExtra1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>>( "Intent__getParcelableArrayListExtra1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public java.util.ArrayList getParcelableArrayListExtra(java.lang.String string, java.lang.Class class) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getParcelableArrayListExtra1( jni.JObjType $T, jni.JString string, jni.JObject class0) => const jni.JObjectType().fromRef(_getParcelableArrayListExtra1( reference, string.reference, class0.reference) .object); static final _getSerializableExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__getSerializableExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.io.Serializable getSerializableExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getSerializableExtra(jni.JString string) => const jni.JObjectType() .fromRef(_getSerializableExtra(reference, string.reference).object); static final _getSerializableExtra1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__getSerializableExtra1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public T getSerializableExtra(java.lang.String string, java.lang.Class class) /// The returned object must be deleted after use, by calling the `delete` method. T getSerializableExtra1( jni.JObjType $T, jni.JString string, jni.JObject class0) => $T.fromRef( _getSerializableExtra1(reference, string.reference, class0.reference) .object); static final _getIntegerArrayListExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__getIntegerArrayListExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.util.ArrayList getIntegerArrayListExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getIntegerArrayListExtra(jni.JString string) => const jni.JObjectType().fromRef( _getIntegerArrayListExtra(reference, string.reference).object); static final _getStringArrayListExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__getStringArrayListExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.util.ArrayList getStringArrayListExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getStringArrayListExtra(jni.JString string) => const jni.JObjectType().fromRef( _getStringArrayListExtra(reference, string.reference).object); static final _getCharSequenceArrayListExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Intent__getCharSequenceArrayListExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.util.ArrayList getCharSequenceArrayListExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getCharSequenceArrayListExtra(jni.JString string) => const jni.JObjectType().fromRef( _getCharSequenceArrayListExtra(reference, string.reference).object); static final _getBooleanArrayExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__getBooleanArrayExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean[] getBooleanArrayExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray getBooleanArrayExtra(jni.JString string) => const jni.JArrayType(jni.JBooleanType()) .fromRef(_getBooleanArrayExtra(reference, string.reference).object); static final _getByteArrayExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__getByteArrayExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public byte[] getByteArrayExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray getByteArrayExtra(jni.JString string) => const jni.JArrayType(jni.JByteType()) .fromRef(_getByteArrayExtra(reference, string.reference).object); static final _getShortArrayExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__getShortArrayExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public short[] getShortArrayExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray getShortArrayExtra(jni.JString string) => const jni.JArrayType(jni.JShortType()) .fromRef(_getShortArrayExtra(reference, string.reference).object); static final _getCharArrayExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__getCharArrayExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public char[] getCharArrayExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray getCharArrayExtra(jni.JString string) => const jni.JArrayType(jni.JCharType()) .fromRef(_getCharArrayExtra(reference, string.reference).object); static final _getIntArrayExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__getIntArrayExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public int[] getIntArrayExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray getIntArrayExtra(jni.JString string) => const jni.JArrayType(jni.JIntType()) .fromRef(_getIntArrayExtra(reference, string.reference).object); static final _getLongArrayExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__getLongArrayExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public long[] getLongArrayExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray getLongArrayExtra(jni.JString string) => const jni.JArrayType(jni.JLongType()) .fromRef(_getLongArrayExtra(reference, string.reference).object); static final _getFloatArrayExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__getFloatArrayExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public float[] getFloatArrayExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray getFloatArrayExtra(jni.JString string) => const jni.JArrayType(jni.JFloatType()) .fromRef(_getFloatArrayExtra(reference, string.reference).object); static final _getDoubleArrayExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__getDoubleArrayExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public double[] getDoubleArrayExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray getDoubleArrayExtra(jni.JString string) => const jni.JArrayType(jni.JDoubleType()) .fromRef(_getDoubleArrayExtra(reference, string.reference).object); static final _getStringArrayExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__getStringArrayExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.lang.String[] getStringArrayExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray getStringArrayExtra(jni.JString string) => const jni.JArrayType(jni.JStringType()) .fromRef(_getStringArrayExtra(reference, string.reference).object); static final _getCharSequenceArrayExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__getCharSequenceArrayExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.lang.CharSequence[] getCharSequenceArrayExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray getCharSequenceArrayExtra(jni.JString string) => const jni.JArrayType(jni.JObjectType()).fromRef( _getCharSequenceArrayExtra(reference, string.reference).object); static final _getBundleExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__getBundleExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.os.Bundle getBundleExtra(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getBundleExtra(jni.JString string) => const jni.JObjectType() .fromRef(_getBundleExtra(reference, string.reference).object); static final _getExtras = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__getExtras") .asFunction)>(); /// from: public android.os.Bundle getExtras() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getExtras() => const jni.JObjectType().fromRef(_getExtras(reference).object); static final _getFlags = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__getFlags") .asFunction)>(); /// from: public int getFlags() int getFlags() => _getFlags(reference).integer; static final _getPackage = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__getPackage") .asFunction)>(); /// from: public java.lang.String getPackage() /// The returned object must be deleted after use, by calling the `delete` method. jni.JString getPackage() => const jni.JStringType().fromRef(_getPackage(reference).object); static final _getComponent = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__getComponent") .asFunction)>(); /// from: public android.content.ComponentName getComponent() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getComponent() => const jni.JObjectType().fromRef(_getComponent(reference).object); static final _getSourceBounds = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__getSourceBounds") .asFunction)>(); /// from: public android.graphics.Rect getSourceBounds() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getSourceBounds() => const jni.JObjectType().fromRef(_getSourceBounds(reference).object); static final _resolveActivity = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__resolveActivity") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.ComponentName resolveActivity(android.content.pm.PackageManager packageManager) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject resolveActivity(jni.JObject packageManager) => const jni.JObjectType().fromRef( _resolveActivity(reference, packageManager.reference).object); static final _resolveActivityInfo = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Intent__resolveActivityInfo") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public android.content.pm.ActivityInfo resolveActivityInfo(android.content.pm.PackageManager packageManager, int i) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject resolveActivityInfo(jni.JObject packageManager, int i) => const jni.JObjectType().fromRef( _resolveActivityInfo(reference, packageManager.reference, i).object); static final _setAction = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__setAction") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent setAction(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. Intent setAction(jni.JString string) => const $IntentType() .fromRef(_setAction(reference, string.reference).object); static final _setData = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__setData") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent setData(android.net.Uri uri) /// The returned object must be deleted after use, by calling the `delete` method. Intent setData(jni.JObject uri) => const $IntentType().fromRef(_setData(reference, uri.reference).object); static final _setDataAndNormalize = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__setDataAndNormalize") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent setDataAndNormalize(android.net.Uri uri) /// The returned object must be deleted after use, by calling the `delete` method. Intent setDataAndNormalize(jni.JObject uri) => const $IntentType() .fromRef(_setDataAndNormalize(reference, uri.reference).object); static final _setType = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__setType") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent setType(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. Intent setType(jni.JString string) => const $IntentType().fromRef(_setType(reference, string.reference).object); static final _setTypeAndNormalize = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__setTypeAndNormalize") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent setTypeAndNormalize(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. Intent setTypeAndNormalize(jni.JString string) => const $IntentType() .fromRef(_setTypeAndNormalize(reference, string.reference).object); static final _setDataAndType = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__setDataAndType") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent setDataAndType(android.net.Uri uri, java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. Intent setDataAndType(jni.JObject uri, jni.JString string) => const $IntentType().fromRef( _setDataAndType(reference, uri.reference, string.reference).object); static final _setDataAndTypeAndNormalize = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__setDataAndTypeAndNormalize") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent setDataAndTypeAndNormalize(android.net.Uri uri, java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. Intent setDataAndTypeAndNormalize(jni.JObject uri, jni.JString string) => const $IntentType().fromRef(_setDataAndTypeAndNormalize( reference, uri.reference, string.reference) .object); static final _setIdentifier = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__setIdentifier") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent setIdentifier(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. Intent setIdentifier(jni.JString string) => const $IntentType() .fromRef(_setIdentifier(reference, string.reference).object); static final _addCategory = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__addCategory") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent addCategory(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. Intent addCategory(jni.JString string) => const $IntentType() .fromRef(_addCategory(reference, string.reference).object); static final _removeCategory = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__removeCategory") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void removeCategory(java.lang.String string) void removeCategory(jni.JString string) => _removeCategory(reference, string.reference).check(); static final _setSelector = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__setSelector") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void setSelector(android.content.Intent intent) void setSelector(Intent intent) => _setSelector(reference, intent.reference).check(); static final _setClipData = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__setClipData") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void setClipData(android.content.ClipData clipData) void setClipData(jni.JObject clipData) => _setClipData(reference, clipData.reference).check(); static final _putExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Uint8)>>("Intent__putExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public android.content.Intent putExtra(java.lang.String string, boolean z) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra(jni.JString string, bool z) => const $IntentType() .fromRef(_putExtra(reference, string.reference, z ? 1 : 0).object); static final _putExtra1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Int8)>>("Intent__putExtra1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public android.content.Intent putExtra(java.lang.String string, byte b) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra1(jni.JString string, int b) => const $IntentType() .fromRef(_putExtra1(reference, string.reference, b).object); static final _putExtra2 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Uint16)>>("Intent__putExtra2") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public android.content.Intent putExtra(java.lang.String string, char c) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra2(jni.JString string, int c) => const $IntentType() .fromRef(_putExtra2(reference, string.reference, c).object); static final _putExtra3 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Int16)>>("Intent__putExtra3") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public android.content.Intent putExtra(java.lang.String string, short s) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra3(jni.JString string, int s) => const $IntentType() .fromRef(_putExtra3(reference, string.reference, s).object); static final _putExtra4 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Intent__putExtra4") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public android.content.Intent putExtra(java.lang.String string, int i) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra4(jni.JString string, int i) => const $IntentType() .fromRef(_putExtra4(reference, string.reference, i).object); static final _putExtra5 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Int64)>>("Intent__putExtra5") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public android.content.Intent putExtra(java.lang.String string, long j) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra5(jni.JString string, int j) => const $IntentType() .fromRef(_putExtra5(reference, string.reference, j).object); static final _putExtra6 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Float)>>("Intent__putExtra6") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, double)>(); /// from: public android.content.Intent putExtra(java.lang.String string, float f) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra6(jni.JString string, double f) => const $IntentType() .fromRef(_putExtra6(reference, string.reference, f).object); static final _putExtra7 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Double)>>("Intent__putExtra7") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, double)>(); /// from: public android.content.Intent putExtra(java.lang.String string, double d) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra7(jni.JString string, double d) => const $IntentType() .fromRef(_putExtra7(reference, string.reference, d).object); static final _putExtra8 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__putExtra8") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putExtra(java.lang.String string, java.lang.String string1) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra8(jni.JString string, jni.JString string1) => const $IntentType().fromRef( _putExtra8(reference, string.reference, string1.reference).object); static final _putExtra9 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__putExtra9") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putExtra(java.lang.String string, java.lang.CharSequence charSequence) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra9(jni.JString string, jni.JObject charSequence) => const $IntentType().fromRef( _putExtra9(reference, string.reference, charSequence.reference) .object); static final _putExtra10 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__putExtra10") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putExtra(java.lang.String string, android.os.Parcelable parcelable) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra10(jni.JString string, jni.JObject parcelable) => const $IntentType().fromRef( _putExtra10(reference, string.reference, parcelable.reference) .object); static final _putExtra11 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__putExtra11") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putExtra(java.lang.String string, android.os.Parcelable[] parcelables) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra11(jni.JString string, jni.JArray parcelables) => const $IntentType().fromRef( _putExtra11(reference, string.reference, parcelables.reference) .object); static final _putParcelableArrayListExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>>( "Intent__putParcelableArrayListExtra") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putParcelableArrayListExtra(java.lang.String string, java.util.ArrayList arrayList) /// The returned object must be deleted after use, by calling the `delete` method. Intent putParcelableArrayListExtra( jni.JString string, jni.JObject arrayList) => const $IntentType().fromRef(_putParcelableArrayListExtra( reference, string.reference, arrayList.reference) .object); static final _putIntegerArrayListExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__putIntegerArrayListExtra") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putIntegerArrayListExtra(java.lang.String string, java.util.ArrayList arrayList) /// The returned object must be deleted after use, by calling the `delete` method. Intent putIntegerArrayListExtra(jni.JString string, jni.JObject arrayList) => const $IntentType().fromRef(_putIntegerArrayListExtra( reference, string.reference, arrayList.reference) .object); static final _putStringArrayListExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__putStringArrayListExtra") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putStringArrayListExtra(java.lang.String string, java.util.ArrayList arrayList) /// The returned object must be deleted after use, by calling the `delete` method. Intent putStringArrayListExtra(jni.JString string, jni.JObject arrayList) => const $IntentType().fromRef(_putStringArrayListExtra( reference, string.reference, arrayList.reference) .object); static final _putCharSequenceArrayListExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>>( "Intent__putCharSequenceArrayListExtra") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putCharSequenceArrayListExtra(java.lang.String string, java.util.ArrayList arrayList) /// The returned object must be deleted after use, by calling the `delete` method. Intent putCharSequenceArrayListExtra( jni.JString string, jni.JObject arrayList) => const $IntentType().fromRef(_putCharSequenceArrayListExtra( reference, string.reference, arrayList.reference) .object); static final _putExtra12 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__putExtra12") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putExtra(java.lang.String string, java.io.Serializable serializable) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra12(jni.JString string, jni.JObject serializable) => const $IntentType().fromRef( _putExtra12(reference, string.reference, serializable.reference) .object); static final _putExtra13 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__putExtra13") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putExtra(java.lang.String string, boolean[] zs) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra13(jni.JString string, jni.JArray zs) => const $IntentType().fromRef( _putExtra13(reference, string.reference, zs.reference).object); static final _putExtra14 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__putExtra14") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putExtra(java.lang.String string, byte[] bs) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra14(jni.JString string, jni.JArray bs) => const $IntentType().fromRef( _putExtra14(reference, string.reference, bs.reference).object); static final _putExtra15 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__putExtra15") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putExtra(java.lang.String string, short[] ss) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra15(jni.JString string, jni.JArray ss) => const $IntentType().fromRef( _putExtra15(reference, string.reference, ss.reference).object); static final _putExtra16 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__putExtra16") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putExtra(java.lang.String string, char[] cs) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra16(jni.JString string, jni.JArray cs) => const $IntentType().fromRef( _putExtra16(reference, string.reference, cs.reference).object); static final _putExtra17 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__putExtra17") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putExtra(java.lang.String string, int[] is) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra17(jni.JString string, jni.JArray is0) => const $IntentType().fromRef( _putExtra17(reference, string.reference, is0.reference).object); static final _putExtra18 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__putExtra18") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putExtra(java.lang.String string, long[] js) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra18(jni.JString string, jni.JArray js) => const $IntentType().fromRef( _putExtra18(reference, string.reference, js.reference).object); static final _putExtra19 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__putExtra19") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putExtra(java.lang.String string, float[] fs) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra19(jni.JString string, jni.JArray fs) => const $IntentType().fromRef( _putExtra19(reference, string.reference, fs.reference).object); static final _putExtra20 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__putExtra20") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putExtra(java.lang.String string, double[] ds) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra20(jni.JString string, jni.JArray ds) => const $IntentType().fromRef( _putExtra20(reference, string.reference, ds.reference).object); static final _putExtra21 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__putExtra21") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putExtra(java.lang.String string, java.lang.String[] strings) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra21(jni.JString string, jni.JArray strings) => const $IntentType().fromRef( _putExtra21(reference, string.reference, strings.reference).object); static final _putExtra22 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__putExtra22") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putExtra(java.lang.String string, java.lang.CharSequence[] charSequences) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra22( jni.JString string, jni.JArray charSequences) => const $IntentType().fromRef( _putExtra22(reference, string.reference, charSequences.reference) .object); static final _putExtra23 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__putExtra23") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putExtra(java.lang.String string, android.os.Bundle bundle) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtra23(jni.JString string, jni.JObject bundle) => const $IntentType().fromRef( _putExtra23(reference, string.reference, bundle.reference).object); static final _putExtras = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__putExtras") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putExtras(android.content.Intent intent) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtras(Intent intent) => const $IntentType() .fromRef(_putExtras(reference, intent.reference).object); static final _putExtras1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__putExtras1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent putExtras(android.os.Bundle bundle) /// The returned object must be deleted after use, by calling the `delete` method. Intent putExtras1(jni.JObject bundle) => const $IntentType() .fromRef(_putExtras1(reference, bundle.reference).object); static final _replaceExtras = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__replaceExtras") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent replaceExtras(android.content.Intent intent) /// The returned object must be deleted after use, by calling the `delete` method. Intent replaceExtras(Intent intent) => const $IntentType() .fromRef(_replaceExtras(reference, intent.reference).object); static final _replaceExtras1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__replaceExtras1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent replaceExtras(android.os.Bundle bundle) /// The returned object must be deleted after use, by calling the `delete` method. Intent replaceExtras1(jni.JObject bundle) => const $IntentType() .fromRef(_replaceExtras1(reference, bundle.reference).object); static final _removeExtra = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__removeExtra") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void removeExtra(java.lang.String string) void removeExtra(jni.JString string) => _removeExtra(reference, string.reference).check(); static final _setFlags = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Intent__setFlags") .asFunction, int)>(); /// from: public android.content.Intent setFlags(int i) /// The returned object must be deleted after use, by calling the `delete` method. Intent setFlags(int i) => const $IntentType().fromRef(_setFlags(reference, i).object); static final _addFlags = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Intent__addFlags") .asFunction, int)>(); /// from: public android.content.Intent addFlags(int i) /// The returned object must be deleted after use, by calling the `delete` method. Intent addFlags(int i) => const $IntentType().fromRef(_addFlags(reference, i).object); static final _removeFlags = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Intent__removeFlags") .asFunction, int)>(); /// from: public void removeFlags(int i) void removeFlags(int i) => _removeFlags(reference, i).check(); static final _setPackage = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__setPackage") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent setPackage(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. Intent setPackage(jni.JString string) => const $IntentType() .fromRef(_setPackage(reference, string.reference).object); static final _setComponent = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__setComponent") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent setComponent(android.content.ComponentName componentName) /// The returned object must be deleted after use, by calling the `delete` method. Intent setComponent(jni.JObject componentName) => const $IntentType() .fromRef(_setComponent(reference, componentName.reference).object); static final _setClassName = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__setClassName") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent setClassName(android.content.Context context, java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. Intent setClassName(Context context, jni.JString string) => const $IntentType().fromRef( _setClassName(reference, context.reference, string.reference).object); static final _setClassName1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__setClassName1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent setClassName(java.lang.String string, java.lang.String string1) /// The returned object must be deleted after use, by calling the `delete` method. Intent setClassName1(jni.JString string, jni.JString string1) => const $IntentType().fromRef( _setClassName1(reference, string.reference, string1.reference) .object); static final _setClass = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__setClass") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.content.Intent setClass(android.content.Context context, java.lang.Class class) /// The returned object must be deleted after use, by calling the `delete` method. Intent setClass(Context context, jni.JObject class0) => const $IntentType().fromRef( _setClass(reference, context.reference, class0.reference).object); static final _setSourceBounds = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__setSourceBounds") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void setSourceBounds(android.graphics.Rect rect) void setSourceBounds(jni.JObject rect) => _setSourceBounds(reference, rect.reference).check(); static final _fillIn = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Intent__fillIn") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public int fillIn(android.content.Intent intent, int i) int fillIn(Intent intent, int i) => _fillIn(reference, intent.reference, i).integer; static final _filterEquals = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__filterEquals") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean filterEquals(android.content.Intent intent) bool filterEquals(Intent intent) => _filterEquals(reference, intent.reference).boolean; static final _filterHashCode = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__filterHashCode") .asFunction)>(); /// from: public int filterHashCode() int filterHashCode() => _filterHashCode(reference).integer; static final _toString1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__toString1") .asFunction)>(); /// from: public java.lang.String toString() /// The returned object must be deleted after use, by calling the `delete` method. jni.JString toString1() => const jni.JStringType().fromRef(_toString1(reference).object); static final _toURI = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Intent__toURI") .asFunction)>(); /// from: public java.lang.String toURI() /// The returned object must be deleted after use, by calling the `delete` method. jni.JString toURI() => const jni.JStringType().fromRef(_toURI(reference).object); static final _toUri = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Intent__toUri") .asFunction, int)>(); /// from: public java.lang.String toUri(int i) /// The returned object must be deleted after use, by calling the `delete` method. jni.JString toUri(int i) => const jni.JStringType().fromRef(_toUri(reference, i).object); static final _describeContents = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__describeContents") .asFunction)>(); /// from: public int describeContents() int describeContents() => _describeContents(reference).integer; static final _writeToParcel = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Intent__writeToParcel") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public void writeToParcel(android.os.Parcel parcel, int i) void writeToParcel(jni.JObject parcel, int i) => _writeToParcel(reference, parcel.reference, i).check(); static final _readFromParcel = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Intent__readFromParcel") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void readFromParcel(android.os.Parcel parcel) void readFromParcel(jni.JObject parcel) => _readFromParcel(reference, parcel.reference).check(); static final _parseIntent = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Intent__parseIntent") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: static public android.content.Intent parseIntent(android.content.res.Resources resources, org.xmlpull.v1.XmlPullParser xmlPullParser, android.util.AttributeSet attributeSet) /// The returned object must be deleted after use, by calling the `delete` method. static Intent parseIntent(jni.JObject resources, jni.JObject xmlPullParser, jni.JObject attributeSet) => const $IntentType().fromRef(_parseIntent(resources.reference, xmlPullParser.reference, attributeSet.reference) .object); static final _normalizeMimeType = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Intent__normalizeMimeType") .asFunction)>(); /// from: static public java.lang.String normalizeMimeType(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. static jni.JString normalizeMimeType(jni.JString string) => const jni.JStringType() .fromRef(_normalizeMimeType(string.reference).object); } class $IntentType extends jni.JObjType { const $IntentType(); @override String get signature => r"Landroid/content/Intent;"; @override Intent fromRef(jni.JObjectPtr ref) => Intent.fromRef(ref); } extension $IntentArray on jni.JArray { Intent operator [](int index) { return (elementType as $IntentType) .fromRef(elementAt(index, jni.JniCallType.objectType).object); } void operator []=(int index, Intent value) { (this as jni.JArray)[index] = value; } } /// from: android.app.Activity class Activity extends jni.JObject { late final jni.JObjType? _$type; @override jni.JObjType get $type => _$type ??= type; Activity.fromRef( jni.JObjectPtr ref, ) : super.fromRef(ref); /// The type which includes information such as the signature of this class. static const type = $ActivityType(); /// from: static public final int DEFAULT_KEYS_DIALER static const DEFAULT_KEYS_DIALER = 1; /// from: static public final int DEFAULT_KEYS_DISABLE static const DEFAULT_KEYS_DISABLE = 0; /// from: static public final int DEFAULT_KEYS_SEARCH_GLOBAL static const DEFAULT_KEYS_SEARCH_GLOBAL = 4; /// from: static public final int DEFAULT_KEYS_SEARCH_LOCAL static const DEFAULT_KEYS_SEARCH_LOCAL = 3; /// from: static public final int DEFAULT_KEYS_SHORTCUT static const DEFAULT_KEYS_SHORTCUT = 2; static final _get_FOCUSED_STATE_SET = jniLookup>( "get_Activity__FOCUSED_STATE_SET") .asFunction(); /// from: static protected final int[] FOCUSED_STATE_SET /// The returned object must be deleted after use, by calling the `delete` method. static jni.JArray get FOCUSED_STATE_SET => const jni.JArrayType(jni.JIntType()) .fromRef(_get_FOCUSED_STATE_SET().object); /// from: static public final int RESULT_CANCELED static const RESULT_CANCELED = 0; /// from: static public final int RESULT_FIRST_USER static const RESULT_FIRST_USER = 1; /// from: static public final int RESULT_OK static const RESULT_OK = -1; static final _ctor = jniLookup>("Activity__ctor") .asFunction(); /// from: public void () Activity() : super.fromRef(_ctor().object); static final _getIntent = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getIntent") .asFunction)>(); /// from: public android.content.Intent getIntent() /// The returned object must be deleted after use, by calling the `delete` method. Intent getIntent() => const $IntentType().fromRef(_getIntent(reference).object); static final _setIntent = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__setIntent") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void setIntent(android.content.Intent intent) void setIntent(Intent intent) => _setIntent(reference, intent.reference).check(); static final _setLocusContext = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__setLocusContext") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void setLocusContext(android.content.LocusId locusId, android.os.Bundle bundle) void setLocusContext(jni.JObject locusId, jni.JObject bundle) => _setLocusContext(reference, locusId.reference, bundle.reference).check(); static final _getApplication = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getApplication") .asFunction)>(); /// from: public final android.app.Application getApplication() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getApplication() => const jni.JObjectType().fromRef(_getApplication(reference).object); static final _isChild = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__isChild") .asFunction)>(); /// from: public final boolean isChild() bool isChild() => _isChild(reference).boolean; static final _getParent = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getParent") .asFunction)>(); /// from: public final android.app.Activity getParent() /// The returned object must be deleted after use, by calling the `delete` method. Activity getParent() => const $ActivityType().fromRef(_getParent(reference).object); static final _getWindowManager = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getWindowManager") .asFunction)>(); /// from: public android.view.WindowManager getWindowManager() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getWindowManager() => const jni.JObjectType().fromRef(_getWindowManager(reference).object); static final _getWindow = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getWindow") .asFunction)>(); /// from: public android.view.Window getWindow() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getWindow() => const jni.JObjectType().fromRef(_getWindow(reference).object); static final _getLoaderManager = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getLoaderManager") .asFunction)>(); /// from: public android.app.LoaderManager getLoaderManager() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getLoaderManager() => const jni.JObjectType().fromRef(_getLoaderManager(reference).object); static final _getCurrentFocus = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getCurrentFocus") .asFunction)>(); /// from: public android.view.View getCurrentFocus() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getCurrentFocus() => const jni.JObjectType().fromRef(_getCurrentFocus(reference).object); static final _attachBaseContext = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__attachBaseContext") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: protected void attachBaseContext(android.content.Context context) void attachBaseContext(Context context) => _attachBaseContext(reference, context.reference).check(); static final _registerActivityLifecycleCallbacks = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__registerActivityLifecycleCallbacks") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void registerActivityLifecycleCallbacks(android.app.Application$ActivityLifecycleCallbacks activityLifecycleCallbacks) void registerActivityLifecycleCallbacks( jni.JObject activityLifecycleCallbacks) => _registerActivityLifecycleCallbacks( reference, activityLifecycleCallbacks.reference) .check(); static final _unregisterActivityLifecycleCallbacks = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__unregisterActivityLifecycleCallbacks") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void unregisterActivityLifecycleCallbacks(android.app.Application$ActivityLifecycleCallbacks activityLifecycleCallbacks) void unregisterActivityLifecycleCallbacks( jni.JObject activityLifecycleCallbacks) => _unregisterActivityLifecycleCallbacks( reference, activityLifecycleCallbacks.reference) .check(); static final _registerComponentCallbacks = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__registerComponentCallbacks") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void registerComponentCallbacks(android.content.ComponentCallbacks componentCallbacks) void registerComponentCallbacks(jni.JObject componentCallbacks) => _registerComponentCallbacks(reference, componentCallbacks.reference) .check(); static final _unregisterComponentCallbacks = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__unregisterComponentCallbacks") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void unregisterComponentCallbacks(android.content.ComponentCallbacks componentCallbacks) void unregisterComponentCallbacks(jni.JObject componentCallbacks) => _unregisterComponentCallbacks(reference, componentCallbacks.reference) .check(); static final _onCreate = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onCreate") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: protected void onCreate(android.os.Bundle bundle) void onCreate(jni.JObject bundle) => _onCreate(reference, bundle.reference).check(); static final _getSplashScreen = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getSplashScreen") .asFunction)>(); /// from: public final android.window.SplashScreen getSplashScreen() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getSplashScreen() => const jni.JObjectType().fromRef(_getSplashScreen(reference).object); static final _onCreate1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__onCreate1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void onCreate(android.os.Bundle bundle, android.os.PersistableBundle persistableBundle) void onCreate1(jni.JObject bundle, jni.JObject persistableBundle) => _onCreate1(reference, bundle.reference, persistableBundle.reference) .check(); static final _onRestoreInstanceState = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onRestoreInstanceState") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: protected void onRestoreInstanceState(android.os.Bundle bundle) void onRestoreInstanceState(jni.JObject bundle) => _onRestoreInstanceState(reference, bundle.reference).check(); static final _onRestoreInstanceState1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__onRestoreInstanceState1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void onRestoreInstanceState(android.os.Bundle bundle, android.os.PersistableBundle persistableBundle) void onRestoreInstanceState1( jni.JObject bundle, jni.JObject persistableBundle) => _onRestoreInstanceState1( reference, bundle.reference, persistableBundle.reference) .check(); static final _onPostCreate = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onPostCreate") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: protected void onPostCreate(android.os.Bundle bundle) void onPostCreate(jni.JObject bundle) => _onPostCreate(reference, bundle.reference).check(); static final _onPostCreate1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__onPostCreate1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void onPostCreate(android.os.Bundle bundle, android.os.PersistableBundle persistableBundle) void onPostCreate1(jni.JObject bundle, jni.JObject persistableBundle) => _onPostCreate1(reference, bundle.reference, persistableBundle.reference) .check(); static final _onStart = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onStart") .asFunction)>(); /// from: protected void onStart() void onStart() => _onStart(reference).check(); static final _onRestart = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onRestart") .asFunction)>(); /// from: protected void onRestart() void onRestart() => _onRestart(reference).check(); static final _onStateNotSaved = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onStateNotSaved") .asFunction)>(); /// from: public void onStateNotSaved() void onStateNotSaved() => _onStateNotSaved(reference).check(); static final _onResume = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onResume") .asFunction)>(); /// from: protected void onResume() void onResume() => _onResume(reference).check(); static final _onPostResume = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onPostResume") .asFunction)>(); /// from: protected void onPostResume() void onPostResume() => _onPostResume(reference).check(); static final _onTopResumedActivityChanged = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8)>>("Activity__onTopResumedActivityChanged") .asFunction, int)>(); /// from: public void onTopResumedActivityChanged(boolean z) void onTopResumedActivityChanged(bool z) => _onTopResumedActivityChanged(reference, z ? 1 : 0).check(); static final _isVoiceInteraction = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__isVoiceInteraction") .asFunction)>(); /// from: public boolean isVoiceInteraction() bool isVoiceInteraction() => _isVoiceInteraction(reference).boolean; static final _isVoiceInteractionRoot = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__isVoiceInteractionRoot") .asFunction)>(); /// from: public boolean isVoiceInteractionRoot() bool isVoiceInteractionRoot() => _isVoiceInteractionRoot(reference).boolean; static final _getVoiceInteractor = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getVoiceInteractor") .asFunction)>(); /// from: public android.app.VoiceInteractor getVoiceInteractor() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getVoiceInteractor() => const jni.JObjectType().fromRef(_getVoiceInteractor(reference).object); static final _isLocalVoiceInteractionSupported = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Activity__isLocalVoiceInteractionSupported") .asFunction)>(); /// from: public boolean isLocalVoiceInteractionSupported() bool isLocalVoiceInteractionSupported() => _isLocalVoiceInteractionSupported(reference).boolean; static final _startLocalVoiceInteraction = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__startLocalVoiceInteraction") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void startLocalVoiceInteraction(android.os.Bundle bundle) void startLocalVoiceInteraction(jni.JObject bundle) => _startLocalVoiceInteraction(reference, bundle.reference).check(); static final _onLocalVoiceInteractionStarted = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Activity__onLocalVoiceInteractionStarted") .asFunction)>(); /// from: public void onLocalVoiceInteractionStarted() void onLocalVoiceInteractionStarted() => _onLocalVoiceInteractionStarted(reference).check(); static final _onLocalVoiceInteractionStopped = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Activity__onLocalVoiceInteractionStopped") .asFunction)>(); /// from: public void onLocalVoiceInteractionStopped() void onLocalVoiceInteractionStopped() => _onLocalVoiceInteractionStopped(reference).check(); static final _stopLocalVoiceInteraction = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Activity__stopLocalVoiceInteraction") .asFunction)>(); /// from: public void stopLocalVoiceInteraction() void stopLocalVoiceInteraction() => _stopLocalVoiceInteraction(reference).check(); static final _onNewIntent = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onNewIntent") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: protected void onNewIntent(android.content.Intent intent) void onNewIntent(Intent intent) => _onNewIntent(reference, intent.reference).check(); static final _onSaveInstanceState = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onSaveInstanceState") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: protected void onSaveInstanceState(android.os.Bundle bundle) void onSaveInstanceState(jni.JObject bundle) => _onSaveInstanceState(reference, bundle.reference).check(); static final _onSaveInstanceState1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__onSaveInstanceState1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void onSaveInstanceState(android.os.Bundle bundle, android.os.PersistableBundle persistableBundle) void onSaveInstanceState1( jni.JObject bundle, jni.JObject persistableBundle) => _onSaveInstanceState1( reference, bundle.reference, persistableBundle.reference) .check(); static final _onPause = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onPause") .asFunction)>(); /// from: protected void onPause() void onPause() => _onPause(reference).check(); static final _onUserLeaveHint = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onUserLeaveHint") .asFunction)>(); /// from: protected void onUserLeaveHint() void onUserLeaveHint() => _onUserLeaveHint(reference).check(); static final _onCreateThumbnail = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__onCreateThumbnail") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public boolean onCreateThumbnail(android.graphics.Bitmap bitmap, android.graphics.Canvas canvas) bool onCreateThumbnail(jni.JObject bitmap, jni.JObject canvas) => _onCreateThumbnail(reference, bitmap.reference, canvas.reference).boolean; static final _onCreateDescription = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onCreateDescription") .asFunction)>(); /// from: public java.lang.CharSequence onCreateDescription() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject onCreateDescription() => const jni.JObjectType().fromRef(_onCreateDescription(reference).object); static final _onProvideAssistData = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onProvideAssistData") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void onProvideAssistData(android.os.Bundle bundle) void onProvideAssistData(jni.JObject bundle) => _onProvideAssistData(reference, bundle.reference).check(); static final _onProvideAssistContent = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onProvideAssistContent") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void onProvideAssistContent(android.app.assist.AssistContent assistContent) void onProvideAssistContent(jni.JObject assistContent) => _onProvideAssistContent(reference, assistContent.reference).check(); static final _onGetDirectActions = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__onGetDirectActions") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void onGetDirectActions(android.os.CancellationSignal cancellationSignal, java.util.function.Consumer consumer) void onGetDirectActions( jni.JObject cancellationSignal, jni.JObject consumer) => _onGetDirectActions( reference, cancellationSignal.reference, consumer.reference) .check(); static final _onPerformDirectAction = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__onPerformDirectAction") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void onPerformDirectAction(java.lang.String string, android.os.Bundle bundle, android.os.CancellationSignal cancellationSignal, java.util.function.Consumer consumer) void onPerformDirectAction(jni.JString string, jni.JObject bundle, jni.JObject cancellationSignal, jni.JObject consumer) => _onPerformDirectAction(reference, string.reference, bundle.reference, cancellationSignal.reference, consumer.reference) .check(); static final _requestShowKeyboardShortcuts = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Activity__requestShowKeyboardShortcuts") .asFunction)>(); /// from: public final void requestShowKeyboardShortcuts() void requestShowKeyboardShortcuts() => _requestShowKeyboardShortcuts(reference).check(); static final _dismissKeyboardShortcutsHelper = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Activity__dismissKeyboardShortcutsHelper") .asFunction)>(); /// from: public final void dismissKeyboardShortcutsHelper() void dismissKeyboardShortcutsHelper() => _dismissKeyboardShortcutsHelper(reference).check(); static final _onProvideKeyboardShortcuts = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Activity__onProvideKeyboardShortcuts") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, int)>(); /// from: public void onProvideKeyboardShortcuts(java.util.List list, android.view.Menu menu, int i) void onProvideKeyboardShortcuts(jni.JObject list, jni.JObject menu, int i) => _onProvideKeyboardShortcuts(reference, list.reference, menu.reference, i) .check(); static final _showAssist = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__showAssist") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean showAssist(android.os.Bundle bundle) bool showAssist(jni.JObject bundle) => _showAssist(reference, bundle.reference).boolean; static final _onStop = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onStop") .asFunction)>(); /// from: protected void onStop() void onStop() => _onStop(reference).check(); static final _onDestroy = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onDestroy") .asFunction)>(); /// from: protected void onDestroy() void onDestroy() => _onDestroy(reference).check(); static final _reportFullyDrawn = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__reportFullyDrawn") .asFunction)>(); /// from: public void reportFullyDrawn() void reportFullyDrawn() => _reportFullyDrawn(reference).check(); static final _onMultiWindowModeChanged = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8, ffi.Pointer)>>("Activity__onMultiWindowModeChanged") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public void onMultiWindowModeChanged(boolean z, android.content.res.Configuration configuration) void onMultiWindowModeChanged(bool z, jni.JObject configuration) => _onMultiWindowModeChanged(reference, z ? 1 : 0, configuration.reference) .check(); static final _onMultiWindowModeChanged1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8)>>("Activity__onMultiWindowModeChanged1") .asFunction, int)>(); /// from: public void onMultiWindowModeChanged(boolean z) void onMultiWindowModeChanged1(bool z) => _onMultiWindowModeChanged1(reference, z ? 1 : 0).check(); static final _isInMultiWindowMode = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__isInMultiWindowMode") .asFunction)>(); /// from: public boolean isInMultiWindowMode() bool isInMultiWindowMode() => _isInMultiWindowMode(reference).boolean; static final _onPictureInPictureModeChanged = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8, ffi.Pointer)>>( "Activity__onPictureInPictureModeChanged") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public void onPictureInPictureModeChanged(boolean z, android.content.res.Configuration configuration) void onPictureInPictureModeChanged(bool z, jni.JObject configuration) => _onPictureInPictureModeChanged( reference, z ? 1 : 0, configuration.reference) .check(); static final _onPictureInPictureUiStateChanged = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__onPictureInPictureUiStateChanged") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void onPictureInPictureUiStateChanged(android.app.PictureInPictureUiState pictureInPictureUiState) void onPictureInPictureUiStateChanged(jni.JObject pictureInPictureUiState) => _onPictureInPictureUiStateChanged( reference, pictureInPictureUiState.reference) .check(); static final _onPictureInPictureModeChanged1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8)>>("Activity__onPictureInPictureModeChanged1") .asFunction, int)>(); /// from: public void onPictureInPictureModeChanged(boolean z) void onPictureInPictureModeChanged1(bool z) => _onPictureInPictureModeChanged1(reference, z ? 1 : 0).check(); static final _isInPictureInPictureMode = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__isInPictureInPictureMode") .asFunction)>(); /// from: public boolean isInPictureInPictureMode() bool isInPictureInPictureMode() => _isInPictureInPictureMode(reference).boolean; static final _enterPictureInPictureMode = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Activity__enterPictureInPictureMode") .asFunction)>(); /// from: public void enterPictureInPictureMode() void enterPictureInPictureMode() => _enterPictureInPictureMode(reference).check(); static final _enterPictureInPictureMode1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__enterPictureInPictureMode1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean enterPictureInPictureMode(android.app.PictureInPictureParams pictureInPictureParams) bool enterPictureInPictureMode1(jni.JObject pictureInPictureParams) => _enterPictureInPictureMode1(reference, pictureInPictureParams.reference) .boolean; static final _setPictureInPictureParams = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__setPictureInPictureParams") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void setPictureInPictureParams(android.app.PictureInPictureParams pictureInPictureParams) void setPictureInPictureParams(jni.JObject pictureInPictureParams) => _setPictureInPictureParams(reference, pictureInPictureParams.reference) .check(); static final _getMaxNumPictureInPictureActions = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Activity__getMaxNumPictureInPictureActions") .asFunction)>(); /// from: public int getMaxNumPictureInPictureActions() int getMaxNumPictureInPictureActions() => _getMaxNumPictureInPictureActions(reference).integer; static final _onPictureInPictureRequested = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Activity__onPictureInPictureRequested") .asFunction)>(); /// from: public boolean onPictureInPictureRequested() bool onPictureInPictureRequested() => _onPictureInPictureRequested(reference).boolean; static final _setShouldDockBigOverlays = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8)>>("Activity__setShouldDockBigOverlays") .asFunction, int)>(); /// from: public void setShouldDockBigOverlays(boolean z) void setShouldDockBigOverlays(bool z) => _setShouldDockBigOverlays(reference, z ? 1 : 0).check(); static final _shouldDockBigOverlays = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__shouldDockBigOverlays") .asFunction)>(); /// from: public boolean shouldDockBigOverlays() bool shouldDockBigOverlays() => _shouldDockBigOverlays(reference).boolean; static final _onConfigurationChanged = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onConfigurationChanged") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void onConfigurationChanged(android.content.res.Configuration configuration) void onConfigurationChanged(jni.JObject configuration) => _onConfigurationChanged(reference, configuration.reference).check(); static final _getChangingConfigurations = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Activity__getChangingConfigurations") .asFunction)>(); /// from: public int getChangingConfigurations() int getChangingConfigurations() => _getChangingConfigurations(reference).integer; static final _getLastNonConfigurationInstance = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Activity__getLastNonConfigurationInstance") .asFunction)>(); /// from: public java.lang.Object getLastNonConfigurationInstance() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getLastNonConfigurationInstance() => const jni.JObjectType() .fromRef(_getLastNonConfigurationInstance(reference).object); static final _onRetainNonConfigurationInstance = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Activity__onRetainNonConfigurationInstance") .asFunction)>(); /// from: public java.lang.Object onRetainNonConfigurationInstance() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject onRetainNonConfigurationInstance() => const jni.JObjectType() .fromRef(_onRetainNonConfigurationInstance(reference).object); static final _onLowMemory = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onLowMemory") .asFunction)>(); /// from: public void onLowMemory() void onLowMemory() => _onLowMemory(reference).check(); static final _onTrimMemory = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Activity__onTrimMemory") .asFunction, int)>(); /// from: public void onTrimMemory(int i) void onTrimMemory(int i) => _onTrimMemory(reference, i).check(); static final _getFragmentManager = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getFragmentManager") .asFunction)>(); /// from: public android.app.FragmentManager getFragmentManager() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getFragmentManager() => const jni.JObjectType().fromRef(_getFragmentManager(reference).object); static final _onAttachFragment = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onAttachFragment") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void onAttachFragment(android.app.Fragment fragment) void onAttachFragment(jni.JObject fragment) => _onAttachFragment(reference, fragment.reference).check(); static final _managedQuery = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__managedQuery") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public final android.database.Cursor managedQuery(android.net.Uri uri, java.lang.String[] strings, java.lang.String string, java.lang.String[] strings1, java.lang.String string1) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject managedQuery( jni.JObject uri, jni.JArray strings, jni.JString string, jni.JArray strings1, jni.JString string1) => const jni.JObjectType().fromRef(_managedQuery( reference, uri.reference, strings.reference, string.reference, strings1.reference, string1.reference) .object); static final _startManagingCursor = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__startManagingCursor") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void startManagingCursor(android.database.Cursor cursor) void startManagingCursor(jni.JObject cursor) => _startManagingCursor(reference, cursor.reference).check(); static final _stopManagingCursor = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__stopManagingCursor") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void stopManagingCursor(android.database.Cursor cursor) void stopManagingCursor(jni.JObject cursor) => _stopManagingCursor(reference, cursor.reference).check(); static final _findViewById = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Activity__findViewById") .asFunction, int)>(); /// from: public T findViewById(int i) /// The returned object must be deleted after use, by calling the `delete` method. T findViewById(jni.JObjType $T, int i) => $T.fromRef(_findViewById(reference, i).object); static final _requireViewById = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32)>>("Activity__requireViewById") .asFunction, int)>(); /// from: public final T requireViewById(int i) /// The returned object must be deleted after use, by calling the `delete` method. T requireViewById(jni.JObjType $T, int i) => $T.fromRef(_requireViewById(reference, i).object); static final _getActionBar = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getActionBar") .asFunction)>(); /// from: public android.app.ActionBar getActionBar() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getActionBar() => const jni.JObjectType().fromRef(_getActionBar(reference).object); static final _setActionBar = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__setActionBar") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void setActionBar(android.widget.Toolbar toolbar) void setActionBar(jni.JObject toolbar) => _setActionBar(reference, toolbar.reference).check(); static final _setContentView = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32)>>("Activity__setContentView") .asFunction, int)>(); /// from: public void setContentView(int i) void setContentView(int i) => _setContentView(reference, i).check(); static final _setContentView1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__setContentView1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void setContentView(android.view.View view) void setContentView1(jni.JObject view) => _setContentView1(reference, view.reference).check(); static final _setContentView2 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__setContentView2") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void setContentView(android.view.View view, android.view.ViewGroup$LayoutParams layoutParams) void setContentView2(jni.JObject view, jni.JObject layoutParams) => _setContentView2(reference, view.reference, layoutParams.reference) .check(); static final _addContentView = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__addContentView") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void addContentView(android.view.View view, android.view.ViewGroup$LayoutParams layoutParams) void addContentView(jni.JObject view, jni.JObject layoutParams) => _addContentView(reference, view.reference, layoutParams.reference) .check(); static final _getContentTransitionManager = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Activity__getContentTransitionManager") .asFunction)>(); /// from: public android.transition.TransitionManager getContentTransitionManager() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getContentTransitionManager() => const jni.JObjectType() .fromRef(_getContentTransitionManager(reference).object); static final _setContentTransitionManager = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__setContentTransitionManager") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void setContentTransitionManager(android.transition.TransitionManager transitionManager) void setContentTransitionManager(jni.JObject transitionManager) => _setContentTransitionManager(reference, transitionManager.reference) .check(); static final _getContentScene = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getContentScene") .asFunction)>(); /// from: public android.transition.Scene getContentScene() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getContentScene() => const jni.JObjectType().fromRef(_getContentScene(reference).object); static final _setFinishOnTouchOutside = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8)>>("Activity__setFinishOnTouchOutside") .asFunction, int)>(); /// from: public void setFinishOnTouchOutside(boolean z) void setFinishOnTouchOutside(bool z) => _setFinishOnTouchOutside(reference, z ? 1 : 0).check(); static final _setDefaultKeyMode = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32)>>("Activity__setDefaultKeyMode") .asFunction, int)>(); /// from: public final void setDefaultKeyMode(int i) void setDefaultKeyMode(int i) => _setDefaultKeyMode(reference, i).check(); static final _onKeyDown = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Activity__onKeyDown") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public boolean onKeyDown(int i, android.view.KeyEvent keyEvent) bool onKeyDown(int i, jni.JObject keyEvent) => _onKeyDown(reference, i, keyEvent.reference).boolean; static final _onKeyLongPress = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Activity__onKeyLongPress") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public boolean onKeyLongPress(int i, android.view.KeyEvent keyEvent) bool onKeyLongPress(int i, jni.JObject keyEvent) => _onKeyLongPress(reference, i, keyEvent.reference).boolean; static final _onKeyUp = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Activity__onKeyUp") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public boolean onKeyUp(int i, android.view.KeyEvent keyEvent) bool onKeyUp(int i, jni.JObject keyEvent) => _onKeyUp(reference, i, keyEvent.reference).boolean; static final _onKeyMultiple = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Pointer)>>("Activity__onKeyMultiple") .asFunction< jni.JniResult Function( ffi.Pointer, int, int, ffi.Pointer)>(); /// from: public boolean onKeyMultiple(int i, int i1, android.view.KeyEvent keyEvent) bool onKeyMultiple(int i, int i1, jni.JObject keyEvent) => _onKeyMultiple(reference, i, i1, keyEvent.reference).boolean; static final _onBackPressed = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onBackPressed") .asFunction)>(); /// from: public void onBackPressed() void onBackPressed() => _onBackPressed(reference).check(); static final _onKeyShortcut = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Activity__onKeyShortcut") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public boolean onKeyShortcut(int i, android.view.KeyEvent keyEvent) bool onKeyShortcut(int i, jni.JObject keyEvent) => _onKeyShortcut(reference, i, keyEvent.reference).boolean; static final _onTouchEvent = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onTouchEvent") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean onTouchEvent(android.view.MotionEvent motionEvent) bool onTouchEvent(jni.JObject motionEvent) => _onTouchEvent(reference, motionEvent.reference).boolean; static final _onTrackballEvent = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onTrackballEvent") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean onTrackballEvent(android.view.MotionEvent motionEvent) bool onTrackballEvent(jni.JObject motionEvent) => _onTrackballEvent(reference, motionEvent.reference).boolean; static final _onGenericMotionEvent = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onGenericMotionEvent") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean onGenericMotionEvent(android.view.MotionEvent motionEvent) bool onGenericMotionEvent(jni.JObject motionEvent) => _onGenericMotionEvent(reference, motionEvent.reference).boolean; static final _onUserInteraction = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onUserInteraction") .asFunction)>(); /// from: public void onUserInteraction() void onUserInteraction() => _onUserInteraction(reference).check(); static final _onWindowAttributesChanged = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__onWindowAttributesChanged") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void onWindowAttributesChanged(android.view.WindowManager$LayoutParams layoutParams) void onWindowAttributesChanged(jni.JObject layoutParams) => _onWindowAttributesChanged(reference, layoutParams.reference).check(); static final _onContentChanged = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onContentChanged") .asFunction)>(); /// from: public void onContentChanged() void onContentChanged() => _onContentChanged(reference).check(); static final _onWindowFocusChanged = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8)>>("Activity__onWindowFocusChanged") .asFunction, int)>(); /// from: public void onWindowFocusChanged(boolean z) void onWindowFocusChanged(bool z) => _onWindowFocusChanged(reference, z ? 1 : 0).check(); static final _onAttachedToWindow = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onAttachedToWindow") .asFunction)>(); /// from: public void onAttachedToWindow() void onAttachedToWindow() => _onAttachedToWindow(reference).check(); static final _onDetachedFromWindow = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onDetachedFromWindow") .asFunction)>(); /// from: public void onDetachedFromWindow() void onDetachedFromWindow() => _onDetachedFromWindow(reference).check(); static final _hasWindowFocus = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__hasWindowFocus") .asFunction)>(); /// from: public boolean hasWindowFocus() bool hasWindowFocus() => _hasWindowFocus(reference).boolean; static final _dispatchKeyEvent = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__dispatchKeyEvent") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean dispatchKeyEvent(android.view.KeyEvent keyEvent) bool dispatchKeyEvent(jni.JObject keyEvent) => _dispatchKeyEvent(reference, keyEvent.reference).boolean; static final _dispatchKeyShortcutEvent = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__dispatchKeyShortcutEvent") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean dispatchKeyShortcutEvent(android.view.KeyEvent keyEvent) bool dispatchKeyShortcutEvent(jni.JObject keyEvent) => _dispatchKeyShortcutEvent(reference, keyEvent.reference).boolean; static final _dispatchTouchEvent = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__dispatchTouchEvent") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean dispatchTouchEvent(android.view.MotionEvent motionEvent) bool dispatchTouchEvent(jni.JObject motionEvent) => _dispatchTouchEvent(reference, motionEvent.reference).boolean; static final _dispatchTrackballEvent = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__dispatchTrackballEvent") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean dispatchTrackballEvent(android.view.MotionEvent motionEvent) bool dispatchTrackballEvent(jni.JObject motionEvent) => _dispatchTrackballEvent(reference, motionEvent.reference).boolean; static final _dispatchGenericMotionEvent = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__dispatchGenericMotionEvent") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean dispatchGenericMotionEvent(android.view.MotionEvent motionEvent) bool dispatchGenericMotionEvent(jni.JObject motionEvent) => _dispatchGenericMotionEvent(reference, motionEvent.reference).boolean; static final _dispatchPopulateAccessibilityEvent = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__dispatchPopulateAccessibilityEvent") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean dispatchPopulateAccessibilityEvent(android.view.accessibility.AccessibilityEvent accessibilityEvent) bool dispatchPopulateAccessibilityEvent(jni.JObject accessibilityEvent) => _dispatchPopulateAccessibilityEvent( reference, accessibilityEvent.reference) .boolean; static final _onCreatePanelView = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32)>>("Activity__onCreatePanelView") .asFunction, int)>(); /// from: public android.view.View onCreatePanelView(int i) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject onCreatePanelView(int i) => const jni.JObjectType().fromRef(_onCreatePanelView(reference, i).object); static final _onCreatePanelMenu = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Activity__onCreatePanelMenu") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public boolean onCreatePanelMenu(int i, android.view.Menu menu) bool onCreatePanelMenu(int i, jni.JObject menu) => _onCreatePanelMenu(reference, i, menu.reference).boolean; static final _onPreparePanel = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32, ffi.Pointer, ffi.Pointer)>>("Activity__onPreparePanel") .asFunction< jni.JniResult Function(ffi.Pointer, int, ffi.Pointer, ffi.Pointer)>(); /// from: public boolean onPreparePanel(int i, android.view.View view, android.view.Menu menu) bool onPreparePanel(int i, jni.JObject view, jni.JObject menu) => _onPreparePanel(reference, i, view.reference, menu.reference).boolean; static final _onMenuOpened = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Activity__onMenuOpened") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public boolean onMenuOpened(int i, android.view.Menu menu) bool onMenuOpened(int i, jni.JObject menu) => _onMenuOpened(reference, i, menu.reference).boolean; static final _onMenuItemSelected = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Activity__onMenuItemSelected") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public boolean onMenuItemSelected(int i, android.view.MenuItem menuItem) bool onMenuItemSelected(int i, jni.JObject menuItem) => _onMenuItemSelected(reference, i, menuItem.reference).boolean; static final _onPanelClosed = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Activity__onPanelClosed") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public void onPanelClosed(int i, android.view.Menu menu) void onPanelClosed(int i, jni.JObject menu) => _onPanelClosed(reference, i, menu.reference).check(); static final _invalidateOptionsMenu = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__invalidateOptionsMenu") .asFunction)>(); /// from: public void invalidateOptionsMenu() void invalidateOptionsMenu() => _invalidateOptionsMenu(reference).check(); static final _onCreateOptionsMenu = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onCreateOptionsMenu") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean onCreateOptionsMenu(android.view.Menu menu) bool onCreateOptionsMenu(jni.JObject menu) => _onCreateOptionsMenu(reference, menu.reference).boolean; static final _onPrepareOptionsMenu = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onPrepareOptionsMenu") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean onPrepareOptionsMenu(android.view.Menu menu) bool onPrepareOptionsMenu(jni.JObject menu) => _onPrepareOptionsMenu(reference, menu.reference).boolean; static final _onOptionsItemSelected = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onOptionsItemSelected") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean onOptionsItemSelected(android.view.MenuItem menuItem) bool onOptionsItemSelected(jni.JObject menuItem) => _onOptionsItemSelected(reference, menuItem.reference).boolean; static final _onNavigateUp = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onNavigateUp") .asFunction)>(); /// from: public boolean onNavigateUp() bool onNavigateUp() => _onNavigateUp(reference).boolean; static final _onNavigateUpFromChild = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onNavigateUpFromChild") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean onNavigateUpFromChild(android.app.Activity activity) bool onNavigateUpFromChild(Activity activity) => _onNavigateUpFromChild(reference, activity.reference).boolean; static final _onCreateNavigateUpTaskStack = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__onCreateNavigateUpTaskStack") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void onCreateNavigateUpTaskStack(android.app.TaskStackBuilder taskStackBuilder) void onCreateNavigateUpTaskStack(jni.JObject taskStackBuilder) => _onCreateNavigateUpTaskStack(reference, taskStackBuilder.reference) .check(); static final _onPrepareNavigateUpTaskStack = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__onPrepareNavigateUpTaskStack") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void onPrepareNavigateUpTaskStack(android.app.TaskStackBuilder taskStackBuilder) void onPrepareNavigateUpTaskStack(jni.JObject taskStackBuilder) => _onPrepareNavigateUpTaskStack(reference, taskStackBuilder.reference) .check(); static final _onOptionsMenuClosed = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onOptionsMenuClosed") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void onOptionsMenuClosed(android.view.Menu menu) void onOptionsMenuClosed(jni.JObject menu) => _onOptionsMenuClosed(reference, menu.reference).check(); static final _openOptionsMenu = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__openOptionsMenu") .asFunction)>(); /// from: public void openOptionsMenu() void openOptionsMenu() => _openOptionsMenu(reference).check(); static final _closeOptionsMenu = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__closeOptionsMenu") .asFunction)>(); /// from: public void closeOptionsMenu() void closeOptionsMenu() => _closeOptionsMenu(reference).check(); static final _onCreateContextMenu = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__onCreateContextMenu") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void onCreateContextMenu(android.view.ContextMenu contextMenu, android.view.View view, android.view.ContextMenu$ContextMenuInfo contextMenuInfo) void onCreateContextMenu(jni.JObject contextMenu, jni.JObject view, jni.JObject contextMenuInfo) => _onCreateContextMenu(reference, contextMenu.reference, view.reference, contextMenuInfo.reference) .check(); static final _registerForContextMenu = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__registerForContextMenu") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void registerForContextMenu(android.view.View view) void registerForContextMenu(jni.JObject view) => _registerForContextMenu(reference, view.reference).check(); static final _unregisterForContextMenu = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__unregisterForContextMenu") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void unregisterForContextMenu(android.view.View view) void unregisterForContextMenu(jni.JObject view) => _unregisterForContextMenu(reference, view.reference).check(); static final _openContextMenu = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__openContextMenu") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void openContextMenu(android.view.View view) void openContextMenu(jni.JObject view) => _openContextMenu(reference, view.reference).check(); static final _closeContextMenu = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__closeContextMenu") .asFunction)>(); /// from: public void closeContextMenu() void closeContextMenu() => _closeContextMenu(reference).check(); static final _onContextItemSelected = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onContextItemSelected") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean onContextItemSelected(android.view.MenuItem menuItem) bool onContextItemSelected(jni.JObject menuItem) => _onContextItemSelected(reference, menuItem.reference).boolean; static final _onContextMenuClosed = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onContextMenuClosed") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void onContextMenuClosed(android.view.Menu menu) void onContextMenuClosed(jni.JObject menu) => _onContextMenuClosed(reference, menu.reference).check(); static final _onCreateDialog = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32)>>("Activity__onCreateDialog") .asFunction, int)>(); /// from: protected android.app.Dialog onCreateDialog(int i) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject onCreateDialog(int i) => const jni.JObjectType().fromRef(_onCreateDialog(reference, i).object); static final _onCreateDialog1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Activity__onCreateDialog1") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: protected android.app.Dialog onCreateDialog(int i, android.os.Bundle bundle) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject onCreateDialog1(int i, jni.JObject bundle) => const jni.JObjectType() .fromRef(_onCreateDialog1(reference, i, bundle.reference).object); static final _onPrepareDialog = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Activity__onPrepareDialog") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: protected void onPrepareDialog(int i, android.app.Dialog dialog) void onPrepareDialog(int i, jni.JObject dialog) => _onPrepareDialog(reference, i, dialog.reference).check(); static final _onPrepareDialog1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32, ffi.Pointer, ffi.Pointer)>>("Activity__onPrepareDialog1") .asFunction< jni.JniResult Function(ffi.Pointer, int, ffi.Pointer, ffi.Pointer)>(); /// from: protected void onPrepareDialog(int i, android.app.Dialog dialog, android.os.Bundle bundle) void onPrepareDialog1(int i, jni.JObject dialog, jni.JObject bundle) => _onPrepareDialog1(reference, i, dialog.reference, bundle.reference) .check(); static final _showDialog = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Activity__showDialog") .asFunction, int)>(); /// from: public final void showDialog(int i) void showDialog(int i) => _showDialog(reference, i).check(); static final _showDialog1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Activity__showDialog1") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public final boolean showDialog(int i, android.os.Bundle bundle) bool showDialog1(int i, jni.JObject bundle) => _showDialog1(reference, i, bundle.reference).boolean; static final _dismissDialog = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Activity__dismissDialog") .asFunction, int)>(); /// from: public final void dismissDialog(int i) void dismissDialog(int i) => _dismissDialog(reference, i).check(); static final _removeDialog = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Activity__removeDialog") .asFunction, int)>(); /// from: public final void removeDialog(int i) void removeDialog(int i) => _removeDialog(reference, i).check(); static final _onSearchRequested = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onSearchRequested") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean onSearchRequested(android.view.SearchEvent searchEvent) bool onSearchRequested(jni.JObject searchEvent) => _onSearchRequested(reference, searchEvent.reference).boolean; static final _onSearchRequested1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onSearchRequested1") .asFunction)>(); /// from: public boolean onSearchRequested() bool onSearchRequested1() => _onSearchRequested1(reference).boolean; static final _getSearchEvent = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getSearchEvent") .asFunction)>(); /// from: public final android.view.SearchEvent getSearchEvent() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getSearchEvent() => const jni.JObjectType().fromRef(_getSearchEvent(reference).object); static final _startSearch = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Uint8, ffi.Pointer, ffi.Uint8)>>("Activity__startSearch") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, int, ffi.Pointer, int)>(); /// from: public void startSearch(java.lang.String string, boolean z, android.os.Bundle bundle, boolean z1) void startSearch(jni.JString string, bool z, jni.JObject bundle, bool z1) => _startSearch(reference, string.reference, z ? 1 : 0, bundle.reference, z1 ? 1 : 0) .check(); static final _triggerSearch = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__triggerSearch") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void triggerSearch(java.lang.String string, android.os.Bundle bundle) void triggerSearch(jni.JString string, jni.JObject bundle) => _triggerSearch(reference, string.reference, bundle.reference).check(); static final _takeKeyEvents = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Uint8)>>("Activity__takeKeyEvents") .asFunction, int)>(); /// from: public void takeKeyEvents(boolean z) void takeKeyEvents(bool z) => _takeKeyEvents(reference, z ? 1 : 0).check(); static final _requestWindowFeature = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32)>>("Activity__requestWindowFeature") .asFunction, int)>(); /// from: public final boolean requestWindowFeature(int i) bool requestWindowFeature(int i) => _requestWindowFeature(reference, i).boolean; static final _setFeatureDrawableResource = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Int32)>>("Activity__setFeatureDrawableResource") .asFunction, int, int)>(); /// from: public final void setFeatureDrawableResource(int i, int i1) void setFeatureDrawableResource(int i, int i1) => _setFeatureDrawableResource(reference, i, i1).check(); static final _setFeatureDrawableUri = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Activity__setFeatureDrawableUri") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public final void setFeatureDrawableUri(int i, android.net.Uri uri) void setFeatureDrawableUri(int i, jni.JObject uri) => _setFeatureDrawableUri(reference, i, uri.reference).check(); static final _setFeatureDrawable = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Activity__setFeatureDrawable") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public final void setFeatureDrawable(int i, android.graphics.drawable.Drawable drawable) void setFeatureDrawable(int i, jni.JObject drawable) => _setFeatureDrawable(reference, i, drawable.reference).check(); static final _setFeatureDrawableAlpha = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Int32)>>("Activity__setFeatureDrawableAlpha") .asFunction, int, int)>(); /// from: public final void setFeatureDrawableAlpha(int i, int i1) void setFeatureDrawableAlpha(int i, int i1) => _setFeatureDrawableAlpha(reference, i, i1).check(); static final _getLayoutInflater = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getLayoutInflater") .asFunction)>(); /// from: public android.view.LayoutInflater getLayoutInflater() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getLayoutInflater() => const jni.JObjectType().fromRef(_getLayoutInflater(reference).object); static final _getMenuInflater = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getMenuInflater") .asFunction)>(); /// from: public android.view.MenuInflater getMenuInflater() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getMenuInflater() => const jni.JObjectType().fromRef(_getMenuInflater(reference).object); static final _setTheme = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Activity__setTheme") .asFunction, int)>(); /// from: public void setTheme(int i) void setTheme(int i) => _setTheme(reference, i).check(); static final _onApplyThemeResource = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Uint8)>>("Activity__onApplyThemeResource") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int, int)>(); /// from: protected void onApplyThemeResource(android.content.res.Resources$Theme theme, int i, boolean z) void onApplyThemeResource(jni.JObject theme, int i, bool z) => _onApplyThemeResource(reference, theme.reference, i, z ? 1 : 0).check(); static final _requestPermissions = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Activity__requestPermissions") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public final void requestPermissions(java.lang.String[] strings, int i) void requestPermissions(jni.JArray strings, int i) => _requestPermissions(reference, strings.reference, i).check(); static final _onRequestPermissionsResult = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer, ffi.Pointer)>>( "Activity__onRequestPermissionsResult") .asFunction< jni.JniResult Function(ffi.Pointer, int, ffi.Pointer, ffi.Pointer)>(); /// from: public void onRequestPermissionsResult(int i, java.lang.String[] strings, int[] is) void onRequestPermissionsResult( int i, jni.JArray strings, jni.JArray is0) => _onRequestPermissionsResult( reference, i, strings.reference, is0.reference) .check(); static final _shouldShowRequestPermissionRationale = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__shouldShowRequestPermissionRationale") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean shouldShowRequestPermissionRationale(java.lang.String string) bool shouldShowRequestPermissionRationale(jni.JString string) => _shouldShowRequestPermissionRationale(reference, string.reference) .boolean; static final _startActivityForResult = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Activity__startActivityForResult") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public void startActivityForResult(android.content.Intent intent, int i) void startActivityForResult(Intent intent, int i) => _startActivityForResult(reference, intent.reference, i).check(); static final _startActivityForResult1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Activity__startActivityForResult1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, int, ffi.Pointer)>(); /// from: public void startActivityForResult(android.content.Intent intent, int i, android.os.Bundle bundle) void startActivityForResult1(Intent intent, int i, jni.JObject bundle) => _startActivityForResult1(reference, intent.reference, i, bundle.reference) .check(); static final _isActivityTransitionRunning = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Activity__isActivityTransitionRunning") .asFunction)>(); /// from: public boolean isActivityTransitionRunning() bool isActivityTransitionRunning() => _isActivityTransitionRunning(reference).boolean; static final _startIntentSenderForResult = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Int32)>>("Activity__startIntentSenderForResult") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, int, ffi.Pointer, int, int, int)>(); /// from: public void startIntentSenderForResult(android.content.IntentSender intentSender, int i, android.content.Intent intent, int i1, int i2, int i3) void startIntentSenderForResult(jni.JObject intentSender, int i, Intent intent, int i1, int i2, int i3) => _startIntentSenderForResult(reference, intentSender.reference, i, intent.reference, i1, i2, i3) .check(); static final _startIntentSenderForResult1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Int32, ffi.Pointer)>>( "Activity__startIntentSenderForResult1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int, ffi.Pointer, int, int, int, ffi.Pointer)>(); /// from: public void startIntentSenderForResult(android.content.IntentSender intentSender, int i, android.content.Intent intent, int i1, int i2, int i3, android.os.Bundle bundle) void startIntentSenderForResult1(jni.JObject intentSender, int i, Intent intent, int i1, int i2, int i3, jni.JObject bundle) => _startIntentSenderForResult1(reference, intentSender.reference, i, intent.reference, i1, i2, i3, bundle.reference) .check(); static final _startActivity = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__startActivity") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void startActivity(android.content.Intent intent) void startActivity(Intent intent) => _startActivity(reference, intent.reference).check(); static final _startActivity1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__startActivity1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void startActivity(android.content.Intent intent, android.os.Bundle bundle) void startActivity1(Intent intent, jni.JObject bundle) => _startActivity1(reference, intent.reference, bundle.reference).check(); static final _startActivities = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__startActivities") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void startActivities(android.content.Intent[] intents) void startActivities(jni.JArray intents) => _startActivities(reference, intents.reference).check(); static final _startActivities1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__startActivities1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void startActivities(android.content.Intent[] intents, android.os.Bundle bundle) void startActivities1(jni.JArray intents, jni.JObject bundle) => _startActivities1(reference, intents.reference, bundle.reference).check(); static final _startIntentSender = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Int32)>>("Activity__startIntentSender") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, int, int, int)>(); /// from: public void startIntentSender(android.content.IntentSender intentSender, android.content.Intent intent, int i, int i1, int i2) void startIntentSender( jni.JObject intentSender, Intent intent, int i, int i1, int i2) => _startIntentSender( reference, intentSender.reference, intent.reference, i, i1, i2) .check(); static final _startIntentSender1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Int32, ffi.Pointer)>>("Activity__startIntentSender1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, int, int, int, ffi.Pointer)>(); /// from: public void startIntentSender(android.content.IntentSender intentSender, android.content.Intent intent, int i, int i1, int i2, android.os.Bundle bundle) void startIntentSender1(jni.JObject intentSender, Intent intent, int i, int i1, int i2, jni.JObject bundle) => _startIntentSender1(reference, intentSender.reference, intent.reference, i, i1, i2, bundle.reference) .check(); static final _startActivityIfNeeded = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Activity__startActivityIfNeeded") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public boolean startActivityIfNeeded(android.content.Intent intent, int i) bool startActivityIfNeeded(Intent intent, int i) => _startActivityIfNeeded(reference, intent.reference, i).boolean; static final _startActivityIfNeeded1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Activity__startActivityIfNeeded1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, int, ffi.Pointer)>(); /// from: public boolean startActivityIfNeeded(android.content.Intent intent, int i, android.os.Bundle bundle) bool startActivityIfNeeded1(Intent intent, int i, jni.JObject bundle) => _startActivityIfNeeded1(reference, intent.reference, i, bundle.reference) .boolean; static final _startNextMatchingActivity = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__startNextMatchingActivity") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean startNextMatchingActivity(android.content.Intent intent) bool startNextMatchingActivity(Intent intent) => _startNextMatchingActivity(reference, intent.reference).boolean; static final _startNextMatchingActivity1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>>( "Activity__startNextMatchingActivity1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public boolean startNextMatchingActivity(android.content.Intent intent, android.os.Bundle bundle) bool startNextMatchingActivity1(Intent intent, jni.JObject bundle) => _startNextMatchingActivity1(reference, intent.reference, bundle.reference) .boolean; static final _startActivityFromChild = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Activity__startActivityFromChild") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, int)>(); /// from: public void startActivityFromChild(android.app.Activity activity, android.content.Intent intent, int i) void startActivityFromChild(Activity activity, Intent intent, int i) => _startActivityFromChild( reference, activity.reference, intent.reference, i) .check(); static final _startActivityFromChild1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Activity__startActivityFromChild1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, int, ffi.Pointer)>(); /// from: public void startActivityFromChild(android.app.Activity activity, android.content.Intent intent, int i, android.os.Bundle bundle) void startActivityFromChild1( Activity activity, Intent intent, int i, jni.JObject bundle) => _startActivityFromChild1(reference, activity.reference, intent.reference, i, bundle.reference) .check(); static final _startActivityFromFragment = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Activity__startActivityFromFragment") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, int)>(); /// from: public void startActivityFromFragment(android.app.Fragment fragment, android.content.Intent intent, int i) void startActivityFromFragment(jni.JObject fragment, Intent intent, int i) => _startActivityFromFragment( reference, fragment.reference, intent.reference, i) .check(); static final _startActivityFromFragment1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer)>>( "Activity__startActivityFromFragment1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, int, ffi.Pointer)>(); /// from: public void startActivityFromFragment(android.app.Fragment fragment, android.content.Intent intent, int i, android.os.Bundle bundle) void startActivityFromFragment1( jni.JObject fragment, Intent intent, int i, jni.JObject bundle) => _startActivityFromFragment1(reference, fragment.reference, intent.reference, i, bundle.reference) .check(); static final _startIntentSenderFromChild = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Int32)>>("Activity__startIntentSenderFromChild") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, int, ffi.Pointer, int, int, int)>(); /// from: public void startIntentSenderFromChild(android.app.Activity activity, android.content.IntentSender intentSender, int i, android.content.Intent intent, int i1, int i2, int i3) void startIntentSenderFromChild(Activity activity, jni.JObject intentSender, int i, Intent intent, int i1, int i2, int i3) => _startIntentSenderFromChild(reference, activity.reference, intentSender.reference, i, intent.reference, i1, i2, i3) .check(); static final _startIntentSenderFromChild1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Int32, ffi.Pointer)>>( "Activity__startIntentSenderFromChild1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, int, ffi.Pointer, int, int, int, ffi.Pointer)>(); /// from: public void startIntentSenderFromChild(android.app.Activity activity, android.content.IntentSender intentSender, int i, android.content.Intent intent, int i1, int i2, int i3, android.os.Bundle bundle) void startIntentSenderFromChild1(Activity activity, jni.JObject intentSender, int i, Intent intent, int i1, int i2, int i3, jni.JObject bundle) => _startIntentSenderFromChild1( reference, activity.reference, intentSender.reference, i, intent.reference, i1, i2, i3, bundle.reference) .check(); static final _overridePendingTransition = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Int32)>>("Activity__overridePendingTransition") .asFunction, int, int)>(); /// from: public void overridePendingTransition(int i, int i1) void overridePendingTransition(int i, int i1) => _overridePendingTransition(reference, i, i1).check(); static final _overridePendingTransition1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Int32)>>("Activity__overridePendingTransition1") .asFunction< jni.JniResult Function(ffi.Pointer, int, int, int)>(); /// from: public void overridePendingTransition(int i, int i1, int i2) void overridePendingTransition1(int i, int i1, int i2) => _overridePendingTransition1(reference, i, i1, i2).check(); static final _setResult = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Activity__setResult") .asFunction, int)>(); /// from: public final void setResult(int i) void setResult(int i) => _setResult(reference, i).check(); static final _setResult1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Activity__setResult1") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public final void setResult(int i, android.content.Intent intent) void setResult1(int i, Intent intent) => _setResult1(reference, i, intent.reference).check(); static final _getReferrer = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getReferrer") .asFunction)>(); /// from: public android.net.Uri getReferrer() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getReferrer() => const jni.JObjectType().fromRef(_getReferrer(reference).object); static final _onProvideReferrer = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onProvideReferrer") .asFunction)>(); /// from: public android.net.Uri onProvideReferrer() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject onProvideReferrer() => const jni.JObjectType().fromRef(_onProvideReferrer(reference).object); static final _getCallingPackage = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getCallingPackage") .asFunction)>(); /// from: public java.lang.String getCallingPackage() /// The returned object must be deleted after use, by calling the `delete` method. jni.JString getCallingPackage() => const jni.JStringType().fromRef(_getCallingPackage(reference).object); static final _getCallingActivity = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getCallingActivity") .asFunction)>(); /// from: public android.content.ComponentName getCallingActivity() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getCallingActivity() => const jni.JObjectType().fromRef(_getCallingActivity(reference).object); static final _setVisible = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Uint8)>>("Activity__setVisible") .asFunction, int)>(); /// from: public void setVisible(boolean z) void setVisible(bool z) => _setVisible(reference, z ? 1 : 0).check(); static final _isFinishing = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__isFinishing") .asFunction)>(); /// from: public boolean isFinishing() bool isFinishing() => _isFinishing(reference).boolean; static final _isDestroyed = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__isDestroyed") .asFunction)>(); /// from: public boolean isDestroyed() bool isDestroyed() => _isDestroyed(reference).boolean; static final _isChangingConfigurations = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__isChangingConfigurations") .asFunction)>(); /// from: public boolean isChangingConfigurations() bool isChangingConfigurations() => _isChangingConfigurations(reference).boolean; static final _recreate = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__recreate") .asFunction)>(); /// from: public void recreate() void recreate() => _recreate(reference).check(); static final _finish = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__finish") .asFunction)>(); /// from: public void finish() void finish() => _finish(reference).check(); static final _finishAffinity = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__finishAffinity") .asFunction)>(); /// from: public void finishAffinity() void finishAffinity() => _finishAffinity(reference).check(); static final _finishFromChild = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__finishFromChild") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void finishFromChild(android.app.Activity activity) void finishFromChild(Activity activity) => _finishFromChild(reference, activity.reference).check(); static final _finishAfterTransition = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__finishAfterTransition") .asFunction)>(); /// from: public void finishAfterTransition() void finishAfterTransition() => _finishAfterTransition(reference).check(); static final _finishActivity = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32)>>("Activity__finishActivity") .asFunction, int)>(); /// from: public void finishActivity(int i) void finishActivity(int i) => _finishActivity(reference, i).check(); static final _finishActivityFromChild = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Activity__finishActivityFromChild") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public void finishActivityFromChild(android.app.Activity activity, int i) void finishActivityFromChild(Activity activity, int i) => _finishActivityFromChild(reference, activity.reference, i).check(); static final _finishAndRemoveTask = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__finishAndRemoveTask") .asFunction)>(); /// from: public void finishAndRemoveTask() void finishAndRemoveTask() => _finishAndRemoveTask(reference).check(); static final _releaseInstance = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__releaseInstance") .asFunction)>(); /// from: public boolean releaseInstance() bool releaseInstance() => _releaseInstance(reference).boolean; static final _onActivityResult = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Pointer)>>("Activity__onActivityResult") .asFunction< jni.JniResult Function( ffi.Pointer, int, int, ffi.Pointer)>(); /// from: protected void onActivityResult(int i, int i1, android.content.Intent intent) void onActivityResult(int i, int i1, Intent intent) => _onActivityResult(reference, i, i1, intent.reference).check(); static final _onActivityReenter = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Pointer)>>("Activity__onActivityReenter") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public void onActivityReenter(int i, android.content.Intent intent) void onActivityReenter(int i, Intent intent) => _onActivityReenter(reference, i, intent.reference).check(); static final _createPendingResult = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32, ffi.Pointer, ffi.Int32)>>("Activity__createPendingResult") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer, int)>(); /// from: public android.app.PendingIntent createPendingResult(int i, android.content.Intent intent, int i1) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject createPendingResult(int i, Intent intent, int i1) => const jni.JObjectType().fromRef( _createPendingResult(reference, i, intent.reference, i1).object); static final _setRequestedOrientation = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32)>>("Activity__setRequestedOrientation") .asFunction, int)>(); /// from: public void setRequestedOrientation(int i) void setRequestedOrientation(int i) => _setRequestedOrientation(reference, i).check(); static final _getRequestedOrientation = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getRequestedOrientation") .asFunction)>(); /// from: public int getRequestedOrientation() int getRequestedOrientation() => _getRequestedOrientation(reference).integer; static final _getTaskId = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getTaskId") .asFunction)>(); /// from: public int getTaskId() int getTaskId() => _getTaskId(reference).integer; static final _isTaskRoot = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__isTaskRoot") .asFunction)>(); /// from: public boolean isTaskRoot() bool isTaskRoot() => _isTaskRoot(reference).boolean; static final _moveTaskToBack = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8)>>("Activity__moveTaskToBack") .asFunction, int)>(); /// from: public boolean moveTaskToBack(boolean z) bool moveTaskToBack(bool z) => _moveTaskToBack(reference, z ? 1 : 0).boolean; static final _getLocalClassName = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getLocalClassName") .asFunction)>(); /// from: public java.lang.String getLocalClassName() /// The returned object must be deleted after use, by calling the `delete` method. jni.JString getLocalClassName() => const jni.JStringType().fromRef(_getLocalClassName(reference).object); static final _getComponentName = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getComponentName") .asFunction)>(); /// from: public android.content.ComponentName getComponentName() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getComponentName() => const jni.JObjectType().fromRef(_getComponentName(reference).object); static final _getPreferences = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32)>>("Activity__getPreferences") .asFunction, int)>(); /// from: public android.content.SharedPreferences getPreferences(int i) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getPreferences(int i) => const jni.JObjectType().fromRef(_getPreferences(reference, i).object); static final _isLaunchedFromBubble = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__isLaunchedFromBubble") .asFunction)>(); /// from: public boolean isLaunchedFromBubble() bool isLaunchedFromBubble() => _isLaunchedFromBubble(reference).boolean; static final _getSystemService = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__getSystemService") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.lang.Object getSystemService(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getSystemService(jni.JString string) => const jni.JObjectType() .fromRef(_getSystemService(reference, string.reference).object); static final _setTitle = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__setTitle") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void setTitle(java.lang.CharSequence charSequence) void setTitle(jni.JObject charSequence) => _setTitle(reference, charSequence.reference).check(); static final _setTitle1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Activity__setTitle1") .asFunction, int)>(); /// from: public void setTitle(int i) void setTitle1(int i) => _setTitle1(reference, i).check(); static final _setTitleColor = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Activity__setTitleColor") .asFunction, int)>(); /// from: public void setTitleColor(int i) void setTitleColor(int i) => _setTitleColor(reference, i).check(); static final _getTitle = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getTitle") .asFunction)>(); /// from: public final java.lang.CharSequence getTitle() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getTitle() => const jni.JObjectType().fromRef(_getTitle(reference).object); static final _getTitleColor = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getTitleColor") .asFunction)>(); /// from: public final int getTitleColor() int getTitleColor() => _getTitleColor(reference).integer; static final _onTitleChanged = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Activity__onTitleChanged") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: protected void onTitleChanged(java.lang.CharSequence charSequence, int i) void onTitleChanged(jni.JObject charSequence, int i) => _onTitleChanged(reference, charSequence.reference, i).check(); static final _onChildTitleChanged = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__onChildTitleChanged") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: protected void onChildTitleChanged(android.app.Activity activity, java.lang.CharSequence charSequence) void onChildTitleChanged(Activity activity, jni.JObject charSequence) => _onChildTitleChanged( reference, activity.reference, charSequence.reference) .check(); static final _setTaskDescription = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__setTaskDescription") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void setTaskDescription(android.app.ActivityManager$TaskDescription taskDescription) void setTaskDescription(jni.JObject taskDescription) => _setTaskDescription(reference, taskDescription.reference).check(); static final _setProgressBarVisibility = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8)>>("Activity__setProgressBarVisibility") .asFunction, int)>(); /// from: public final void setProgressBarVisibility(boolean z) void setProgressBarVisibility(bool z) => _setProgressBarVisibility(reference, z ? 1 : 0).check(); static final _setProgressBarIndeterminateVisibility = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8)>>( "Activity__setProgressBarIndeterminateVisibility") .asFunction, int)>(); /// from: public final void setProgressBarIndeterminateVisibility(boolean z) void setProgressBarIndeterminateVisibility(bool z) => _setProgressBarIndeterminateVisibility(reference, z ? 1 : 0).check(); static final _setProgressBarIndeterminate = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8)>>("Activity__setProgressBarIndeterminate") .asFunction, int)>(); /// from: public final void setProgressBarIndeterminate(boolean z) void setProgressBarIndeterminate(bool z) => _setProgressBarIndeterminate(reference, z ? 1 : 0).check(); static final _setProgress = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Activity__setProgress") .asFunction, int)>(); /// from: public final void setProgress(int i) void setProgress(int i) => _setProgress(reference, i).check(); static final _setSecondaryProgress = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32)>>("Activity__setSecondaryProgress") .asFunction, int)>(); /// from: public final void setSecondaryProgress(int i) void setSecondaryProgress(int i) => _setSecondaryProgress(reference, i).check(); static final _setVolumeControlStream = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32)>>("Activity__setVolumeControlStream") .asFunction, int)>(); /// from: public final void setVolumeControlStream(int i) void setVolumeControlStream(int i) => _setVolumeControlStream(reference, i).check(); static final _getVolumeControlStream = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getVolumeControlStream") .asFunction)>(); /// from: public final int getVolumeControlStream() int getVolumeControlStream() => _getVolumeControlStream(reference).integer; static final _setMediaController = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__setMediaController") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public final void setMediaController(android.media.session.MediaController mediaController) void setMediaController(jni.JObject mediaController) => _setMediaController(reference, mediaController.reference).check(); static final _getMediaController = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getMediaController") .asFunction)>(); /// from: public final android.media.session.MediaController getMediaController() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getMediaController() => const jni.JObjectType().fromRef(_getMediaController(reference).object); static final _runOnUiThread = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__runOnUiThread") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public final void runOnUiThread(java.lang.Runnable runnable) void runOnUiThread(jni.JObject runnable) => _runOnUiThread(reference, runnable.reference).check(); static final _onCreateView = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__onCreateView") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.view.View onCreateView(java.lang.String string, android.content.Context context, android.util.AttributeSet attributeSet) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject onCreateView( jni.JString string, Context context, jni.JObject attributeSet) => const jni.JObjectType().fromRef(_onCreateView(reference, string.reference, context.reference, attributeSet.reference) .object); static final _onCreateView1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__onCreateView1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public android.view.View onCreateView(android.view.View view, java.lang.String string, android.content.Context context, android.util.AttributeSet attributeSet) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject onCreateView1(jni.JObject view, jni.JString string, Context context, jni.JObject attributeSet) => const jni.JObjectType().fromRef(_onCreateView1(reference, view.reference, string.reference, context.reference, attributeSet.reference) .object); static final _dump = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__dump") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void dump(java.lang.String string, java.io.FileDescriptor fileDescriptor, java.io.PrintWriter printWriter, java.lang.String[] strings) void dump(jni.JString string, jni.JObject fileDescriptor, jni.JObject printWriter, jni.JArray strings) => _dump(reference, string.reference, fileDescriptor.reference, printWriter.reference, strings.reference) .check(); static final _isImmersive = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__isImmersive") .asFunction)>(); /// from: public boolean isImmersive() bool isImmersive() => _isImmersive(reference).boolean; static final _setTranslucent = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8)>>("Activity__setTranslucent") .asFunction, int)>(); /// from: public boolean setTranslucent(boolean z) bool setTranslucent(bool z) => _setTranslucent(reference, z ? 1 : 0).boolean; static final _requestVisibleBehind = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8)>>("Activity__requestVisibleBehind") .asFunction, int)>(); /// from: public boolean requestVisibleBehind(boolean z) bool requestVisibleBehind(bool z) => _requestVisibleBehind(reference, z ? 1 : 0).boolean; static final _onVisibleBehindCanceled = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onVisibleBehindCanceled") .asFunction)>(); /// from: public void onVisibleBehindCanceled() void onVisibleBehindCanceled() => _onVisibleBehindCanceled(reference).check(); static final _onEnterAnimationComplete = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__onEnterAnimationComplete") .asFunction)>(); /// from: public void onEnterAnimationComplete() void onEnterAnimationComplete() => _onEnterAnimationComplete(reference).check(); static final _setImmersive = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Uint8)>>("Activity__setImmersive") .asFunction, int)>(); /// from: public void setImmersive(boolean z) void setImmersive(bool z) => _setImmersive(reference, z ? 1 : 0).check(); static final _setVrModeEnabled = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8, ffi.Pointer)>>("Activity__setVrModeEnabled") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public void setVrModeEnabled(boolean z, android.content.ComponentName componentName) void setVrModeEnabled(bool z, jni.JObject componentName) => _setVrModeEnabled(reference, z ? 1 : 0, componentName.reference).check(); static final _startActionMode = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__startActionMode") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.view.ActionMode startActionMode(android.view.ActionMode$Callback callback) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject startActionMode(jni.JObject callback) => const jni.JObjectType() .fromRef(_startActionMode(reference, callback.reference).object); static final _startActionMode1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Activity__startActionMode1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public android.view.ActionMode startActionMode(android.view.ActionMode$Callback callback, int i) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject startActionMode1(jni.JObject callback, int i) => const jni.JObjectType() .fromRef(_startActionMode1(reference, callback.reference, i).object); static final _onWindowStartingActionMode = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__onWindowStartingActionMode") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.view.ActionMode onWindowStartingActionMode(android.view.ActionMode$Callback callback) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject onWindowStartingActionMode(jni.JObject callback) => const jni.JObjectType().fromRef( _onWindowStartingActionMode(reference, callback.reference).object); static final _onWindowStartingActionMode1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32)>>("Activity__onWindowStartingActionMode1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public android.view.ActionMode onWindowStartingActionMode(android.view.ActionMode$Callback callback, int i) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject onWindowStartingActionMode1(jni.JObject callback, int i) => const jni.JObjectType().fromRef( _onWindowStartingActionMode1(reference, callback.reference, i) .object); static final _onActionModeStarted = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onActionModeStarted") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void onActionModeStarted(android.view.ActionMode actionMode) void onActionModeStarted(jni.JObject actionMode) => _onActionModeStarted(reference, actionMode.reference).check(); static final _onActionModeFinished = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__onActionModeFinished") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void onActionModeFinished(android.view.ActionMode actionMode) void onActionModeFinished(jni.JObject actionMode) => _onActionModeFinished(reference, actionMode.reference).check(); static final _shouldUpRecreateTask = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__shouldUpRecreateTask") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean shouldUpRecreateTask(android.content.Intent intent) bool shouldUpRecreateTask(Intent intent) => _shouldUpRecreateTask(reference, intent.reference).boolean; static final _navigateUpTo = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Activity__navigateUpTo") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean navigateUpTo(android.content.Intent intent) bool navigateUpTo(Intent intent) => _navigateUpTo(reference, intent.reference).boolean; static final _navigateUpToFromChild = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Activity__navigateUpToFromChild") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public boolean navigateUpToFromChild(android.app.Activity activity, android.content.Intent intent) bool navigateUpToFromChild(Activity activity, Intent intent) => _navigateUpToFromChild(reference, activity.reference, intent.reference) .boolean; static final _getParentActivityIntent = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__getParentActivityIntent") .asFunction)>(); /// from: public android.content.Intent getParentActivityIntent() /// The returned object must be deleted after use, by calling the `delete` method. Intent getParentActivityIntent() => const $IntentType().fromRef(_getParentActivityIntent(reference).object); static final _setEnterSharedElementCallback = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__setEnterSharedElementCallback") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void setEnterSharedElementCallback(android.app.SharedElementCallback sharedElementCallback) void setEnterSharedElementCallback(jni.JObject sharedElementCallback) => _setEnterSharedElementCallback(reference, sharedElementCallback.reference) .check(); static final _setExitSharedElementCallback = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__setExitSharedElementCallback") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void setExitSharedElementCallback(android.app.SharedElementCallback sharedElementCallback) void setExitSharedElementCallback(jni.JObject sharedElementCallback) => _setExitSharedElementCallback(reference, sharedElementCallback.reference) .check(); static final _postponeEnterTransition = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__postponeEnterTransition") .asFunction)>(); /// from: public void postponeEnterTransition() void postponeEnterTransition() => _postponeEnterTransition(reference).check(); static final _startPostponedEnterTransition = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Activity__startPostponedEnterTransition") .asFunction)>(); /// from: public void startPostponedEnterTransition() void startPostponedEnterTransition() => _startPostponedEnterTransition(reference).check(); static final _requestDragAndDropPermissions = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>( "Activity__requestDragAndDropPermissions") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public android.view.DragAndDropPermissions requestDragAndDropPermissions(android.view.DragEvent dragEvent) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject requestDragAndDropPermissions(jni.JObject dragEvent) => const jni.JObjectType().fromRef( _requestDragAndDropPermissions(reference, dragEvent.reference) .object); static final _startLockTask = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__startLockTask") .asFunction)>(); /// from: public void startLockTask() void startLockTask() => _startLockTask(reference).check(); static final _stopLockTask = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Activity__stopLockTask") .asFunction)>(); /// from: public void stopLockTask() void stopLockTask() => _stopLockTask(reference).check(); static final _showLockTaskEscapeMessage = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Activity__showLockTaskEscapeMessage") .asFunction)>(); /// from: public void showLockTaskEscapeMessage() void showLockTaskEscapeMessage() => _showLockTaskEscapeMessage(reference).check(); static final _setRecentsScreenshotEnabled = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8)>>("Activity__setRecentsScreenshotEnabled") .asFunction, int)>(); /// from: public void setRecentsScreenshotEnabled(boolean z) void setRecentsScreenshotEnabled(bool z) => _setRecentsScreenshotEnabled(reference, z ? 1 : 0).check(); static final _setShowWhenLocked = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8)>>("Activity__setShowWhenLocked") .asFunction, int)>(); /// from: public void setShowWhenLocked(boolean z) void setShowWhenLocked(bool z) => _setShowWhenLocked(reference, z ? 1 : 0).check(); static final _setInheritShowWhenLocked = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8)>>("Activity__setInheritShowWhenLocked") .asFunction, int)>(); /// from: public void setInheritShowWhenLocked(boolean z) void setInheritShowWhenLocked(bool z) => _setInheritShowWhenLocked(reference, z ? 1 : 0).check(); static final _setTurnScreenOn = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Uint8)>>("Activity__setTurnScreenOn") .asFunction, int)>(); /// from: public void setTurnScreenOn(boolean z) void setTurnScreenOn(bool z) => _setTurnScreenOn(reference, z ? 1 : 0).check(); static final _getOnBackInvokedDispatcher = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>( "Activity__getOnBackInvokedDispatcher") .asFunction)>(); /// from: public android.window.OnBackInvokedDispatcher getOnBackInvokedDispatcher() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject getOnBackInvokedDispatcher() => const jni.JObjectType() .fromRef(_getOnBackInvokedDispatcher(reference).object); } class $ActivityType extends jni.JObjType { const $ActivityType(); @override String get signature => r"Landroid/app/Activity;"; @override Activity fromRef(jni.JObjectPtr ref) => Activity.fromRef(ref); } extension $ActivityArray on jni.JArray { Activity operator [](int index) { return (elementType as $ActivityType) .fromRef(elementAt(index, jni.JniCallType.objectType).object); } void operator []=(int index, Activity value) { (this as jni.JArray)[index] = value; } } /// from: java.time.Instant class Instant extends jni.JObject { late final jni.JObjType? _$type; @override jni.JObjType get $type => _$type ??= type; Instant.fromRef( jni.JObjectPtr ref, ) : super.fromRef(ref); /// The type which includes information such as the signature of this class. static const type = $InstantType(); static final _get_EPOCH = jniLookup>( "get_Instant__EPOCH") .asFunction(); /// from: static public final java.time.Instant EPOCH /// The returned object must be deleted after use, by calling the `delete` method. static Instant get EPOCH => const $InstantType().fromRef(_get_EPOCH().object); static final _get_MAX = jniLookup>( "get_Instant__MAX") .asFunction(); /// from: static public final java.time.Instant MAX /// The returned object must be deleted after use, by calling the `delete` method. static Instant get MAX => const $InstantType().fromRef(_get_MAX().object); static final _get_MIN = jniLookup>( "get_Instant__MIN") .asFunction(); /// from: static public final java.time.Instant MIN /// The returned object must be deleted after use, by calling the `delete` method. static Instant get MIN => const $InstantType().fromRef(_get_MIN().object); static final _now = jniLookup>("Instant__now") .asFunction(); /// from: static public java.time.Instant now() /// The returned object must be deleted after use, by calling the `delete` method. static Instant now() => const $InstantType().fromRef(_now().object); static final _now1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Instant__now1") .asFunction)>(); /// from: static public java.time.Instant now(java.time.Clock clock) /// The returned object must be deleted after use, by calling the `delete` method. static Instant now1(jni.JObject clock) => const $InstantType().fromRef(_now1(clock.reference).object); static final _ofEpochSecond = jniLookup>( "Instant__ofEpochSecond") .asFunction(); /// from: static public java.time.Instant ofEpochSecond(long j) /// The returned object must be deleted after use, by calling the `delete` method. static Instant ofEpochSecond(int j) => const $InstantType().fromRef(_ofEpochSecond(j).object); static final _ofEpochSecond1 = jniLookup< ffi.NativeFunction>( "Instant__ofEpochSecond1") .asFunction(); /// from: static public java.time.Instant ofEpochSecond(long j, long j1) /// The returned object must be deleted after use, by calling the `delete` method. static Instant ofEpochSecond1(int j, int j1) => const $InstantType().fromRef(_ofEpochSecond1(j, j1).object); static final _ofEpochMilli = jniLookup>( "Instant__ofEpochMilli") .asFunction(); /// from: static public java.time.Instant ofEpochMilli(long j) /// The returned object must be deleted after use, by calling the `delete` method. static Instant ofEpochMilli(int j) => const $InstantType().fromRef(_ofEpochMilli(j).object); static final _from = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Instant__from") .asFunction)>(); /// from: static public java.time.Instant from(java.time.temporal.TemporalAccessor temporalAccessor) /// The returned object must be deleted after use, by calling the `delete` method. static Instant from(jni.JObject temporalAccessor) => const $InstantType().fromRef(_from(temporalAccessor.reference).object); static final _parse = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Instant__parse") .asFunction)>(); /// from: static public java.time.Instant parse(java.lang.CharSequence charSequence) /// The returned object must be deleted after use, by calling the `delete` method. static Instant parse(jni.JObject charSequence) => const $InstantType().fromRef(_parse(charSequence.reference).object); static final _isSupported = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__isSupported") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean isSupported(java.time.temporal.TemporalField temporalField) bool isSupported(jni.JObject temporalField) => _isSupported(reference, temporalField.reference).boolean; static final _isSupported1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__isSupported1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean isSupported(java.time.temporal.TemporalUnit temporalUnit) bool isSupported1(jni.JObject temporalUnit) => _isSupported1(reference, temporalUnit.reference).boolean; static final _range = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__range") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.time.temporal.ValueRange range(java.time.temporal.TemporalField temporalField) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject range(jni.JObject temporalField) => const jni.JObjectType() .fromRef(_range(reference, temporalField.reference).object); static final _get0 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__get0") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public int get(java.time.temporal.TemporalField temporalField) int get0(jni.JObject temporalField) => _get0(reference, temporalField.reference).integer; static final _getLong = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__getLong") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public long getLong(java.time.temporal.TemporalField temporalField) int getLong(jni.JObject temporalField) => _getLong(reference, temporalField.reference).long; static final _getEpochSecond = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Instant__getEpochSecond") .asFunction)>(); /// from: public long getEpochSecond() int getEpochSecond() => _getEpochSecond(reference).long; static final _getNano = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Instant__getNano") .asFunction)>(); /// from: public int getNano() int getNano() => _getNano(reference).integer; static final _with0 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__with0") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.time.Instant with(java.time.temporal.TemporalAdjuster temporalAdjuster) /// The returned object must be deleted after use, by calling the `delete` method. Instant with0(jni.JObject temporalAdjuster) => const $InstantType() .fromRef(_with0(reference, temporalAdjuster.reference).object); static final _with1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Int64)>>("Instant__with1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public java.time.Instant with(java.time.temporal.TemporalField temporalField, long j) /// The returned object must be deleted after use, by calling the `delete` method. Instant with1(jni.JObject temporalField, int j) => const $InstantType() .fromRef(_with1(reference, temporalField.reference, j).object); static final _truncatedTo = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__truncatedTo") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.time.Instant truncatedTo(java.time.temporal.TemporalUnit temporalUnit) /// The returned object must be deleted after use, by calling the `delete` method. Instant truncatedTo(jni.JObject temporalUnit) => const $InstantType() .fromRef(_truncatedTo(reference, temporalUnit.reference).object); static final _plus = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__plus") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.time.Instant plus(java.time.temporal.TemporalAmount temporalAmount) /// The returned object must be deleted after use, by calling the `delete` method. Instant plus(jni.JObject temporalAmount) => const $InstantType() .fromRef(_plus(reference, temporalAmount.reference).object); static final _plus1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int64, ffi.Pointer)>>("Instant__plus1") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public java.time.Instant plus(long j, java.time.temporal.TemporalUnit temporalUnit) /// The returned object must be deleted after use, by calling the `delete` method. Instant plus1(int j, jni.JObject temporalUnit) => const $InstantType() .fromRef(_plus1(reference, j, temporalUnit.reference).object); static final _plusSeconds = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int64)>>("Instant__plusSeconds") .asFunction, int)>(); /// from: public java.time.Instant plusSeconds(long j) /// The returned object must be deleted after use, by calling the `delete` method. Instant plusSeconds(int j) => const $InstantType().fromRef(_plusSeconds(reference, j).object); static final _plusMillis = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int64)>>("Instant__plusMillis") .asFunction, int)>(); /// from: public java.time.Instant plusMillis(long j) /// The returned object must be deleted after use, by calling the `delete` method. Instant plusMillis(int j) => const $InstantType().fromRef(_plusMillis(reference, j).object); static final _plusNanos = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int64)>>("Instant__plusNanos") .asFunction, int)>(); /// from: public java.time.Instant plusNanos(long j) /// The returned object must be deleted after use, by calling the `delete` method. Instant plusNanos(int j) => const $InstantType().fromRef(_plusNanos(reference, j).object); static final _minus = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__minus") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.time.Instant minus(java.time.temporal.TemporalAmount temporalAmount) /// The returned object must be deleted after use, by calling the `delete` method. Instant minus(jni.JObject temporalAmount) => const $InstantType() .fromRef(_minus(reference, temporalAmount.reference).object); static final _minus1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int64, ffi.Pointer)>>("Instant__minus1") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public java.time.Instant minus(long j, java.time.temporal.TemporalUnit temporalUnit) /// The returned object must be deleted after use, by calling the `delete` method. Instant minus1(int j, jni.JObject temporalUnit) => const $InstantType() .fromRef(_minus1(reference, j, temporalUnit.reference).object); static final _minusSeconds = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int64)>>("Instant__minusSeconds") .asFunction, int)>(); /// from: public java.time.Instant minusSeconds(long j) /// The returned object must be deleted after use, by calling the `delete` method. Instant minusSeconds(int j) => const $InstantType().fromRef(_minusSeconds(reference, j).object); static final _minusMillis = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int64)>>("Instant__minusMillis") .asFunction, int)>(); /// from: public java.time.Instant minusMillis(long j) /// The returned object must be deleted after use, by calling the `delete` method. Instant minusMillis(int j) => const $InstantType().fromRef(_minusMillis(reference, j).object); static final _minusNanos = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int64)>>("Instant__minusNanos") .asFunction, int)>(); /// from: public java.time.Instant minusNanos(long j) /// The returned object must be deleted after use, by calling the `delete` method. Instant minusNanos(int j) => const $InstantType().fromRef(_minusNanos(reference, j).object); static final _query = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__query") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public R query(java.time.temporal.TemporalQuery temporalQuery) /// The returned object must be deleted after use, by calling the `delete` method. R query( jni.JObjType $R, jni.JObject temporalQuery) => $R.fromRef(_query(reference, temporalQuery.reference).object); static final _adjustInto = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__adjustInto") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.time.temporal.Temporal adjustInto(java.time.temporal.Temporal temporal) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject adjustInto(jni.JObject temporal) => const jni.JObjectType() .fromRef(_adjustInto(reference, temporal.reference).object); static final _until = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Instant__until") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public long until(java.time.temporal.Temporal temporal, java.time.temporal.TemporalUnit temporalUnit) int until(jni.JObject temporal, jni.JObject temporalUnit) => _until(reference, temporal.reference, temporalUnit.reference).long; static final _atOffset = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__atOffset") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.time.OffsetDateTime atOffset(java.time.ZoneOffset zoneOffset) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject atOffset(jni.JObject zoneOffset) => const jni.JObjectType() .fromRef(_atOffset(reference, zoneOffset.reference).object); static final _atZone = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__atZone") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.time.ZonedDateTime atZone(java.time.ZoneId zoneId) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject atZone(jni.JObject zoneId) => const jni.JObjectType() .fromRef(_atZone(reference, zoneId.reference).object); static final _toEpochMilli = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Instant__toEpochMilli") .asFunction)>(); /// from: public long toEpochMilli() int toEpochMilli() => _toEpochMilli(reference).long; static final _compareTo = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__compareTo") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public int compareTo(java.time.Instant instant) int compareTo(Instant instant) => _compareTo(reference, instant.reference).integer; static final _isAfter = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__isAfter") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean isAfter(java.time.Instant instant) bool isAfter(Instant instant) => _isAfter(reference, instant.reference).boolean; static final _isBefore = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__isBefore") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean isBefore(java.time.Instant instant) bool isBefore(Instant instant) => _isBefore(reference, instant.reference).boolean; static final _equals1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__equals1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean equals(java.lang.Object object) bool equals1(jni.JObject object) => _equals1(reference, object.reference).boolean; static final _hashCode1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Instant__hashCode1") .asFunction)>(); /// from: public int hashCode() int hashCode1() => _hashCode1(reference).integer; static final _toString1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Instant__toString1") .asFunction)>(); /// from: public java.lang.String toString() /// The returned object must be deleted after use, by calling the `delete` method. jni.JString toString1() => const jni.JStringType().fromRef(_toString1(reference).object); static final _minus2 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int64, ffi.Pointer)>>("Instant__minus2") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public java.time.temporal.Temporal minus(long j, java.time.temporal.TemporalUnit temporalUnit) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject minus2(int j, jni.JObject temporalUnit) => const jni.JObjectType() .fromRef(_minus2(reference, j, temporalUnit.reference).object); static final _minus3 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__minus3") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.time.temporal.Temporal minus(java.time.temporal.TemporalAmount temporalAmount) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject minus3(jni.JObject temporalAmount) => const jni.JObjectType() .fromRef(_minus3(reference, temporalAmount.reference).object); static final _plus2 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int64, ffi.Pointer)>>("Instant__plus2") .asFunction< jni.JniResult Function( ffi.Pointer, int, ffi.Pointer)>(); /// from: public java.time.temporal.Temporal plus(long j, java.time.temporal.TemporalUnit temporalUnit) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject plus2(int j, jni.JObject temporalUnit) => const jni.JObjectType() .fromRef(_plus2(reference, j, temporalUnit.reference).object); static final _plus3 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__plus3") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.time.temporal.Temporal plus(java.time.temporal.TemporalAmount temporalAmount) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject plus3(jni.JObject temporalAmount) => const jni.JObjectType() .fromRef(_plus3(reference, temporalAmount.reference).object); static final _with2 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Int64)>>("Instant__with2") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, int)>(); /// from: public java.time.temporal.Temporal with(java.time.temporal.TemporalField temporalField, long j) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject with2(jni.JObject temporalField, int j) => const jni.JObjectType() .fromRef(_with2(reference, temporalField.reference, j).object); static final _with3 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__with3") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public java.time.temporal.Temporal with(java.time.temporal.TemporalAdjuster temporalAdjuster) /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject with3(jni.JObject temporalAdjuster) => const jni.JObjectType() .fromRef(_with3(reference, temporalAdjuster.reference).object); static final _compareTo1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Instant__compareTo1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public int compareTo(java.lang.Object object) int compareTo1(jni.JObject object) => _compareTo1(reference, object.reference).integer; } class $InstantType extends jni.JObjType { const $InstantType(); @override String get signature => r"Ljava/time/Instant;"; @override Instant fromRef(jni.JObjectPtr ref) => Instant.fromRef(ref); } extension $InstantArray on jni.JArray { Instant operator [](int index) { return (elementType as $InstantType) .fromRef(elementAt(index, jni.JniCallType.objectType).object); } void operator []=(int index, Instant value) { (this as jni.JArray)[index] = value; } } /// from: java.lang.Long class Long extends jni.JObject { late final jni.JObjType? _$type; @override jni.JObjType get $type => _$type ??= type; Long.fromRef( jni.JObjectPtr ref, ) : super.fromRef(ref); /// The type which includes information such as the signature of this class. static const type = $LongType(); /// from: static public final int BYTES static const BYTES = 8; /// from: static public final long MAX_VALUE static const MAX_VALUE = 9223372036854775807; /// from: static public final long MIN_VALUE static const MIN_VALUE = -9223372036854775808; /// from: static public final int SIZE static const SIZE = 64; static final _get_TYPE = jniLookup>("get_Long__TYPE") .asFunction(); /// from: static public final java.lang.Class TYPE /// The returned object must be deleted after use, by calling the `delete` method. static jni.JObject get TYPE => const jni.JObjectType().fromRef(_get_TYPE().object); static final _ctor = jniLookup>( "Long__ctor") .asFunction(); /// from: public void (long j) Long(int j) : super.fromRef(_ctor(j).object); static final _ctor1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Long__ctor1") .asFunction)>(); /// from: public void (java.lang.String string) Long.ctor1(jni.JString string) : super.fromRef(_ctor1(string.reference).object); static final _toString1 = jniLookup< ffi.NativeFunction>( "Long__toString1") .asFunction(); /// from: static public java.lang.String toString(long j, int i) /// The returned object must be deleted after use, by calling the `delete` method. static jni.JString toString1(int j, int i) => const jni.JStringType().fromRef(_toString1(j, i).object); static final _toUnsignedString = jniLookup< ffi.NativeFunction>( "Long__toUnsignedString") .asFunction(); /// from: static public java.lang.String toUnsignedString(long j, int i) /// The returned object must be deleted after use, by calling the `delete` method. static jni.JString toUnsignedString(int j, int i) => const jni.JStringType().fromRef(_toUnsignedString(j, i).object); static final _toHexString = jniLookup>( "Long__toHexString") .asFunction(); /// from: static public java.lang.String toHexString(long j) /// The returned object must be deleted after use, by calling the `delete` method. static jni.JString toHexString(int j) => const jni.JStringType().fromRef(_toHexString(j).object); static final _toOctalString = jniLookup>( "Long__toOctalString") .asFunction(); /// from: static public java.lang.String toOctalString(long j) /// The returned object must be deleted after use, by calling the `delete` method. static jni.JString toOctalString(int j) => const jni.JStringType().fromRef(_toOctalString(j).object); static final _toBinaryString = jniLookup>( "Long__toBinaryString") .asFunction(); /// from: static public java.lang.String toBinaryString(long j) /// The returned object must be deleted after use, by calling the `delete` method. static jni.JString toBinaryString(int j) => const jni.JStringType().fromRef(_toBinaryString(j).object); static final _toString2 = jniLookup>( "Long__toString2") .asFunction(); /// from: static public java.lang.String toString(long j) /// The returned object must be deleted after use, by calling the `delete` method. static jni.JString toString2(int j) => const jni.JStringType().fromRef(_toString2(j).object); static final _toUnsignedString1 = jniLookup>( "Long__toUnsignedString1") .asFunction(); /// from: static public java.lang.String toUnsignedString(long j) /// The returned object must be deleted after use, by calling the `delete` method. static jni.JString toUnsignedString1(int j) => const jni.JStringType().fromRef(_toUnsignedString1(j).object); static final _parseLong = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Long__parseLong") .asFunction, int)>(); /// from: static public long parseLong(java.lang.String string, int i) static int parseLong(jni.JString string, int i) => _parseLong(string.reference, i).long; static final _parseLong1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Int32)>>("Long__parseLong1") .asFunction< jni.JniResult Function(ffi.Pointer, int, int, int)>(); /// from: static public long parseLong(java.lang.CharSequence charSequence, int i, int i1, int i2) static int parseLong1(jni.JObject charSequence, int i, int i1, int i2) => _parseLong1(charSequence.reference, i, i1, i2).long; static final _parseLong2 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Long__parseLong2") .asFunction)>(); /// from: static public long parseLong(java.lang.String string) static int parseLong2(jni.JString string) => _parseLong2(string.reference).long; static final _parseUnsignedLong = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Long__parseUnsignedLong") .asFunction, int)>(); /// from: static public long parseUnsignedLong(java.lang.String string, int i) static int parseUnsignedLong(jni.JString string, int i) => _parseUnsignedLong(string.reference, i).long; static final _parseUnsignedLong1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Int32, ffi.Int32, ffi.Int32)>>("Long__parseUnsignedLong1") .asFunction< jni.JniResult Function(ffi.Pointer, int, int, int)>(); /// from: static public long parseUnsignedLong(java.lang.CharSequence charSequence, int i, int i1, int i2) static int parseUnsignedLong1( jni.JObject charSequence, int i, int i1, int i2) => _parseUnsignedLong1(charSequence.reference, i, i1, i2).long; static final _parseUnsignedLong2 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Long__parseUnsignedLong2") .asFunction)>(); /// from: static public long parseUnsignedLong(java.lang.String string) static int parseUnsignedLong2(jni.JString string) => _parseUnsignedLong2(string.reference).long; static final _valueOf = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int32)>>("Long__valueOf") .asFunction, int)>(); /// from: static public java.lang.Long valueOf(java.lang.String string, int i) /// The returned object must be deleted after use, by calling the `delete` method. static Long valueOf(jni.JString string, int i) => const $LongType().fromRef(_valueOf(string.reference, i).object); static final _valueOf1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Long__valueOf1") .asFunction)>(); /// from: static public java.lang.Long valueOf(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. static Long valueOf1(jni.JString string) => const $LongType().fromRef(_valueOf1(string.reference).object); static final _valueOf2 = jniLookup>( "Long__valueOf2") .asFunction(); /// from: static public java.lang.Long valueOf(long j) /// The returned object must be deleted after use, by calling the `delete` method. static Long valueOf2(int j) => const $LongType().fromRef(_valueOf2(j).object); static final _decode = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Long__decode") .asFunction)>(); /// from: static public java.lang.Long decode(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. static Long decode(jni.JString string) => const $LongType().fromRef(_decode(string.reference).object); static final _byteValue = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Long__byteValue") .asFunction)>(); /// from: public byte byteValue() int byteValue() => _byteValue(reference).byte; static final _shortValue = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Long__shortValue") .asFunction)>(); /// from: public short shortValue() int shortValue() => _shortValue(reference).short; static final _intValue = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Long__intValue") .asFunction)>(); /// from: public int intValue() int intValue() => _intValue(reference).integer; static final _longValue = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Long__longValue") .asFunction)>(); /// from: public long longValue() int longValue() => _longValue(reference).long; static final _floatValue = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Long__floatValue") .asFunction)>(); /// from: public float floatValue() double floatValue() => _floatValue(reference).float; static final _doubleValue = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Long__doubleValue") .asFunction)>(); /// from: public double doubleValue() double doubleValue() => _doubleValue(reference).doubleFloat; static final _toString3 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Long__toString3") .asFunction)>(); /// from: public java.lang.String toString() /// The returned object must be deleted after use, by calling the `delete` method. jni.JString toString3() => const jni.JStringType().fromRef(_toString3(reference).object); static final _hashCode1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Long__hashCode1") .asFunction)>(); /// from: public int hashCode() int hashCode1() => _hashCode1(reference).integer; static final _hashCode2 = jniLookup>( "Long__hashCode2") .asFunction(); /// from: static public int hashCode(long j) static int hashCode2(int j) => _hashCode2(j).integer; static final _equals1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Long__equals1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean equals(java.lang.Object object) bool equals1(jni.JObject object) => _equals1(reference, object.reference).boolean; static final _getLong = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Long__getLong") .asFunction)>(); /// from: static public java.lang.Long getLong(java.lang.String string) /// The returned object must be deleted after use, by calling the `delete` method. static Long getLong(jni.JString string) => const $LongType().fromRef(_getLong(string.reference).object); static final _getLong1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Int64)>>("Long__getLong1") .asFunction, int)>(); /// from: static public java.lang.Long getLong(java.lang.String string, long j) /// The returned object must be deleted after use, by calling the `delete` method. static Long getLong1(jni.JString string, int j) => const $LongType().fromRef(_getLong1(string.reference, j).object); static final _getLong2 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Long__getLong2") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: static public java.lang.Long getLong(java.lang.String string, java.lang.Long long) /// The returned object must be deleted after use, by calling the `delete` method. static Long getLong2(jni.JString string, Long long) => const $LongType() .fromRef(_getLong2(string.reference, long.reference).object); static final _compareTo = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Long__compareTo") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public int compareTo(java.lang.Long long) int compareTo(Long long) => _compareTo(reference, long.reference).integer; static final _compare = jniLookup< ffi.NativeFunction>( "Long__compare") .asFunction(); /// from: static public int compare(long j, long j1) static int compare(int j, int j1) => _compare(j, j1).integer; static final _compareUnsigned = jniLookup< ffi.NativeFunction>( "Long__compareUnsigned") .asFunction(); /// from: static public int compareUnsigned(long j, long j1) static int compareUnsigned(int j, int j1) => _compareUnsigned(j, j1).integer; static final _divideUnsigned = jniLookup< ffi.NativeFunction>( "Long__divideUnsigned") .asFunction(); /// from: static public long divideUnsigned(long j, long j1) static int divideUnsigned(int j, int j1) => _divideUnsigned(j, j1).long; static final _remainderUnsigned = jniLookup< ffi.NativeFunction>( "Long__remainderUnsigned") .asFunction(); /// from: static public long remainderUnsigned(long j, long j1) static int remainderUnsigned(int j, int j1) => _remainderUnsigned(j, j1).long; static final _highestOneBit = jniLookup>( "Long__highestOneBit") .asFunction(); /// from: static public long highestOneBit(long j) static int highestOneBit(int j) => _highestOneBit(j).long; static final _lowestOneBit = jniLookup>( "Long__lowestOneBit") .asFunction(); /// from: static public long lowestOneBit(long j) static int lowestOneBit(int j) => _lowestOneBit(j).long; static final _numberOfLeadingZeros = jniLookup>( "Long__numberOfLeadingZeros") .asFunction(); /// from: static public int numberOfLeadingZeros(long j) static int numberOfLeadingZeros(int j) => _numberOfLeadingZeros(j).integer; static final _numberOfTrailingZeros = jniLookup>( "Long__numberOfTrailingZeros") .asFunction(); /// from: static public int numberOfTrailingZeros(long j) static int numberOfTrailingZeros(int j) => _numberOfTrailingZeros(j).integer; static final _bitCount = jniLookup>( "Long__bitCount") .asFunction(); /// from: static public int bitCount(long j) static int bitCount(int j) => _bitCount(j).integer; static final _rotateLeft = jniLookup< ffi.NativeFunction>( "Long__rotateLeft") .asFunction(); /// from: static public long rotateLeft(long j, int i) static int rotateLeft(int j, int i) => _rotateLeft(j, i).long; static final _rotateRight = jniLookup< ffi.NativeFunction>( "Long__rotateRight") .asFunction(); /// from: static public long rotateRight(long j, int i) static int rotateRight(int j, int i) => _rotateRight(j, i).long; static final _reverse = jniLookup>( "Long__reverse") .asFunction(); /// from: static public long reverse(long j) static int reverse(int j) => _reverse(j).long; static final _signum = jniLookup>( "Long__signum") .asFunction(); /// from: static public int signum(long j) static int signum(int j) => _signum(j).integer; static final _reverseBytes = jniLookup>( "Long__reverseBytes") .asFunction(); /// from: static public long reverseBytes(long j) static int reverseBytes(int j) => _reverseBytes(j).long; static final _sum = jniLookup< ffi.NativeFunction>( "Long__sum") .asFunction(); /// from: static public long sum(long j, long j1) static int sum(int j, int j1) => _sum(j, j1).long; static final _max = jniLookup< ffi.NativeFunction>( "Long__max") .asFunction(); /// from: static public long max(long j, long j1) static int max(int j, int j1) => _max(j, j1).long; static final _min = jniLookup< ffi.NativeFunction>( "Long__min") .asFunction(); /// from: static public long min(long j, long j1) static int min(int j, int j1) => _min(j, j1).long; static final _compareTo1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Long__compareTo1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public int compareTo(java.lang.Object object) int compareTo1(jni.JObject object) => _compareTo1(reference, object.reference).integer; } class $LongType extends jni.JObjType { const $LongType(); @override String get signature => r"Ljava/lang/Long;"; @override Long fromRef(jni.JObjectPtr ref) => Long.fromRef(ref); } extension $LongArray on jni.JArray { Long operator [](int index) { return (elementType as $LongType) .fromRef(elementAt(index, jni.JniCallType.objectType).object); } void operator []=(int index, Long value) { (this as jni.JArray)[index] = value; } } /// from: java.util.Set class Set extends jni.JObject { late final jni.JObjType? _$type; @override jni.JObjType get $type => _$type ??= type( $E, ); final jni.JObjType $E; Set.fromRef( this.$E, jni.JObjectPtr ref, ) : super.fromRef(ref); /// The type which includes information such as the signature of this class. static $SetType type( jni.JObjType $E, ) { return $SetType( $E, ); } static final _size = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Set__size") .asFunction)>(); /// from: public abstract int size() int size() => _size(reference).integer; static final _isEmpty = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Set__isEmpty") .asFunction)>(); /// from: public abstract boolean isEmpty() bool isEmpty() => _isEmpty(reference).boolean; static final _contains = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Set__contains") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract boolean contains(java.lang.Object object) bool contains(jni.JObject object) => _contains(reference, object.reference).boolean; static final _iterator = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Set__iterator") .asFunction)>(); /// from: public abstract java.util.Iterator iterator() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject iterator() => const jni.JObjectType().fromRef(_iterator(reference).object); static final _toArray = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Set__toArray") .asFunction)>(); /// from: public abstract java.lang.Object[] toArray() /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray toArray() => const jni.JArrayType(jni.JObjectType()) .fromRef(_toArray(reference).object); static final _toArray1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Set__toArray1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract java.lang.Object[] toArray(java.lang.Object[] objects) /// The returned object must be deleted after use, by calling the `delete` method. jni.JArray toArray1( jni.JObjType $T, jni.JArray objects) => jni.JArrayType($T) .fromRef(_toArray1(reference, objects.reference).object); static final _add = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>("Set__add") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract boolean add(E object) bool add(E object) => _add(reference, object.reference).boolean; static final _remove = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>("Set__remove") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract boolean remove(java.lang.Object object) bool remove(jni.JObject object) => _remove(reference, object.reference).boolean; static final _containsAll = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Set__containsAll") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract boolean containsAll(java.util.Collection collection) bool containsAll(jni.JObject collection) => _containsAll(reference, collection.reference).boolean; static final _addAll = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>("Set__addAll") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract boolean addAll(java.util.Collection collection) bool addAll(jni.JObject collection) => _addAll(reference, collection.reference).boolean; static final _retainAll = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Set__retainAll") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract boolean retainAll(java.util.Collection collection) bool retainAll(jni.JObject collection) => _retainAll(reference, collection.reference).boolean; static final _removeAll = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Set__removeAll") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract boolean removeAll(java.util.Collection collection) bool removeAll(jni.JObject collection) => _removeAll(reference, collection.reference).boolean; static final _clear = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Set__clear") .asFunction)>(); /// from: public abstract void clear() void clear() => _clear(reference).check(); static final _equals1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("Set__equals1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public abstract boolean equals(java.lang.Object object) bool equals1(jni.JObject object) => _equals1(reference, object.reference).boolean; static final _hashCode1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Set__hashCode1") .asFunction)>(); /// from: public abstract int hashCode() int hashCode1() => _hashCode1(reference).integer; static final _spliterator = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("Set__spliterator") .asFunction)>(); /// from: public java.util.Spliterator spliterator() /// The returned object must be deleted after use, by calling the `delete` method. jni.JObject spliterator() => const jni.JObjectType().fromRef(_spliterator(reference).object); static final _of = jniLookup>("Set__of") .asFunction(); /// from: static public java.util.Set of() /// The returned object must be deleted after use, by calling the `delete` method. static Set of(jni.JObjType $E) => $SetType($E).fromRef(_of().object); static final _of1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Set__of1") .asFunction)>(); /// from: static public java.util.Set of(E object) /// The returned object must be deleted after use, by calling the `delete` method. static Set of1(jni.JObjType $E, E object) => $SetType($E).fromRef(_of1(object.reference).object); static final _of2 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>>("Set__of2") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: static public java.util.Set of(E object, E object1) /// The returned object must be deleted after use, by calling the `delete` method. static Set of2( jni.JObjType $E, E object, E object1) => $SetType($E).fromRef(_of2(object.reference, object1.reference).object); static final _of3 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Set__of3") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: static public java.util.Set of(E object, E object1, E object2) /// The returned object must be deleted after use, by calling the `delete` method. static Set of3( jni.JObjType $E, E object, E object1, E object2) => $SetType($E).fromRef( _of3(object.reference, object1.reference, object2.reference).object); static final _of4 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Set__of4") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: static public java.util.Set of(E object, E object1, E object2, E object3) /// The returned object must be deleted after use, by calling the `delete` method. static Set of4( jni.JObjType $E, E object, E object1, E object2, E object3) => $SetType($E).fromRef(_of4(object.reference, object1.reference, object2.reference, object3.reference) .object); static final _of5 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Set__of5") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: static public java.util.Set of(E object, E object1, E object2, E object3, E object4) /// The returned object must be deleted after use, by calling the `delete` method. static Set of5(jni.JObjType $E, E object, E object1, E object2, E object3, E object4) => $SetType($E).fromRef(_of5(object.reference, object1.reference, object2.reference, object3.reference, object4.reference) .object); static final _of6 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Set__of6") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: static public java.util.Set of(E object, E object1, E object2, E object3, E object4, E object5) /// The returned object must be deleted after use, by calling the `delete` method. static Set of6(jni.JObjType $E, E object, E object1, E object2, E object3, E object4, E object5) => $SetType($E).fromRef(_of6( object.reference, object1.reference, object2.reference, object3.reference, object4.reference, object5.reference) .object); static final _of7 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Set__of7") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: static public java.util.Set of(E object, E object1, E object2, E object3, E object4, E object5, E object6) /// The returned object must be deleted after use, by calling the `delete` method. static Set of7(jni.JObjType $E, E object, E object1, E object2, E object3, E object4, E object5, E object6) => $SetType($E).fromRef(_of7( object.reference, object1.reference, object2.reference, object3.reference, object4.reference, object5.reference, object6.reference) .object); static final _of8 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Set__of8") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: static public java.util.Set of(E object, E object1, E object2, E object3, E object4, E object5, E object6, E object7) /// The returned object must be deleted after use, by calling the `delete` method. static Set of8( jni.JObjType $E, E object, E object1, E object2, E object3, E object4, E object5, E object6, E object7) => $SetType($E).fromRef(_of8( object.reference, object1.reference, object2.reference, object3.reference, object4.reference, object5.reference, object6.reference, object7.reference) .object); static final _of9 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Set__of9") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: static public java.util.Set of(E object, E object1, E object2, E object3, E object4, E object5, E object6, E object7, E object8) /// The returned object must be deleted after use, by calling the `delete` method. static Set of9( jni.JObjType $E, E object, E object1, E object2, E object3, E object4, E object5, E object6, E object7, E object8) => $SetType($E).fromRef(_of9( object.reference, object1.reference, object2.reference, object3.reference, object4.reference, object5.reference, object6.reference, object7.reference, object8.reference) .object); static final _of10 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("Set__of10") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: static public java.util.Set of(E object, E object1, E object2, E object3, E object4, E object5, E object6, E object7, E object8, E object9) /// The returned object must be deleted after use, by calling the `delete` method. static Set of10( jni.JObjType $E, E object, E object1, E object2, E object3, E object4, E object5, E object6, E object7, E object8, E object9) => $SetType($E).fromRef(_of10( object.reference, object1.reference, object2.reference, object3.reference, object4.reference, object5.reference, object6.reference, object7.reference, object8.reference, object9.reference) .object); static final _of11 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Set__of11") .asFunction)>(); /// from: static public java.util.Set of(java.lang.Object[] objects) /// The returned object must be deleted after use, by calling the `delete` method. static Set of11( jni.JObjType $E, jni.JArray objects) => $SetType($E).fromRef(_of11(objects.reference).object); static final _copyOf = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer)>>("Set__copyOf") .asFunction)>(); /// from: static public java.util.Set copyOf(java.util.Collection collection) /// The returned object must be deleted after use, by calling the `delete` method. static Set copyOf( jni.JObjType $E, jni.JObject collection) => $SetType($E).fromRef(_copyOf(collection.reference).object); } class $SetType extends jni.JObjType> { final jni.JObjType $E; const $SetType( this.$E, ); @override String get signature => r"Ljava/util/Set;"; @override Set fromRef(jni.JObjectPtr ref) => Set.fromRef($E, ref); } extension $SetArray on jni.JArray> { Set operator [](int index) { return (elementType as $SetType) .fromRef(elementAt(index, jni.JniCallType.objectType).object); } void operator []=(int index, Set value) { (this as jni.JArray)[index] = value; } } /// from: androidx.health.connect.client.request.AggregateGroupByDurationRequest class AggregateGroupByDurationRequest extends jni.JObject { late final jni.JObjType? _$type; @override jni.JObjType get $type => _$type ??= type; AggregateGroupByDurationRequest.fromRef( jni.JObjectPtr ref, ) : super.fromRef(ref); /// The type which includes information such as the signature of this class. static const type = $AggregateGroupByDurationRequestType(); static final _ctor = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>( "AggregateGroupByDurationRequest__ctor") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void (java.util.Set set, androidx.health.connect.client.time.TimeRangeFilter timeRangeFilter, java.time.Duration duration, java.util.Set set1) AggregateGroupByDurationRequest( Set> set0, TimeRangeFilter timeRangeFilter, jni.JObject duration, Set set1) : super.fromRef(_ctor(set0.reference, timeRangeFilter.reference, duration.reference, set1.reference) .object); static final _ctor1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer)>>( "AggregateGroupByDurationRequest__ctor1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, int, ffi.Pointer)>(); /// from: public void (java.util.Set set, androidx.health.connect.client.time.TimeRangeFilter timeRangeFilter, java.time.Duration duration, java.util.Set set1, int i, kotlin.jvm.internal.DefaultConstructorMarker defaultConstructorMarker) AggregateGroupByDurationRequest.ctor1( Set set0, TimeRangeFilter timeRangeFilter, jni.JObject duration, Set set1, int i, jni.JObject defaultConstructorMarker) : super.fromRef(_ctor1( set0.reference, timeRangeFilter.reference, duration.reference, set1.reference, i, defaultConstructorMarker.reference) .object); } class $AggregateGroupByDurationRequestType extends jni.JObjType { const $AggregateGroupByDurationRequestType(); @override String get signature => r"Landroidx/health/connect/client/request/AggregateGroupByDurationRequest;"; @override AggregateGroupByDurationRequest fromRef(jni.JObjectPtr ref) => AggregateGroupByDurationRequest.fromRef(ref); } extension $AggregateGroupByDurationRequestArray on jni.JArray { AggregateGroupByDurationRequest operator [](int index) { return (elementType as $AggregateGroupByDurationRequestType) .fromRef(elementAt(index, jni.JniCallType.objectType).object); } void operator []=(int index, AggregateGroupByDurationRequest value) { (this as jni.JArray)[index] = value; } } /// from: androidx.health.connect.client.request.AggregateGroupByPeriodRequest class AggregateGroupByPeriodRequest extends jni.JObject { late final jni.JObjType? _$type; @override jni.JObjType get $type => _$type ??= type; AggregateGroupByPeriodRequest.fromRef( jni.JObjectPtr ref, ) : super.fromRef(ref); /// The type which includes information such as the signature of this class. static const type = $AggregateGroupByPeriodRequestType(); static final _ctor = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>( "AggregateGroupByPeriodRequest__ctor") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void (java.util.Set set, androidx.health.connect.client.time.TimeRangeFilter timeRangeFilter, java.time.Period period, java.util.Set set1) AggregateGroupByPeriodRequest( Set> set0, TimeRangeFilter timeRangeFilter, jni.JObject period, Set set1) : super.fromRef(_ctor(set0.reference, timeRangeFilter.reference, period.reference, set1.reference) .object); static final _ctor1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer)>>( "AggregateGroupByPeriodRequest__ctor1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer, int, ffi.Pointer)>(); /// from: public void (java.util.Set set, androidx.health.connect.client.time.TimeRangeFilter timeRangeFilter, java.time.Period period, java.util.Set set1, int i, kotlin.jvm.internal.DefaultConstructorMarker defaultConstructorMarker) AggregateGroupByPeriodRequest.ctor1( Set set0, TimeRangeFilter timeRangeFilter, jni.JObject period, Set set1, int i, jni.JObject defaultConstructorMarker) : super.fromRef(_ctor1( set0.reference, timeRangeFilter.reference, period.reference, set1.reference, i, defaultConstructorMarker.reference) .object); } class $AggregateGroupByPeriodRequestType extends jni.JObjType { const $AggregateGroupByPeriodRequestType(); @override String get signature => r"Landroidx/health/connect/client/request/AggregateGroupByPeriodRequest;"; @override AggregateGroupByPeriodRequest fromRef(jni.JObjectPtr ref) => AggregateGroupByPeriodRequest.fromRef(ref); } extension $AggregateGroupByPeriodRequestArray on jni.JArray { AggregateGroupByPeriodRequest operator [](int index) { return (elementType as $AggregateGroupByPeriodRequestType) .fromRef(elementAt(index, jni.JniCallType.objectType).object); } void operator []=(int index, AggregateGroupByPeriodRequest value) { (this as jni.JArray)[index] = value; } } /// from: androidx.health.connect.client.request.AggregateRequest class AggregateRequest extends jni.JObject { late final jni.JObjType? _$type; @override jni.JObjType get $type => _$type ??= type; AggregateRequest.fromRef( jni.JObjectPtr ref, ) : super.fromRef(ref); /// The type which includes information such as the signature of this class. static const type = $AggregateRequestType(); static final _ctor = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("AggregateRequest__ctor") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void (java.util.Set set, androidx.health.connect.client.time.TimeRangeFilter timeRangeFilter, java.util.Set set1) AggregateRequest(Set> set0, TimeRangeFilter timeRangeFilter, Set set1) : super.fromRef( _ctor(set0.reference, timeRangeFilter.reference, set1.reference) .object); static final _ctor1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer)>>("AggregateRequest__ctor1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, int, ffi.Pointer)>(); /// from: public void (java.util.Set set, androidx.health.connect.client.time.TimeRangeFilter timeRangeFilter, java.util.Set set1, int i, kotlin.jvm.internal.DefaultConstructorMarker defaultConstructorMarker) AggregateRequest.ctor1(Set set0, TimeRangeFilter timeRangeFilter, Set set1, int i, jni.JObject defaultConstructorMarker) : super.fromRef(_ctor1(set0.reference, timeRangeFilter.reference, set1.reference, i, defaultConstructorMarker.reference) .object); } class $AggregateRequestType extends jni.JObjType { const $AggregateRequestType(); @override String get signature => r"Landroidx/health/connect/client/request/AggregateRequest;"; @override AggregateRequest fromRef(jni.JObjectPtr ref) => AggregateRequest.fromRef(ref); } extension $AggregateRequestArray on jni.JArray { AggregateRequest operator [](int index) { return (elementType as $AggregateRequestType) .fromRef(elementAt(index, jni.JniCallType.objectType).object); } void operator []=(int index, AggregateRequest value) { (this as jni.JArray)[index] = value; } } /// from: androidx.health.connect.client.request.ChangesTokenRequest class ChangesTokenRequest extends jni.JObject { late final jni.JObjType? _$type; @override jni.JObjType get $type => _$type ??= type; ChangesTokenRequest.fromRef( jni.JObjectPtr ref, ) : super.fromRef(ref); /// The type which includes information such as the signature of this class. static const type = $ChangesTokenRequestType(); static final _ctor = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("ChangesTokenRequest__ctor") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public void (java.util.Set set, java.util.Set set1) ChangesTokenRequest(Set set0, Set set1) : super.fromRef(_ctor(set0.reference, set1.reference).object); static final _ctor1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Int32, ffi.Pointer)>>("ChangesTokenRequest__ctor1") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, int, ffi.Pointer)>(); /// from: public void (java.util.Set set, java.util.Set set1, int i, kotlin.jvm.internal.DefaultConstructorMarker defaultConstructorMarker) ChangesTokenRequest.ctor1(Set set0, Set set1, int i, jni.JObject defaultConstructorMarker) : super.fromRef(_ctor1(set0.reference, set1.reference, i, defaultConstructorMarker.reference) .object); } class $ChangesTokenRequestType extends jni.JObjType { const $ChangesTokenRequestType(); @override String get signature => r"Landroidx/health/connect/client/request/ChangesTokenRequest;"; @override ChangesTokenRequest fromRef(jni.JObjectPtr ref) => ChangesTokenRequest.fromRef(ref); } extension $ChangesTokenRequestArray on jni.JArray { ChangesTokenRequest operator [](int index) { return (elementType as $ChangesTokenRequestType) .fromRef(elementAt(index, jni.JniCallType.objectType).object); } void operator []=(int index, ChangesTokenRequest value) { (this as jni.JArray)[index] = value; } } /// from: androidx.health.connect.client.request.ReadRecordsRequest class ReadRecordsRequest extends jni.JObject { late final jni.JObjType? _$type; @override jni.JObjType get $type => _$type ??= type( $T, ); final jni.JObjType $T; ReadRecordsRequest.fromRef( this.$T, jni.JObjectPtr ref, ) : super.fromRef(ref); /// The type which includes information such as the signature of this class. static $ReadRecordsRequestType type( jni.JObjType $T, ) { return $ReadRecordsRequestType( $T, ); } static final _ctor = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Uint8, ffi.Int32, ffi.Pointer)>>("ReadRecordsRequest__ctor") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, int, int, ffi.Pointer)>(); /// from: public void (kotlin.reflect.KClass kClass, androidx.health.connect.client.time.TimeRangeFilter timeRangeFilter, java.util.Set set, boolean z, int i, java.lang.String string) ReadRecordsRequest( this.$T, jni.JObject kClass, TimeRangeFilter timeRangeFilter, Set set0, bool z, int i, jni.JString string) : super.fromRef(_ctor(kClass.reference, timeRangeFilter.reference, set0.reference, z ? 1 : 0, i, string.reference) .object); static final _ctor1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Uint8, ffi.Int32, ffi.Pointer, ffi.Int32, ffi.Pointer)>>("ReadRecordsRequest__ctor1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, int, int, ffi.Pointer, int, ffi.Pointer)>(); /// from: public void (kotlin.reflect.KClass kClass, androidx.health.connect.client.time.TimeRangeFilter timeRangeFilter, java.util.Set set, boolean z, int i, java.lang.String string, int i1, kotlin.jvm.internal.DefaultConstructorMarker defaultConstructorMarker) ReadRecordsRequest.ctor1( this.$T, jni.JObject kClass, TimeRangeFilter timeRangeFilter, Set set0, bool z, int i, jni.JString string, int i1, jni.JObject defaultConstructorMarker) : super.fromRef(_ctor1( kClass.reference, timeRangeFilter.reference, set0.reference, z ? 1 : 0, i, string.reference, i1, defaultConstructorMarker.reference) .object); static final _equals1 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("ReadRecordsRequest__equals1") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public boolean equals(java.lang.Object object) bool equals1(jni.JObject object) => _equals1(reference, object.reference).boolean; static final _hashCode1 = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("ReadRecordsRequest__hashCode1") .asFunction)>(); /// from: public int hashCode() int hashCode1() => _hashCode1(reference).integer; } class $ReadRecordsRequestType extends jni.JObjType> { final jni.JObjType $T; const $ReadRecordsRequestType( this.$T, ); @override String get signature => r"Landroidx/health/connect/client/request/ReadRecordsRequest;"; @override ReadRecordsRequest fromRef(jni.JObjectPtr ref) => ReadRecordsRequest.fromRef($T, ref); } extension $ReadRecordsRequestArray on jni.JArray> { ReadRecordsRequest operator [](int index) { return (elementType as $ReadRecordsRequestType) .fromRef(elementAt(index, jni.JniCallType.objectType).object); } void operator []=(int index, ReadRecordsRequest value) { (this as jni.JArray)[index] = value; } } /// from: androidx.health.connect.client.aggregate.AggregationResult class AggregationResult extends jni.JObject { late final jni.JObjType? _$type; @override jni.JObjType get $type => _$type ??= type; AggregationResult.fromRef( jni.JObjectPtr ref, ) : super.fromRef(ref); /// The type which includes information such as the signature of this class. static const type = $AggregationResultType(); static final _ctor = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("AggregationResult__ctor") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void (java.util.Map map, java.util.Map map1, java.util.Set set) AggregationResult(jni.JObject map, jni.JObject map1, Set set0) : super.fromRef( _ctor(map.reference, map1.reference, set0.reference).object); static final _getDataOrigins = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer)>>("AggregationResult__getDataOrigins") .asFunction)>(); /// from: public final java.util.Set getDataOrigins() /// The returned object must be deleted after use, by calling the `delete` method. Set getDataOrigins() => const $SetType(jni.JObjectType()) .fromRef(_getDataOrigins(reference).object); static final _hasMetric = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("AggregationResult__hasMetric") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public final boolean hasMetric(androidx.health.connect.client.aggregate.AggregateMetric aggregateMetric) bool hasMetric(AggregateMetric aggregateMetric) => _hasMetric(reference, aggregateMetric.reference).boolean; static final _contains = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("AggregationResult__contains") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public final boolean contains(androidx.health.connect.client.aggregate.AggregateMetric aggregateMetric) bool contains(AggregateMetric aggregateMetric) => _contains(reference, aggregateMetric.reference).boolean; static final _getMetric = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("AggregationResult__getMetric") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public final T getMetric(androidx.health.connect.client.aggregate.AggregateMetric aggregateMetric) /// The returned object must be deleted after use, by calling the `delete` method. T getMetric( jni.JObjType $T, AggregateMetric aggregateMetric) => $T.fromRef(_getMetric(reference, aggregateMetric.reference).object); static final _get0 = jniLookup< ffi.NativeFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer)>>("AggregationResult__get0") .asFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer)>(); /// from: public final T get(androidx.health.connect.client.aggregate.AggregateMetric aggregateMetric) /// The returned object must be deleted after use, by calling the `delete` method. T get0( jni.JObjType $T, AggregateMetric aggregateMetric) => $T.fromRef(_get0(reference, aggregateMetric.reference).object); } class $AggregationResultType extends jni.JObjType { const $AggregationResultType(); @override String get signature => r"Landroidx/health/connect/client/aggregate/AggregationResult;"; @override AggregationResult fromRef(jni.JObjectPtr ref) => AggregationResult.fromRef(ref); } extension $AggregationResultArray on jni.JArray { AggregationResult operator [](int index) { return (elementType as $AggregationResultType) .fromRef(elementAt(index, jni.JniCallType.objectType).object); } void operator []=(int index, AggregationResult value) { (this as jni.JArray)[index] = value; } } /// from: androidx.health.connect.client.aggregate.AggregateMetric class AggregateMetric extends jni.JObject { late final jni.JObjType? _$type; @override jni.JObjType get $type => _$type ??= type( $T, ); final jni.JObjType $T; AggregateMetric.fromRef( this.$T, jni.JObjectPtr ref, ) : super.fromRef(ref); /// The type which includes information such as the signature of this class. static $AggregateMetricType type( jni.JObjType $T, ) { return $AggregateMetricType( $T, ); } static final _get_Companion = jniLookup>( "get_AggregateMetric__Companion") .asFunction(); /// from: static public final androidx.health.connect.client.aggregate.AggregateMetric$Companion Companion /// The returned object must be deleted after use, by calling the `delete` method. static jni.JObject get Companion => const jni.JObjectType().fromRef(_get_Companion().object); static final _ctor = jniLookup< ffi.NativeFunction< jni.JniResult Function( ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>>("AggregateMetric__ctor") .asFunction< jni.JniResult Function(ffi.Pointer, ffi.Pointer, ffi.Pointer, ffi.Pointer)>(); /// from: public void (androidx.health.connect.client.aggregate.AggregateMetric$Converter converter, java.lang.String string, androidx.health.connect.client.aggregate.AggregateMetric$AggregationType aggregationType, java.lang.String string1) AggregateMetric(this.$T, jni.JObject converter, jni.JString string, jni.JObject aggregationType, jni.JString string1) : super.fromRef(_ctor(converter.reference, string.reference, aggregationType.reference, string1.reference) .object); } class $AggregateMetricType extends jni.JObjType> { final jni.JObjType $T; const $AggregateMetricType( this.$T, ); @override String get signature => r"Landroidx/health/connect/client/aggregate/AggregateMetric;"; @override AggregateMetric fromRef(jni.JObjectPtr ref) => AggregateMetric.fromRef($T, ref); } extension $AggregateMetricArray on jni.JArray> { AggregateMetric operator [](int index) { return (elementType as $AggregateMetricType) .fromRef(elementAt(index, jni.JniCallType.objectType).object); } void operator []=(int index, AggregateMetric value) { (this as jni.JArray)[index] = value; } }