chore: dart format

This commit is contained in:
Felix Angelov
2023-12-20 16:14:17 -06:00
parent a70fe54668
commit 71ab252ab9
@@ -295,9 +295,8 @@ class UpdaterBindings {
}
late final _callocPtr = _lookup<
ffi
.NativeFunction<ffi.Pointer<ffi.Void> Function(ffi.Size, ffi.Size)>>(
'calloc');
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(ffi.Size, ffi.Size)>>('calloc');
late final _calloc =
_callocPtr.asFunction<ffi.Pointer<ffi.Void> Function(int, int)>();
@@ -357,9 +356,8 @@ class UpdaterBindings {
}
late final _aligned_allocPtr = _lookup<
ffi
.NativeFunction<ffi.Pointer<ffi.Void> Function(ffi.Size, ffi.Size)>>(
'aligned_alloc');
ffi.NativeFunction<
ffi.Pointer<ffi.Void> Function(ffi.Size, ffi.Size)>>('aligned_alloc');
late final _aligned_alloc =
_aligned_allocPtr.asFunction<ffi.Pointer<ffi.Void> Function(int, int)>();
@@ -616,9 +614,8 @@ class UpdaterBindings {
}
late final _mblenPtr = _lookup<
ffi
.NativeFunction<ffi.Int Function(ffi.Pointer<ffi.Char>, ffi.Size)>>(
'mblen');
ffi.NativeFunction<
ffi.Int Function(ffi.Pointer<ffi.Char>, ffi.Size)>>('mblen');
late final _mblen =
_mblenPtr.asFunction<int Function(ffi.Pointer<ffi.Char>, int)>();
@@ -876,9 +873,8 @@ class UpdaterBindings {
}
late final _wctombPtr = _lookup<
ffi
.NativeFunction<ffi.Int Function(ffi.Pointer<ffi.Char>, ffi.WChar)>>(
'wctomb');
ffi.NativeFunction<
ffi.Int Function(ffi.Pointer<ffi.Char>, ffi.WChar)>>('wctomb');
late final _wctomb =
_wctombPtr.asFunction<int Function(ffi.Pointer<ffi.Char>, int)>();
@@ -946,9 +942,8 @@ class UpdaterBindings {
}
late final _erand48Ptr = _lookup<
ffi
.NativeFunction<ffi.Double Function(ffi.Pointer<ffi.UnsignedShort>)>>(
'erand48');
ffi.NativeFunction<
ffi.Double Function(ffi.Pointer<ffi.UnsignedShort>)>>('erand48');
late final _erand48 =
_erand48Ptr.asFunction<double Function(ffi.Pointer<ffi.UnsignedShort>)>();
@@ -1057,9 +1052,8 @@ class UpdaterBindings {
}
late final _jrand48Ptr = _lookup<
ffi
.NativeFunction<ffi.Long Function(ffi.Pointer<ffi.UnsignedShort>)>>(
'jrand48');
ffi.NativeFunction<
ffi.Long Function(ffi.Pointer<ffi.UnsignedShort>)>>('jrand48');
late final _jrand48 =
_jrand48Ptr.asFunction<int Function(ffi.Pointer<ffi.UnsignedShort>)>();
@@ -1085,9 +1079,8 @@ class UpdaterBindings {
}
late final _lcong48Ptr = _lookup<
ffi
.NativeFunction<ffi.Void Function(ffi.Pointer<ffi.UnsignedShort>)>>(
'lcong48');
ffi.NativeFunction<
ffi.Void Function(ffi.Pointer<ffi.UnsignedShort>)>>('lcong48');
late final _lcong48 =
_lcong48Ptr.asFunction<void Function(ffi.Pointer<ffi.UnsignedShort>)>();
@@ -1144,9 +1137,8 @@ class UpdaterBindings {
}
late final _nrand48Ptr = _lookup<
ffi
.NativeFunction<ffi.Long Function(ffi.Pointer<ffi.UnsignedShort>)>>(
'nrand48');
ffi.NativeFunction<
ffi.Long Function(ffi.Pointer<ffi.UnsignedShort>)>>('nrand48');
late final _nrand48 =
_nrand48Ptr.asFunction<int Function(ffi.Pointer<ffi.UnsignedShort>)>();
@@ -1685,9 +1677,8 @@ class UpdaterBindings {
}
late final _getloadavgPtr = _lookup<
ffi
.NativeFunction<ffi.Int Function(ffi.Pointer<ffi.Double>, ffi.Int)>>(
'getloadavg');
ffi.NativeFunction<
ffi.Int Function(ffi.Pointer<ffi.Double>, ffi.Int)>>('getloadavg');
late final _getloadavg =
_getloadavgPtr.asFunction<int Function(ffi.Pointer<ffi.Double>, int)>();