$allocate static method

Pointer<rpcent> $allocate(
  1. Allocator $allocator, {
  2. required Pointer<Char> r_name,
  3. required Pointer<Pointer<Char>> r_aliases,
  4. required int r_number,
})

Implementation

static ffi.Pointer<rpcent> $allocate(
ffi.Allocator $allocator, {
required ffi.Pointer<ffi.Char> r_name,
required ffi.Pointer<ffi.Pointer<ffi.Char>> r_aliases,
required int r_number,
}) => $allocator<rpcent>()
..ref.r_name = r_name
..ref.r_aliases = r_aliases
..ref.r_number = r_number;