Merge tag 'go1.19' into HEAD
Change-Id: I526b2588d7e42eea5e245f4ed5177d4eb0c81135
diff --git a/BUILD.gn b/BUILD.gn
new file mode 100644
index 0000000..281f84c
--- /dev/null
+++ b/BUILD.gn
@@ -0,0 +1,238 @@
+# Copyright 2016 The Fuchsia Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//build/components.gni")
+import("//build/config/clang/clang.gni")
+import("//build/config/sysroot.gni")
+import("//build/go/go_test.gni")
+import("//build/host.gni")
+
+if (is_host && current_toolchain == toolchain_variant.base) {
+ _go_root = "$host_tools_dir/goroot"
+
+ compiled_action("makeroot") {
+ visibility = [ ":makefuchsia" ]
+
+ depfile = "$target_gen_dir/$target_name.d"
+ inputs = [
+ ".git/HEAD",
+ ".git/index",
+ ".gitignore",
+ ]
+ _output = "$target_gen_dir/$target_name.stamp"
+ outputs = [ _output ]
+
+ tool = "makeroot"
+ args = [
+ "--source-goroot",
+ rebase_path(".", root_build_dir),
+ "--target-goroot",
+ rebase_path(_go_root, root_build_dir),
+
+ "--depfile",
+ rebase_path(depfile, root_build_dir),
+ "--stamp-file",
+ rebase_path(_output, root_build_dir),
+ ]
+ }
+
+ compiled_action("makefuchsia") {
+ visibility = [ ":go_runtime" ]
+ deps = [ ":makeroot" ]
+
+ depfile = "$target_gen_dir/$target_name.d"
+ _output = "$target_gen_dir/$target_name.stamp"
+ outputs = [ _output ]
+
+ tool = "makefuchsia"
+ args = [
+ "--cc",
+ rebase_path("${clang_prefix}/clang", root_build_dir),
+ "--cxx",
+ rebase_path("${clang_prefix}/clang++", root_build_dir),
+ "--gocache",
+ rebase_path(gocache_dir, root_build_dir),
+ "--goroot",
+ rebase_path(_go_root, root_build_dir),
+ "--goroot-bootstrap",
+ rebase_path("//prebuilt/third_party/go/${host_platform}", root_build_dir),
+ "--sysroot",
+ rebase_path(sysroot, root_build_dir),
+
+ "--depfile",
+ rebase_path(depfile, root_build_dir),
+ "--stamp-file",
+ rebase_path(_output, root_build_dir),
+ ]
+ }
+}
+
+group("go_runtime") {
+ if (is_host) {
+ public_deps = [ ":makefuchsia(${toolchain_variant.base})" ]
+ } else {
+ public_deps = [ ":$target_name(${host_toolchain})" ]
+ }
+}
+
+go_test("go_exec_test") {
+ gopackages = [ "os/exec" ]
+}
+
+go_test("go_net_test") {
+ gopackages = [ "net" ]
+}
+
+go_test("go_os_test") {
+ gopackages = [ "os" ]
+}
+
+go_test("go_pprof_test") {
+ gopackages = [ "runtime/pprof" ]
+}
+
+go_test("go_zx_test") {
+ gopackages = [ "syscall/zx" ]
+}
+
+go_test("go_zxwait_test") {
+ gopackages = [ "syscall/zx/zxwait" ]
+}
+
+fuchsia_component("go-exec-test") {
+ testonly = true
+ manifest = "meta/go_exec_test.cml"
+ deps = [
+ ":go_exec_test",
+ "//third_party/sbase:cat",
+ "//third_party/sbase:echo",
+ ]
+}
+
+fuchsia_component("go-net-test") {
+ testonly = true
+ manifest = "meta/go_net_test.cml"
+ deps = [ ":go_net_test" ]
+}
+
+fuchsia_component("go-os-test") {
+ testonly = true
+ manifest = "meta/go_os_test.cml"
+ deps = [ ":go_os_test" ]
+}
+
+fuchsia_component("go-pprof-test") {
+ testonly = true
+ manifest = "meta/go_pprof_test.cml"
+ deps = [ ":go_pprof_test" ]
+}
+
+fuchsia_component("go-zx-test") {
+ testonly = true
+ manifest = "meta/go_zx_test.cml"
+ deps = [ ":go_zx_test" ]
+}
+
+fuchsia_component("go-zxwait-test") {
+ testonly = true
+ manifest = "meta/go_zxwait_test.cml"
+ deps = [ ":go_zxwait_test" ]
+}
+
+fuchsia_test_package("go-stdlib-tests") {
+ test_components = [
+ ":go-exec-test",
+ ":go-net-test",
+ ":go-os-test",
+ ":go-pprof-test",
+ ":go-zx-test",
+ ":go-zxwait-test",
+ ]
+
+ deps = [
+ "//src/connectivity/network/netstack:component",
+ "//src/storage/testing:storage_driver_test_realm",
+ ]
+
+ test_specs = {
+ environments = [ emu_env ]
+ }
+}
+
+go_test("go_unsafevalue_test") {
+ gopackages = [ "syscall/zx/fidl/internal/unsafevalue" ]
+
+ # This runs both on target device and as a host test.
+ # In both cases, it needs to build a go toolchain rather than using a prebuilt because
+ # it is testing the fidl package, which is implemented in the toolcahin itself.
+ use_prebuilt_go = false
+}
+
+go_test("go_fidl_test") {
+ gopackages = [ "syscall/zx/fidl" ]
+}
+
+go_test("go_extended_fidl_test") {
+ # N.B. these tests are not in the fidl package to avoid having to rebuild the
+ # go toolchain while iterating on them.
+ gopackages = [ "syscall/zx/fidl/fidl_test" ]
+ # TODO(pascallouis): Currently, while we take a dependency, the output of
+ # this FIDL rule is not directly used, rather the generated bindings were
+ # copied and checked in.
+ #
+ # Not being able to depend on automated generation is due to where code is
+ # placed, and how this relates to the tree structure of the toolchain.
+ # Disabling while fidlgen table generation is pending.
+ # Use regen-fidl to generate this file.
+ # deps = [
+ # "src/syscall/zx/fidl/internal/bindingstest($go_toolchain)",
+ # ]
+}
+
+fuchsia_component("go-unsafevalue-test") {
+ testonly = true
+ manifest = "meta/go_unsafevalue_test.cml"
+ deps = [ ":go_unsafevalue_test" ]
+}
+
+fuchsia_component("go-fidl-test") {
+ testonly = true
+ manifest = "meta/go_fidl_test.cml"
+ deps = [ ":go_fidl_test" ]
+}
+
+fuchsia_component("go-extended-fidl-test") {
+ testonly = true
+ manifest = "meta/go_extended_fidl_test.cml"
+ deps = [ ":go_extended_fidl_test" ]
+}
+
+fuchsia_test_package("go-fidl-tests") {
+ test_components = [
+ ":go-unsafevalue-test",
+ ":go-extended-fidl-test",
+ ":go-fidl-test",
+ ]
+
+ test_specs = {
+ environments = [ emu_env ]
+ }
+}
+
+group("fidl-tests") {
+ testonly = true
+ deps = [
+ ":go-fidl-tests",
+ ":go_extended_fidl_test($host_toolchain)",
+ ":go_unsafevalue_test($host_toolchain)",
+ ]
+}
+
+group("tests") {
+ testonly = true
+ deps = [
+ ":fidl-tests",
+ ":go-stdlib-tests",
+ ]
+}
diff --git a/OWNERS b/OWNERS
new file mode 100644
index 0000000..be2231d
--- /dev/null
+++ b/OWNERS
@@ -0,0 +1,5 @@
+pascallouis@google.com
+maruel@google.com
+tamird@google.com
+
+# COMPONENT: Toolchain>Go
diff --git a/api/README b/api/README
index 1e52f7a..a5bc623 100644
--- a/api/README
+++ b/api/README
@@ -8,6 +8,10 @@
except.txt lists features that may disappear without breaking true
compatibility.
+fuchsia.txt lists Fuchsia specific features. This list can be regenerated with:
+
+fx exec ${FUCHSIA_DIR}/third_party/go/regen-api
+
Starting with go1.19.txt, each API feature line must end in "#nnnnn"
giving the GitHub issue number of the proposal issue that accepted
the new API. This helps with our end-of-cycle audit of new APIs.
diff --git a/api/fuchsia.txt b/api/fuchsia.txt
new file mode 100644
index 0000000..8ad44d0
--- /dev/null
+++ b/api/fuchsia.txt
@@ -0,0 +1,9978 @@
+pkg syscall/zx, const ChannelMaxMessageBytes = 65536
+pkg syscall/zx, const ChannelMaxMessageBytes ideal-int
+pkg syscall/zx, const ChannelMaxMessageHandles = 64
+pkg syscall/zx, const ChannelMaxMessageHandles ideal-int
+pkg syscall/zx, const ErrAccessDenied = -30
+pkg syscall/zx, const ErrAccessDenied Status
+pkg syscall/zx, const ErrAddressInUse = -72
+pkg syscall/zx, const ErrAddressInUse Status
+pkg syscall/zx, const ErrAddressUnreachable = -71
+pkg syscall/zx, const ErrAddressUnreachable Status
+pkg syscall/zx, const ErrAlreadyBound = -27
+pkg syscall/zx, const ErrAlreadyBound Status
+pkg syscall/zx, const ErrAlreadyExists = -26
+pkg syscall/zx, const ErrAlreadyExists Status
+pkg syscall/zx, const ErrBadHandle = -11
+pkg syscall/zx, const ErrBadHandle Status
+pkg syscall/zx, const ErrBadPath = -50
+pkg syscall/zx, const ErrBadPath Status
+pkg syscall/zx, const ErrBadState = -20
+pkg syscall/zx, const ErrBadState Status
+pkg syscall/zx, const ErrBadSyscall = -13
+pkg syscall/zx, const ErrBadSyscall Status
+pkg syscall/zx, const ErrBufferTooSmall = -15
+pkg syscall/zx, const ErrBufferTooSmall Status
+pkg syscall/zx, const ErrCallFailed = -5
+pkg syscall/zx, const ErrCallFailed Status
+pkg syscall/zx, const ErrCanceled = -23
+pkg syscall/zx, const ErrCanceled Status
+pkg syscall/zx, const ErrConnectionAborted = -76
+pkg syscall/zx, const ErrConnectionAborted Status
+pkg syscall/zx, const ErrConnectionRefused = -74
+pkg syscall/zx, const ErrConnectionRefused Status
+pkg syscall/zx, const ErrConnectionReset = -75
+pkg syscall/zx, const ErrConnectionReset Status
+pkg syscall/zx, const ErrFileBig = -53
+pkg syscall/zx, const ErrFileBig Status
+pkg syscall/zx, const ErrHandleClosed = -23
+pkg syscall/zx, const ErrHandleClosed Status
+pkg syscall/zx, const ErrIO = -40
+pkg syscall/zx, const ErrIO Status
+pkg syscall/zx, const ErrIODataIntegrity = -42
+pkg syscall/zx, const ErrIODataIntegrity Status
+pkg syscall/zx, const ErrIODataLoss = -43
+pkg syscall/zx, const ErrIODataLoss Status
+pkg syscall/zx, const ErrIONotPresent = -44
+pkg syscall/zx, const ErrIONotPresent Status
+pkg syscall/zx, const ErrIORefused = -41
+pkg syscall/zx, const ErrIORefused Status
+pkg syscall/zx, const ErrInternal = -1
+pkg syscall/zx, const ErrInternal Status
+pkg syscall/zx, const ErrInterruptedRetry = -6
+pkg syscall/zx, const ErrInterruptedRetry Status
+pkg syscall/zx, const ErrInvalidArgs = -10
+pkg syscall/zx, const ErrInvalidArgs Status
+pkg syscall/zx, const ErrNext = -61
+pkg syscall/zx, const ErrNext Status
+pkg syscall/zx, const ErrNoMemory = -4
+pkg syscall/zx, const ErrNoMemory Status
+pkg syscall/zx, const ErrNoResources = -3
+pkg syscall/zx, const ErrNoResources Status
+pkg syscall/zx, const ErrNoSpace = -54
+pkg syscall/zx, const ErrNoSpace Status
+pkg syscall/zx, const ErrNotConnected = -73
+pkg syscall/zx, const ErrNotConnected Status
+pkg syscall/zx, const ErrNotDir = -51
+pkg syscall/zx, const ErrNotDir Status
+pkg syscall/zx, const ErrNotEmpty = -55
+pkg syscall/zx, const ErrNotEmpty Status
+pkg syscall/zx, const ErrNotFile = -52
+pkg syscall/zx, const ErrNotFile Status
+pkg syscall/zx, const ErrNotFound = -25
+pkg syscall/zx, const ErrNotFound Status
+pkg syscall/zx, const ErrNotSupported = -2
+pkg syscall/zx, const ErrNotSupported Status
+pkg syscall/zx, const ErrOk = 0
+pkg syscall/zx, const ErrOk Status
+pkg syscall/zx, const ErrOutOfRange = -14
+pkg syscall/zx, const ErrOutOfRange Status
+pkg syscall/zx, const ErrPeerClosed = -24
+pkg syscall/zx, const ErrPeerClosed Status
+pkg syscall/zx, const ErrProtocolNotSupported = -70
+pkg syscall/zx, const ErrProtocolNotSupported Status
+pkg syscall/zx, const ErrRemoteClosed = -24
+pkg syscall/zx, const ErrRemoteClosed Status
+pkg syscall/zx, const ErrShouldWait = -22
+pkg syscall/zx, const ErrShouldWait Status
+pkg syscall/zx, const ErrStop = -60
+pkg syscall/zx, const ErrStop Status
+pkg syscall/zx, const ErrTimedOut = -21
+pkg syscall/zx, const ErrTimedOut Status
+pkg syscall/zx, const ErrUnavailable = -28
+pkg syscall/zx, const ErrUnavailable Status
+pkg syscall/zx, const ErrWrongType = -12
+pkg syscall/zx, const ErrWrongType Status
+pkg syscall/zx, const HANDLE_INVALID = 0
+pkg syscall/zx, const HANDLE_INVALID Handle
+pkg syscall/zx, const HandleInvalid = 0
+pkg syscall/zx, const HandleInvalid Handle
+pkg syscall/zx, const HandleOpDuplicate = 1
+pkg syscall/zx, const HandleOpDuplicate HandleOp
+pkg syscall/zx, const HandleOpMove = 0
+pkg syscall/zx, const HandleOpMove HandleOp
+pkg syscall/zx, const HandleSize = 4
+pkg syscall/zx, const HandleSize uint64
+pkg syscall/zx, const ObjectInfoBTI = 20
+pkg syscall/zx, const ObjectInfoBTI ideal-int
+pkg syscall/zx, const ObjectInfoCpUStats = 16
+pkg syscall/zx, const ObjectInfoCpUStats ideal-int
+pkg syscall/zx, const ObjectInfoHandleBasic = 2
+pkg syscall/zx, const ObjectInfoHandleBasic ideal-int
+pkg syscall/zx, const ObjectInfoHandleCount = 19
+pkg syscall/zx, const ObjectInfoHandleCount ideal-int
+pkg syscall/zx, const ObjectInfoHandleNone = 0
+pkg syscall/zx, const ObjectInfoHandleNone ideal-int
+pkg syscall/zx, const ObjectInfoHandleValid = 1
+pkg syscall/zx, const ObjectInfoHandleValid ideal-int
+pkg syscall/zx, const ObjectInfoJobChildren = 8
+pkg syscall/zx, const ObjectInfoJobChildren ideal-int
+pkg syscall/zx, const ObjectInfoJobProcesses = 9
+pkg syscall/zx, const ObjectInfoJobProcesses ideal-int
+pkg syscall/zx, const ObjectInfoKMemStats = 17
+pkg syscall/zx, const ObjectInfoKMemStats ideal-int
+pkg syscall/zx, const ObjectInfoProcess = 268435459
+pkg syscall/zx, const ObjectInfoProcess ideal-int
+pkg syscall/zx, const ObjectInfoProcessHandleStats = 21
+pkg syscall/zx, const ObjectInfoProcessHandleStats ideal-int
+pkg syscall/zx, const ObjectInfoProcessMaps = 13
+pkg syscall/zx, const ObjectInfoProcessMaps ideal-int
+pkg syscall/zx, const ObjectInfoProcessThreads = 4
+pkg syscall/zx, const ObjectInfoProcessThreads ideal-int
+pkg syscall/zx, const ObjectInfoProcessVMOs = 268435470
+pkg syscall/zx, const ObjectInfoProcessVMOs ideal-int
+pkg syscall/zx, const ObjectInfoProcessVMOs_V1 = 14
+pkg syscall/zx, const ObjectInfoProcessVMOs_V1 ideal-int
+pkg syscall/zx, const ObjectInfoResource = 18
+pkg syscall/zx, const ObjectInfoResource ideal-int
+pkg syscall/zx, const ObjectInfoResourceChildren = 5
+pkg syscall/zx, const ObjectInfoResourceChildren ideal-int
+pkg syscall/zx, const ObjectInfoResourceRecords = 6
+pkg syscall/zx, const ObjectInfoResourceRecords ideal-int
+pkg syscall/zx, const ObjectInfoSocket = 22
+pkg syscall/zx, const ObjectInfoSocket ideal-int
+pkg syscall/zx, const ObjectInfoTaskStats = 12
+pkg syscall/zx, const ObjectInfoTaskStats ideal-int
+pkg syscall/zx, const ObjectInfoThread = 10
+pkg syscall/zx, const ObjectInfoThread ideal-int
+pkg syscall/zx, const ObjectInfoThreadExceptionReport = 11
+pkg syscall/zx, const ObjectInfoThreadExceptionReport ideal-int
+pkg syscall/zx, const ObjectInfoThreadStats = 15
+pkg syscall/zx, const ObjectInfoThreadStats ideal-int
+pkg syscall/zx, const ObjectInfoVMAR = 7
+pkg syscall/zx, const ObjectInfoVMAR ideal-int
+pkg syscall/zx, const ObjectInfoVMO = 268435479
+pkg syscall/zx, const ObjectInfoVMO ideal-int
+pkg syscall/zx, const ObjectInfoVMO_V1 = 23
+pkg syscall/zx, const ObjectInfoVMO_V1 ideal-int
+pkg syscall/zx, const ObjectTypeBti = 24
+pkg syscall/zx, const ObjectTypeBti ObjectType
+pkg syscall/zx, const ObjectTypeChannel = 4
+pkg syscall/zx, const ObjectTypeChannel ObjectType
+pkg syscall/zx, const ObjectTypeEvent = 5
+pkg syscall/zx, const ObjectTypeEvent ObjectType
+pkg syscall/zx, const ObjectTypeEventPair = 16
+pkg syscall/zx, const ObjectTypeEventPair ObjectType
+pkg syscall/zx, const ObjectTypeFifo = 19
+pkg syscall/zx, const ObjectTypeFifo ObjectType
+pkg syscall/zx, const ObjectTypeGuest = 20
+pkg syscall/zx, const ObjectTypeGuest ObjectType
+pkg syscall/zx, const ObjectTypeInterrupt = 9
+pkg syscall/zx, const ObjectTypeInterrupt ObjectType
+pkg syscall/zx, const ObjectTypeIommu = 23
+pkg syscall/zx, const ObjectTypeIommu ObjectType
+pkg syscall/zx, const ObjectTypeJob = 17
+pkg syscall/zx, const ObjectTypeJob ObjectType
+pkg syscall/zx, const ObjectTypeLog = 12
+pkg syscall/zx, const ObjectTypeLog ObjectType
+pkg syscall/zx, const ObjectTypeNone = 0
+pkg syscall/zx, const ObjectTypeNone ObjectType
+pkg syscall/zx, const ObjectTypePager = 28
+pkg syscall/zx, const ObjectTypePager ObjectType
+pkg syscall/zx, const ObjectTypePciDevice = 11
+pkg syscall/zx, const ObjectTypePciDevice ObjectType
+pkg syscall/zx, const ObjectTypePmt = 26
+pkg syscall/zx, const ObjectTypePmt ObjectType
+pkg syscall/zx, const ObjectTypePort = 6
+pkg syscall/zx, const ObjectTypePort ObjectType
+pkg syscall/zx, const ObjectTypeProcess = 1
+pkg syscall/zx, const ObjectTypeProcess ObjectType
+pkg syscall/zx, const ObjectTypeProfile = 25
+pkg syscall/zx, const ObjectTypeProfile ObjectType
+pkg syscall/zx, const ObjectTypeResource = 15
+pkg syscall/zx, const ObjectTypeResource ObjectType
+pkg syscall/zx, const ObjectTypeSocket = 14
+pkg syscall/zx, const ObjectTypeSocket ObjectType
+pkg syscall/zx, const ObjectTypeSuspendToken = 27
+pkg syscall/zx, const ObjectTypeSuspendToken ObjectType
+pkg syscall/zx, const ObjectTypeThread = 2
+pkg syscall/zx, const ObjectTypeThread ObjectType
+pkg syscall/zx, const ObjectTypeTimer = 22
+pkg syscall/zx, const ObjectTypeTimer ObjectType
+pkg syscall/zx, const ObjectTypeVcpu = 21
+pkg syscall/zx, const ObjectTypeVcpu ObjectType
+pkg syscall/zx, const ObjectTypeVmar = 18
+pkg syscall/zx, const ObjectTypeVmar ObjectType
+pkg syscall/zx, const ObjectTypeVmo = 3
+pkg syscall/zx, const ObjectTypeVmo ObjectType
+pkg syscall/zx, const ProcessInfoFlagDebuggerAttached = 4
+pkg syscall/zx, const ProcessInfoFlagDebuggerAttached ideal-int
+pkg syscall/zx, const ProcessInfoFlagExited = 2
+pkg syscall/zx, const ProcessInfoFlagExited ideal-int
+pkg syscall/zx, const ProcessInfoFlagStarted = 1
+pkg syscall/zx, const ProcessInfoFlagStarted uint32
+pkg syscall/zx, const PropExceptionState = 16
+pkg syscall/zx, const PropExceptionState ideal-int
+pkg syscall/zx, const PropJobKillOnOom = 15
+pkg syscall/zx, const PropJobKillOnOom ideal-int
+pkg syscall/zx, const PropJobMaxHeight = 18
+pkg syscall/zx, const PropJobMaxHeight ideal-int
+pkg syscall/zx, const PropName = 3
+pkg syscall/zx, const PropName ideal-int
+pkg syscall/zx, const PropProcessBreakOnLoad = 7
+pkg syscall/zx, const PropProcessBreakOnLoad ideal-int
+pkg syscall/zx, const PropProcessDebugAddr = 5
+pkg syscall/zx, const PropProcessDebugAddr ideal-int
+pkg syscall/zx, const PropProcessHwTraceContextId = 8
+pkg syscall/zx, const PropProcessHwTraceContextId ideal-int
+pkg syscall/zx, const PropProcessVDSOBaseAddress = 6
+pkg syscall/zx, const PropProcessVDSOBaseAddress ideal-int
+pkg syscall/zx, const PropRegisterFS = 4
+pkg syscall/zx, const PropRegisterFS ideal-int
+pkg syscall/zx, const PropRegisterGS = 2
+pkg syscall/zx, const PropRegisterGS ideal-int
+pkg syscall/zx, const PropSocketRXThreshold = 12
+pkg syscall/zx, const PropSocketRXThreshold ideal-int
+pkg syscall/zx, const PropSocketTXThreshold = 13
+pkg syscall/zx, const PropSocketTXThreshold ideal-int
+pkg syscall/zx, const PropVmoContentSize = 17
+pkg syscall/zx, const PropVmoContentSize ideal-int
+pkg syscall/zx, const RightApplyPolicy = 524288
+pkg syscall/zx, const RightApplyPolicy Rights
+pkg syscall/zx, const RightDestroy = 512
+pkg syscall/zx, const RightDestroy Rights
+pkg syscall/zx, const RightDuplicate = 1
+pkg syscall/zx, const RightDuplicate Rights
+pkg syscall/zx, const RightEnumerate = 256
+pkg syscall/zx, const RightEnumerate Rights
+pkg syscall/zx, const RightExecute = 16
+pkg syscall/zx, const RightExecute Rights
+pkg syscall/zx, const RightGetPolicy = 1024
+pkg syscall/zx, const RightGetPolicy Rights
+pkg syscall/zx, const RightGetProperty = 64
+pkg syscall/zx, const RightGetProperty Rights
+pkg syscall/zx, const RightInspect = 32768
+pkg syscall/zx, const RightInspect Rights
+pkg syscall/zx, const RightManageJob = 65536
+pkg syscall/zx, const RightManageJob Rights
+pkg syscall/zx, const RightManageProcess = 131072
+pkg syscall/zx, const RightManageProcess Rights
+pkg syscall/zx, const RightManageSocket = 1048576
+pkg syscall/zx, const RightManageSocket Rights
+pkg syscall/zx, const RightManageThread = 262144
+pkg syscall/zx, const RightManageThread Rights
+pkg syscall/zx, const RightMap = 32
+pkg syscall/zx, const RightMap Rights
+pkg syscall/zx, const RightNone = 0
+pkg syscall/zx, const RightNone Rights
+pkg syscall/zx, const RightRead = 4
+pkg syscall/zx, const RightRead Rights
+pkg syscall/zx, const RightSameRights = 2147483648
+pkg syscall/zx, const RightSameRights Rights
+pkg syscall/zx, const RightSetPolicy = 2048
+pkg syscall/zx, const RightSetPolicy Rights
+pkg syscall/zx, const RightSetProperty = 128
+pkg syscall/zx, const RightSetProperty Rights
+pkg syscall/zx, const RightSignal = 4096
+pkg syscall/zx, const RightSignal Rights
+pkg syscall/zx, const RightSignalPeer = 8192
+pkg syscall/zx, const RightSignalPeer Rights
+pkg syscall/zx, const RightTransfer = 2
+pkg syscall/zx, const RightTransfer Rights
+pkg syscall/zx, const RightWait = 16384
+pkg syscall/zx, const RightWait Rights
+pkg syscall/zx, const RightWrite = 8
+pkg syscall/zx, const RightWrite Rights
+pkg syscall/zx, const RightsBasic = 49155
+pkg syscall/zx, const RightsBasic Rights
+pkg syscall/zx, const RightsIO = 12
+pkg syscall/zx, const RightsIO Rights
+pkg syscall/zx, const RightsPolicy = 3072
+pkg syscall/zx, const RightsPolicy Rights
+pkg syscall/zx, const RightsProperty = 192
+pkg syscall/zx, const RightsProperty Rights
+pkg syscall/zx, const SignalChannelPeerClosed = 4
+pkg syscall/zx, const SignalChannelPeerClosed ideal-int
+pkg syscall/zx, const SignalChannelReadable = 1
+pkg syscall/zx, const SignalChannelReadable ideal-int
+pkg syscall/zx, const SignalChannelWritable = 2
+pkg syscall/zx, const SignalChannelWritable ideal-int
+pkg syscall/zx, const SignalEpairPeerClosed = 4
+pkg syscall/zx, const SignalEpairPeerClosed ideal-int
+pkg syscall/zx, const SignalEpairSignaled = 8
+pkg syscall/zx, const SignalEpairSignaled ideal-int
+pkg syscall/zx, const SignalEventMask = 248
+pkg syscall/zx, const SignalEventMask Signals
+pkg syscall/zx, const SignalEventSignaled = 8
+pkg syscall/zx, const SignalEventSignaled ideal-int
+pkg syscall/zx, const SignalFIFOPeerClosed = 4
+pkg syscall/zx, const SignalFIFOPeerClosed ideal-int
+pkg syscall/zx, const SignalFIFOReadable = 1
+pkg syscall/zx, const SignalFIFOReadable ideal-int
+pkg syscall/zx, const SignalFIFOSignalMask = 7
+pkg syscall/zx, const SignalFIFOSignalMask ideal-int
+pkg syscall/zx, const SignalFIFOWritable = 2
+pkg syscall/zx, const SignalFIFOWritable ideal-int
+pkg syscall/zx, const SignalHandleClosed = 8388608
+pkg syscall/zx, const SignalHandleClosed ideal-int
+pkg syscall/zx, const SignalJobSignaled = 8
+pkg syscall/zx, const SignalJobSignaled ideal-int
+pkg syscall/zx, const SignalNone = 0
+pkg syscall/zx, const SignalNone Signals
+pkg syscall/zx, const SignalObject0 = 1
+pkg syscall/zx, const SignalObject0 ideal-int
+pkg syscall/zx, const SignalObject1 = 2
+pkg syscall/zx, const SignalObject1 ideal-int
+pkg syscall/zx, const SignalObject10 = 1024
+pkg syscall/zx, const SignalObject10 ideal-int
+pkg syscall/zx, const SignalObject11 = 2048
+pkg syscall/zx, const SignalObject11 ideal-int
+pkg syscall/zx, const SignalObject12 = 4096
+pkg syscall/zx, const SignalObject12 ideal-int
+pkg syscall/zx, const SignalObject13 = 8192
+pkg syscall/zx, const SignalObject13 ideal-int
+pkg syscall/zx, const SignalObject14 = 16384
+pkg syscall/zx, const SignalObject14 ideal-int
+pkg syscall/zx, const SignalObject15 = 32768
+pkg syscall/zx, const SignalObject15 ideal-int
+pkg syscall/zx, const SignalObject16 = 65536
+pkg syscall/zx, const SignalObject16 ideal-int
+pkg syscall/zx, const SignalObject17 = 131072
+pkg syscall/zx, const SignalObject17 ideal-int
+pkg syscall/zx, const SignalObject18 = 262144
+pkg syscall/zx, const SignalObject18 ideal-int
+pkg syscall/zx, const SignalObject19 = 524288
+pkg syscall/zx, const SignalObject19 ideal-int
+pkg syscall/zx, const SignalObject2 = 4
+pkg syscall/zx, const SignalObject2 ideal-int
+pkg syscall/zx, const SignalObject20 = 1048576
+pkg syscall/zx, const SignalObject20 ideal-int
+pkg syscall/zx, const SignalObject21 = 2097152
+pkg syscall/zx, const SignalObject21 ideal-int
+pkg syscall/zx, const SignalObject22 = 4194304
+pkg syscall/zx, const SignalObject22 ideal-int
+pkg syscall/zx, const SignalObject23 = 8388608
+pkg syscall/zx, const SignalObject23 ideal-int
+pkg syscall/zx, const SignalObject3 = 8
+pkg syscall/zx, const SignalObject3 ideal-int
+pkg syscall/zx, const SignalObject4 = 16
+pkg syscall/zx, const SignalObject4 ideal-int
+pkg syscall/zx, const SignalObject5 = 32
+pkg syscall/zx, const SignalObject5 ideal-int
+pkg syscall/zx, const SignalObject6 = 64
+pkg syscall/zx, const SignalObject6 ideal-int
+pkg syscall/zx, const SignalObject7 = 128
+pkg syscall/zx, const SignalObject7 ideal-int
+pkg syscall/zx, const SignalObject8 = 256
+pkg syscall/zx, const SignalObject8 ideal-int
+pkg syscall/zx, const SignalObject9 = 512
+pkg syscall/zx, const SignalObject9 ideal-int
+pkg syscall/zx, const SignalObjectAll = 1048575
+pkg syscall/zx, const SignalObjectAll ideal-int
+pkg syscall/zx, const SignalPortPeerClosed = 4
+pkg syscall/zx, const SignalPortPeerClosed ideal-int
+pkg syscall/zx, const SignalPortReadable = 1
+pkg syscall/zx, const SignalPortReadable ideal-int
+pkg syscall/zx, const SignalPortSignaled = 8
+pkg syscall/zx, const SignalPortSignaled ideal-int
+pkg syscall/zx, const SignalProccessSignaled = 8
+pkg syscall/zx, const SignalProccessSignaled ideal-int
+pkg syscall/zx, const SignalResourceChildAdded = 4
+pkg syscall/zx, const SignalResourceChildAdded ideal-int
+pkg syscall/zx, const SignalResourceReadable = 1
+pkg syscall/zx, const SignalResourceReadable ideal-int
+pkg syscall/zx, const SignalResourceWritable = 2
+pkg syscall/zx, const SignalResourceWritable ideal-int
+pkg syscall/zx, const SignalSocketPeerClosed = 4
+pkg syscall/zx, const SignalSocketPeerClosed ideal-int
+pkg syscall/zx, const SignalSocketPeerWriteDisabled = 16
+pkg syscall/zx, const SignalSocketPeerWriteDisabled ideal-int
+pkg syscall/zx, const SignalSocketReadThreshold = 1024
+pkg syscall/zx, const SignalSocketReadThreshold ideal-int
+pkg syscall/zx, const SignalSocketReadable = 1
+pkg syscall/zx, const SignalSocketReadable ideal-int
+pkg syscall/zx, const SignalSocketWritable = 2
+pkg syscall/zx, const SignalSocketWritable ideal-int
+pkg syscall/zx, const SignalSocketWriteDisabled = 32
+pkg syscall/zx, const SignalSocketWriteDisabled ideal-int
+pkg syscall/zx, const SignalSocketWriteThreshold = 2048
+pkg syscall/zx, const SignalSocketWriteThreshold ideal-int
+pkg syscall/zx, const SignalTaskSignalMask = 8
+pkg syscall/zx, const SignalTaskSignalMask ideal-int
+pkg syscall/zx, const SignalTaskTerminated = 8
+pkg syscall/zx, const SignalTaskTerminated ideal-int
+pkg syscall/zx, const SignalThreadSignaled = 8
+pkg syscall/zx, const SignalThreadSignaled ideal-int
+pkg syscall/zx, const SignalUser0 = 16777216
+pkg syscall/zx, const SignalUser0 ideal-int
+pkg syscall/zx, const SignalUser1 = 33554432
+pkg syscall/zx, const SignalUser1 ideal-int
+pkg syscall/zx, const SignalUser2 = 67108864
+pkg syscall/zx, const SignalUser2 ideal-int
+pkg syscall/zx, const SignalUser3 = 134217728
+pkg syscall/zx, const SignalUser3 ideal-int
+pkg syscall/zx, const SignalUser4 = 268435456
+pkg syscall/zx, const SignalUser4 ideal-int
+pkg syscall/zx, const SignalUser5 = 536870912
+pkg syscall/zx, const SignalUser5 ideal-int
+pkg syscall/zx, const SignalUser6 = 1073741824
+pkg syscall/zx, const SignalUser6 ideal-int
+pkg syscall/zx, const SignalUser7 = 2147483648
+pkg syscall/zx, const SignalUser7 ideal-int
+pkg syscall/zx, const SignalUserAll = 240
+pkg syscall/zx, const SignalUserAll Signals
+pkg syscall/zx, const SocketDatagram = 1
+pkg syscall/zx, const SocketDatagram ideal-int
+pkg syscall/zx, const SocketDispositionWriteDisabled = 1
+pkg syscall/zx, const SocketDispositionWriteDisabled ideal-int
+pkg syscall/zx, const SocketDispositionWriteEnabled = 2
+pkg syscall/zx, const SocketDispositionWriteEnabled ideal-int
+pkg syscall/zx, const SocketPeek = 8
+pkg syscall/zx, const SocketPeek ideal-int
+pkg syscall/zx, const SocketStream = 0
+pkg syscall/zx, const SocketStream ideal-int
+pkg syscall/zx, const TimensecInfinite = 9223372036854775807
+pkg syscall/zx, const TimensecInfinite Time
+pkg syscall/zx, const VMFlagCanMapExecute = 512
+pkg syscall/zx, const VMFlagCanMapExecute VMFlag
+pkg syscall/zx, const VMFlagCanMapRead = 128
+pkg syscall/zx, const VMFlagCanMapRead VMFlag
+pkg syscall/zx, const VMFlagCanMapSpecific = 64
+pkg syscall/zx, const VMFlagCanMapSpecific VMFlag
+pkg syscall/zx, const VMFlagCanMapWrite = 256
+pkg syscall/zx, const VMFlagCanMapWrite VMFlag
+pkg syscall/zx, const VMFlagCompact = 8
+pkg syscall/zx, const VMFlagCompact VMFlag
+pkg syscall/zx, const VMFlagPermExecute = 4
+pkg syscall/zx, const VMFlagPermExecute VMFlag
+pkg syscall/zx, const VMFlagPermRead = 1
+pkg syscall/zx, const VMFlagPermRead VMFlag
+pkg syscall/zx, const VMFlagPermWrite = 2
+pkg syscall/zx, const VMFlagPermWrite VMFlag
+pkg syscall/zx, const VMFlagSpecific = 16
+pkg syscall/zx, const VMFlagSpecific VMFlag
+pkg syscall/zx, const VMFlagSpecificOverwrite = 32
+pkg syscall/zx, const VMFlagSpecificOverwrite VMFlag
+pkg syscall/zx, const VMOChildOptionNoWrite = 32
+pkg syscall/zx, const VMOChildOptionNoWrite ideal-int
+pkg syscall/zx, const VMOChildOptionResizable = 4
+pkg syscall/zx, const VMOChildOptionResizable ideal-int
+pkg syscall/zx, const VMOChildOptionSlice = 8
+pkg syscall/zx, const VMOChildOptionSlice ideal-int
+pkg syscall/zx, const VMOChildOptionSnapshot = 1
+pkg syscall/zx, const VMOChildOptionSnapshot VMOChildOption
+pkg syscall/zx, const VMOChildOptionSnapshotAtLeastOnWrite = 16
+pkg syscall/zx, const VMOChildOptionSnapshotAtLeastOnWrite ideal-int
+pkg syscall/zx, const VMOOptionResizable = 2
+pkg syscall/zx, const VMOOptionResizable VMOOption
+pkg syscall/zx, const ZX_CACHE_POLICY_CACHED = 0
+pkg syscall/zx, const ZX_CACHE_POLICY_CACHED ideal-int
+pkg syscall/zx, const ZX_CACHE_POLICY_MASK = 3
+pkg syscall/zx, const ZX_CACHE_POLICY_MASK ideal-int
+pkg syscall/zx, const ZX_CACHE_POLICY_UNCACHED = 1
+pkg syscall/zx, const ZX_CACHE_POLICY_UNCACHED ideal-int
+pkg syscall/zx, const ZX_CACHE_POLICY_UNCACHED_DEVICE = 2
+pkg syscall/zx, const ZX_CACHE_POLICY_UNCACHED_DEVICE ideal-int
+pkg syscall/zx, const ZX_CACHE_POLICY_WRITE_COMBINING = 3
+pkg syscall/zx, const ZX_CACHE_POLICY_WRITE_COMBINING ideal-int
+pkg syscall/zx, const ZX_INFO_VMO_CONTIGUOUS = 64
+pkg syscall/zx, const ZX_INFO_VMO_CONTIGUOUS ideal-int
+pkg syscall/zx, const ZX_INFO_VMO_DISCARDABLE = 128
+pkg syscall/zx, const ZX_INFO_VMO_DISCARDABLE ideal-int
+pkg syscall/zx, const ZX_INFO_VMO_IMMUTABLE = 256
+pkg syscall/zx, const ZX_INFO_VMO_IMMUTABLE ideal-int
+pkg syscall/zx, const ZX_INFO_VMO_IS_COW_CLONE = 4
+pkg syscall/zx, const ZX_INFO_VMO_IS_COW_CLONE ideal-int
+pkg syscall/zx, const ZX_INFO_VMO_PAGER_BACKED = 32
+pkg syscall/zx, const ZX_INFO_VMO_PAGER_BACKED ideal-int
+pkg syscall/zx, const ZX_INFO_VMO_RESIZABLE = 2
+pkg syscall/zx, const ZX_INFO_VMO_RESIZABLE ideal-int
+pkg syscall/zx, const ZX_INFO_VMO_TYPE_PAGED = 1
+pkg syscall/zx, const ZX_INFO_VMO_TYPE_PAGED ideal-int
+pkg syscall/zx, const ZX_INFO_VMO_TYPE_PHYSICAL = 0
+pkg syscall/zx, const ZX_INFO_VMO_TYPE_PHYSICAL ideal-int
+pkg syscall/zx, const ZX_INFO_VMO_VIA_HANDLE = 8
+pkg syscall/zx, const ZX_INFO_VMO_VIA_HANDLE ideal-int
+pkg syscall/zx, const ZX_INFO_VMO_VIA_MAPPING = 16
+pkg syscall/zx, const ZX_INFO_VMO_VIA_MAPPING ideal-int
+pkg syscall/zx, const ZX_MAX_NAME_LEN = 32
+pkg syscall/zx, const ZX_MAX_NAME_LEN ideal-int
+pkg syscall/zx, const ZX_RACT_DISABLE = 2
+pkg syscall/zx, const ZX_RACT_DISABLE ideal-int
+pkg syscall/zx, const ZX_RACT_ENABLE = 1
+pkg syscall/zx, const ZX_RACT_ENABLE ideal-int
+pkg syscall/zx, const ZX_RREC_DATA = 2
+pkg syscall/zx, const ZX_RREC_DATA ideal-int
+pkg syscall/zx, const ZX_RREC_DELETED = 0
+pkg syscall/zx, const ZX_RREC_DELETED ideal-int
+pkg syscall/zx, const ZX_RREC_IOPORT = 5
+pkg syscall/zx, const ZX_RREC_IOPORT ideal-int
+pkg syscall/zx, const ZX_RREC_IRQ = 3
+pkg syscall/zx, const ZX_RREC_IRQ ideal-int
+pkg syscall/zx, const ZX_RREC_MMIO = 4
+pkg syscall/zx, const ZX_RREC_MMIO ideal-int
+pkg syscall/zx, const ZX_RREC_SELF = 1
+pkg syscall/zx, const ZX_RREC_SELF ideal-int
+pkg syscall/zx, const ZX_RREC_SELF_GENERIC = 0
+pkg syscall/zx, const ZX_RREC_SELF_GENERIC ideal-int
+pkg syscall/zx, const ZX_RREC_SELF_ROOT = 1
+pkg syscall/zx, const ZX_RREC_SELF_ROOT ideal-int
+pkg syscall/zx, method (*Channel) Handle() *Handle
+pkg syscall/zx, method (*Error) Error() string
+pkg syscall/zx, method (*Error) Is(error) bool
+pkg syscall/zx, method (*Event) Handle() *Handle
+pkg syscall/zx, method (*Handle) IsValid() bool
+pkg syscall/zx, method (*Handle) Load() Handle
+pkg syscall/zx, method (*Log) Handle() *Handle
+pkg syscall/zx, method (*Port) Handle() *Handle
+pkg syscall/zx, method (*Rrec) Box() RrecValue
+pkg syscall/zx, method (*Socket) Handle() *Handle
+pkg syscall/zx, method (*VMO) Handle() *Handle
+pkg syscall/zx, method (Rights) StrictSubsetOf(Rights) bool
+pkg syscall/zx, method (Rights) StrictSupersetOf(Rights) bool
+pkg syscall/zx, method (Rights) SubsetOf(Rights) bool
+pkg syscall/zx, method (Rights) Subtract(Rights) Rights
+pkg syscall/zx, method (Rights) SupersetOf(Rights) bool
+pkg syscall/zx, method (Status) String() string
+pkg syscall/zx, type Channel uint32
+pkg syscall/zx, type ChannelCallArgs struct
+pkg syscall/zx, type ChannelCallArgs struct, ReadBytes unsafe.Pointer
+pkg syscall/zx, type ChannelCallArgs struct, ReadHandles *Handle
+pkg syscall/zx, type ChannelCallArgs struct, ReadNumBytes uint32
+pkg syscall/zx, type ChannelCallArgs struct, ReadNumHandles uint32
+pkg syscall/zx, type ChannelCallArgs struct, WriteBytes unsafe.Pointer
+pkg syscall/zx, type ChannelCallArgs struct, WriteHandles *Handle
+pkg syscall/zx, type ChannelCallArgs struct, WriteNumBytes uint32
+pkg syscall/zx, type ChannelCallArgs struct, WriteNumHandles uint32
+pkg syscall/zx, type ChannelCallEtcArgs struct
+pkg syscall/zx, type ChannelCallEtcArgs struct, ReadBytes unsafe.Pointer
+pkg syscall/zx, type ChannelCallEtcArgs struct, ReadHandles *HandleInfo
+pkg syscall/zx, type ChannelCallEtcArgs struct, ReadNumBytes uint32
+pkg syscall/zx, type ChannelCallEtcArgs struct, ReadNumHandles uint32
+pkg syscall/zx, type ChannelCallEtcArgs struct, WriteBytes unsafe.Pointer
+pkg syscall/zx, type ChannelCallEtcArgs struct, WriteHandles *HandleDisposition
+pkg syscall/zx, type ChannelCallEtcArgs struct, WriteNumBytes uint32
+pkg syscall/zx, type ChannelCallEtcArgs struct, WriteNumHandles uint32
+pkg syscall/zx, type Clock uint32
+pkg syscall/zx, type Duration int64
+pkg syscall/zx, type Error struct
+pkg syscall/zx, type Error struct, Status Status
+pkg syscall/zx, type Error struct, Text string
+pkg syscall/zx, type Event uint32
+pkg syscall/zx, type FIFOState struct
+pkg syscall/zx, type Handle uint32
+pkg syscall/zx, type HandleDisposition struct
+pkg syscall/zx, type HandleDisposition struct, Handle Handle
+pkg syscall/zx, type HandleDisposition struct, Operation HandleOp
+pkg syscall/zx, type HandleDisposition struct, Result Status
+pkg syscall/zx, type HandleDisposition struct, Rights Rights
+pkg syscall/zx, type HandleDisposition struct, Type ObjectType
+pkg syscall/zx, type HandleInfo struct
+pkg syscall/zx, type HandleInfo struct, Handle Handle
+pkg syscall/zx, type HandleInfo struct, Rights Rights
+pkg syscall/zx, type HandleInfo struct, Type ObjectType
+pkg syscall/zx, type HandleInfo struct, Unused uint32
+pkg syscall/zx, type HandleOp uint32
+pkg syscall/zx, type InfoHandleBasic struct
+pkg syscall/zx, type InfoHandleBasic struct, Koid uint64
+pkg syscall/zx, type InfoHandleBasic struct, Props uint32
+pkg syscall/zx, type InfoHandleBasic struct, RelatedKoid uint64
+pkg syscall/zx, type InfoHandleBasic struct, Rights Rights
+pkg syscall/zx, type InfoHandleBasic struct, Type ObjectType
+pkg syscall/zx, type InfoSocket struct
+pkg syscall/zx, type InfoSocket struct, Options uint32
+pkg syscall/zx, type InfoSocket struct, RXBufAvailable int
+pkg syscall/zx, type InfoSocket struct, RXBufMax int
+pkg syscall/zx, type InfoSocket struct, RXBufSize int
+pkg syscall/zx, type InfoSocket struct, TXBufMax int
+pkg syscall/zx, type InfoSocket struct, TXBufSize int
+pkg syscall/zx, type InfoVmo struct
+pkg syscall/zx, type InfoVmo struct, CachePolicy uint32
+pkg syscall/zx, type InfoVmo struct, CommittedBytes uint64
+pkg syscall/zx, type InfoVmo struct, CommittedChangeEvents uint64
+pkg syscall/zx, type InfoVmo struct, Flags uint32
+pkg syscall/zx, type InfoVmo struct, HandleRights Rights
+pkg syscall/zx, type InfoVmo struct, Koid uint64
+pkg syscall/zx, type InfoVmo struct, MetadataBytes uint64
+pkg syscall/zx, type InfoVmo struct, Name [32]uint8
+pkg syscall/zx, type InfoVmo struct, NumChildren uint
+pkg syscall/zx, type InfoVmo struct, NumMappings uint
+pkg syscall/zx, type InfoVmo struct, ParentKoid uint64
+pkg syscall/zx, type InfoVmo struct, ShareCount uint
+pkg syscall/zx, type InfoVmo struct, SizeBytes uint64
+pkg syscall/zx, type Log uint32
+pkg syscall/zx, type ObjectType uint32
+pkg syscall/zx, type Paddr uintptr
+pkg syscall/zx, type Port uint32
+pkg syscall/zx, type Rights uint32
+pkg syscall/zx, type Rrec struct
+pkg syscall/zx, type RrecData struct
+pkg syscall/zx, type RrecData struct, Data [56]uint8
+pkg syscall/zx, type RrecData struct, Options uint32
+pkg syscall/zx, type RrecData struct, Subtype uint16
+pkg syscall/zx, type RrecData struct, Type uint16
+pkg syscall/zx, type RrecIOPort struct
+pkg syscall/zx, type RrecIOPort struct, Options uint32
+pkg syscall/zx, type RrecIOPort struct, PortBase uint32
+pkg syscall/zx, type RrecIOPort struct, PortCount uint32
+pkg syscall/zx, type RrecIOPort struct, Subtype uint16
+pkg syscall/zx, type RrecIOPort struct, Type uint16
+pkg syscall/zx, type RrecIRQ struct
+pkg syscall/zx, type RrecIRQ struct, IRQBase uint32
+pkg syscall/zx, type RrecIRQ struct, IRQCount uint32
+pkg syscall/zx, type RrecIRQ struct, Options uint32
+pkg syscall/zx, type RrecIRQ struct, Subtype uint16
+pkg syscall/zx, type RrecIRQ struct, Type uint16
+pkg syscall/zx, type RrecMMIO struct
+pkg syscall/zx, type RrecMMIO struct, Options uint32
+pkg syscall/zx, type RrecMMIO struct, PhysBase uint64
+pkg syscall/zx, type RrecMMIO struct, PhysSize uint64
+pkg syscall/zx, type RrecMMIO struct, Subtype uint16
+pkg syscall/zx, type RrecMMIO struct, Type uint16
+pkg syscall/zx, type RrecSelf struct
+pkg syscall/zx, type RrecSelf struct, ChildCount uint32
+pkg syscall/zx, type RrecSelf struct, Koid uint64
+pkg syscall/zx, type RrecSelf struct, Name [32]uint8
+pkg syscall/zx, type RrecSelf struct, Options uint32
+pkg syscall/zx, type RrecSelf struct, RecordCount uint32
+pkg syscall/zx, type RrecSelf struct, Subtype uint16
+pkg syscall/zx, type RrecSelf struct, Type uint16
+pkg syscall/zx, type RrecValue interface, unexported methods
+pkg syscall/zx, type SMCParameters struct
+pkg syscall/zx, type SMCResult struct
+pkg syscall/zx, type Signals uint32
+pkg syscall/zx, type Socket uint32
+pkg syscall/zx, type Status int32
+pkg syscall/zx, type Time int64
+pkg syscall/zx, type VMAR uint32
+pkg syscall/zx, type VMFlag uint32
+pkg syscall/zx, type VMO uint32
+pkg syscall/zx, type VMOChildOption uint32
+pkg syscall/zx, type VMOOption int
+pkg syscall/zx, type Vaddr uintptr
+pkg syscall/zx, type WaitItem struct
+pkg syscall/zx, type WaitItem struct, Handle Handle
+pkg syscall/zx, type WaitItem struct, Pending Signals
+pkg syscall/zx, type WaitItem struct, WaitFor Signals
+pkg syscall/zx, var EOF error
+pkg syscall/zx, var EPIPE error
+pkg syscall/zx/diagnostics, const ArchiveAccessorName = "fuchsia.diagnostics.ArchiveAccessor"
+pkg syscall/zx/diagnostics, const ArchiveAccessorName ideal-string
+pkg syscall/zx/diagnostics, const ArchiveAccessorStreamDiagnosticsOrdinal = 2361924900314496062
+pkg syscall/zx/diagnostics, const ArchiveAccessorStreamDiagnosticsOrdinal uint64
+pkg syscall/zx/diagnostics, const BatchIteratorGetNextOrdinal = 8654095804583269541
+pkg syscall/zx/diagnostics, const BatchIteratorGetNextOrdinal uint64
+pkg syscall/zx/diagnostics, const BatchIteratorGetNextResultErr = 2
+pkg syscall/zx/diagnostics, const BatchIteratorGetNextResultErr ideal-int
+pkg syscall/zx/diagnostics, const BatchIteratorGetNextResultResponse = 1
+pkg syscall/zx/diagnostics, const BatchIteratorGetNextResultResponse ideal-int
+pkg syscall/zx/diagnostics, const ClientSelectorConfigurationSelectAll = 2
+pkg syscall/zx/diagnostics, const ClientSelectorConfigurationSelectAll ideal-int
+pkg syscall/zx/diagnostics, const ClientSelectorConfigurationSelectors = 1
+pkg syscall/zx/diagnostics, const ClientSelectorConfigurationSelectors ideal-int
+pkg syscall/zx/diagnostics, const ClientSelectorConfiguration_unknownData = 0
+pkg syscall/zx/diagnostics, const ClientSelectorConfiguration_unknownData ideal-int
+pkg syscall/zx/diagnostics, const DataTypeInspect = 1
+pkg syscall/zx/diagnostics, const DataTypeInspect DataType
+pkg syscall/zx/diagnostics, const DataTypeLifecycle = 2
+pkg syscall/zx/diagnostics, const DataTypeLifecycle DataType
+pkg syscall/zx/diagnostics, const DataTypeLogs = 3
+pkg syscall/zx/diagnostics, const DataTypeLogs DataType
+pkg syscall/zx/diagnostics, const FormatJson = 1
+pkg syscall/zx/diagnostics, const FormatJson Format
+pkg syscall/zx/diagnostics, const FormatText = 2
+pkg syscall/zx/diagnostics, const FormatText Format
+pkg syscall/zx/diagnostics, const FormattedContentJson = 1
+pkg syscall/zx/diagnostics, const FormattedContentJson ideal-int
+pkg syscall/zx/diagnostics, const FormattedContentText = 2
+pkg syscall/zx/diagnostics, const FormattedContentText ideal-int
+pkg syscall/zx/diagnostics, const FormattedContent_unknownData = 0
+pkg syscall/zx/diagnostics, const FormattedContent_unknownData ideal-int
+pkg syscall/zx/diagnostics, const LogSettingsName = "fuchsia.diagnostics.LogSettings"
+pkg syscall/zx/diagnostics, const LogSettingsName ideal-string
+pkg syscall/zx/diagnostics, const LogSettingsRegisterInterestOrdinal = 332558376842655227
+pkg syscall/zx/diagnostics, const LogSettingsRegisterInterestOrdinal uint64
+pkg syscall/zx/diagnostics, const MaxDataHierarchyDepth = 100
+pkg syscall/zx/diagnostics, const MaxDataHierarchyDepth uint16
+pkg syscall/zx/diagnostics, const MaxLogSelectors = 64
+pkg syscall/zx/diagnostics, const MaxLogSelectors uint8
+pkg syscall/zx/diagnostics, const MaxMonikerSegments = 25
+pkg syscall/zx/diagnostics, const MaxMonikerSegments uint16
+pkg syscall/zx/diagnostics, const MaxStringSelectorLength = 100
+pkg syscall/zx/diagnostics, const MaxStringSelectorLength uint16
+pkg syscall/zx/diagnostics, const MaximumEntriesPerBatch = 64
+pkg syscall/zx/diagnostics, const MaximumEntriesPerBatch uint16
+pkg syscall/zx/diagnostics, const MaximumRawSelectorLength = 1024
+pkg syscall/zx/diagnostics, const MaximumRawSelectorLength uint16
+pkg syscall/zx/diagnostics, const ReaderErrorIo = 1
+pkg syscall/zx/diagnostics, const ReaderErrorIo ReaderError
+pkg syscall/zx/diagnostics, const SelectorArgumentRawSelector = 2
+pkg syscall/zx/diagnostics, const SelectorArgumentRawSelector ideal-int
+pkg syscall/zx/diagnostics, const SelectorArgumentStructuredSelector = 1
+pkg syscall/zx/diagnostics, const SelectorArgumentStructuredSelector ideal-int
+pkg syscall/zx/diagnostics, const SelectorArgument_unknownData = 0
+pkg syscall/zx/diagnostics, const SelectorArgument_unknownData ideal-int
+pkg syscall/zx/diagnostics, const SeverityDebug = 32
+pkg syscall/zx/diagnostics, const SeverityDebug Severity
+pkg syscall/zx/diagnostics, const SeverityError = 80
+pkg syscall/zx/diagnostics, const SeverityError Severity
+pkg syscall/zx/diagnostics, const SeverityFatal = 96
+pkg syscall/zx/diagnostics, const SeverityFatal Severity
+pkg syscall/zx/diagnostics, const SeverityInfo = 48
+pkg syscall/zx/diagnostics, const SeverityInfo Severity
+pkg syscall/zx/diagnostics, const SeverityTrace = 16
+pkg syscall/zx/diagnostics, const SeverityTrace Severity
+pkg syscall/zx/diagnostics, const SeverityWarn = 64
+pkg syscall/zx/diagnostics, const SeverityWarn Severity
+pkg syscall/zx/diagnostics, const StreamModeSnapshot = 1
+pkg syscall/zx/diagnostics, const StreamModeSnapshot StreamMode
+pkg syscall/zx/diagnostics, const StreamModeSnapshotThenSubscribe = 2
+pkg syscall/zx/diagnostics, const StreamModeSnapshotThenSubscribe StreamMode
+pkg syscall/zx/diagnostics, const StreamModeSubscribe = 3
+pkg syscall/zx/diagnostics, const StreamModeSubscribe StreamMode
+pkg syscall/zx/diagnostics, const StringSelectorExactMatch = 2
+pkg syscall/zx/diagnostics, const StringSelectorExactMatch ideal-int
+pkg syscall/zx/diagnostics, const StringSelectorStringPattern = 1
+pkg syscall/zx/diagnostics, const StringSelectorStringPattern ideal-int
+pkg syscall/zx/diagnostics, const StringSelector_unknownData = 0
+pkg syscall/zx/diagnostics, const StringSelector_unknownData ideal-int
+pkg syscall/zx/diagnostics, const TreeSelectorPropertySelector = 2
+pkg syscall/zx/diagnostics, const TreeSelectorPropertySelector ideal-int
+pkg syscall/zx/diagnostics, const TreeSelectorSubtreeSelector = 1
+pkg syscall/zx/diagnostics, const TreeSelectorSubtreeSelector ideal-int
+pkg syscall/zx/diagnostics, const TreeSelector_unknownData = 0
+pkg syscall/zx/diagnostics, const TreeSelector_unknownData ideal-int
+pkg syscall/zx/diagnostics, func BatchIteratorGetNextResultWithErr(ReaderError) BatchIteratorGetNextResult
+pkg syscall/zx/diagnostics, func BatchIteratorGetNextResultWithResponse(BatchIteratorGetNextResponse) BatchIteratorGetNextResult
+pkg syscall/zx/diagnostics, func ClientSelectorConfigurationWithSelectAll(bool) ClientSelectorConfiguration
+pkg syscall/zx/diagnostics, func ClientSelectorConfigurationWithSelectors([]SelectorArgument) ClientSelectorConfiguration
+pkg syscall/zx/diagnostics, func FormattedContentWithJson(mem.Buffer) FormattedContent
+pkg syscall/zx/diagnostics, func FormattedContentWithText(mem.Buffer) FormattedContent
+pkg syscall/zx/diagnostics, func NewArchiveAccessorWithCtxInterfaceRequest() (ArchiveAccessorWithCtxInterfaceRequest, *ArchiveAccessorWithCtxInterface, error)
+pkg syscall/zx/diagnostics, func NewBatchIteratorWithCtxInterfaceRequest() (BatchIteratorWithCtxInterfaceRequest, *BatchIteratorWithCtxInterface, error)
+pkg syscall/zx/diagnostics, func NewLogSettingsWithCtxInterfaceRequest() (LogSettingsWithCtxInterfaceRequest, *LogSettingsWithCtxInterface, error)
+pkg syscall/zx/diagnostics, func SelectorArgumentWithRawSelector(string) SelectorArgument
+pkg syscall/zx/diagnostics, func SelectorArgumentWithStructuredSelector(Selector) SelectorArgument
+pkg syscall/zx/diagnostics, func StringSelectorWithExactMatch(string) StringSelector
+pkg syscall/zx/diagnostics, func StringSelectorWithStringPattern(string) StringSelector
+pkg syscall/zx/diagnostics, func TreeSelectorWithPropertySelector(PropertySelector) TreeSelector
+pkg syscall/zx/diagnostics, func TreeSelectorWithSubtreeSelector(SubtreeSelector) TreeSelector
+pkg syscall/zx/diagnostics, method (*ArchiveAccessorEventProxy) Handle() *zx.Handle
+pkg syscall/zx/diagnostics, method (*ArchiveAccessorWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/diagnostics, method (*ArchiveAccessorWithCtxInterface) StreamDiagnostics(context.Context, StreamParameters, BatchIteratorWithCtxInterfaceRequest) error
+pkg syscall/zx/diagnostics, method (*ArchiveAccessorWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/diagnostics, method (*ArchiveAccessorWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/diagnostics, method (*BatchIteratorEventProxy) Handle() *zx.Handle
+pkg syscall/zx/diagnostics, method (*BatchIteratorGetNextResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/diagnostics, method (*BatchIteratorGetNextResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/diagnostics, method (*BatchIteratorGetNextResult) Ordinal() uint64
+pkg syscall/zx/diagnostics, method (*BatchIteratorGetNextResult) SetErr(ReaderError)
+pkg syscall/zx/diagnostics, method (*BatchIteratorGetNextResult) SetResponse(BatchIteratorGetNextResponse)
+pkg syscall/zx/diagnostics, method (*BatchIteratorGetNextResult) Which() I_batchIteratorGetNextResultTag
+pkg syscall/zx/diagnostics, method (*BatchIteratorWithCtxInterface) GetNext(context.Context) (BatchIteratorGetNextResult, error)
+pkg syscall/zx/diagnostics, method (*BatchIteratorWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/diagnostics, method (*BatchIteratorWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/diagnostics, method (*BatchIteratorWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/diagnostics, method (*ClientSelectorConfiguration) GetUnknownData() fidl.UnknownData
+pkg syscall/zx/diagnostics, method (*ClientSelectorConfiguration) Marshaler() fidl.Marshaler
+pkg syscall/zx/diagnostics, method (*ClientSelectorConfiguration) Ordinal() uint64
+pkg syscall/zx/diagnostics, method (*ClientSelectorConfiguration) SetSelectAll(bool)
+pkg syscall/zx/diagnostics, method (*ClientSelectorConfiguration) SetSelectors([]SelectorArgument)
+pkg syscall/zx/diagnostics, method (*ClientSelectorConfiguration) Which() I_clientSelectorConfigurationTag
+pkg syscall/zx/diagnostics, method (*ComponentSelector) ClearMonikerSegments()
+pkg syscall/zx/diagnostics, method (*ComponentSelector) GetMonikerSegments() []StringSelector
+pkg syscall/zx/diagnostics, method (*ComponentSelector) GetMonikerSegmentsWithDefault([]StringSelector) []StringSelector
+pkg syscall/zx/diagnostics, method (*ComponentSelector) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/diagnostics, method (*ComponentSelector) HasMonikerSegments() bool
+pkg syscall/zx/diagnostics, method (*ComponentSelector) HasUnknownData() bool
+pkg syscall/zx/diagnostics, method (*ComponentSelector) Marshaler() fidl.Marshaler
+pkg syscall/zx/diagnostics, method (*ComponentSelector) SetMonikerSegments([]StringSelector)
+pkg syscall/zx/diagnostics, method (*FormattedContent) GetUnknownData() fidl.UnknownData
+pkg syscall/zx/diagnostics, method (*FormattedContent) Marshaler() fidl.Marshaler
+pkg syscall/zx/diagnostics, method (*FormattedContent) Ordinal() uint64
+pkg syscall/zx/diagnostics, method (*FormattedContent) SetJson(mem.Buffer)
+pkg syscall/zx/diagnostics, method (*FormattedContent) SetText(mem.Buffer)
+pkg syscall/zx/diagnostics, method (*FormattedContent) Which() I_formattedContentTag
+pkg syscall/zx/diagnostics, method (*Interest) ClearMinSeverity()
+pkg syscall/zx/diagnostics, method (*Interest) GetMinSeverity() Severity
+pkg syscall/zx/diagnostics, method (*Interest) GetMinSeverityWithDefault(Severity) Severity
+pkg syscall/zx/diagnostics, method (*Interest) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/diagnostics, method (*Interest) HasMinSeverity() bool
+pkg syscall/zx/diagnostics, method (*Interest) HasUnknownData() bool
+pkg syscall/zx/diagnostics, method (*Interest) Marshaler() fidl.Marshaler
+pkg syscall/zx/diagnostics, method (*Interest) SetMinSeverity(Severity)
+pkg syscall/zx/diagnostics, method (*LogInterestSelector) Marshaler() fidl.Marshaler
+pkg syscall/zx/diagnostics, method (*LogSettingsEventProxy) Handle() *zx.Handle
+pkg syscall/zx/diagnostics, method (*LogSettingsWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/diagnostics, method (*LogSettingsWithCtxInterface) RegisterInterest(context.Context, []LogInterestSelector) error
+pkg syscall/zx/diagnostics, method (*LogSettingsWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/diagnostics, method (*LogSettingsWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/diagnostics, method (*PerformanceConfiguration) ClearBatchRetrievalTimeoutSeconds()
+pkg syscall/zx/diagnostics, method (*PerformanceConfiguration) ClearMaxAggregateContentSizeBytes()
+pkg syscall/zx/diagnostics, method (*PerformanceConfiguration) GetBatchRetrievalTimeoutSeconds() int64
+pkg syscall/zx/diagnostics, method (*PerformanceConfiguration) GetBatchRetrievalTimeoutSecondsWithDefault(int64) int64
+pkg syscall/zx/diagnostics, method (*PerformanceConfiguration) GetMaxAggregateContentSizeBytes() uint64
+pkg syscall/zx/diagnostics, method (*PerformanceConfiguration) GetMaxAggregateContentSizeBytesWithDefault(uint64) uint64
+pkg syscall/zx/diagnostics, method (*PerformanceConfiguration) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/diagnostics, method (*PerformanceConfiguration) HasBatchRetrievalTimeoutSeconds() bool
+pkg syscall/zx/diagnostics, method (*PerformanceConfiguration) HasMaxAggregateContentSizeBytes() bool
+pkg syscall/zx/diagnostics, method (*PerformanceConfiguration) HasUnknownData() bool
+pkg syscall/zx/diagnostics, method (*PerformanceConfiguration) Marshaler() fidl.Marshaler
+pkg syscall/zx/diagnostics, method (*PerformanceConfiguration) SetBatchRetrievalTimeoutSeconds(int64)
+pkg syscall/zx/diagnostics, method (*PerformanceConfiguration) SetMaxAggregateContentSizeBytes(uint64)
+pkg syscall/zx/diagnostics, method (*PropertySelector) Marshaler() fidl.Marshaler
+pkg syscall/zx/diagnostics, method (*Selector) ClearComponentSelector()
+pkg syscall/zx/diagnostics, method (*Selector) ClearTreeSelector()
+pkg syscall/zx/diagnostics, method (*Selector) GetComponentSelector() ComponentSelector
+pkg syscall/zx/diagnostics, method (*Selector) GetComponentSelectorWithDefault(ComponentSelector) ComponentSelector
+pkg syscall/zx/diagnostics, method (*Selector) GetTreeSelector() TreeSelector
+pkg syscall/zx/diagnostics, method (*Selector) GetTreeSelectorWithDefault(TreeSelector) TreeSelector
+pkg syscall/zx/diagnostics, method (*Selector) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/diagnostics, method (*Selector) HasComponentSelector() bool
+pkg syscall/zx/diagnostics, method (*Selector) HasTreeSelector() bool
+pkg syscall/zx/diagnostics, method (*Selector) HasUnknownData() bool
+pkg syscall/zx/diagnostics, method (*Selector) Marshaler() fidl.Marshaler
+pkg syscall/zx/diagnostics, method (*Selector) SetComponentSelector(ComponentSelector)
+pkg syscall/zx/diagnostics, method (*Selector) SetTreeSelector(TreeSelector)
+pkg syscall/zx/diagnostics, method (*SelectorArgument) GetUnknownData() fidl.UnknownData
+pkg syscall/zx/diagnostics, method (*SelectorArgument) Marshaler() fidl.Marshaler
+pkg syscall/zx/diagnostics, method (*SelectorArgument) Ordinal() uint64
+pkg syscall/zx/diagnostics, method (*SelectorArgument) SetRawSelector(string)
+pkg syscall/zx/diagnostics, method (*SelectorArgument) SetStructuredSelector(Selector)
+pkg syscall/zx/diagnostics, method (*SelectorArgument) Which() I_selectorArgumentTag
+pkg syscall/zx/diagnostics, method (*StreamParameters) ClearBatchRetrievalTimeoutSeconds()
+pkg syscall/zx/diagnostics, method (*StreamParameters) ClearClientSelectorConfiguration()
+pkg syscall/zx/diagnostics, method (*StreamParameters) ClearDataType()
+pkg syscall/zx/diagnostics, method (*StreamParameters) ClearFormat()
+pkg syscall/zx/diagnostics, method (*StreamParameters) ClearPerformanceConfiguration()
+pkg syscall/zx/diagnostics, method (*StreamParameters) ClearStreamMode()
+pkg syscall/zx/diagnostics, method (*StreamParameters) GetBatchRetrievalTimeoutSeconds() int64
+pkg syscall/zx/diagnostics, method (*StreamParameters) GetBatchRetrievalTimeoutSecondsWithDefault(int64) int64
+pkg syscall/zx/diagnostics, method (*StreamParameters) GetClientSelectorConfiguration() ClientSelectorConfiguration
+pkg syscall/zx/diagnostics, method (*StreamParameters) GetClientSelectorConfigurationWithDefault(ClientSelectorConfiguration) ClientSelectorConfiguration
+pkg syscall/zx/diagnostics, method (*StreamParameters) GetDataType() DataType
+pkg syscall/zx/diagnostics, method (*StreamParameters) GetDataTypeWithDefault(DataType) DataType
+pkg syscall/zx/diagnostics, method (*StreamParameters) GetFormat() Format
+pkg syscall/zx/diagnostics, method (*StreamParameters) GetFormatWithDefault(Format) Format
+pkg syscall/zx/diagnostics, method (*StreamParameters) GetPerformanceConfiguration() PerformanceConfiguration
+pkg syscall/zx/diagnostics, method (*StreamParameters) GetPerformanceConfigurationWithDefault(PerformanceConfiguration) PerformanceConfiguration
+pkg syscall/zx/diagnostics, method (*StreamParameters) GetStreamMode() StreamMode
+pkg syscall/zx/diagnostics, method (*StreamParameters) GetStreamModeWithDefault(StreamMode) StreamMode
+pkg syscall/zx/diagnostics, method (*StreamParameters) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/diagnostics, method (*StreamParameters) HasBatchRetrievalTimeoutSeconds() bool
+pkg syscall/zx/diagnostics, method (*StreamParameters) HasClientSelectorConfiguration() bool
+pkg syscall/zx/diagnostics, method (*StreamParameters) HasDataType() bool
+pkg syscall/zx/diagnostics, method (*StreamParameters) HasFormat() bool
+pkg syscall/zx/diagnostics, method (*StreamParameters) HasPerformanceConfiguration() bool
+pkg syscall/zx/diagnostics, method (*StreamParameters) HasStreamMode() bool
+pkg syscall/zx/diagnostics, method (*StreamParameters) HasUnknownData() bool
+pkg syscall/zx/diagnostics, method (*StreamParameters) Marshaler() fidl.Marshaler
+pkg syscall/zx/diagnostics, method (*StreamParameters) SetBatchRetrievalTimeoutSeconds(int64)
+pkg syscall/zx/diagnostics, method (*StreamParameters) SetClientSelectorConfiguration(ClientSelectorConfiguration)
+pkg syscall/zx/diagnostics, method (*StreamParameters) SetDataType(DataType)
+pkg syscall/zx/diagnostics, method (*StreamParameters) SetFormat(Format)
+pkg syscall/zx/diagnostics, method (*StreamParameters) SetPerformanceConfiguration(PerformanceConfiguration)
+pkg syscall/zx/diagnostics, method (*StreamParameters) SetStreamMode(StreamMode)
+pkg syscall/zx/diagnostics, method (*StringSelector) GetUnknownData() fidl.UnknownData
+pkg syscall/zx/diagnostics, method (*StringSelector) Marshaler() fidl.Marshaler
+pkg syscall/zx/diagnostics, method (*StringSelector) Ordinal() uint64
+pkg syscall/zx/diagnostics, method (*StringSelector) SetExactMatch(string)
+pkg syscall/zx/diagnostics, method (*StringSelector) SetStringPattern(string)
+pkg syscall/zx/diagnostics, method (*StringSelector) Which() I_stringSelectorTag
+pkg syscall/zx/diagnostics, method (*SubtreeSelector) Marshaler() fidl.Marshaler
+pkg syscall/zx/diagnostics, method (*TreeSelector) GetUnknownData() fidl.UnknownData
+pkg syscall/zx/diagnostics, method (*TreeSelector) Marshaler() fidl.Marshaler
+pkg syscall/zx/diagnostics, method (*TreeSelector) Ordinal() uint64
+pkg syscall/zx/diagnostics, method (*TreeSelector) SetPropertySelector(PropertySelector)
+pkg syscall/zx/diagnostics, method (*TreeSelector) SetSubtreeSelector(SubtreeSelector)
+pkg syscall/zx/diagnostics, method (*TreeSelector) Which() I_treeSelectorTag
+pkg syscall/zx/diagnostics, method (ArchiveAccessorWithCtxInterfaceRequest) Name() string
+pkg syscall/zx/diagnostics, method (ArchiveAccessorWithCtxInterfaceRequest) ToChannel() zx.Channel
+pkg syscall/zx/diagnostics, method (DataType) I_EnumIsStrict() bool
+pkg syscall/zx/diagnostics, method (DataType) I_EnumValues() []DataType
+pkg syscall/zx/diagnostics, method (DataType) IsUnknown() bool
+pkg syscall/zx/diagnostics, method (DataType) String() string
+pkg syscall/zx/diagnostics, method (Format) I_EnumIsStrict() bool
+pkg syscall/zx/diagnostics, method (Format) I_EnumValues() []Format
+pkg syscall/zx/diagnostics, method (Format) IsUnknown() bool
+pkg syscall/zx/diagnostics, method (Format) String() string
+pkg syscall/zx/diagnostics, method (LogSettingsWithCtxInterfaceRequest) Name() string
+pkg syscall/zx/diagnostics, method (LogSettingsWithCtxInterfaceRequest) ToChannel() zx.Channel
+pkg syscall/zx/diagnostics, method (ReaderError) I_EnumIsStrict() bool
+pkg syscall/zx/diagnostics, method (ReaderError) I_EnumValues() []ReaderError
+pkg syscall/zx/diagnostics, method (ReaderError) IsUnknown() bool
+pkg syscall/zx/diagnostics, method (ReaderError) String() string
+pkg syscall/zx/diagnostics, method (Severity) I_EnumIsStrict() bool
+pkg syscall/zx/diagnostics, method (Severity) I_EnumValues() []Severity
+pkg syscall/zx/diagnostics, method (Severity) IsUnknown() bool
+pkg syscall/zx/diagnostics, method (Severity) String() string
+pkg syscall/zx/diagnostics, method (StreamMode) I_EnumIsStrict() bool
+pkg syscall/zx/diagnostics, method (StreamMode) I_EnumValues() []StreamMode
+pkg syscall/zx/diagnostics, method (StreamMode) IsUnknown() bool
+pkg syscall/zx/diagnostics, method (StreamMode) String() string
+pkg syscall/zx/diagnostics, type ArchiveAccessorEventProxy struct
+pkg syscall/zx/diagnostics, type ArchiveAccessorEventProxy struct, embedded zx.Channel
+pkg syscall/zx/diagnostics, type ArchiveAccessorWithCtx interface { StreamDiagnostics }
+pkg syscall/zx/diagnostics, type ArchiveAccessorWithCtx interface, StreamDiagnostics(context.Context, StreamParameters, BatchIteratorWithCtxInterfaceRequest) error
+pkg syscall/zx/diagnostics, type ArchiveAccessorWithCtxInterface struct
+pkg syscall/zx/diagnostics, type ArchiveAccessorWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/diagnostics, type ArchiveAccessorWithCtxInterfaceRequest struct
+pkg syscall/zx/diagnostics, type ArchiveAccessorWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/diagnostics, type ArchiveAccessorWithCtxStub struct
+pkg syscall/zx/diagnostics, type ArchiveAccessorWithCtxStub struct, Impl ArchiveAccessorWithCtx
+pkg syscall/zx/diagnostics, type ArchiveAccessorWithCtxTransitionalBase struct
+pkg syscall/zx/diagnostics, type BatchIteratorEventProxy struct
+pkg syscall/zx/diagnostics, type BatchIteratorEventProxy struct, embedded zx.Channel
+pkg syscall/zx/diagnostics, type BatchIteratorGetNextResponse struct
+pkg syscall/zx/diagnostics, type BatchIteratorGetNextResponse struct, Batch []FormattedContent
+pkg syscall/zx/diagnostics, type BatchIteratorGetNextResult struct
+pkg syscall/zx/diagnostics, type BatchIteratorGetNextResult struct, Err ReaderError
+pkg syscall/zx/diagnostics, type BatchIteratorGetNextResult struct, Response BatchIteratorGetNextResponse
+pkg syscall/zx/diagnostics, type BatchIteratorGetNextResult struct, embedded I_batchIteratorGetNextResultTag
+pkg syscall/zx/diagnostics, type BatchIteratorWithCtx interface { GetNext }
+pkg syscall/zx/diagnostics, type BatchIteratorWithCtx interface, GetNext(context.Context) (BatchIteratorGetNextResult, error)
+pkg syscall/zx/diagnostics, type BatchIteratorWithCtxInterface struct
+pkg syscall/zx/diagnostics, type BatchIteratorWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/diagnostics, type BatchIteratorWithCtxInterfaceRequest struct
+pkg syscall/zx/diagnostics, type BatchIteratorWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/diagnostics, type BatchIteratorWithCtxStub struct
+pkg syscall/zx/diagnostics, type BatchIteratorWithCtxStub struct, Impl BatchIteratorWithCtx
+pkg syscall/zx/diagnostics, type BatchIteratorWithCtxTransitionalBase struct
+pkg syscall/zx/diagnostics, type ClientSelectorConfiguration struct
+pkg syscall/zx/diagnostics, type ClientSelectorConfiguration struct, I_unknownData interface{}
+pkg syscall/zx/diagnostics, type ClientSelectorConfiguration struct, SelectAll bool
+pkg syscall/zx/diagnostics, type ClientSelectorConfiguration struct, Selectors []SelectorArgument
+pkg syscall/zx/diagnostics, type ClientSelectorConfiguration struct, embedded I_clientSelectorConfigurationTag
+pkg syscall/zx/diagnostics, type ComponentSelector struct
+pkg syscall/zx/diagnostics, type ComponentSelector struct, I_unknownData interface{}
+pkg syscall/zx/diagnostics, type ComponentSelector struct, MonikerSegments []StringSelector
+pkg syscall/zx/diagnostics, type ComponentSelector struct, MonikerSegmentsPresent bool
+pkg syscall/zx/diagnostics, type DataType uint8
+pkg syscall/zx/diagnostics, type Format uint32
+pkg syscall/zx/diagnostics, type FormattedContent struct
+pkg syscall/zx/diagnostics, type FormattedContent struct, I_unknownData interface{}
+pkg syscall/zx/diagnostics, type FormattedContent struct, Json mem.Buffer
+pkg syscall/zx/diagnostics, type FormattedContent struct, Text mem.Buffer
+pkg syscall/zx/diagnostics, type FormattedContent struct, embedded I_formattedContentTag
+pkg syscall/zx/diagnostics, type I_batchIteratorGetNextResultTag uint64
+pkg syscall/zx/diagnostics, type I_clientSelectorConfigurationTag uint64
+pkg syscall/zx/diagnostics, type I_formattedContentTag uint64
+pkg syscall/zx/diagnostics, type I_selectorArgumentTag uint64
+pkg syscall/zx/diagnostics, type I_stringSelectorTag uint64
+pkg syscall/zx/diagnostics, type I_treeSelectorTag uint64
+pkg syscall/zx/diagnostics, type Interest struct
+pkg syscall/zx/diagnostics, type Interest struct, I_unknownData interface{}
+pkg syscall/zx/diagnostics, type Interest struct, MinSeverity Severity
+pkg syscall/zx/diagnostics, type Interest struct, MinSeverityPresent bool
+pkg syscall/zx/diagnostics, type LogInterestSelector struct
+pkg syscall/zx/diagnostics, type LogInterestSelector struct, Interest Interest
+pkg syscall/zx/diagnostics, type LogInterestSelector struct, Selector ComponentSelector
+pkg syscall/zx/diagnostics, type LogSettingsEventProxy struct
+pkg syscall/zx/diagnostics, type LogSettingsEventProxy struct, embedded zx.Channel
+pkg syscall/zx/diagnostics, type LogSettingsWithCtx interface { RegisterInterest }
+pkg syscall/zx/diagnostics, type LogSettingsWithCtx interface, RegisterInterest(context.Context, []LogInterestSelector) error
+pkg syscall/zx/diagnostics, type LogSettingsWithCtxInterface struct
+pkg syscall/zx/diagnostics, type LogSettingsWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/diagnostics, type LogSettingsWithCtxInterfaceRequest struct
+pkg syscall/zx/diagnostics, type LogSettingsWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/diagnostics, type LogSettingsWithCtxStub struct
+pkg syscall/zx/diagnostics, type LogSettingsWithCtxStub struct, Impl LogSettingsWithCtx
+pkg syscall/zx/diagnostics, type LogSettingsWithCtxTransitionalBase struct
+pkg syscall/zx/diagnostics, type PerformanceConfiguration struct
+pkg syscall/zx/diagnostics, type PerformanceConfiguration struct, BatchRetrievalTimeoutSeconds int64
+pkg syscall/zx/diagnostics, type PerformanceConfiguration struct, BatchRetrievalTimeoutSecondsPresent bool
+pkg syscall/zx/diagnostics, type PerformanceConfiguration struct, I_unknownData interface{}
+pkg syscall/zx/diagnostics, type PerformanceConfiguration struct, MaxAggregateContentSizeBytes uint64
+pkg syscall/zx/diagnostics, type PerformanceConfiguration struct, MaxAggregateContentSizeBytesPresent bool
+pkg syscall/zx/diagnostics, type PropertySelector struct
+pkg syscall/zx/diagnostics, type PropertySelector struct, NodePath []StringSelector
+pkg syscall/zx/diagnostics, type PropertySelector struct, TargetProperties StringSelector
+pkg syscall/zx/diagnostics, type ReaderError uint32
+pkg syscall/zx/diagnostics, type Selector struct
+pkg syscall/zx/diagnostics, type Selector struct, ComponentSelector ComponentSelector
+pkg syscall/zx/diagnostics, type Selector struct, ComponentSelectorPresent bool
+pkg syscall/zx/diagnostics, type Selector struct, I_unknownData interface{}
+pkg syscall/zx/diagnostics, type Selector struct, TreeSelector TreeSelector
+pkg syscall/zx/diagnostics, type Selector struct, TreeSelectorPresent bool
+pkg syscall/zx/diagnostics, type SelectorArgument struct
+pkg syscall/zx/diagnostics, type SelectorArgument struct, I_unknownData interface{}
+pkg syscall/zx/diagnostics, type SelectorArgument struct, RawSelector string
+pkg syscall/zx/diagnostics, type SelectorArgument struct, StructuredSelector Selector
+pkg syscall/zx/diagnostics, type SelectorArgument struct, embedded I_selectorArgumentTag
+pkg syscall/zx/diagnostics, type Severity uint8
+pkg syscall/zx/diagnostics, type StreamMode uint8
+pkg syscall/zx/diagnostics, type StreamParameters struct
+pkg syscall/zx/diagnostics, type StreamParameters struct, BatchRetrievalTimeoutSeconds int64
+pkg syscall/zx/diagnostics, type StreamParameters struct, BatchRetrievalTimeoutSecondsPresent bool
+pkg syscall/zx/diagnostics, type StreamParameters struct, ClientSelectorConfiguration ClientSelectorConfiguration
+pkg syscall/zx/diagnostics, type StreamParameters struct, ClientSelectorConfigurationPresent bool
+pkg syscall/zx/diagnostics, type StreamParameters struct, DataType DataType
+pkg syscall/zx/diagnostics, type StreamParameters struct, DataTypePresent bool
+pkg syscall/zx/diagnostics, type StreamParameters struct, Format Format
+pkg syscall/zx/diagnostics, type StreamParameters struct, FormatPresent bool
+pkg syscall/zx/diagnostics, type StreamParameters struct, I_unknownData interface{}
+pkg syscall/zx/diagnostics, type StreamParameters struct, PerformanceConfiguration PerformanceConfiguration
+pkg syscall/zx/diagnostics, type StreamParameters struct, PerformanceConfigurationPresent bool
+pkg syscall/zx/diagnostics, type StreamParameters struct, StreamMode StreamMode
+pkg syscall/zx/diagnostics, type StreamParameters struct, StreamModePresent bool
+pkg syscall/zx/diagnostics, type StringSelector struct
+pkg syscall/zx/diagnostics, type StringSelector struct, ExactMatch string
+pkg syscall/zx/diagnostics, type StringSelector struct, I_unknownData interface{}
+pkg syscall/zx/diagnostics, type StringSelector struct, StringPattern string
+pkg syscall/zx/diagnostics, type StringSelector struct, embedded I_stringSelectorTag
+pkg syscall/zx/diagnostics, type SubtreeSelector struct
+pkg syscall/zx/diagnostics, type SubtreeSelector struct, NodePath []StringSelector
+pkg syscall/zx/diagnostics, type TreeSelector struct
+pkg syscall/zx/diagnostics, type TreeSelector struct, I_unknownData interface{}
+pkg syscall/zx/diagnostics, type TreeSelector struct, PropertySelector PropertySelector
+pkg syscall/zx/diagnostics, type TreeSelector struct, SubtreeSelector SubtreeSelector
+pkg syscall/zx/diagnostics, type TreeSelector struct, embedded I_treeSelectorTag
+pkg syscall/zx/fdio, const HandleTypeFileDescriptor = 48
+pkg syscall/zx/fdio, const HandleTypeFileDescriptor ideal-int
+pkg syscall/zx/fdio, const HandleTypeLogger = 53
+pkg syscall/zx/fdio, const HandleTypeLogger ideal-int
+pkg syscall/zx/fdio, const HandleTypeRemote = 50
+pkg syscall/zx/fdio, const HandleTypeRemote ideal-int
+pkg syscall/zx/fdio, const HandleTypeSocket = 54
+pkg syscall/zx/fdio, const HandleTypeSocket ideal-int
+pkg syscall/zx/fdio, const S_IFDIR = 16384
+pkg syscall/zx/fdio, const S_IFDIR ideal-int
+pkg syscall/zx/fdio, const S_IFIFO = 4096
+pkg syscall/zx/fdio, const S_IFIFO ideal-int
+pkg syscall/zx/fdio, const S_IFMT = 61440
+pkg syscall/zx/fdio, const S_IFMT ideal-int
+pkg syscall/zx/fdio, const S_IFREG = 32768
+pkg syscall/zx/fdio, const S_IFREG ideal-int
+pkg syscall/zx/fdio, const VtypeBdev = 24576
+pkg syscall/zx/fdio, const VtypeBdev Vtype
+pkg syscall/zx/fdio, const VtypeCdev = 8192
+pkg syscall/zx/fdio, const VtypeCdev Vtype
+pkg syscall/zx/fdio, const VtypeDir = 16384
+pkg syscall/zx/fdio, const VtypeDir Vtype
+pkg syscall/zx/fdio, const VtypeFile = 32768
+pkg syscall/zx/fdio, const VtypeFile Vtype
+pkg syscall/zx/fdio, const VtypeIRGRP = 32
+pkg syscall/zx/fdio, const VtypeIRGRP Vtype
+pkg syscall/zx/fdio, const VtypeIROTH = 4
+pkg syscall/zx/fdio, const VtypeIROTH Vtype
+pkg syscall/zx/fdio, const VtypeIRUSR = 256
+pkg syscall/zx/fdio, const VtypeIRUSR Vtype
+pkg syscall/zx/fdio, const VtypeIRWXG = 56
+pkg syscall/zx/fdio, const VtypeIRWXG Vtype
+pkg syscall/zx/fdio, const VtypeIRWXO = 7
+pkg syscall/zx/fdio, const VtypeIRWXO Vtype
+pkg syscall/zx/fdio, const VtypeIRWXU = 448
+pkg syscall/zx/fdio, const VtypeIRWXU Vtype
+pkg syscall/zx/fdio, const VtypeISGID = 1024
+pkg syscall/zx/fdio, const VtypeISGID Vtype
+pkg syscall/zx/fdio, const VtypeISUID = 2048
+pkg syscall/zx/fdio, const VtypeISUID Vtype
+pkg syscall/zx/fdio, const VtypeISVTX = 512
+pkg syscall/zx/fdio, const VtypeISVTX Vtype
+pkg syscall/zx/fdio, const VtypeIWGRP = 16
+pkg syscall/zx/fdio, const VtypeIWGRP Vtype
+pkg syscall/zx/fdio, const VtypeIWOTH = 2
+pkg syscall/zx/fdio, const VtypeIWOTH Vtype
+pkg syscall/zx/fdio, const VtypeIWUSR = 128
+pkg syscall/zx/fdio, const VtypeIWUSR Vtype
+pkg syscall/zx/fdio, const VtypeIXGRP = 8
+pkg syscall/zx/fdio, const VtypeIXGRP Vtype
+pkg syscall/zx/fdio, const VtypeIXOTH = 1
+pkg syscall/zx/fdio, const VtypeIXOTH Vtype
+pkg syscall/zx/fdio, const VtypeIXUSR = 64
+pkg syscall/zx/fdio, const VtypeIXUSR Vtype
+pkg syscall/zx/fdio, const VtypeLink = 40960
+pkg syscall/zx/fdio, const VtypeLink Vtype
+pkg syscall/zx/fdio, const VtypeMask = 61440
+pkg syscall/zx/fdio, const VtypeMask Vtype
+pkg syscall/zx/fdio, const VtypePipe = 4096
+pkg syscall/zx/fdio, const VtypePipe Vtype
+pkg syscall/zx/fdio, const VtypeSock = 49152
+pkg syscall/zx/fdio, const VtypeSock Vtype
+pkg syscall/zx/fdio, type FDIO interface { Clone, Close, GetAttr, Handles, Link, Open, Read, ReadAt, ReadDirents, Rename, Resize, Rewind, Seek, SetAttr, Sync, Unlink, Write, WriteAt }
+pkg syscall/zx/fdio, type FDIO interface, Clone() (FDIO, error)
+pkg syscall/zx/fdio, type FDIO interface, Close() error
+pkg syscall/zx/fdio, type FDIO interface, GetAttr() (io.NodeAttributes, error)
+pkg syscall/zx/fdio, type FDIO interface, Handles() []zx.Handle
+pkg syscall/zx/fdio, type FDIO interface, Link(string, string) error
+pkg syscall/zx/fdio, type FDIO interface, Open(string, uint32, uint32) (FDIO, error)
+pkg syscall/zx/fdio, type FDIO interface, Read([]uint8) (int, error)
+pkg syscall/zx/fdio, type FDIO interface, ReadAt([]uint8, int64) (int, error)
+pkg syscall/zx/fdio, type FDIO interface, ReadDirents(uint64) ([]uint8, error)
+pkg syscall/zx/fdio, type FDIO interface, Rename(string, string) error
+pkg syscall/zx/fdio, type FDIO interface, Resize(uint64) error
+pkg syscall/zx/fdio, type FDIO interface, Rewind() error
+pkg syscall/zx/fdio, type FDIO interface, Seek(int64, int) (int64, error)
+pkg syscall/zx/fdio, type FDIO interface, SetAttr(uint32, io.NodeAttributes) error
+pkg syscall/zx/fdio, type FDIO interface, Sync() error
+pkg syscall/zx/fdio, type FDIO interface, Unlink(string) error
+pkg syscall/zx/fdio, type FDIO interface, Write([]uint8) (int, error)
+pkg syscall/zx/fdio, type FDIO interface, WriteAt([]uint8, int64) (int, error)
+pkg syscall/zx/fdio, type Vtype uint32
+pkg syscall/zx/fidl, const EpitaphOrdinal = 18446744073709551615
+pkg syscall/zx/fidl, const EpitaphOrdinal ideal-int
+pkg syscall/zx/fidl, const ErrBadHandleEncoding = 12
+pkg syscall/zx/fidl, const ErrBadHandleEncoding ErrorCode
+pkg syscall/zx/fidl, const ErrBadInlineIndicatorEncoding = 15
+pkg syscall/zx/fidl, const ErrBadInlineIndicatorEncoding ErrorCode
+pkg syscall/zx/fidl, const ErrBadRefEncoding = 14
+pkg syscall/zx/fidl, const ErrBadRefEncoding ErrorCode
+pkg syscall/zx/fidl, const ErrDuplicateTxidReceived = 32
+pkg syscall/zx/fidl, const ErrDuplicateTxidReceived ErrorCode
+pkg syscall/zx/fidl, const ErrDuplicateTxidWaiting = 33
+pkg syscall/zx/fidl, const ErrDuplicateTxidWaiting ErrorCode
+pkg syscall/zx/fidl, const ErrExceededMaxOutOfLineDepth = 37
+pkg syscall/zx/fidl, const ErrExceededMaxOutOfLineDepth ErrorCode
+pkg syscall/zx/fidl, const ErrIncorrectHandleType = 34
+pkg syscall/zx/fidl, const ErrIncorrectHandleType ErrorCode
+pkg syscall/zx/fidl, const ErrInvalidBitsValue = 19
+pkg syscall/zx/fidl, const ErrInvalidBitsValue ErrorCode
+pkg syscall/zx/fidl, const ErrInvalidBoolValue = 8
+pkg syscall/zx/fidl, const ErrInvalidBoolValue ErrorCode
+pkg syscall/zx/fidl, const ErrInvalidEmptyStruct = 22
+pkg syscall/zx/fidl, const ErrInvalidEmptyStruct ErrorCode
+pkg syscall/zx/fidl, const ErrInvalidEnumValue = 20
+pkg syscall/zx/fidl, const ErrInvalidEnumValue ErrorCode
+pkg syscall/zx/fidl, const ErrInvalidInlineBitValueInEnvelope = 38
+pkg syscall/zx/fidl, const ErrInvalidInlineBitValueInEnvelope ErrorCode
+pkg syscall/zx/fidl, const ErrInvalidInlineType = 2
+pkg syscall/zx/fidl, const ErrInvalidInlineType ErrorCode
+pkg syscall/zx/fidl, const ErrInvalidNumBytesInEnvelope = 23
+pkg syscall/zx/fidl, const ErrInvalidNumBytesInEnvelope ErrorCode
+pkg syscall/zx/fidl, const ErrInvalidNumHandlesInEnvelope = 24
+pkg syscall/zx/fidl, const ErrInvalidNumHandlesInEnvelope ErrorCode
+pkg syscall/zx/fidl, const ErrInvalidPointerType = 3
+pkg syscall/zx/fidl, const ErrInvalidPointerType ErrorCode
+pkg syscall/zx/fidl, const ErrInvalidUnionTag = 17
+pkg syscall/zx/fidl, const ErrInvalidUnionTag ErrorCode
+pkg syscall/zx/fidl, const ErrInvalidXUnionTag = 18
+pkg syscall/zx/fidl, const ErrInvalidXUnionTag ErrorCode
+pkg syscall/zx/fidl, const ErrMissingMarshalerContext = 30
+pkg syscall/zx/fidl, const ErrMissingMarshalerContext ErrorCode
+pkg syscall/zx/fidl, const ErrMissingRequiredHandleRights = 27
+pkg syscall/zx/fidl, const ErrMissingRequiredHandleRights ErrorCode
+pkg syscall/zx/fidl, const ErrNonZeroPadding = 13
+pkg syscall/zx/fidl, const ErrNonZeroPadding ErrorCode
+pkg syscall/zx/fidl, const ErrNotEnoughHandles = 9
+pkg syscall/zx/fidl, const ErrNotEnoughHandles ErrorCode
+pkg syscall/zx/fidl, const ErrPayloadTooSmall = 21
+pkg syscall/zx/fidl, const ErrPayloadTooSmall ErrorCode
+pkg syscall/zx/fidl, const ErrResponseWithoutRequest = 31
+pkg syscall/zx/fidl, const ErrResponseWithoutRequest ErrorCode
+pkg syscall/zx/fidl, const ErrStringNotUTF8 = 25
+pkg syscall/zx/fidl, const ErrStringNotUTF8 ErrorCode
+pkg syscall/zx/fidl, const ErrStringTooLong = 5
+pkg syscall/zx/fidl, const ErrStringTooLong ErrorCode
+pkg syscall/zx/fidl, const ErrStructIsNotPayload = 16
+pkg syscall/zx/fidl, const ErrStructIsNotPayload ErrorCode
+pkg syscall/zx/fidl, const ErrTooManyBytesInMessage = 10
+pkg syscall/zx/fidl, const ErrTooManyBytesInMessage ErrorCode
+pkg syscall/zx/fidl, const ErrTooManyHandles = 11
+pkg syscall/zx/fidl, const ErrTooManyHandles ErrorCode
+pkg syscall/zx/fidl, const ErrUnableToReduceHandleRights = 28
+pkg syscall/zx/fidl, const ErrUnableToReduceHandleRights ErrorCode
+pkg syscall/zx/fidl, const ErrUnexpectedNullRef = 7
+pkg syscall/zx/fidl, const ErrUnexpectedNullRef ErrorCode
+pkg syscall/zx/fidl, const ErrUnexpectedOrdinal = 6
+pkg syscall/zx/fidl, const ErrUnexpectedOrdinal ErrorCode
+pkg syscall/zx/fidl, const ErrUnknownMagic = 26
+pkg syscall/zx/fidl, const ErrUnknownMagic ErrorCode
+pkg syscall/zx/fidl, const ErrUnknownOrdinal = 1
+pkg syscall/zx/fidl, const ErrUnknownOrdinal ErrorCode
+pkg syscall/zx/fidl, const ErrUnspecifiedHandleRights = 29
+pkg syscall/zx/fidl, const ErrUnspecifiedHandleRights ErrorCode
+pkg syscall/zx/fidl, const ErrUnspecifiedHandleType = 35
+pkg syscall/zx/fidl, const ErrUnspecifiedHandleType ErrorCode
+pkg syscall/zx/fidl, const ErrValueTypeHandles = 36
+pkg syscall/zx/fidl, const ErrValueTypeHandles ErrorCode
+pkg syscall/zx/fidl, const ErrVectorTooLong = 4
+pkg syscall/zx/fidl, const ErrVectorTooLong ErrorCode
+pkg syscall/zx/fidl, const FidlV2WireFormatFlagMask = 2
+pkg syscall/zx/fidl, const FidlV2WireFormatFlagMask ideal-int
+pkg syscall/zx/fidl, const FidlWireFormatMagicNumberInitial = 1
+pkg syscall/zx/fidl, const FidlWireFormatMagicNumberInitial ideal-int
+pkg syscall/zx/fidl, const Invalid = 0
+pkg syscall/zx/fidl, const Invalid ErrorCode
+pkg syscall/zx/fidl, const ProtocolRights = 61454
+pkg syscall/zx/fidl, const ProtocolRights zx.Rights
+pkg syscall/zx/fidl, func CreateLazyMarshaler(interface{}) Marshaler
+pkg syscall/zx/fidl, func CreateMarshaler(interface{}) (Marshaler, error)
+pkg syscall/zx/fidl, func GetMarshalerContext(context.Context) (MarshalerContext, bool)
+pkg syscall/zx/fidl, func Marshal(MarshalerContext, Message, []uint8, []zx.HandleDisposition) (int, int, error)
+pkg syscall/zx/fidl, func MarshalHeaderThenMessage(*MessageHeader, Message, []uint8, []zx.HandleDisposition) (int, int, error)
+pkg syscall/zx/fidl, func MustCreateMarshaler(interface{}) Marshaler
+pkg syscall/zx/fidl, func NewCtx() MarshalerContext
+pkg syscall/zx/fidl, func NewInterfaceRequest() (InterfaceRequest, *ChannelProxy, error)
+pkg syscall/zx/fidl, func Unmarshal(MarshalerContext, []uint8, []zx.HandleInfo, Message) error
+pkg syscall/zx/fidl, func UnmarshalBuffer(MarshalerContext, []uint8, []zx.HandleInfo, Message) (int, int, error)
+pkg syscall/zx/fidl, func UnmarshalHeaderThenMessage([]uint8, []zx.HandleInfo, *MessageHeader, Message) error
+pkg syscall/zx/fidl, func WithMarshalerContext(context.Context, MarshalerContext) context.Context
+pkg syscall/zx/fidl, method (*ChannelProxy) Call(uint64, Message, Message) error
+pkg syscall/zx/fidl, method (*ChannelProxy) Handle() *zx.Handle
+pkg syscall/zx/fidl, method (*ChannelProxy) IsValid() bool
+pkg syscall/zx/fidl, method (*ChannelProxy) Recv(uint64, Message) error
+pkg syscall/zx/fidl, method (*ChannelProxy) Send(uint64, Message) error
+pkg syscall/zx/fidl, method (*EpitaphBody) Marshaler() Marshaler
+pkg syscall/zx/fidl, method (*InterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/fidl, method (*MessageHeader) IsSupportedVersion() bool
+pkg syscall/zx/fidl, method (*MessageHeader) Marshaler() Marshaler
+pkg syscall/zx/fidl, method (*MessageHeader) NewCtx() MarshalerContext
+pkg syscall/zx/fidl, method (ErrorCode) Code() ErrorCode
+pkg syscall/zx/fidl, method (ErrorCode) Error() string
+pkg syscall/zx/fidl, method (ErrorCode) String() string
+pkg syscall/zx/fidl, method (MarshalerContext) NewHeader() MessageHeader
+pkg syscall/zx/fidl, type Bits interface { GetUnknownBits, HasUnknownBits }
+pkg syscall/zx/fidl, type Bits interface, GetUnknownBits() uint64
+pkg syscall/zx/fidl, type Bits interface, HasUnknownBits() bool
+pkg syscall/zx/fidl, type ChannelProxy struct
+pkg syscall/zx/fidl, type ChannelProxy struct, embedded zx.Channel
+pkg syscall/zx/fidl, type Context = context.Context
+pkg syscall/zx/fidl, type DispatchArgs struct
+pkg syscall/zx/fidl, type DispatchArgs struct, Bytes []uint8
+pkg syscall/zx/fidl, type DispatchArgs struct, Ctx context.Context
+pkg syscall/zx/fidl, type DispatchArgs struct, HandleInfos []zx.HandleInfo
+pkg syscall/zx/fidl, type DispatchArgs struct, Ordinal uint64
+pkg syscall/zx/fidl, type Enum interface { IsUnknown }
+pkg syscall/zx/fidl, type Enum interface, IsUnknown() bool
+pkg syscall/zx/fidl, type EpitaphBody struct
+pkg syscall/zx/fidl, type EpitaphBody struct, Error zx.Status
+pkg syscall/zx/fidl, type ErrorCode uint32
+pkg syscall/zx/fidl, type InterfaceRequest struct
+pkg syscall/zx/fidl, type InterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/fidl, type Marshaler interface, unexported methods
+pkg syscall/zx/fidl, type MarshalerContext struct
+pkg syscall/zx/fidl, type MarshalerContext struct, UseV2WireFormat bool
+pkg syscall/zx/fidl, type Message interface { Marshaler }
+pkg syscall/zx/fidl, type Message interface, Marshaler() Marshaler
+pkg syscall/zx/fidl, type MessageHeader struct
+pkg syscall/zx/fidl, type MessageHeader struct, Flags [3]uint8
+pkg syscall/zx/fidl, type MessageHeader struct, Magic uint8
+pkg syscall/zx/fidl, type MessageHeader struct, Ordinal uint64
+pkg syscall/zx/fidl, type MessageHeader struct, Txid uint32
+pkg syscall/zx/fidl, type Proxy interface { Call, IsValid, Recv, Send }
+pkg syscall/zx/fidl, type Proxy interface, Call(uint64, Message, Message) error
+pkg syscall/zx/fidl, type Proxy interface, IsValid() bool
+pkg syscall/zx/fidl, type Proxy interface, Recv(uint64, Message) error
+pkg syscall/zx/fidl, type Proxy interface, Send(uint64, Message) error
+pkg syscall/zx/fidl, type ServiceRequest interface { Name, ToChannel }
+pkg syscall/zx/fidl, type ServiceRequest interface, Name() string
+pkg syscall/zx/fidl, type ServiceRequest interface, ToChannel() zx.Channel
+pkg syscall/zx/fidl, type Stub interface { Dispatch }
+pkg syscall/zx/fidl, type Stub interface, Dispatch(DispatchArgs) (Message, bool, error)
+pkg syscall/zx/fidl, type UnknownData struct
+pkg syscall/zx/fidl, type UnknownData struct, Bytes []uint8
+pkg syscall/zx/fidl, type UnknownData struct, Handles []zx.HandleInfo
+pkg syscall/zx/fidl, type ValidationError interface { Code, Error }
+pkg syscall/zx/fidl, type ValidationError interface, Code() ErrorCode
+pkg syscall/zx/fidl, type ValidationError interface, Error() string
+pkg syscall/zx/fidl, var MessageHeaderSize int
+pkg syscall/zx/hardware/network, const DeviceClassBridge = 4
+pkg syscall/zx/hardware/network, const DeviceClassBridge DeviceClass
+pkg syscall/zx/hardware/network, const DeviceClassEthernet = 1
+pkg syscall/zx/hardware/network, const DeviceClassEthernet DeviceClass
+pkg syscall/zx/hardware/network, const DeviceClassPpp = 3
+pkg syscall/zx/hardware/network, const DeviceClassPpp DeviceClass
+pkg syscall/zx/hardware/network, const DeviceClassVirtual = 0
+pkg syscall/zx/hardware/network, const DeviceClassVirtual DeviceClass
+pkg syscall/zx/hardware/network, const DeviceClassWlan = 2
+pkg syscall/zx/hardware/network, const DeviceClassWlan DeviceClass
+pkg syscall/zx/hardware/network, const DeviceClassWlanAp = 5
+pkg syscall/zx/hardware/network, const DeviceClassWlanAp DeviceClass
+pkg syscall/zx/hardware/network, const DeviceCloneOrdinal = 6377917349697198836
+pkg syscall/zx/hardware/network, const DeviceCloneOrdinal uint64
+pkg syscall/zx/hardware/network, const DeviceGetInfoOrdinal = 4345987561275952982
+pkg syscall/zx/hardware/network, const DeviceGetInfoOrdinal uint64
+pkg syscall/zx/hardware/network, const DeviceGetPortOrdinal = 3749956066270225062
+pkg syscall/zx/hardware/network, const DeviceGetPortOrdinal uint64
+pkg syscall/zx/hardware/network, const DeviceGetPortWatcherOrdinal = 1175232559270043404
+pkg syscall/zx/hardware/network, const DeviceGetPortWatcherOrdinal uint64
+pkg syscall/zx/hardware/network, const DeviceInstanceGetDeviceOrdinal = 8598058163296915191
+pkg syscall/zx/hardware/network, const DeviceInstanceGetDeviceOrdinal uint64
+pkg syscall/zx/hardware/network, const DeviceOpenSessionOrdinal = 2707801929272905575
+pkg syscall/zx/hardware/network, const DeviceOpenSessionOrdinal uint64
+pkg syscall/zx/hardware/network, const DeviceOpenSessionResultErr = 2
+pkg syscall/zx/hardware/network, const DeviceOpenSessionResultErr ideal-int
+pkg syscall/zx/hardware/network, const DeviceOpenSessionResultResponse = 1
+pkg syscall/zx/hardware/network, const DeviceOpenSessionResultResponse ideal-int
+pkg syscall/zx/hardware/network, const DevicePortEventAdded = 2
+pkg syscall/zx/hardware/network, const DevicePortEventAdded ideal-int
+pkg syscall/zx/hardware/network, const DevicePortEventExisting = 1
+pkg syscall/zx/hardware/network, const DevicePortEventExisting ideal-int
+pkg syscall/zx/hardware/network, const DevicePortEventIdle = 4
+pkg syscall/zx/hardware/network, const DevicePortEventIdle ideal-int
+pkg syscall/zx/hardware/network, const DevicePortEventRemoved = 3
+pkg syscall/zx/hardware/network, const DevicePortEventRemoved ideal-int
+pkg syscall/zx/hardware/network, const EthernetFeaturesE8021Q = 4
+pkg syscall/zx/hardware/network, const EthernetFeaturesE8021Q EthernetFeatures
+pkg syscall/zx/hardware/network, const EthernetFeaturesE8021QInQ = 8
+pkg syscall/zx/hardware/network, const EthernetFeaturesE8021QInQ EthernetFeatures
+pkg syscall/zx/hardware/network, const EthernetFeaturesE8023LlcSnap = 16
+pkg syscall/zx/hardware/network, const EthernetFeaturesE8023LlcSnap EthernetFeatures
+pkg syscall/zx/hardware/network, const EthernetFeaturesEthernetIi = 2
+pkg syscall/zx/hardware/network, const EthernetFeaturesEthernetIi EthernetFeatures
+pkg syscall/zx/hardware/network, const EthernetFeaturesRaw = 1
+pkg syscall/zx/hardware/network, const EthernetFeaturesRaw EthernetFeatures
+pkg syscall/zx/hardware/network, const EthernetFeatures_Mask = 31
+pkg syscall/zx/hardware/network, const EthernetFeatures_Mask EthernetFeatures
+pkg syscall/zx/hardware/network, const FrameFeaturesRaw = 1
+pkg syscall/zx/hardware/network, const FrameFeaturesRaw uint32
+pkg syscall/zx/hardware/network, const FrameTypeEthernet = 1
+pkg syscall/zx/hardware/network, const FrameTypeEthernet FrameType
+pkg syscall/zx/hardware/network, const FrameTypeIpv4 = 2
+pkg syscall/zx/hardware/network, const FrameTypeIpv4 FrameType
+pkg syscall/zx/hardware/network, const FrameTypeIpv6 = 3
+pkg syscall/zx/hardware/network, const FrameTypeIpv6 FrameType
+pkg syscall/zx/hardware/network, const InfoTypeNoInfo = 0
+pkg syscall/zx/hardware/network, const InfoTypeNoInfo InfoType
+pkg syscall/zx/hardware/network, const MacAddressingAddMulticastAddressOrdinal = 1105132327221005349
+pkg syscall/zx/hardware/network, const MacAddressingAddMulticastAddressOrdinal uint64
+pkg syscall/zx/hardware/network, const MacAddressingGetUnicastAddressOrdinal = 3197758227283422910
+pkg syscall/zx/hardware/network, const MacAddressingGetUnicastAddressOrdinal uint64
+pkg syscall/zx/hardware/network, const MacAddressingRemoveMulticastAddressOrdinal = 6763831474300790112
+pkg syscall/zx/hardware/network, const MacAddressingRemoveMulticastAddressOrdinal uint64
+pkg syscall/zx/hardware/network, const MacAddressingSetModeOrdinal = 444021886998005132
+pkg syscall/zx/hardware/network, const MacAddressingSetModeOrdinal uint64
+pkg syscall/zx/hardware/network, const MacFilterModeMulticastFilter = 0
+pkg syscall/zx/hardware/network, const MacFilterModeMulticastFilter MacFilterMode
+pkg syscall/zx/hardware/network, const MacFilterModeMulticastPromiscuous = 1
+pkg syscall/zx/hardware/network, const MacFilterModeMulticastPromiscuous MacFilterMode
+pkg syscall/zx/hardware/network, const MacFilterModePromiscuous = 2
+pkg syscall/zx/hardware/network, const MacFilterModePromiscuous MacFilterMode
+pkg syscall/zx/hardware/network, const MaxAccelFlags = 16
+pkg syscall/zx/hardware/network, const MaxAccelFlags uint32
+pkg syscall/zx/hardware/network, const MaxDescriptorChain = 4
+pkg syscall/zx/hardware/network, const MaxDescriptorChain uint8
+pkg syscall/zx/hardware/network, const MaxFrameTypes = 4
+pkg syscall/zx/hardware/network, const MaxFrameTypes uint32
+pkg syscall/zx/hardware/network, const MaxPorts = 32
+pkg syscall/zx/hardware/network, const MaxPorts uint8
+pkg syscall/zx/hardware/network, const MaxSessionName = 64
+pkg syscall/zx/hardware/network, const MaxSessionName uint32
+pkg syscall/zx/hardware/network, const MaxStatusBuffer = 50
+pkg syscall/zx/hardware/network, const MaxStatusBuffer uint32
+pkg syscall/zx/hardware/network, const PortCloneOrdinal = 5640587099851277011
+pkg syscall/zx/hardware/network, const PortCloneOrdinal uint64
+pkg syscall/zx/hardware/network, const PortGetDeviceOrdinal = 9071172445315870080
+pkg syscall/zx/hardware/network, const PortGetDeviceOrdinal uint64
+pkg syscall/zx/hardware/network, const PortGetInfoOrdinal = 2840916356794502845
+pkg syscall/zx/hardware/network, const PortGetInfoOrdinal uint64
+pkg syscall/zx/hardware/network, const PortGetMacOrdinal = 3201710345528787190
+pkg syscall/zx/hardware/network, const PortGetMacOrdinal uint64
+pkg syscall/zx/hardware/network, const PortGetStatusOrdinal = 4770830476791931058
+pkg syscall/zx/hardware/network, const PortGetStatusOrdinal uint64
+pkg syscall/zx/hardware/network, const PortGetStatusWatcherOrdinal = 7300645848992176340
+pkg syscall/zx/hardware/network, const PortGetStatusWatcherOrdinal uint64
+pkg syscall/zx/hardware/network, const PortWatcherWatchOrdinal = 4505609858711549278
+pkg syscall/zx/hardware/network, const PortWatcherWatchOrdinal uint64
+pkg syscall/zx/hardware/network, const RxAccelerationValidatedEthernetFcs = 0
+pkg syscall/zx/hardware/network, const RxAccelerationValidatedEthernetFcs RxAcceleration
+pkg syscall/zx/hardware/network, const RxAccelerationValidatedIpv4Checksum = 1
+pkg syscall/zx/hardware/network, const RxAccelerationValidatedIpv4Checksum RxAcceleration
+pkg syscall/zx/hardware/network, const RxAccelerationValidatedTcpChecksum = 2
+pkg syscall/zx/hardware/network, const RxAccelerationValidatedTcpChecksum RxAcceleration
+pkg syscall/zx/hardware/network, const RxAccelerationValidatedUdpChecksum = 3
+pkg syscall/zx/hardware/network, const RxAccelerationValidatedUdpChecksum RxAcceleration
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel0 = 1
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel0 RxFlags
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel1 = 2
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel1 RxFlags
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel10 = 1024
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel10 RxFlags
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel11 = 2048
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel11 RxFlags
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel12 = 4096
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel12 RxFlags
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel13 = 8192
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel13 RxFlags
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel14 = 16384
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel14 RxFlags
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel15 = 32768
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel15 RxFlags
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel2 = 4
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel2 RxFlags
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel3 = 8
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel3 RxFlags
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel4 = 16
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel4 RxFlags
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel5 = 32
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel5 RxFlags
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel6 = 64
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel6 RxFlags
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel7 = 128
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel7 RxFlags
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel8 = 256
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel8 RxFlags
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel9 = 512
+pkg syscall/zx/hardware/network, const RxFlagsRxAccel9 RxFlags
+pkg syscall/zx/hardware/network, const RxFlagsRxEchoedTx = 2147483648
+pkg syscall/zx/hardware/network, const RxFlagsRxEchoedTx RxFlags
+pkg syscall/zx/hardware/network, const RxFlagsRxOverrun = 536870912
+pkg syscall/zx/hardware/network, const RxFlagsRxOverrun RxFlags
+pkg syscall/zx/hardware/network, const RxFlagsRxValidationError = 1073741824
+pkg syscall/zx/hardware/network, const RxFlagsRxValidationError RxFlags
+pkg syscall/zx/hardware/network, const RxFlags_Mask = 3758161919
+pkg syscall/zx/hardware/network, const RxFlags_Mask RxFlags
+pkg syscall/zx/hardware/network, const SessionAttachOrdinal = 2200510900121637753
+pkg syscall/zx/hardware/network, const SessionAttachOrdinal uint64
+pkg syscall/zx/hardware/network, const SessionAttachResultErr = 2
+pkg syscall/zx/hardware/network, const SessionAttachResultErr ideal-int
+pkg syscall/zx/hardware/network, const SessionAttachResultResponse = 1
+pkg syscall/zx/hardware/network, const SessionAttachResultResponse ideal-int
+pkg syscall/zx/hardware/network, const SessionCloseOrdinal = 4124541276668990198
+pkg syscall/zx/hardware/network, const SessionCloseOrdinal uint64
+pkg syscall/zx/hardware/network, const SessionDetachOrdinal = 7549173138887841895
+pkg syscall/zx/hardware/network, const SessionDetachOrdinal uint64
+pkg syscall/zx/hardware/network, const SessionDetachResultErr = 2
+pkg syscall/zx/hardware/network, const SessionDetachResultErr ideal-int
+pkg syscall/zx/hardware/network, const SessionDetachResultResponse = 1
+pkg syscall/zx/hardware/network, const SessionDetachResultResponse ideal-int
+pkg syscall/zx/hardware/network, const SessionFlagsListenTx = 2
+pkg syscall/zx/hardware/network, const SessionFlagsListenTx SessionFlags
+pkg syscall/zx/hardware/network, const SessionFlagsPrimary = 1
+pkg syscall/zx/hardware/network, const SessionFlagsPrimary SessionFlags
+pkg syscall/zx/hardware/network, const SessionFlagsReportInvalidRx = 4
+pkg syscall/zx/hardware/network, const SessionFlagsReportInvalidRx SessionFlags
+pkg syscall/zx/hardware/network, const SessionFlags_Mask = 7
+pkg syscall/zx/hardware/network, const SessionFlags_Mask SessionFlags
+pkg syscall/zx/hardware/network, const StatusFlagsOnline = 1
+pkg syscall/zx/hardware/network, const StatusFlagsOnline StatusFlags
+pkg syscall/zx/hardware/network, const StatusFlags_Mask = 1
+pkg syscall/zx/hardware/network, const StatusFlags_Mask StatusFlags
+pkg syscall/zx/hardware/network, const StatusWatcherWatchStatusOrdinal = 1398833956082180793
+pkg syscall/zx/hardware/network, const StatusWatcherWatchStatusOrdinal uint64
+pkg syscall/zx/hardware/network, const TxAccelerationComputeEthernetFcs = 0
+pkg syscall/zx/hardware/network, const TxAccelerationComputeEthernetFcs TxAcceleration
+pkg syscall/zx/hardware/network, const TxAccelerationComputeIpv4Checksum = 1
+pkg syscall/zx/hardware/network, const TxAccelerationComputeIpv4Checksum TxAcceleration
+pkg syscall/zx/hardware/network, const TxAccelerationComputeTcpChecksum = 2
+pkg syscall/zx/hardware/network, const TxAccelerationComputeTcpChecksum TxAcceleration
+pkg syscall/zx/hardware/network, const TxAccelerationComputeUdpChecksum = 3
+pkg syscall/zx/hardware/network, const TxAccelerationComputeUdpChecksum TxAcceleration
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel0 = 1
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel0 TxFlags
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel1 = 2
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel1 TxFlags
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel10 = 1024
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel10 TxFlags
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel11 = 2048
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel11 TxFlags
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel12 = 4096
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel12 TxFlags
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel13 = 8192
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel13 TxFlags
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel14 = 16384
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel14 TxFlags
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel15 = 32768
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel15 TxFlags
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel2 = 4
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel2 TxFlags
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel3 = 8
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel3 TxFlags
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel4 = 16
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel4 TxFlags
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel5 = 32
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel5 TxFlags
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel6 = 64
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel6 TxFlags
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel7 = 128
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel7 TxFlags
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel8 = 256
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel8 TxFlags
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel9 = 512
+pkg syscall/zx/hardware/network, const TxFlagsTxAccel9 TxFlags
+pkg syscall/zx/hardware/network, const TxFlags_Mask = 65535
+pkg syscall/zx/hardware/network, const TxFlags_Mask TxFlags
+pkg syscall/zx/hardware/network, const TxReturnFlagsTxRetError = 2147483648
+pkg syscall/zx/hardware/network, const TxReturnFlagsTxRetError TxReturnFlags
+pkg syscall/zx/hardware/network, const TxReturnFlagsTxRetNotAvailable = 4
+pkg syscall/zx/hardware/network, const TxReturnFlagsTxRetNotAvailable TxReturnFlags
+pkg syscall/zx/hardware/network, const TxReturnFlagsTxRetNotSupported = 1
+pkg syscall/zx/hardware/network, const TxReturnFlagsTxRetNotSupported TxReturnFlags
+pkg syscall/zx/hardware/network, const TxReturnFlagsTxRetOutOfResources = 2
+pkg syscall/zx/hardware/network, const TxReturnFlagsTxRetOutOfResources TxReturnFlags
+pkg syscall/zx/hardware/network, const TxReturnFlags_Mask = 2147483655
+pkg syscall/zx/hardware/network, const TxReturnFlags_Mask TxReturnFlags
+pkg syscall/zx/hardware/network, func DeviceOpenSessionResultWithErr(int32) DeviceOpenSessionResult
+pkg syscall/zx/hardware/network, func DeviceOpenSessionResultWithResponse(DeviceOpenSessionResponse) DeviceOpenSessionResult
+pkg syscall/zx/hardware/network, func DevicePortEventWithAdded(PortId) DevicePortEvent
+pkg syscall/zx/hardware/network, func DevicePortEventWithExisting(PortId) DevicePortEvent
+pkg syscall/zx/hardware/network, func DevicePortEventWithIdle(Empty) DevicePortEvent
+pkg syscall/zx/hardware/network, func DevicePortEventWithRemoved(PortId) DevicePortEvent
+pkg syscall/zx/hardware/network, func NewDeviceInstanceWithCtxInterfaceRequest() (DeviceInstanceWithCtxInterfaceRequest, *DeviceInstanceWithCtxInterface, error)
+pkg syscall/zx/hardware/network, func NewDeviceWithCtxInterfaceRequest() (DeviceWithCtxInterfaceRequest, *DeviceWithCtxInterface, error)
+pkg syscall/zx/hardware/network, func NewMacAddressingWithCtxInterfaceRequest() (MacAddressingWithCtxInterfaceRequest, *MacAddressingWithCtxInterface, error)
+pkg syscall/zx/hardware/network, func NewPortWatcherWithCtxInterfaceRequest() (PortWatcherWithCtxInterfaceRequest, *PortWatcherWithCtxInterface, error)
+pkg syscall/zx/hardware/network, func NewPortWithCtxInterfaceRequest() (PortWithCtxInterfaceRequest, *PortWithCtxInterface, error)
+pkg syscall/zx/hardware/network, func NewSessionWithCtxInterfaceRequest() (SessionWithCtxInterfaceRequest, *SessionWithCtxInterface, error)
+pkg syscall/zx/hardware/network, func NewStatusWatcherWithCtxInterfaceRequest() (StatusWatcherWithCtxInterfaceRequest, *StatusWatcherWithCtxInterface, error)
+pkg syscall/zx/hardware/network, func SessionAttachResultWithErr(int32) SessionAttachResult
+pkg syscall/zx/hardware/network, func SessionAttachResultWithResponse(SessionAttachResponse) SessionAttachResult
+pkg syscall/zx/hardware/network, func SessionDetachResultWithErr(int32) SessionDetachResult
+pkg syscall/zx/hardware/network, func SessionDetachResultWithResponse(SessionDetachResponse) SessionDetachResult
+pkg syscall/zx/hardware/network, method (*DeviceEventProxy) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*DeviceInfo) ClearBufferAlignment()
+pkg syscall/zx/hardware/network, method (*DeviceInfo) ClearDescriptorVersion()
+pkg syscall/zx/hardware/network, method (*DeviceInfo) ClearMaxBufferLength()
+pkg syscall/zx/hardware/network, method (*DeviceInfo) ClearMaxBufferParts()
+pkg syscall/zx/hardware/network, method (*DeviceInfo) ClearMinDescriptorLength()
+pkg syscall/zx/hardware/network, method (*DeviceInfo) ClearMinRxBufferLength()
+pkg syscall/zx/hardware/network, method (*DeviceInfo) ClearMinTxBufferHead()
+pkg syscall/zx/hardware/network, method (*DeviceInfo) ClearMinTxBufferLength()
+pkg syscall/zx/hardware/network, method (*DeviceInfo) ClearMinTxBufferTail()
+pkg syscall/zx/hardware/network, method (*DeviceInfo) ClearRxAccel()
+pkg syscall/zx/hardware/network, method (*DeviceInfo) ClearRxDepth()
+pkg syscall/zx/hardware/network, method (*DeviceInfo) ClearTxAccel()
+pkg syscall/zx/hardware/network, method (*DeviceInfo) ClearTxDepth()
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetBufferAlignment() uint32
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetBufferAlignmentWithDefault(uint32) uint32
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetDescriptorVersion() uint8
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetDescriptorVersionWithDefault(uint8) uint8
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetMaxBufferLength() uint32
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetMaxBufferLengthWithDefault(uint32) uint32
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetMaxBufferParts() uint8
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetMaxBufferPartsWithDefault(uint8) uint8
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetMinDescriptorLength() uint8
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetMinDescriptorLengthWithDefault(uint8) uint8
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetMinRxBufferLength() uint32
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetMinRxBufferLengthWithDefault(uint32) uint32
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetMinTxBufferHead() uint16
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetMinTxBufferHeadWithDefault(uint16) uint16
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetMinTxBufferLength() uint32
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetMinTxBufferLengthWithDefault(uint32) uint32
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetMinTxBufferTail() uint16
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetMinTxBufferTailWithDefault(uint16) uint16
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetRxAccel() []RxAcceleration
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetRxAccelWithDefault([]RxAcceleration) []RxAcceleration
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetRxDepth() uint16
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetRxDepthWithDefault(uint16) uint16
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetTxAccel() []TxAcceleration
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetTxAccelWithDefault([]TxAcceleration) []TxAcceleration
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetTxDepth() uint16
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetTxDepthWithDefault(uint16) uint16
+pkg syscall/zx/hardware/network, method (*DeviceInfo) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/hardware/network, method (*DeviceInfo) HasBufferAlignment() bool
+pkg syscall/zx/hardware/network, method (*DeviceInfo) HasDescriptorVersion() bool
+pkg syscall/zx/hardware/network, method (*DeviceInfo) HasMaxBufferLength() bool
+pkg syscall/zx/hardware/network, method (*DeviceInfo) HasMaxBufferParts() bool
+pkg syscall/zx/hardware/network, method (*DeviceInfo) HasMinDescriptorLength() bool
+pkg syscall/zx/hardware/network, method (*DeviceInfo) HasMinRxBufferLength() bool
+pkg syscall/zx/hardware/network, method (*DeviceInfo) HasMinTxBufferHead() bool
+pkg syscall/zx/hardware/network, method (*DeviceInfo) HasMinTxBufferLength() bool
+pkg syscall/zx/hardware/network, method (*DeviceInfo) HasMinTxBufferTail() bool
+pkg syscall/zx/hardware/network, method (*DeviceInfo) HasRxAccel() bool
+pkg syscall/zx/hardware/network, method (*DeviceInfo) HasRxDepth() bool
+pkg syscall/zx/hardware/network, method (*DeviceInfo) HasTxAccel() bool
+pkg syscall/zx/hardware/network, method (*DeviceInfo) HasTxDepth() bool
+pkg syscall/zx/hardware/network, method (*DeviceInfo) HasUnknownData() bool
+pkg syscall/zx/hardware/network, method (*DeviceInfo) Marshaler() fidl.Marshaler
+pkg syscall/zx/hardware/network, method (*DeviceInfo) SetBufferAlignment(uint32)
+pkg syscall/zx/hardware/network, method (*DeviceInfo) SetDescriptorVersion(uint8)
+pkg syscall/zx/hardware/network, method (*DeviceInfo) SetMaxBufferLength(uint32)
+pkg syscall/zx/hardware/network, method (*DeviceInfo) SetMaxBufferParts(uint8)
+pkg syscall/zx/hardware/network, method (*DeviceInfo) SetMinDescriptorLength(uint8)
+pkg syscall/zx/hardware/network, method (*DeviceInfo) SetMinRxBufferLength(uint32)
+pkg syscall/zx/hardware/network, method (*DeviceInfo) SetMinTxBufferHead(uint16)
+pkg syscall/zx/hardware/network, method (*DeviceInfo) SetMinTxBufferLength(uint32)
+pkg syscall/zx/hardware/network, method (*DeviceInfo) SetMinTxBufferTail(uint16)
+pkg syscall/zx/hardware/network, method (*DeviceInfo) SetRxAccel([]RxAcceleration)
+pkg syscall/zx/hardware/network, method (*DeviceInfo) SetRxDepth(uint16)
+pkg syscall/zx/hardware/network, method (*DeviceInfo) SetTxAccel([]TxAcceleration)
+pkg syscall/zx/hardware/network, method (*DeviceInfo) SetTxDepth(uint16)
+pkg syscall/zx/hardware/network, method (*DeviceInstanceEventProxy) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*DeviceInstanceWithCtxInterface) GetDevice(context.Context, DeviceWithCtxInterfaceRequest) error
+pkg syscall/zx/hardware/network, method (*DeviceInstanceWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*DeviceInstanceWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*DeviceInstanceWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/hardware/network, method (*DeviceOpenSessionResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/hardware/network, method (*DeviceOpenSessionResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/hardware/network, method (*DeviceOpenSessionResult) Ordinal() uint64
+pkg syscall/zx/hardware/network, method (*DeviceOpenSessionResult) SetErr(int32)
+pkg syscall/zx/hardware/network, method (*DeviceOpenSessionResult) SetResponse(DeviceOpenSessionResponse)
+pkg syscall/zx/hardware/network, method (*DeviceOpenSessionResult) Which() I_deviceOpenSessionResultTag
+pkg syscall/zx/hardware/network, method (*DevicePortEvent) Marshaler() fidl.Marshaler
+pkg syscall/zx/hardware/network, method (*DevicePortEvent) Ordinal() uint64
+pkg syscall/zx/hardware/network, method (*DevicePortEvent) SetAdded(PortId)
+pkg syscall/zx/hardware/network, method (*DevicePortEvent) SetExisting(PortId)
+pkg syscall/zx/hardware/network, method (*DevicePortEvent) SetIdle(Empty)
+pkg syscall/zx/hardware/network, method (*DevicePortEvent) SetRemoved(PortId)
+pkg syscall/zx/hardware/network, method (*DevicePortEvent) Which() I_devicePortEventTag
+pkg syscall/zx/hardware/network, method (*DeviceWithCtxInterface) Clone(context.Context, DeviceWithCtxInterfaceRequest) error
+pkg syscall/zx/hardware/network, method (*DeviceWithCtxInterface) GetInfo(context.Context) (DeviceInfo, error)
+pkg syscall/zx/hardware/network, method (*DeviceWithCtxInterface) GetPort(context.Context, PortId, PortWithCtxInterfaceRequest) error
+pkg syscall/zx/hardware/network, method (*DeviceWithCtxInterface) GetPortWatcher(context.Context, PortWatcherWithCtxInterfaceRequest) error
+pkg syscall/zx/hardware/network, method (*DeviceWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*DeviceWithCtxInterface) OpenSession(context.Context, string, SessionInfo) (DeviceOpenSessionResult, error)
+pkg syscall/zx/hardware/network, method (*DeviceWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*DeviceWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/hardware/network, method (*Empty) Marshaler() fidl.Marshaler
+pkg syscall/zx/hardware/network, method (*Fifos) Marshaler() fidl.Marshaler
+pkg syscall/zx/hardware/network, method (*FrameTypeSupport) Marshaler() fidl.Marshaler
+pkg syscall/zx/hardware/network, method (*MacAddressingEventProxy) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*MacAddressingWithCtxInterface) AddMulticastAddress(context.Context, net.MacAddress) (int32, error)
+pkg syscall/zx/hardware/network, method (*MacAddressingWithCtxInterface) GetUnicastAddress(context.Context) (net.MacAddress, error)
+pkg syscall/zx/hardware/network, method (*MacAddressingWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*MacAddressingWithCtxInterface) RemoveMulticastAddress(context.Context, net.MacAddress) (int32, error)
+pkg syscall/zx/hardware/network, method (*MacAddressingWithCtxInterface) SetMode(context.Context, MacFilterMode) (int32, error)
+pkg syscall/zx/hardware/network, method (*MacAddressingWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*MacAddressingWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/hardware/network, method (*PortEventProxy) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*PortId) Marshaler() fidl.Marshaler
+pkg syscall/zx/hardware/network, method (*PortInfo) ClearClass()
+pkg syscall/zx/hardware/network, method (*PortInfo) ClearId()
+pkg syscall/zx/hardware/network, method (*PortInfo) ClearRxTypes()
+pkg syscall/zx/hardware/network, method (*PortInfo) ClearTxTypes()
+pkg syscall/zx/hardware/network, method (*PortInfo) GetClass() DeviceClass
+pkg syscall/zx/hardware/network, method (*PortInfo) GetClassWithDefault(DeviceClass) DeviceClass
+pkg syscall/zx/hardware/network, method (*PortInfo) GetId() PortId
+pkg syscall/zx/hardware/network, method (*PortInfo) GetIdWithDefault(PortId) PortId
+pkg syscall/zx/hardware/network, method (*PortInfo) GetRxTypes() []FrameType
+pkg syscall/zx/hardware/network, method (*PortInfo) GetRxTypesWithDefault([]FrameType) []FrameType
+pkg syscall/zx/hardware/network, method (*PortInfo) GetTxTypes() []FrameTypeSupport
+pkg syscall/zx/hardware/network, method (*PortInfo) GetTxTypesWithDefault([]FrameTypeSupport) []FrameTypeSupport
+pkg syscall/zx/hardware/network, method (*PortInfo) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/hardware/network, method (*PortInfo) HasClass() bool
+pkg syscall/zx/hardware/network, method (*PortInfo) HasId() bool
+pkg syscall/zx/hardware/network, method (*PortInfo) HasRxTypes() bool
+pkg syscall/zx/hardware/network, method (*PortInfo) HasTxTypes() bool
+pkg syscall/zx/hardware/network, method (*PortInfo) HasUnknownData() bool
+pkg syscall/zx/hardware/network, method (*PortInfo) Marshaler() fidl.Marshaler
+pkg syscall/zx/hardware/network, method (*PortInfo) SetClass(DeviceClass)
+pkg syscall/zx/hardware/network, method (*PortInfo) SetId(PortId)
+pkg syscall/zx/hardware/network, method (*PortInfo) SetRxTypes([]FrameType)
+pkg syscall/zx/hardware/network, method (*PortInfo) SetTxTypes([]FrameTypeSupport)
+pkg syscall/zx/hardware/network, method (*PortStatus) ClearFlags()
+pkg syscall/zx/hardware/network, method (*PortStatus) ClearMtu()
+pkg syscall/zx/hardware/network, method (*PortStatus) GetFlags() StatusFlags
+pkg syscall/zx/hardware/network, method (*PortStatus) GetFlagsWithDefault(StatusFlags) StatusFlags
+pkg syscall/zx/hardware/network, method (*PortStatus) GetMtu() uint32
+pkg syscall/zx/hardware/network, method (*PortStatus) GetMtuWithDefault(uint32) uint32
+pkg syscall/zx/hardware/network, method (*PortStatus) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/hardware/network, method (*PortStatus) HasFlags() bool
+pkg syscall/zx/hardware/network, method (*PortStatus) HasMtu() bool
+pkg syscall/zx/hardware/network, method (*PortStatus) HasUnknownData() bool
+pkg syscall/zx/hardware/network, method (*PortStatus) Marshaler() fidl.Marshaler
+pkg syscall/zx/hardware/network, method (*PortStatus) SetFlags(StatusFlags)
+pkg syscall/zx/hardware/network, method (*PortStatus) SetMtu(uint32)
+pkg syscall/zx/hardware/network, method (*PortWatcherEventProxy) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*PortWatcherWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*PortWatcherWithCtxInterface) Watch(context.Context) (DevicePortEvent, error)
+pkg syscall/zx/hardware/network, method (*PortWatcherWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*PortWatcherWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/hardware/network, method (*PortWithCtxInterface) Clone(context.Context, PortWithCtxInterfaceRequest) error
+pkg syscall/zx/hardware/network, method (*PortWithCtxInterface) GetDevice(context.Context, DeviceWithCtxInterfaceRequest) error
+pkg syscall/zx/hardware/network, method (*PortWithCtxInterface) GetInfo(context.Context) (PortInfo, error)
+pkg syscall/zx/hardware/network, method (*PortWithCtxInterface) GetMac(context.Context, MacAddressingWithCtxInterfaceRequest) error
+pkg syscall/zx/hardware/network, method (*PortWithCtxInterface) GetStatus(context.Context) (PortStatus, error)
+pkg syscall/zx/hardware/network, method (*PortWithCtxInterface) GetStatusWatcher(context.Context, StatusWatcherWithCtxInterfaceRequest, uint32) error
+pkg syscall/zx/hardware/network, method (*PortWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*PortWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*PortWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/hardware/network, method (*SessionAttachResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/hardware/network, method (*SessionAttachResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/hardware/network, method (*SessionAttachResult) Ordinal() uint64
+pkg syscall/zx/hardware/network, method (*SessionAttachResult) SetErr(int32)
+pkg syscall/zx/hardware/network, method (*SessionAttachResult) SetResponse(SessionAttachResponse)
+pkg syscall/zx/hardware/network, method (*SessionAttachResult) Which() I_sessionAttachResultTag
+pkg syscall/zx/hardware/network, method (*SessionDetachResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/hardware/network, method (*SessionDetachResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/hardware/network, method (*SessionDetachResult) Ordinal() uint64
+pkg syscall/zx/hardware/network, method (*SessionDetachResult) SetErr(int32)
+pkg syscall/zx/hardware/network, method (*SessionDetachResult) SetResponse(SessionDetachResponse)
+pkg syscall/zx/hardware/network, method (*SessionDetachResult) Which() I_sessionDetachResultTag
+pkg syscall/zx/hardware/network, method (*SessionEventProxy) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*SessionInfo) ClearData()
+pkg syscall/zx/hardware/network, method (*SessionInfo) ClearDescriptorCount()
+pkg syscall/zx/hardware/network, method (*SessionInfo) ClearDescriptorLength()
+pkg syscall/zx/hardware/network, method (*SessionInfo) ClearDescriptorVersion()
+pkg syscall/zx/hardware/network, method (*SessionInfo) ClearDescriptors()
+pkg syscall/zx/hardware/network, method (*SessionInfo) ClearOptions()
+pkg syscall/zx/hardware/network, method (*SessionInfo) GetData() zx.VMO
+pkg syscall/zx/hardware/network, method (*SessionInfo) GetDataWithDefault(zx.VMO) zx.VMO
+pkg syscall/zx/hardware/network, method (*SessionInfo) GetDescriptorCount() uint16
+pkg syscall/zx/hardware/network, method (*SessionInfo) GetDescriptorCountWithDefault(uint16) uint16
+pkg syscall/zx/hardware/network, method (*SessionInfo) GetDescriptorLength() uint8
+pkg syscall/zx/hardware/network, method (*SessionInfo) GetDescriptorLengthWithDefault(uint8) uint8
+pkg syscall/zx/hardware/network, method (*SessionInfo) GetDescriptorVersion() uint8
+pkg syscall/zx/hardware/network, method (*SessionInfo) GetDescriptorVersionWithDefault(uint8) uint8
+pkg syscall/zx/hardware/network, method (*SessionInfo) GetDescriptors() zx.VMO
+pkg syscall/zx/hardware/network, method (*SessionInfo) GetDescriptorsWithDefault(zx.VMO) zx.VMO
+pkg syscall/zx/hardware/network, method (*SessionInfo) GetOptions() SessionFlags
+pkg syscall/zx/hardware/network, method (*SessionInfo) GetOptionsWithDefault(SessionFlags) SessionFlags
+pkg syscall/zx/hardware/network, method (*SessionInfo) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/hardware/network, method (*SessionInfo) HasData() bool
+pkg syscall/zx/hardware/network, method (*SessionInfo) HasDescriptorCount() bool
+pkg syscall/zx/hardware/network, method (*SessionInfo) HasDescriptorLength() bool
+pkg syscall/zx/hardware/network, method (*SessionInfo) HasDescriptorVersion() bool
+pkg syscall/zx/hardware/network, method (*SessionInfo) HasDescriptors() bool
+pkg syscall/zx/hardware/network, method (*SessionInfo) HasOptions() bool
+pkg syscall/zx/hardware/network, method (*SessionInfo) HasUnknownData() bool
+pkg syscall/zx/hardware/network, method (*SessionInfo) Marshaler() fidl.Marshaler
+pkg syscall/zx/hardware/network, method (*SessionInfo) SetData(zx.VMO)
+pkg syscall/zx/hardware/network, method (*SessionInfo) SetDescriptorCount(uint16)
+pkg syscall/zx/hardware/network, method (*SessionInfo) SetDescriptorLength(uint8)
+pkg syscall/zx/hardware/network, method (*SessionInfo) SetDescriptorVersion(uint8)
+pkg syscall/zx/hardware/network, method (*SessionInfo) SetDescriptors(zx.VMO)
+pkg syscall/zx/hardware/network, method (*SessionInfo) SetOptions(SessionFlags)
+pkg syscall/zx/hardware/network, method (*SessionWithCtxInterface) Attach(context.Context, PortId, []FrameType) (SessionAttachResult, error)
+pkg syscall/zx/hardware/network, method (*SessionWithCtxInterface) Close(context.Context) error
+pkg syscall/zx/hardware/network, method (*SessionWithCtxInterface) Detach(context.Context, PortId) (SessionDetachResult, error)
+pkg syscall/zx/hardware/network, method (*SessionWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*SessionWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*SessionWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/hardware/network, method (*StatusWatcherEventProxy) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*StatusWatcherWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*StatusWatcherWithCtxInterface) WatchStatus(context.Context) (PortStatus, error)
+pkg syscall/zx/hardware/network, method (*StatusWatcherWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/hardware/network, method (*StatusWatcherWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/hardware/network, method (DeviceClass) I_EnumIsStrict() bool
+pkg syscall/zx/hardware/network, method (DeviceClass) I_EnumValues() []DeviceClass
+pkg syscall/zx/hardware/network, method (DeviceClass) IsUnknown() bool
+pkg syscall/zx/hardware/network, method (DeviceClass) String() string
+pkg syscall/zx/hardware/network, method (EthernetFeatures) ClearBits(EthernetFeatures) EthernetFeatures
+pkg syscall/zx/hardware/network, method (EthernetFeatures) GetUnknownBits() uint64
+pkg syscall/zx/hardware/network, method (EthernetFeatures) HasBits(EthernetFeatures) bool
+pkg syscall/zx/hardware/network, method (EthernetFeatures) HasUnknownBits() bool
+pkg syscall/zx/hardware/network, method (EthernetFeatures) I_BitsIsStrict() bool
+pkg syscall/zx/hardware/network, method (EthernetFeatures) I_BitsMask() EthernetFeatures
+pkg syscall/zx/hardware/network, method (EthernetFeatures) InvertBits() EthernetFeatures
+pkg syscall/zx/hardware/network, method (EthernetFeatures) String() string
+pkg syscall/zx/hardware/network, method (FrameType) I_EnumIsStrict() bool
+pkg syscall/zx/hardware/network, method (FrameType) I_EnumValues() []FrameType
+pkg syscall/zx/hardware/network, method (FrameType) IsUnknown() bool
+pkg syscall/zx/hardware/network, method (FrameType) String() string
+pkg syscall/zx/hardware/network, method (InfoType) I_EnumIsStrict() bool
+pkg syscall/zx/hardware/network, method (InfoType) I_EnumValues() []InfoType
+pkg syscall/zx/hardware/network, method (InfoType) IsUnknown() bool
+pkg syscall/zx/hardware/network, method (InfoType) String() string
+pkg syscall/zx/hardware/network, method (MacFilterMode) I_EnumIsStrict() bool
+pkg syscall/zx/hardware/network, method (MacFilterMode) I_EnumValues() []MacFilterMode
+pkg syscall/zx/hardware/network, method (MacFilterMode) IsUnknown() bool
+pkg syscall/zx/hardware/network, method (MacFilterMode) String() string
+pkg syscall/zx/hardware/network, method (RxAcceleration) I_EnumIsStrict() bool
+pkg syscall/zx/hardware/network, method (RxAcceleration) I_EnumValues() []RxAcceleration
+pkg syscall/zx/hardware/network, method (RxAcceleration) IsUnknown() bool
+pkg syscall/zx/hardware/network, method (RxAcceleration) String() string
+pkg syscall/zx/hardware/network, method (RxFlags) ClearBits(RxFlags) RxFlags
+pkg syscall/zx/hardware/network, method (RxFlags) GetUnknownBits() uint64
+pkg syscall/zx/hardware/network, method (RxFlags) HasBits(RxFlags) bool
+pkg syscall/zx/hardware/network, method (RxFlags) HasUnknownBits() bool
+pkg syscall/zx/hardware/network, method (RxFlags) I_BitsIsStrict() bool
+pkg syscall/zx/hardware/network, method (RxFlags) I_BitsMask() RxFlags
+pkg syscall/zx/hardware/network, method (RxFlags) InvertBits() RxFlags
+pkg syscall/zx/hardware/network, method (RxFlags) String() string
+pkg syscall/zx/hardware/network, method (SessionFlags) ClearBits(SessionFlags) SessionFlags
+pkg syscall/zx/hardware/network, method (SessionFlags) GetUnknownBits() uint64
+pkg syscall/zx/hardware/network, method (SessionFlags) HasBits(SessionFlags) bool
+pkg syscall/zx/hardware/network, method (SessionFlags) HasUnknownBits() bool
+pkg syscall/zx/hardware/network, method (SessionFlags) I_BitsIsStrict() bool
+pkg syscall/zx/hardware/network, method (SessionFlags) I_BitsMask() SessionFlags
+pkg syscall/zx/hardware/network, method (SessionFlags) InvertBits() SessionFlags
+pkg syscall/zx/hardware/network, method (SessionFlags) String() string
+pkg syscall/zx/hardware/network, method (StatusFlags) ClearBits(StatusFlags) StatusFlags
+pkg syscall/zx/hardware/network, method (StatusFlags) GetUnknownBits() uint64
+pkg syscall/zx/hardware/network, method (StatusFlags) HasBits(StatusFlags) bool
+pkg syscall/zx/hardware/network, method (StatusFlags) HasUnknownBits() bool
+pkg syscall/zx/hardware/network, method (StatusFlags) I_BitsIsStrict() bool
+pkg syscall/zx/hardware/network, method (StatusFlags) I_BitsMask() StatusFlags
+pkg syscall/zx/hardware/network, method (StatusFlags) InvertBits() StatusFlags
+pkg syscall/zx/hardware/network, method (StatusFlags) String() string
+pkg syscall/zx/hardware/network, method (TxAcceleration) I_EnumIsStrict() bool
+pkg syscall/zx/hardware/network, method (TxAcceleration) I_EnumValues() []TxAcceleration
+pkg syscall/zx/hardware/network, method (TxAcceleration) IsUnknown() bool
+pkg syscall/zx/hardware/network, method (TxAcceleration) String() string
+pkg syscall/zx/hardware/network, method (TxFlags) ClearBits(TxFlags) TxFlags
+pkg syscall/zx/hardware/network, method (TxFlags) GetUnknownBits() uint64
+pkg syscall/zx/hardware/network, method (TxFlags) HasBits(TxFlags) bool
+pkg syscall/zx/hardware/network, method (TxFlags) HasUnknownBits() bool
+pkg syscall/zx/hardware/network, method (TxFlags) I_BitsIsStrict() bool
+pkg syscall/zx/hardware/network, method (TxFlags) I_BitsMask() TxFlags
+pkg syscall/zx/hardware/network, method (TxFlags) InvertBits() TxFlags
+pkg syscall/zx/hardware/network, method (TxFlags) String() string
+pkg syscall/zx/hardware/network, method (TxReturnFlags) ClearBits(TxReturnFlags) TxReturnFlags
+pkg syscall/zx/hardware/network, method (TxReturnFlags) GetUnknownBits() uint64
+pkg syscall/zx/hardware/network, method (TxReturnFlags) HasBits(TxReturnFlags) bool
+pkg syscall/zx/hardware/network, method (TxReturnFlags) HasUnknownBits() bool
+pkg syscall/zx/hardware/network, method (TxReturnFlags) I_BitsIsStrict() bool
+pkg syscall/zx/hardware/network, method (TxReturnFlags) I_BitsMask() TxReturnFlags
+pkg syscall/zx/hardware/network, method (TxReturnFlags) InvertBits() TxReturnFlags
+pkg syscall/zx/hardware/network, method (TxReturnFlags) String() string
+pkg syscall/zx/hardware/network, type DeviceClass uint16
+pkg syscall/zx/hardware/network, type DeviceEventProxy struct
+pkg syscall/zx/hardware/network, type DeviceEventProxy struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type DeviceInfo struct
+pkg syscall/zx/hardware/network, type DeviceInfo struct, BufferAlignment uint32
+pkg syscall/zx/hardware/network, type DeviceInfo struct, BufferAlignmentPresent bool
+pkg syscall/zx/hardware/network, type DeviceInfo struct, DescriptorVersion uint8
+pkg syscall/zx/hardware/network, type DeviceInfo struct, DescriptorVersionPresent bool
+pkg syscall/zx/hardware/network, type DeviceInfo struct, I_unknownData interface{}
+pkg syscall/zx/hardware/network, type DeviceInfo struct, MaxBufferLength uint32
+pkg syscall/zx/hardware/network, type DeviceInfo struct, MaxBufferLengthPresent bool
+pkg syscall/zx/hardware/network, type DeviceInfo struct, MaxBufferParts uint8
+pkg syscall/zx/hardware/network, type DeviceInfo struct, MaxBufferPartsPresent bool
+pkg syscall/zx/hardware/network, type DeviceInfo struct, MinDescriptorLength uint8
+pkg syscall/zx/hardware/network, type DeviceInfo struct, MinDescriptorLengthPresent bool
+pkg syscall/zx/hardware/network, type DeviceInfo struct, MinRxBufferLength uint32
+pkg syscall/zx/hardware/network, type DeviceInfo struct, MinRxBufferLengthPresent bool
+pkg syscall/zx/hardware/network, type DeviceInfo struct, MinTxBufferHead uint16
+pkg syscall/zx/hardware/network, type DeviceInfo struct, MinTxBufferHeadPresent bool
+pkg syscall/zx/hardware/network, type DeviceInfo struct, MinTxBufferLength uint32
+pkg syscall/zx/hardware/network, type DeviceInfo struct, MinTxBufferLengthPresent bool
+pkg syscall/zx/hardware/network, type DeviceInfo struct, MinTxBufferTail uint16
+pkg syscall/zx/hardware/network, type DeviceInfo struct, MinTxBufferTailPresent bool
+pkg syscall/zx/hardware/network, type DeviceInfo struct, RxAccel []RxAcceleration
+pkg syscall/zx/hardware/network, type DeviceInfo struct, RxAccelPresent bool
+pkg syscall/zx/hardware/network, type DeviceInfo struct, RxDepth uint16
+pkg syscall/zx/hardware/network, type DeviceInfo struct, RxDepthPresent bool
+pkg syscall/zx/hardware/network, type DeviceInfo struct, TxAccel []TxAcceleration
+pkg syscall/zx/hardware/network, type DeviceInfo struct, TxAccelPresent bool
+pkg syscall/zx/hardware/network, type DeviceInfo struct, TxDepth uint16
+pkg syscall/zx/hardware/network, type DeviceInfo struct, TxDepthPresent bool
+pkg syscall/zx/hardware/network, type DeviceInstanceEventProxy struct
+pkg syscall/zx/hardware/network, type DeviceInstanceEventProxy struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type DeviceInstanceWithCtx interface { GetDevice }
+pkg syscall/zx/hardware/network, type DeviceInstanceWithCtx interface, GetDevice(context.Context, DeviceWithCtxInterfaceRequest) error
+pkg syscall/zx/hardware/network, type DeviceInstanceWithCtxInterface struct
+pkg syscall/zx/hardware/network, type DeviceInstanceWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type DeviceInstanceWithCtxInterfaceRequest struct
+pkg syscall/zx/hardware/network, type DeviceInstanceWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type DeviceInstanceWithCtxStub struct
+pkg syscall/zx/hardware/network, type DeviceInstanceWithCtxStub struct, Impl DeviceInstanceWithCtx
+pkg syscall/zx/hardware/network, type DeviceInstanceWithCtxTransitionalBase struct
+pkg syscall/zx/hardware/network, type DeviceOpenSessionResponse struct
+pkg syscall/zx/hardware/network, type DeviceOpenSessionResponse struct, Fifos Fifos
+pkg syscall/zx/hardware/network, type DeviceOpenSessionResponse struct, Session SessionWithCtxInterface
+pkg syscall/zx/hardware/network, type DeviceOpenSessionResult struct
+pkg syscall/zx/hardware/network, type DeviceOpenSessionResult struct, Err int32
+pkg syscall/zx/hardware/network, type DeviceOpenSessionResult struct, Response DeviceOpenSessionResponse
+pkg syscall/zx/hardware/network, type DeviceOpenSessionResult struct, embedded I_deviceOpenSessionResultTag
+pkg syscall/zx/hardware/network, type DevicePortEvent struct
+pkg syscall/zx/hardware/network, type DevicePortEvent struct, Added PortId
+pkg syscall/zx/hardware/network, type DevicePortEvent struct, Existing PortId
+pkg syscall/zx/hardware/network, type DevicePortEvent struct, Idle Empty
+pkg syscall/zx/hardware/network, type DevicePortEvent struct, Removed PortId
+pkg syscall/zx/hardware/network, type DevicePortEvent struct, embedded I_devicePortEventTag
+pkg syscall/zx/hardware/network, type DeviceWithCtx interface { Clone, GetInfo, GetPort, GetPortWatcher, OpenSession }
+pkg syscall/zx/hardware/network, type DeviceWithCtx interface, Clone(context.Context, DeviceWithCtxInterfaceRequest) error
+pkg syscall/zx/hardware/network, type DeviceWithCtx interface, GetInfo(context.Context) (DeviceInfo, error)
+pkg syscall/zx/hardware/network, type DeviceWithCtx interface, GetPort(context.Context, PortId, PortWithCtxInterfaceRequest) error
+pkg syscall/zx/hardware/network, type DeviceWithCtx interface, GetPortWatcher(context.Context, PortWatcherWithCtxInterfaceRequest) error
+pkg syscall/zx/hardware/network, type DeviceWithCtx interface, OpenSession(context.Context, string, SessionInfo) (DeviceOpenSessionResult, error)
+pkg syscall/zx/hardware/network, type DeviceWithCtxInterface struct
+pkg syscall/zx/hardware/network, type DeviceWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type DeviceWithCtxInterfaceRequest struct
+pkg syscall/zx/hardware/network, type DeviceWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type DeviceWithCtxStub struct
+pkg syscall/zx/hardware/network, type DeviceWithCtxStub struct, Impl DeviceWithCtx
+pkg syscall/zx/hardware/network, type DeviceWithCtxTransitionalBase struct
+pkg syscall/zx/hardware/network, type Empty struct
+pkg syscall/zx/hardware/network, type EthernetFeatures uint32
+pkg syscall/zx/hardware/network, type Fifos struct
+pkg syscall/zx/hardware/network, type Fifos struct, Rx zx.Handle
+pkg syscall/zx/hardware/network, type Fifos struct, Tx zx.Handle
+pkg syscall/zx/hardware/network, type FrameType uint8
+pkg syscall/zx/hardware/network, type FrameTypeSupport struct
+pkg syscall/zx/hardware/network, type FrameTypeSupport struct, Features uint32
+pkg syscall/zx/hardware/network, type FrameTypeSupport struct, SupportedFlags TxFlags
+pkg syscall/zx/hardware/network, type FrameTypeSupport struct, Type FrameType
+pkg syscall/zx/hardware/network, type I_deviceOpenSessionResultTag uint64
+pkg syscall/zx/hardware/network, type I_devicePortEventTag uint64
+pkg syscall/zx/hardware/network, type I_sessionAttachResultTag uint64
+pkg syscall/zx/hardware/network, type I_sessionDetachResultTag uint64
+pkg syscall/zx/hardware/network, type InfoType uint32
+pkg syscall/zx/hardware/network, type MacAddressingEventProxy struct
+pkg syscall/zx/hardware/network, type MacAddressingEventProxy struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type MacAddressingWithCtx interface { AddMulticastAddress, GetUnicastAddress, RemoveMulticastAddress, SetMode }
+pkg syscall/zx/hardware/network, type MacAddressingWithCtx interface, AddMulticastAddress(context.Context, net.MacAddress) (int32, error)
+pkg syscall/zx/hardware/network, type MacAddressingWithCtx interface, GetUnicastAddress(context.Context) (net.MacAddress, error)
+pkg syscall/zx/hardware/network, type MacAddressingWithCtx interface, RemoveMulticastAddress(context.Context, net.MacAddress) (int32, error)
+pkg syscall/zx/hardware/network, type MacAddressingWithCtx interface, SetMode(context.Context, MacFilterMode) (int32, error)
+pkg syscall/zx/hardware/network, type MacAddressingWithCtxInterface struct
+pkg syscall/zx/hardware/network, type MacAddressingWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type MacAddressingWithCtxInterfaceRequest struct
+pkg syscall/zx/hardware/network, type MacAddressingWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type MacAddressingWithCtxStub struct
+pkg syscall/zx/hardware/network, type MacAddressingWithCtxStub struct, Impl MacAddressingWithCtx
+pkg syscall/zx/hardware/network, type MacAddressingWithCtxTransitionalBase struct
+pkg syscall/zx/hardware/network, type MacFilterMode uint32
+pkg syscall/zx/hardware/network, type PortEventProxy struct
+pkg syscall/zx/hardware/network, type PortEventProxy struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type PortId struct
+pkg syscall/zx/hardware/network, type PortId struct, Base uint8
+pkg syscall/zx/hardware/network, type PortId struct, Salt uint8
+pkg syscall/zx/hardware/network, type PortInfo struct
+pkg syscall/zx/hardware/network, type PortInfo struct, Class DeviceClass
+pkg syscall/zx/hardware/network, type PortInfo struct, ClassPresent bool
+pkg syscall/zx/hardware/network, type PortInfo struct, I_unknownData interface{}
+pkg syscall/zx/hardware/network, type PortInfo struct, Id PortId
+pkg syscall/zx/hardware/network, type PortInfo struct, IdPresent bool
+pkg syscall/zx/hardware/network, type PortInfo struct, RxTypes []FrameType
+pkg syscall/zx/hardware/network, type PortInfo struct, RxTypesPresent bool
+pkg syscall/zx/hardware/network, type PortInfo struct, TxTypes []FrameTypeSupport
+pkg syscall/zx/hardware/network, type PortInfo struct, TxTypesPresent bool
+pkg syscall/zx/hardware/network, type PortStatus struct
+pkg syscall/zx/hardware/network, type PortStatus struct, Flags StatusFlags
+pkg syscall/zx/hardware/network, type PortStatus struct, FlagsPresent bool
+pkg syscall/zx/hardware/network, type PortStatus struct, I_unknownData interface{}
+pkg syscall/zx/hardware/network, type PortStatus struct, Mtu uint32
+pkg syscall/zx/hardware/network, type PortStatus struct, MtuPresent bool
+pkg syscall/zx/hardware/network, type PortWatcherEventProxy struct
+pkg syscall/zx/hardware/network, type PortWatcherEventProxy struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type PortWatcherWithCtx interface { Watch }
+pkg syscall/zx/hardware/network, type PortWatcherWithCtx interface, Watch(context.Context) (DevicePortEvent, error)
+pkg syscall/zx/hardware/network, type PortWatcherWithCtxInterface struct
+pkg syscall/zx/hardware/network, type PortWatcherWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type PortWatcherWithCtxInterfaceRequest struct
+pkg syscall/zx/hardware/network, type PortWatcherWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type PortWatcherWithCtxStub struct
+pkg syscall/zx/hardware/network, type PortWatcherWithCtxStub struct, Impl PortWatcherWithCtx
+pkg syscall/zx/hardware/network, type PortWatcherWithCtxTransitionalBase struct
+pkg syscall/zx/hardware/network, type PortWithCtx interface { Clone, GetDevice, GetInfo, GetMac, GetStatus, GetStatusWatcher }
+pkg syscall/zx/hardware/network, type PortWithCtx interface, Clone(context.Context, PortWithCtxInterfaceRequest) error
+pkg syscall/zx/hardware/network, type PortWithCtx interface, GetDevice(context.Context, DeviceWithCtxInterfaceRequest) error
+pkg syscall/zx/hardware/network, type PortWithCtx interface, GetInfo(context.Context) (PortInfo, error)
+pkg syscall/zx/hardware/network, type PortWithCtx interface, GetMac(context.Context, MacAddressingWithCtxInterfaceRequest) error
+pkg syscall/zx/hardware/network, type PortWithCtx interface, GetStatus(context.Context) (PortStatus, error)
+pkg syscall/zx/hardware/network, type PortWithCtx interface, GetStatusWatcher(context.Context, StatusWatcherWithCtxInterfaceRequest, uint32) error
+pkg syscall/zx/hardware/network, type PortWithCtxInterface struct
+pkg syscall/zx/hardware/network, type PortWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type PortWithCtxInterfaceRequest struct
+pkg syscall/zx/hardware/network, type PortWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type PortWithCtxStub struct
+pkg syscall/zx/hardware/network, type PortWithCtxStub struct, Impl PortWithCtx
+pkg syscall/zx/hardware/network, type PortWithCtxTransitionalBase struct
+pkg syscall/zx/hardware/network, type RxAcceleration uint8
+pkg syscall/zx/hardware/network, type RxFlags uint32
+pkg syscall/zx/hardware/network, type SessionAttachResponse struct
+pkg syscall/zx/hardware/network, type SessionAttachResult struct
+pkg syscall/zx/hardware/network, type SessionAttachResult struct, Err int32
+pkg syscall/zx/hardware/network, type SessionAttachResult struct, Response SessionAttachResponse
+pkg syscall/zx/hardware/network, type SessionAttachResult struct, embedded I_sessionAttachResultTag
+pkg syscall/zx/hardware/network, type SessionDetachResponse struct
+pkg syscall/zx/hardware/network, type SessionDetachResult struct
+pkg syscall/zx/hardware/network, type SessionDetachResult struct, Err int32
+pkg syscall/zx/hardware/network, type SessionDetachResult struct, Response SessionDetachResponse
+pkg syscall/zx/hardware/network, type SessionDetachResult struct, embedded I_sessionDetachResultTag
+pkg syscall/zx/hardware/network, type SessionEventProxy struct
+pkg syscall/zx/hardware/network, type SessionEventProxy struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type SessionFlags uint16
+pkg syscall/zx/hardware/network, type SessionInfo struct
+pkg syscall/zx/hardware/network, type SessionInfo struct, Data zx.VMO
+pkg syscall/zx/hardware/network, type SessionInfo struct, DataPresent bool
+pkg syscall/zx/hardware/network, type SessionInfo struct, DescriptorCount uint16
+pkg syscall/zx/hardware/network, type SessionInfo struct, DescriptorCountPresent bool
+pkg syscall/zx/hardware/network, type SessionInfo struct, DescriptorLength uint8
+pkg syscall/zx/hardware/network, type SessionInfo struct, DescriptorLengthPresent bool
+pkg syscall/zx/hardware/network, type SessionInfo struct, DescriptorVersion uint8
+pkg syscall/zx/hardware/network, type SessionInfo struct, DescriptorVersionPresent bool
+pkg syscall/zx/hardware/network, type SessionInfo struct, Descriptors zx.VMO
+pkg syscall/zx/hardware/network, type SessionInfo struct, DescriptorsPresent bool
+pkg syscall/zx/hardware/network, type SessionInfo struct, I_unknownData interface{}
+pkg syscall/zx/hardware/network, type SessionInfo struct, Options SessionFlags
+pkg syscall/zx/hardware/network, type SessionInfo struct, OptionsPresent bool
+pkg syscall/zx/hardware/network, type SessionWithCtx interface { Attach, Close, Detach }
+pkg syscall/zx/hardware/network, type SessionWithCtx interface, Attach(context.Context, PortId, []FrameType) (SessionAttachResult, error)
+pkg syscall/zx/hardware/network, type SessionWithCtx interface, Close(context.Context) error
+pkg syscall/zx/hardware/network, type SessionWithCtx interface, Detach(context.Context, PortId) (SessionDetachResult, error)
+pkg syscall/zx/hardware/network, type SessionWithCtxInterface struct
+pkg syscall/zx/hardware/network, type SessionWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type SessionWithCtxInterfaceRequest struct
+pkg syscall/zx/hardware/network, type SessionWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type SessionWithCtxStub struct
+pkg syscall/zx/hardware/network, type SessionWithCtxStub struct, Impl SessionWithCtx
+pkg syscall/zx/hardware/network, type SessionWithCtxTransitionalBase struct
+pkg syscall/zx/hardware/network, type StatusFlags uint32
+pkg syscall/zx/hardware/network, type StatusWatcherEventProxy struct
+pkg syscall/zx/hardware/network, type StatusWatcherEventProxy struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type StatusWatcherWithCtx interface { WatchStatus }
+pkg syscall/zx/hardware/network, type StatusWatcherWithCtx interface, WatchStatus(context.Context) (PortStatus, error)
+pkg syscall/zx/hardware/network, type StatusWatcherWithCtxInterface struct
+pkg syscall/zx/hardware/network, type StatusWatcherWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type StatusWatcherWithCtxInterfaceRequest struct
+pkg syscall/zx/hardware/network, type StatusWatcherWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/hardware/network, type StatusWatcherWithCtxStub struct
+pkg syscall/zx/hardware/network, type StatusWatcherWithCtxStub struct, Impl StatusWatcherWithCtx
+pkg syscall/zx/hardware/network, type StatusWatcherWithCtxTransitionalBase struct
+pkg syscall/zx/hardware/network, type TxAcceleration uint8
+pkg syscall/zx/hardware/network, type TxFlags uint32
+pkg syscall/zx/hardware/network, type TxReturnFlags uint32
+pkg syscall/zx/io, const AdvisoryLockTypeRead = 1
+pkg syscall/zx/io, const AdvisoryLockTypeRead AdvisoryLockType
+pkg syscall/zx/io, const AdvisoryLockTypeUnlock = 3
+pkg syscall/zx/io, const AdvisoryLockTypeUnlock AdvisoryLockType
+pkg syscall/zx/io, const AdvisoryLockTypeWrite = 2
+pkg syscall/zx/io, const AdvisoryLockTypeWrite AdvisoryLockType
+pkg syscall/zx/io, const AdvisoryLockingAdvisoryLockOrdinal = 7992130864415541162
+pkg syscall/zx/io, const AdvisoryLockingAdvisoryLockOrdinal uint64
+pkg syscall/zx/io, const AdvisoryLockingAdvisoryLockResultErr = 2
+pkg syscall/zx/io, const AdvisoryLockingAdvisoryLockResultErr ideal-int
+pkg syscall/zx/io, const AdvisoryLockingAdvisoryLockResultResponse = 1
+pkg syscall/zx/io, const AdvisoryLockingAdvisoryLockResultResponse ideal-int
+pkg syscall/zx/io, const CloseAll = 24
+pkg syscall/zx/io, const CloseAll InotifyWatchMask
+pkg syscall/zx/io, const ConnectionProtocolsConnector = 1
+pkg syscall/zx/io, const ConnectionProtocolsConnector ideal-int
+pkg syscall/zx/io, const ConnectionProtocolsNode = 2
+pkg syscall/zx/io, const ConnectionProtocolsNode ideal-int
+pkg syscall/zx/io, const ConnectionProtocols_unknownData = 0
+pkg syscall/zx/io, const ConnectionProtocols_unknownData ideal-int
+pkg syscall/zx/io, const ConnectorFlags_Mask = 0
+pkg syscall/zx/io, const ConnectorFlags_Mask ConnectorFlags
+pkg syscall/zx/io, const Directory1CloneOrdinal = 6512600400724287855
+pkg syscall/zx/io, const Directory1CloneOrdinal uint64
+pkg syscall/zx/io, const Directory1DescribeOrdinal = 1152055232528178848
+pkg syscall/zx/io, const Directory1DescribeOrdinal uint64
+pkg syscall/zx/io, const Directory1GetAttrOrdinal = 8689798978500614909
+pkg syscall/zx/io, const Directory1GetAttrOrdinal uint64
+pkg syscall/zx/io, const Directory1GetFlagsOrdinal = 6595803110182632097
+pkg syscall/zx/io, const Directory1GetFlagsOrdinal uint64
+pkg syscall/zx/io, const Directory1GetTokenOrdinal = 2787337947777369685
+pkg syscall/zx/io, const Directory1GetTokenOrdinal uint64
+pkg syscall/zx/io, const Directory1LinkOrdinal = 8360374984291987687
+pkg syscall/zx/io, const Directory1LinkOrdinal uint64
+pkg syscall/zx/io, const Directory1OnOpenOrdinal = 9207534335756671346
+pkg syscall/zx/io, const Directory1OnOpenOrdinal uint64
+pkg syscall/zx/io, const Directory1OpenOrdinal = 3193127272456937152
+pkg syscall/zx/io, const Directory1OpenOrdinal uint64
+pkg syscall/zx/io, const Directory1QueryFilesystemOrdinal = 8013111122914313744
+pkg syscall/zx/io, const Directory1QueryFilesystemOrdinal uint64
+pkg syscall/zx/io, const Directory1ReadDirentsOrdinal = 3855785432100874762
+pkg syscall/zx/io, const Directory1ReadDirentsOrdinal uint64
+pkg syscall/zx/io, const Directory1RewindOrdinal = 1635123508515392625
+pkg syscall/zx/io, const Directory1RewindOrdinal uint64
+pkg syscall/zx/io, const Directory1SetAttrOrdinal = 4721673413776871238
+pkg syscall/zx/io, const Directory1SetAttrOrdinal uint64
+pkg syscall/zx/io, const Directory1SetFlagsOrdinal = 5950864159036794675
+pkg syscall/zx/io, const Directory1SetFlagsOrdinal uint64
+pkg syscall/zx/io, const Directory1WatchOrdinal = 6275512344170098065
+pkg syscall/zx/io, const Directory1WatchOrdinal uint64
+pkg syscall/zx/io, const Directory2AddInotifyFilterOrdinal = 2291733984692638506
+pkg syscall/zx/io, const Directory2AddInotifyFilterOrdinal uint64
+pkg syscall/zx/io, const Directory2AdvisoryLockOrdinal = 7992130864415541162
+pkg syscall/zx/io, const Directory2AdvisoryLockOrdinal uint64
+pkg syscall/zx/io, const Directory2CloseOrdinal = 6540867515453498750
+pkg syscall/zx/io, const Directory2CloseOrdinal uint64
+pkg syscall/zx/io, const Directory2EnumerateOrdinal = 3937494568478622589
+pkg syscall/zx/io, const Directory2EnumerateOrdinal uint64
+pkg syscall/zx/io, const Directory2GetAttributesOrdinal = 4414537700416816443
+pkg syscall/zx/io, const Directory2GetAttributesOrdinal uint64
+pkg syscall/zx/io, const Directory2GetConnectionInfoOrdinal = 6362521381364198667
+pkg syscall/zx/io, const Directory2GetConnectionInfoOrdinal uint64
+pkg syscall/zx/io, const Directory2OnRepresentationOrdinal = 6679970090861613324
+pkg syscall/zx/io, const Directory2OnRepresentationOrdinal uint64
+pkg syscall/zx/io, const Directory2Open2Ordinal = 3439711884268033238
+pkg syscall/zx/io, const Directory2Open2Ordinal uint64
+pkg syscall/zx/io, const Directory2QueryOrdinal = 2763219980499352582
+pkg syscall/zx/io, const Directory2QueryOrdinal uint64
+pkg syscall/zx/io, const Directory2RenameOrdinal = 8097726607824333022
+pkg syscall/zx/io, const Directory2RenameOrdinal uint64
+pkg syscall/zx/io, const Directory2RenameResultErr = 2
+pkg syscall/zx/io, const Directory2RenameResultErr ideal-int
+pkg syscall/zx/io, const Directory2RenameResultResponse = 1
+pkg syscall/zx/io, const Directory2RenameResultResponse ideal-int
+pkg syscall/zx/io, const Directory2ReopenOrdinal = 7675434429343513249
+pkg syscall/zx/io, const Directory2ReopenOrdinal uint64
+pkg syscall/zx/io, const Directory2SyncOrdinal = 3196473584242777161
+pkg syscall/zx/io, const Directory2SyncOrdinal uint64
+pkg syscall/zx/io, const Directory2UnlinkOrdinal = 8433556716759383021
+pkg syscall/zx/io, const Directory2UnlinkOrdinal uint64
+pkg syscall/zx/io, const Directory2UnlinkResultErr = 2
+pkg syscall/zx/io, const Directory2UnlinkResultErr ideal-int
+pkg syscall/zx/io, const Directory2UnlinkResultResponse = 1
+pkg syscall/zx/io, const Directory2UnlinkResultResponse ideal-int
+pkg syscall/zx/io, const Directory2UpdateAttributesOrdinal = 3677402239314018056
+pkg syscall/zx/io, const Directory2UpdateAttributesOrdinal uint64
+pkg syscall/zx/io, const DirectoryAddInotifyFilterOrdinal = 2291733984692638506
+pkg syscall/zx/io, const DirectoryAddInotifyFilterOrdinal uint64
+pkg syscall/zx/io, const DirectoryAdvisoryLockOrdinal = 7992130864415541162
+pkg syscall/zx/io, const DirectoryAdvisoryLockOrdinal uint64
+pkg syscall/zx/io, const DirectoryCloneOrdinal = 6512600400724287855
+pkg syscall/zx/io, const DirectoryCloneOrdinal uint64
+pkg syscall/zx/io, const DirectoryCloseOrdinal = 6540867515453498750
+pkg syscall/zx/io, const DirectoryCloseOrdinal uint64
+pkg syscall/zx/io, const DirectoryDescribeOrdinal = 1152055232528178848
+pkg syscall/zx/io, const DirectoryDescribeOrdinal uint64
+pkg syscall/zx/io, const DirectoryEnumerateOrdinal = 3937494568478622589
+pkg syscall/zx/io, const DirectoryEnumerateOrdinal uint64
+pkg syscall/zx/io, const DirectoryGetAttrOrdinal = 8689798978500614909
+pkg syscall/zx/io, const DirectoryGetAttrOrdinal uint64
+pkg syscall/zx/io, const DirectoryGetAttributesOrdinal = 4414537700416816443
+pkg syscall/zx/io, const DirectoryGetAttributesOrdinal uint64
+pkg syscall/zx/io, const DirectoryGetConnectionInfoOrdinal = 6362521381364198667
+pkg syscall/zx/io, const DirectoryGetConnectionInfoOrdinal uint64
+pkg syscall/zx/io, const DirectoryGetFlagsOrdinal = 6595803110182632097
+pkg syscall/zx/io, const DirectoryGetFlagsOrdinal uint64
+pkg syscall/zx/io, const DirectoryGetTokenOrdinal = 2787337947777369685
+pkg syscall/zx/io, const DirectoryGetTokenOrdinal uint64
+pkg syscall/zx/io, const DirectoryIteratorGetNextOrdinal = 4355173791087153387
+pkg syscall/zx/io, const DirectoryIteratorGetNextOrdinal uint64
+pkg syscall/zx/io, const DirectoryIteratorGetNextResultErr = 2
+pkg syscall/zx/io, const DirectoryIteratorGetNextResultErr ideal-int
+pkg syscall/zx/io, const DirectoryIteratorGetNextResultResponse = 1
+pkg syscall/zx/io, const DirectoryIteratorGetNextResultResponse ideal-int
+pkg syscall/zx/io, const DirectoryLinkOrdinal = 8360374984291987687
+pkg syscall/zx/io, const DirectoryLinkOrdinal uint64
+pkg syscall/zx/io, const DirectoryOnOpenOrdinal = 9207534335756671346
+pkg syscall/zx/io, const DirectoryOnOpenOrdinal uint64
+pkg syscall/zx/io, const DirectoryOnRepresentationOrdinal = 6679970090861613324
+pkg syscall/zx/io, const DirectoryOnRepresentationOrdinal uint64
+pkg syscall/zx/io, const DirectoryOpen2Ordinal = 3439711884268033238
+pkg syscall/zx/io, const DirectoryOpen2Ordinal uint64
+pkg syscall/zx/io, const DirectoryOpenOrdinal = 3193127272456937152
+pkg syscall/zx/io, const DirectoryOpenOrdinal uint64
+pkg syscall/zx/io, const DirectoryQueryFilesystemOrdinal = 8013111122914313744
+pkg syscall/zx/io, const DirectoryQueryFilesystemOrdinal uint64
+pkg syscall/zx/io, const DirectoryQueryOrdinal = 2763219980499352582
+pkg syscall/zx/io, const DirectoryQueryOrdinal uint64
+pkg syscall/zx/io, const DirectoryReadDirentsOrdinal = 3855785432100874762
+pkg syscall/zx/io, const DirectoryReadDirentsOrdinal uint64
+pkg syscall/zx/io, const DirectoryRenameOrdinal = 8097726607824333022
+pkg syscall/zx/io, const DirectoryRenameOrdinal uint64
+pkg syscall/zx/io, const DirectoryReopenOrdinal = 7675434429343513249
+pkg syscall/zx/io, const DirectoryReopenOrdinal uint64
+pkg syscall/zx/io, const DirectoryRewindOrdinal = 1635123508515392625
+pkg syscall/zx/io, const DirectoryRewindOrdinal uint64
+pkg syscall/zx/io, const DirectorySetAttrOrdinal = 4721673413776871238
+pkg syscall/zx/io, const DirectorySetAttrOrdinal uint64
+pkg syscall/zx/io, const DirectorySetFlagsOrdinal = 5950864159036794675
+pkg syscall/zx/io, const DirectorySetFlagsOrdinal uint64
+pkg syscall/zx/io, const DirectorySyncOrdinal = 3196473584242777161
+pkg syscall/zx/io, const DirectorySyncOrdinal uint64
+pkg syscall/zx/io, const DirectoryUnlinkOrdinal = 8433556716759383021
+pkg syscall/zx/io, const DirectoryUnlinkOrdinal uint64
+pkg syscall/zx/io, const DirectoryUpdateAttributesOrdinal = 3677402239314018056
+pkg syscall/zx/io, const DirectoryUpdateAttributesOrdinal uint64
+pkg syscall/zx/io, const DirectoryWatchOrdinal = 6275512344170098065
+pkg syscall/zx/io, const DirectoryWatchOrdinal uint64
+pkg syscall/zx/io, const DirentTypeBlockDevice = 6
+pkg syscall/zx/io, const DirentTypeBlockDevice DirentType
+pkg syscall/zx/io, const DirentTypeDirectory = 4
+pkg syscall/zx/io, const DirentTypeDirectory DirentType
+pkg syscall/zx/io, const DirentTypeFile = 8
+pkg syscall/zx/io, const DirentTypeFile DirentType
+pkg syscall/zx/io, const DirentTypeService = 16
+pkg syscall/zx/io, const DirentTypeService DirentType
+pkg syscall/zx/io, const DirentTypeUnknown = 0
+pkg syscall/zx/io, const DirentTypeUnknown DirentType
+pkg syscall/zx/io, const File2CloseOrdinal = 6540867515453498750
+pkg syscall/zx/io, const File2CloseOrdinal uint64
+pkg syscall/zx/io, const File2GetAttributesOrdinal = 4414537700416816443
+pkg syscall/zx/io, const File2GetAttributesOrdinal uint64
+pkg syscall/zx/io, const File2GetBackingMemoryOrdinal = 46911652864194091
+pkg syscall/zx/io, const File2GetBackingMemoryOrdinal uint64
+pkg syscall/zx/io, const File2GetBackingMemoryResultErr = 2
+pkg syscall/zx/io, const File2GetBackingMemoryResultErr ideal-int
+pkg syscall/zx/io, const File2GetBackingMemoryResultResponse = 1
+pkg syscall/zx/io, const File2GetBackingMemoryResultResponse ideal-int
+pkg syscall/zx/io, const File2GetConnectionInfoOrdinal = 6362521381364198667
+pkg syscall/zx/io, const File2GetConnectionInfoOrdinal uint64
+pkg syscall/zx/io, const File2OnRepresentationOrdinal = 6679970090861613324
+pkg syscall/zx/io, const File2OnRepresentationOrdinal uint64
+pkg syscall/zx/io, const File2QueryOrdinal = 2763219980499352582
+pkg syscall/zx/io, const File2QueryOrdinal uint64
+pkg syscall/zx/io, const File2ReadAtOrdinal = 1587416148701180478
+pkg syscall/zx/io, const File2ReadAtOrdinal uint64
+pkg syscall/zx/io, const File2ReadAtResultErr = 2
+pkg syscall/zx/io, const File2ReadAtResultErr ideal-int
+pkg syscall/zx/io, const File2ReadAtResultResponse = 1
+pkg syscall/zx/io, const File2ReadAtResultResponse ideal-int
+pkg syscall/zx/io, const File2ReadOrdinal = 395825947633028830
+pkg syscall/zx/io, const File2ReadOrdinal uint64
+pkg syscall/zx/io, const File2ReadResultErr = 2
+pkg syscall/zx/io, const File2ReadResultErr ideal-int
+pkg syscall/zx/io, const File2ReadResultResponse = 1
+pkg syscall/zx/io, const File2ReadResultResponse ideal-int
+pkg syscall/zx/io, const File2ReopenOrdinal = 7675434429343513249
+pkg syscall/zx/io, const File2ReopenOrdinal uint64
+pkg syscall/zx/io, const File2ResizeOrdinal = 3134648685270758458
+pkg syscall/zx/io, const File2ResizeOrdinal uint64
+pkg syscall/zx/io, const File2ResizeResultErr = 2
+pkg syscall/zx/io, const File2ResizeResultErr ideal-int
+pkg syscall/zx/io, const File2ResizeResultResponse = 1
+pkg syscall/zx/io, const File2ResizeResultResponse ideal-int
+pkg syscall/zx/io, const File2SeekOrdinal = 8649041485622956551
+pkg syscall/zx/io, const File2SeekOrdinal uint64
+pkg syscall/zx/io, const File2SeekResultErr = 2
+pkg syscall/zx/io, const File2SeekResultErr ideal-int
+pkg syscall/zx/io, const File2SeekResultResponse = 1
+pkg syscall/zx/io, const File2SeekResultResponse ideal-int
+pkg syscall/zx/io, const File2SyncOrdinal = 3196473584242777161
+pkg syscall/zx/io, const File2SyncOrdinal uint64
+pkg syscall/zx/io, const File2UpdateAttributesOrdinal = 3677402239314018056
+pkg syscall/zx/io, const File2UpdateAttributesOrdinal uint64
+pkg syscall/zx/io, const File2WriteAtOrdinal = 8736683935131400491
+pkg syscall/zx/io, const File2WriteAtOrdinal uint64
+pkg syscall/zx/io, const File2WriteAtResultErr = 2
+pkg syscall/zx/io, const File2WriteAtResultErr ideal-int
+pkg syscall/zx/io, const File2WriteAtResultResponse = 1
+pkg syscall/zx/io, const File2WriteAtResultResponse ideal-int
+pkg syscall/zx/io, const File2WriteOrdinal = 7651971425397809026
+pkg syscall/zx/io, const File2WriteOrdinal uint64
+pkg syscall/zx/io, const File2WriteResultErr = 2
+pkg syscall/zx/io, const File2WriteResultErr ideal-int
+pkg syscall/zx/io, const File2WriteResultResponse = 1
+pkg syscall/zx/io, const File2WriteResultResponse ideal-int
+pkg syscall/zx/io, const FileAdvisoryLockOrdinal = 7992130864415541162
+pkg syscall/zx/io, const FileAdvisoryLockOrdinal uint64
+pkg syscall/zx/io, const FileCloneOrdinal = 6512600400724287855
+pkg syscall/zx/io, const FileCloneOrdinal uint64
+pkg syscall/zx/io, const FileCloseOrdinal = 6540867515453498750
+pkg syscall/zx/io, const FileCloseOrdinal uint64
+pkg syscall/zx/io, const FileDescribe2Ordinal = 7545125870053689020
+pkg syscall/zx/io, const FileDescribe2Ordinal uint64
+pkg syscall/zx/io, const FileDescribeOrdinal = 1152055232528178848
+pkg syscall/zx/io, const FileDescribeOrdinal uint64
+pkg syscall/zx/io, const FileGetAttrOrdinal = 8689798978500614909
+pkg syscall/zx/io, const FileGetAttrOrdinal uint64
+pkg syscall/zx/io, const FileGetAttributesOrdinal = 4414537700416816443
+pkg syscall/zx/io, const FileGetAttributesOrdinal uint64
+pkg syscall/zx/io, const FileGetBackingMemoryOrdinal = 46911652864194091
+pkg syscall/zx/io, const FileGetBackingMemoryOrdinal uint64
+pkg syscall/zx/io, const FileGetConnectionInfoOrdinal = 6362521381364198667
+pkg syscall/zx/io, const FileGetConnectionInfoOrdinal uint64
+pkg syscall/zx/io, const FileGetFlagsOrdinal = 6595803110182632097
+pkg syscall/zx/io, const FileGetFlagsOrdinal uint64
+pkg syscall/zx/io, const FileOnOpenOrdinal = 9207534335756671346
+pkg syscall/zx/io, const FileOnOpenOrdinal uint64
+pkg syscall/zx/io, const FileOnRepresentationOrdinal = 6679970090861613324
+pkg syscall/zx/io, const FileOnRepresentationOrdinal uint64
+pkg syscall/zx/io, const FileProtocolFlagsAppend = 1
+pkg syscall/zx/io, const FileProtocolFlagsAppend FileProtocolFlags
+pkg syscall/zx/io, const FileProtocolFlagsTruncate = 2
+pkg syscall/zx/io, const FileProtocolFlagsTruncate FileProtocolFlags
+pkg syscall/zx/io, const FileProtocolFlags_Mask = 3
+pkg syscall/zx/io, const FileProtocolFlags_Mask FileProtocolFlags
+pkg syscall/zx/io, const FileQueryFilesystemOrdinal = 8013111122914313744
+pkg syscall/zx/io, const FileQueryFilesystemOrdinal uint64
+pkg syscall/zx/io, const FileQueryOrdinal = 2763219980499352582
+pkg syscall/zx/io, const FileQueryOrdinal uint64
+pkg syscall/zx/io, const FileReadAtOrdinal = 1587416148701180478
+pkg syscall/zx/io, const FileReadAtOrdinal uint64
+pkg syscall/zx/io, const FileReadOrdinal = 395825947633028830
+pkg syscall/zx/io, const FileReadOrdinal uint64
+pkg syscall/zx/io, const FileReopenOrdinal = 7675434429343513249
+pkg syscall/zx/io, const FileReopenOrdinal uint64
+pkg syscall/zx/io, const FileResizeOrdinal = 3134648685270758458
+pkg syscall/zx/io, const FileResizeOrdinal uint64
+pkg syscall/zx/io, const FileSeekOrdinal = 8649041485622956551
+pkg syscall/zx/io, const FileSeekOrdinal uint64
+pkg syscall/zx/io, const FileSetAttrOrdinal = 4721673413776871238
+pkg syscall/zx/io, const FileSetAttrOrdinal uint64
+pkg syscall/zx/io, const FileSetFlagsOrdinal = 5950864159036794675
+pkg syscall/zx/io, const FileSetFlagsOrdinal uint64
+pkg syscall/zx/io, const FileSignalReadable = 16777216
+pkg syscall/zx/io, const FileSignalReadable FileSignal
+pkg syscall/zx/io, const FileSignalWritable = 33554432
+pkg syscall/zx/io, const FileSignalWritable FileSignal
+pkg syscall/zx/io, const FileSignal_Mask = 50331648
+pkg syscall/zx/io, const FileSignal_Mask FileSignal
+pkg syscall/zx/io, const FileSyncOrdinal = 3196473584242777161
+pkg syscall/zx/io, const FileSyncOrdinal uint64
+pkg syscall/zx/io, const FileUpdateAttributesOrdinal = 3677402239314018056
+pkg syscall/zx/io, const FileUpdateAttributesOrdinal uint64
+pkg syscall/zx/io, const FileWriteAtOrdinal = 8736683935131400491
+pkg syscall/zx/io, const FileWriteAtOrdinal uint64
+pkg syscall/zx/io, const FileWriteOrdinal = 7651971425397809026
+pkg syscall/zx/io, const FileWriteOrdinal uint64
+pkg syscall/zx/io, const InoUnknown = 18446744073709551615
+pkg syscall/zx/io, const InoUnknown uint64
+pkg syscall/zx/io, const InotifyWatchMaskAccess = 1
+pkg syscall/zx/io, const InotifyWatchMaskAccess InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskAttrib = 4
+pkg syscall/zx/io, const InotifyWatchMaskAttrib InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskCloseNowrite = 16
+pkg syscall/zx/io, const InotifyWatchMaskCloseNowrite InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskCloseWrite = 8
+pkg syscall/zx/io, const InotifyWatchMaskCloseWrite InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskCreate = 256
+pkg syscall/zx/io, const InotifyWatchMaskCreate InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskDelete = 512
+pkg syscall/zx/io, const InotifyWatchMaskDelete InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskDeleteSelf = 1024
+pkg syscall/zx/io, const InotifyWatchMaskDeleteSelf InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskDontFollow = 33554432
+pkg syscall/zx/io, const InotifyWatchMaskDontFollow InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskExclUnlink = 67108864
+pkg syscall/zx/io, const InotifyWatchMaskExclUnlink InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskIgnored = 32768
+pkg syscall/zx/io, const InotifyWatchMaskIgnored InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskIsdirectory = 1073741824
+pkg syscall/zx/io, const InotifyWatchMaskIsdirectory InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskMaskAdd = 536870912
+pkg syscall/zx/io, const InotifyWatchMaskMaskAdd InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskMaskCreate = 268435456
+pkg syscall/zx/io, const InotifyWatchMaskMaskCreate InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskModify = 2
+pkg syscall/zx/io, const InotifyWatchMaskModify InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskMoveSelf = 2048
+pkg syscall/zx/io, const InotifyWatchMaskMoveSelf InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskMovedFrom = 64
+pkg syscall/zx/io, const InotifyWatchMaskMovedFrom InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskMovedTo = 128
+pkg syscall/zx/io, const InotifyWatchMaskMovedTo InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskOneshot = 2147483648
+pkg syscall/zx/io, const InotifyWatchMaskOneshot InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskOnlydir = 16777216
+pkg syscall/zx/io, const InotifyWatchMaskOnlydir InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskOpen = 32
+pkg syscall/zx/io, const InotifyWatchMaskOpen InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskQOverflow = 16384
+pkg syscall/zx/io, const InotifyWatchMaskQOverflow InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMaskUnmount = 8192
+pkg syscall/zx/io, const InotifyWatchMaskUnmount InotifyWatchMask
+pkg syscall/zx/io, const InotifyWatchMask_Mask = 4144033791
+pkg syscall/zx/io, const InotifyWatchMask_Mask InotifyWatchMask
+pkg syscall/zx/io, const MaxBuf = 8192
+pkg syscall/zx/io, const MaxBuf uint64
+pkg syscall/zx/io, const MaxFilename = 255
+pkg syscall/zx/io, const MaxFilename uint64
+pkg syscall/zx/io, const MaxFsNameBuffer = 32
+pkg syscall/zx/io, const MaxFsNameBuffer uint64
+pkg syscall/zx/io, const MaxNameLength = 255
+pkg syscall/zx/io, const MaxNameLength uint64
+pkg syscall/zx/io, const MaxPath = 4096
+pkg syscall/zx/io, const MaxPath uint64
+pkg syscall/zx/io, const MaxPathLength = 4095
+pkg syscall/zx/io, const MaxPathLength uint64
+pkg syscall/zx/io, const MaxTransferSize = 8192
+pkg syscall/zx/io, const MaxTransferSize uint64
+pkg syscall/zx/io, const ModeProtectionMask = 4095
+pkg syscall/zx/io, const ModeProtectionMask uint32
+pkg syscall/zx/io, const ModeTypeBlockDevice = 24576
+pkg syscall/zx/io, const ModeTypeBlockDevice uint32
+pkg syscall/zx/io, const ModeTypeDirectory = 16384
+pkg syscall/zx/io, const ModeTypeDirectory uint32
+pkg syscall/zx/io, const ModeTypeFile = 32768
+pkg syscall/zx/io, const ModeTypeFile uint32
+pkg syscall/zx/io, const ModeTypeMask = 1044480
+pkg syscall/zx/io, const ModeTypeMask uint32
+pkg syscall/zx/io, const ModeTypeService = 65536
+pkg syscall/zx/io, const ModeTypeService uint32
+pkg syscall/zx/io, const Move = 192
+pkg syscall/zx/io, const Move InotifyWatchMask
+pkg syscall/zx/io, const Node1CloneOrdinal = 6512600400724287855
+pkg syscall/zx/io, const Node1CloneOrdinal uint64
+pkg syscall/zx/io, const Node1DescribeOrdinal = 1152055232528178848
+pkg syscall/zx/io, const Node1DescribeOrdinal uint64
+pkg syscall/zx/io, const Node1GetAttrOrdinal = 8689798978500614909
+pkg syscall/zx/io, const Node1GetAttrOrdinal uint64
+pkg syscall/zx/io, const Node1GetFlagsOrdinal = 6595803110182632097
+pkg syscall/zx/io, const Node1GetFlagsOrdinal uint64
+pkg syscall/zx/io, const Node1OnOpenOrdinal = 9207534335756671346
+pkg syscall/zx/io, const Node1OnOpenOrdinal uint64
+pkg syscall/zx/io, const Node1QueryFilesystemOrdinal = 8013111122914313744
+pkg syscall/zx/io, const Node1QueryFilesystemOrdinal uint64
+pkg syscall/zx/io, const Node1SetAttrOrdinal = 4721673413776871238
+pkg syscall/zx/io, const Node1SetAttrOrdinal uint64
+pkg syscall/zx/io, const Node1SetFlagsOrdinal = 5950864159036794675
+pkg syscall/zx/io, const Node1SetFlagsOrdinal uint64
+pkg syscall/zx/io, const Node2CloseOrdinal = 6540867515453498750
+pkg syscall/zx/io, const Node2CloseOrdinal uint64
+pkg syscall/zx/io, const Node2GetAttributesOrdinal = 4414537700416816443
+pkg syscall/zx/io, const Node2GetAttributesOrdinal uint64
+pkg syscall/zx/io, const Node2GetAttributesResultErr = 2
+pkg syscall/zx/io, const Node2GetAttributesResultErr ideal-int
+pkg syscall/zx/io, const Node2GetAttributesResultResponse = 1
+pkg syscall/zx/io, const Node2GetAttributesResultResponse ideal-int
+pkg syscall/zx/io, const Node2GetConnectionInfoOrdinal = 6362521381364198667
+pkg syscall/zx/io, const Node2GetConnectionInfoOrdinal uint64
+pkg syscall/zx/io, const Node2OnRepresentationOrdinal = 6679970090861613324
+pkg syscall/zx/io, const Node2OnRepresentationOrdinal uint64
+pkg syscall/zx/io, const Node2QueryOrdinal = 2763219980499352582
+pkg syscall/zx/io, const Node2QueryOrdinal uint64
+pkg syscall/zx/io, const Node2ReopenOrdinal = 7675434429343513249
+pkg syscall/zx/io, const Node2ReopenOrdinal uint64
+pkg syscall/zx/io, const Node2SyncOrdinal = 3196473584242777161
+pkg syscall/zx/io, const Node2SyncOrdinal uint64
+pkg syscall/zx/io, const Node2SyncResultErr = 2
+pkg syscall/zx/io, const Node2SyncResultErr ideal-int
+pkg syscall/zx/io, const Node2SyncResultResponse = 1
+pkg syscall/zx/io, const Node2SyncResultResponse ideal-int
+pkg syscall/zx/io, const Node2UpdateAttributesOrdinal = 3677402239314018056
+pkg syscall/zx/io, const Node2UpdateAttributesOrdinal uint64
+pkg syscall/zx/io, const Node2UpdateAttributesResultErr = 2
+pkg syscall/zx/io, const Node2UpdateAttributesResultErr ideal-int
+pkg syscall/zx/io, const Node2UpdateAttributesResultResponse = 1
+pkg syscall/zx/io, const Node2UpdateAttributesResultResponse ideal-int
+pkg syscall/zx/io, const NodeAttributeFlagsCreationTime = 1
+pkg syscall/zx/io, const NodeAttributeFlagsCreationTime NodeAttributeFlags
+pkg syscall/zx/io, const NodeAttributeFlagsModificationTime = 2
+pkg syscall/zx/io, const NodeAttributeFlagsModificationTime NodeAttributeFlags
+pkg syscall/zx/io, const NodeAttributeFlags_Mask = 3
+pkg syscall/zx/io, const NodeAttributeFlags_Mask NodeAttributeFlags
+pkg syscall/zx/io, const NodeAttributesQueryAbilities = 2
+pkg syscall/zx/io, const NodeAttributesQueryAbilities NodeAttributesQuery
+pkg syscall/zx/io, const NodeAttributesQueryContentSize = 4
+pkg syscall/zx/io, const NodeAttributesQueryContentSize NodeAttributesQuery
+pkg syscall/zx/io, const NodeAttributesQueryCreationTime = 64
+pkg syscall/zx/io, const NodeAttributesQueryCreationTime NodeAttributesQuery
+pkg syscall/zx/io, const NodeAttributesQueryId = 32
+pkg syscall/zx/io, const NodeAttributesQueryId NodeAttributesQuery
+pkg syscall/zx/io, const NodeAttributesQueryLinkCount = 16
+pkg syscall/zx/io, const NodeAttributesQueryLinkCount NodeAttributesQuery
+pkg syscall/zx/io, const NodeAttributesQueryModificationTime = 128
+pkg syscall/zx/io, const NodeAttributesQueryModificationTime NodeAttributesQuery
+pkg syscall/zx/io, const NodeAttributesQueryProtocols = 1
+pkg syscall/zx/io, const NodeAttributesQueryProtocols NodeAttributesQuery
+pkg syscall/zx/io, const NodeAttributesQueryStorageSize = 8
+pkg syscall/zx/io, const NodeAttributesQueryStorageSize NodeAttributesQuery
+pkg syscall/zx/io, const NodeAttributesQuery_Mask = 255
+pkg syscall/zx/io, const NodeAttributesQuery_Mask NodeAttributesQuery
+pkg syscall/zx/io, const NodeCloneOrdinal = 6512600400724287855
+pkg syscall/zx/io, const NodeCloneOrdinal uint64
+pkg syscall/zx/io, const NodeCloseOrdinal = 6540867515453498750
+pkg syscall/zx/io, const NodeCloseOrdinal uint64
+pkg syscall/zx/io, const NodeDescribeOrdinal = 1152055232528178848
+pkg syscall/zx/io, const NodeDescribeOrdinal uint64
+pkg syscall/zx/io, const NodeFlagsGetRepresentation = 1
+pkg syscall/zx/io, const NodeFlagsGetRepresentation NodeFlags
+pkg syscall/zx/io, const NodeFlags_Mask = 1
+pkg syscall/zx/io, const NodeFlags_Mask NodeFlags
+pkg syscall/zx/io, const NodeGetAttrOrdinal = 8689798978500614909
+pkg syscall/zx/io, const NodeGetAttrOrdinal uint64
+pkg syscall/zx/io, const NodeGetAttributesOrdinal = 4414537700416816443
+pkg syscall/zx/io, const NodeGetAttributesOrdinal uint64
+pkg syscall/zx/io, const NodeGetConnectionInfoOrdinal = 6362521381364198667
+pkg syscall/zx/io, const NodeGetConnectionInfoOrdinal uint64
+pkg syscall/zx/io, const NodeGetFlagsOrdinal = 6595803110182632097
+pkg syscall/zx/io, const NodeGetFlagsOrdinal uint64
+pkg syscall/zx/io, const NodeInfoDatagramSocket = 13
+pkg syscall/zx/io, const NodeInfoDatagramSocket ideal-int
+pkg syscall/zx/io, const NodeInfoDirectory = 3
+pkg syscall/zx/io, const NodeInfoDirectory ideal-int
+pkg syscall/zx/io, const NodeInfoFile = 2
+pkg syscall/zx/io, const NodeInfoFile ideal-int
+pkg syscall/zx/io, const NodeInfoPacketSocket = 12
+pkg syscall/zx/io, const NodeInfoPacketSocket ideal-int
+pkg syscall/zx/io, const NodeInfoRawSocket = 11
+pkg syscall/zx/io, const NodeInfoRawSocket ideal-int
+pkg syscall/zx/io, const NodeInfoService = 1
+pkg syscall/zx/io, const NodeInfoService ideal-int
+pkg syscall/zx/io, const NodeInfoStreamSocket = 10
+pkg syscall/zx/io, const NodeInfoStreamSocket ideal-int
+pkg syscall/zx/io, const NodeInfoSynchronousDatagramSocket = 9
+pkg syscall/zx/io, const NodeInfoSynchronousDatagramSocket ideal-int
+pkg syscall/zx/io, const NodeInfoTty = 7
+pkg syscall/zx/io, const NodeInfoTty ideal-int
+pkg syscall/zx/io, const NodeInfoVmofileDeprecated = 5
+pkg syscall/zx/io, const NodeInfoVmofileDeprecated ideal-int
+pkg syscall/zx/io, const NodeOnOpenOrdinal = 9207534335756671346
+pkg syscall/zx/io, const NodeOnOpenOrdinal uint64
+pkg syscall/zx/io, const NodeOnRepresentationOrdinal = 6679970090861613324
+pkg syscall/zx/io, const NodeOnRepresentationOrdinal uint64
+pkg syscall/zx/io, const NodeProtocolKindsConnector = 1
+pkg syscall/zx/io, const NodeProtocolKindsConnector NodeProtocolKinds
+pkg syscall/zx/io, const NodeProtocolKindsDirectory = 2
+pkg syscall/zx/io, const NodeProtocolKindsDirectory NodeProtocolKinds
+pkg syscall/zx/io, const NodeProtocolKindsFile = 4
+pkg syscall/zx/io, const NodeProtocolKindsFile NodeProtocolKinds
+pkg syscall/zx/io, const NodeProtocolKinds_Mask = 7
+pkg syscall/zx/io, const NodeProtocolKinds_Mask NodeProtocolKinds
+pkg syscall/zx/io, const NodeQueryFilesystemOrdinal = 8013111122914313744
+pkg syscall/zx/io, const NodeQueryFilesystemOrdinal uint64
+pkg syscall/zx/io, const NodeQueryOrdinal = 2763219980499352582
+pkg syscall/zx/io, const NodeQueryOrdinal uint64
+pkg syscall/zx/io, const NodeReopenOrdinal = 7675434429343513249
+pkg syscall/zx/io, const NodeReopenOrdinal uint64
+pkg syscall/zx/io, const NodeSetAttrOrdinal = 4721673413776871238
+pkg syscall/zx/io, const NodeSetAttrOrdinal uint64
+pkg syscall/zx/io, const NodeSetFlagsOrdinal = 5950864159036794675
+pkg syscall/zx/io, const NodeSetFlagsOrdinal uint64
+pkg syscall/zx/io, const NodeSyncOrdinal = 3196473584242777161
+pkg syscall/zx/io, const NodeSyncOrdinal uint64
+pkg syscall/zx/io, const NodeUpdateAttributesOrdinal = 3677402239314018056
+pkg syscall/zx/io, const NodeUpdateAttributesOrdinal uint64
+pkg syscall/zx/io, const OpenFlagsAllowedWithNodeReference = 46661632
+pkg syscall/zx/io, const OpenFlagsAllowedWithNodeReference OpenFlags
+pkg syscall/zx/io, const OpenFlagsAppend = 1048576
+pkg syscall/zx/io, const OpenFlagsAppend OpenFlags
+pkg syscall/zx/io, const OpenFlagsCloneSameRights = 67108864
+pkg syscall/zx/io, const OpenFlagsCloneSameRights OpenFlags
+pkg syscall/zx/io, const OpenFlagsCreate = 65536
+pkg syscall/zx/io, const OpenFlagsCreate OpenFlags
+pkg syscall/zx/io, const OpenFlagsCreateIfAbsent = 131072
+pkg syscall/zx/io, const OpenFlagsCreateIfAbsent OpenFlags
+pkg syscall/zx/io, const OpenFlagsDescribe = 8388608
+pkg syscall/zx/io, const OpenFlagsDescribe OpenFlags
+pkg syscall/zx/io, const OpenFlagsDirectory = 524288
+pkg syscall/zx/io, const OpenFlagsDirectory OpenFlags
+pkg syscall/zx/io, const OpenFlagsNodeReference = 4194304
+pkg syscall/zx/io, const OpenFlagsNodeReference OpenFlags
+pkg syscall/zx/io, const OpenFlagsNotDirectory = 33554432
+pkg syscall/zx/io, const OpenFlagsNotDirectory OpenFlags
+pkg syscall/zx/io, const OpenFlagsPosixExecutable = 268435456
+pkg syscall/zx/io, const OpenFlagsPosixExecutable OpenFlags
+pkg syscall/zx/io, const OpenFlagsPosixWritable = 134217728
+pkg syscall/zx/io, const OpenFlagsPosixWritable OpenFlags
+pkg syscall/zx/io, const OpenFlagsRightExecutable = 8
+pkg syscall/zx/io, const OpenFlagsRightExecutable OpenFlags
+pkg syscall/zx/io, const OpenFlagsRightReadable = 1
+pkg syscall/zx/io, const OpenFlagsRightReadable OpenFlags
+pkg syscall/zx/io, const OpenFlagsRightWritable = 2
+pkg syscall/zx/io, const OpenFlagsRightWritable OpenFlags
+pkg syscall/zx/io, const OpenFlagsTruncate = 262144
+pkg syscall/zx/io, const OpenFlagsTruncate OpenFlags
+pkg syscall/zx/io, const OpenFlags_Mask = 517931019
+pkg syscall/zx/io, const OpenFlags_Mask OpenFlags
+pkg syscall/zx/io, const OpenModeAlwaysCreate = 3
+pkg syscall/zx/io, const OpenModeAlwaysCreate OpenMode
+pkg syscall/zx/io, const OpenModeMaybeCreate = 2
+pkg syscall/zx/io, const OpenModeMaybeCreate OpenMode
+pkg syscall/zx/io, const OpenModeOpenExisting = 1
+pkg syscall/zx/io, const OpenModeOpenExisting OpenMode
+pkg syscall/zx/io, const OpenRights = 11
+pkg syscall/zx/io, const OpenRights OpenFlags
+pkg syscall/zx/io, const OperationsConnect = 1
+pkg syscall/zx/io, const OperationsConnect Operations
+pkg syscall/zx/io, const OperationsEnumerate = 64
+pkg syscall/zx/io, const OperationsEnumerate Operations
+pkg syscall/zx/io, const OperationsExecute = 8
+pkg syscall/zx/io, const OperationsExecute Operations
+pkg syscall/zx/io, const OperationsGetAttributes = 16
+pkg syscall/zx/io, const OperationsGetAttributes Operations
+pkg syscall/zx/io, const OperationsModifyDirectory = 256
+pkg syscall/zx/io, const OperationsModifyDirectory Operations
+pkg syscall/zx/io, const OperationsReadBytes = 2
+pkg syscall/zx/io, const OperationsReadBytes Operations
+pkg syscall/zx/io, const OperationsTraverse = 128
+pkg syscall/zx/io, const OperationsTraverse Operations
+pkg syscall/zx/io, const OperationsUpdateAttributes = 32
+pkg syscall/zx/io, const OperationsUpdateAttributes Operations
+pkg syscall/zx/io, const OperationsWriteBytes = 4
+pkg syscall/zx/io, const OperationsWriteBytes Operations
+pkg syscall/zx/io, const Operations_Mask = 511
+pkg syscall/zx/io, const Operations_Mask Operations
+pkg syscall/zx/io, const RStarDir = 211
+pkg syscall/zx/io, const RStarDir Operations
+pkg syscall/zx/io, const RepresentationConnector = 1
+pkg syscall/zx/io, const RepresentationConnector ideal-int
+pkg syscall/zx/io, const RepresentationDirectory = 2
+pkg syscall/zx/io, const RepresentationDirectory ideal-int
+pkg syscall/zx/io, const RepresentationFile = 3
+pkg syscall/zx/io, const RepresentationFile ideal-int
+pkg syscall/zx/io, const Representation_unknownData = 0
+pkg syscall/zx/io, const Representation_unknownData ideal-int
+pkg syscall/zx/io, const RightsResolutionMaximize = 1
+pkg syscall/zx/io, const RightsResolutionMaximize RightsResolution
+pkg syscall/zx/io, const RightsResolutionPosix = 2
+pkg syscall/zx/io, const RightsResolutionPosix RightsResolution
+pkg syscall/zx/io, const RwStarDir = 503
+pkg syscall/zx/io, const RwStarDir Operations
+pkg syscall/zx/io, const RxStarDir = 219
+pkg syscall/zx/io, const RxStarDir Operations
+pkg syscall/zx/io, const SeekOriginCurrent = 1
+pkg syscall/zx/io, const SeekOriginCurrent SeekOrigin
+pkg syscall/zx/io, const SeekOriginEnd = 2
+pkg syscall/zx/io, const SeekOriginEnd SeekOrigin
+pkg syscall/zx/io, const SeekOriginStart = 0
+pkg syscall/zx/io, const SeekOriginStart SeekOrigin
+pkg syscall/zx/io, const UnlinkFlagsMustBeDirectory = 1
+pkg syscall/zx/io, const UnlinkFlagsMustBeDirectory UnlinkFlags
+pkg syscall/zx/io, const UnlinkFlags_Mask = 1
+pkg syscall/zx/io, const UnlinkFlags_Mask UnlinkFlags
+pkg syscall/zx/io, const VmoFlagsExecute = 4
+pkg syscall/zx/io, const VmoFlagsExecute VmoFlags
+pkg syscall/zx/io, const VmoFlagsPrivateClone = 65536
+pkg syscall/zx/io, const VmoFlagsPrivateClone VmoFlags
+pkg syscall/zx/io, const VmoFlagsRead = 1
+pkg syscall/zx/io, const VmoFlagsRead VmoFlags
+pkg syscall/zx/io, const VmoFlagsSharedBuffer = 131072
+pkg syscall/zx/io, const VmoFlagsSharedBuffer VmoFlags
+pkg syscall/zx/io, const VmoFlagsWrite = 2
+pkg syscall/zx/io, const VmoFlagsWrite VmoFlags
+pkg syscall/zx/io, const VmoFlags_Mask = 196615
+pkg syscall/zx/io, const VmoFlags_Mask VmoFlags
+pkg syscall/zx/io, const WStarDir = 485
+pkg syscall/zx/io, const WStarDir Operations
+pkg syscall/zx/io, const WatchEventAdded = 1
+pkg syscall/zx/io, const WatchEventAdded WatchEvent
+pkg syscall/zx/io, const WatchEventDeleted = 0
+pkg syscall/zx/io, const WatchEventDeleted WatchEvent
+pkg syscall/zx/io, const WatchEventExisting = 3
+pkg syscall/zx/io, const WatchEventExisting WatchEvent
+pkg syscall/zx/io, const WatchEventIdle = 4
+pkg syscall/zx/io, const WatchEventIdle WatchEvent
+pkg syscall/zx/io, const WatchEventRemoved = 2
+pkg syscall/zx/io, const WatchEventRemoved WatchEvent
+pkg syscall/zx/io, const WatchMaskAdded = 2
+pkg syscall/zx/io, const WatchMaskAdded WatchMask
+pkg syscall/zx/io, const WatchMaskDeleted = 1
+pkg syscall/zx/io, const WatchMaskDeleted WatchMask
+pkg syscall/zx/io, const WatchMaskExisting = 8
+pkg syscall/zx/io, const WatchMaskExisting WatchMask
+pkg syscall/zx/io, const WatchMaskIdle = 16
+pkg syscall/zx/io, const WatchMaskIdle WatchMask
+pkg syscall/zx/io, const WatchMaskRemoved = 4
+pkg syscall/zx/io, const WatchMaskRemoved WatchMask
+pkg syscall/zx/io, const WatchMask_Mask = 31
+pkg syscall/zx/io, const WatchMask_Mask WatchMask
+pkg syscall/zx/io, const XStarDir = 201
+pkg syscall/zx/io, const XStarDir Operations
+pkg syscall/zx/io, func AdvisoryLockingAdvisoryLockResultWithErr(int32) AdvisoryLockingAdvisoryLockResult
+pkg syscall/zx/io, func AdvisoryLockingAdvisoryLockResultWithResponse(AdvisoryLockingAdvisoryLockResponse) AdvisoryLockingAdvisoryLockResult
+pkg syscall/zx/io, func ConnectionProtocolsWithConnector(ConnectorFlags) ConnectionProtocols
+pkg syscall/zx/io, func ConnectionProtocolsWithNode(NodeOptions) ConnectionProtocols
+pkg syscall/zx/io, func Directory2RenameResultWithErr(int32) Directory2RenameResult
+pkg syscall/zx/io, func Directory2RenameResultWithResponse(Directory2RenameResponse) Directory2RenameResult
+pkg syscall/zx/io, func Directory2UnlinkResultWithErr(int32) Directory2UnlinkResult
+pkg syscall/zx/io, func Directory2UnlinkResultWithResponse(Directory2UnlinkResponse) Directory2UnlinkResult
+pkg syscall/zx/io, func DirectoryIteratorGetNextResultWithErr(int32) DirectoryIteratorGetNextResult
+pkg syscall/zx/io, func DirectoryIteratorGetNextResultWithResponse(DirectoryIteratorGetNextResponse) DirectoryIteratorGetNextResult
+pkg syscall/zx/io, func File2GetBackingMemoryResultWithErr(int32) File2GetBackingMemoryResult
+pkg syscall/zx/io, func File2GetBackingMemoryResultWithResponse(File2GetBackingMemoryResponse) File2GetBackingMemoryResult
+pkg syscall/zx/io, func File2ReadAtResultWithErr(int32) File2ReadAtResult
+pkg syscall/zx/io, func File2ReadAtResultWithResponse(File2ReadAtResponse) File2ReadAtResult
+pkg syscall/zx/io, func File2ReadResultWithErr(int32) File2ReadResult
+pkg syscall/zx/io, func File2ReadResultWithResponse(File2ReadResponse) File2ReadResult
+pkg syscall/zx/io, func File2ResizeResultWithErr(int32) File2ResizeResult
+pkg syscall/zx/io, func File2ResizeResultWithResponse(File2ResizeResponse) File2ResizeResult
+pkg syscall/zx/io, func File2SeekResultWithErr(int32) File2SeekResult
+pkg syscall/zx/io, func File2SeekResultWithResponse(File2SeekResponse) File2SeekResult
+pkg syscall/zx/io, func File2WriteAtResultWithErr(int32) File2WriteAtResult
+pkg syscall/zx/io, func File2WriteAtResultWithResponse(File2WriteAtResponse) File2WriteAtResult
+pkg syscall/zx/io, func File2WriteResultWithErr(int32) File2WriteResult
+pkg syscall/zx/io, func File2WriteResultWithResponse(File2WriteResponse) File2WriteResult
+pkg syscall/zx/io, func NewAdvisoryLockingWithCtxInterfaceRequest() (AdvisoryLockingWithCtxInterfaceRequest, *AdvisoryLockingWithCtxInterface, error)
+pkg syscall/zx/io, func NewDirectory1WithCtxInterfaceRequest() (Directory1WithCtxInterfaceRequest, *Directory1WithCtxInterface, error)
+pkg syscall/zx/io, func NewDirectory2WithCtxInterfaceRequest() (Directory2WithCtxInterfaceRequest, *Directory2WithCtxInterface, error)
+pkg syscall/zx/io, func NewDirectoryIteratorWithCtxInterfaceRequest() (DirectoryIteratorWithCtxInterfaceRequest, *DirectoryIteratorWithCtxInterface, error)
+pkg syscall/zx/io, func NewDirectoryWatcherWithCtxInterfaceRequest() (DirectoryWatcherWithCtxInterfaceRequest, *DirectoryWatcherWithCtxInterface, error)
+pkg syscall/zx/io, func NewDirectoryWithCtxInterfaceRequest() (DirectoryWithCtxInterfaceRequest, *DirectoryWithCtxInterface, error)
+pkg syscall/zx/io, func NewFile2WithCtxInterfaceRequest() (File2WithCtxInterfaceRequest, *File2WithCtxInterface, error)
+pkg syscall/zx/io, func NewFileWithCtxInterfaceRequest() (FileWithCtxInterfaceRequest, *FileWithCtxInterface, error)
+pkg syscall/zx/io, func NewInotifierWithCtxInterfaceRequest() (InotifierWithCtxInterfaceRequest, *InotifierWithCtxInterface, error)
+pkg syscall/zx/io, func NewNode1WithCtxInterfaceRequest() (Node1WithCtxInterfaceRequest, *Node1WithCtxInterface, error)
+pkg syscall/zx/io, func NewNode2WithCtxInterfaceRequest() (Node2WithCtxInterfaceRequest, *Node2WithCtxInterface, error)
+pkg syscall/zx/io, func NewNodeWithCtxInterfaceRequest() (NodeWithCtxInterfaceRequest, *NodeWithCtxInterface, error)
+pkg syscall/zx/io, func Node2GetAttributesResultWithErr(int32) Node2GetAttributesResult
+pkg syscall/zx/io, func Node2GetAttributesResultWithResponse(NodeAttributes2) Node2GetAttributesResult
+pkg syscall/zx/io, func Node2SyncResultWithErr(int32) Node2SyncResult
+pkg syscall/zx/io, func Node2SyncResultWithResponse(Node2SyncResponse) Node2SyncResult
+pkg syscall/zx/io, func Node2UpdateAttributesResultWithErr(int32) Node2UpdateAttributesResult
+pkg syscall/zx/io, func Node2UpdateAttributesResultWithResponse(Node2UpdateAttributesResponse) Node2UpdateAttributesResult
+pkg syscall/zx/io, func NodeInfoWithDatagramSocket(DatagramSocket) NodeInfo
+pkg syscall/zx/io, func NodeInfoWithDirectory(DirectoryObject) NodeInfo
+pkg syscall/zx/io, func NodeInfoWithFile(FileObject) NodeInfo
+pkg syscall/zx/io, func NodeInfoWithPacketSocket(PacketSocket) NodeInfo
+pkg syscall/zx/io, func NodeInfoWithRawSocket(RawSocket) NodeInfo
+pkg syscall/zx/io, func NodeInfoWithService(Service) NodeInfo
+pkg syscall/zx/io, func NodeInfoWithStreamSocket(StreamSocket) NodeInfo
+pkg syscall/zx/io, func NodeInfoWithSynchronousDatagramSocket(SynchronousDatagramSocket) NodeInfo
+pkg syscall/zx/io, func NodeInfoWithTty(Tty) NodeInfo
+pkg syscall/zx/io, func NodeInfoWithVmofileDeprecated(VmofileDeprecated) NodeInfo
+pkg syscall/zx/io, func RepresentationWithConnector(ConnectorInfo) Representation
+pkg syscall/zx/io, func RepresentationWithDirectory(DirectoryInfo) Representation
+pkg syscall/zx/io, func RepresentationWithFile(FileInfo) Representation
+pkg syscall/zx/io, method (*AdvisoryLockRange) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*AdvisoryLockRequest) ClearRange()
+pkg syscall/zx/io, method (*AdvisoryLockRequest) ClearType()
+pkg syscall/zx/io, method (*AdvisoryLockRequest) ClearWait()
+pkg syscall/zx/io, method (*AdvisoryLockRequest) GetRange() AdvisoryLockRange
+pkg syscall/zx/io, method (*AdvisoryLockRequest) GetRangeWithDefault(AdvisoryLockRange) AdvisoryLockRange
+pkg syscall/zx/io, method (*AdvisoryLockRequest) GetType() AdvisoryLockType
+pkg syscall/zx/io, method (*AdvisoryLockRequest) GetTypeWithDefault(AdvisoryLockType) AdvisoryLockType
+pkg syscall/zx/io, method (*AdvisoryLockRequest) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/io, method (*AdvisoryLockRequest) GetWait() bool
+pkg syscall/zx/io, method (*AdvisoryLockRequest) GetWaitWithDefault(bool) bool
+pkg syscall/zx/io, method (*AdvisoryLockRequest) HasRange() bool
+pkg syscall/zx/io, method (*AdvisoryLockRequest) HasType() bool
+pkg syscall/zx/io, method (*AdvisoryLockRequest) HasUnknownData() bool
+pkg syscall/zx/io, method (*AdvisoryLockRequest) HasWait() bool
+pkg syscall/zx/io, method (*AdvisoryLockRequest) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*AdvisoryLockRequest) SetRange(AdvisoryLockRange)
+pkg syscall/zx/io, method (*AdvisoryLockRequest) SetType(AdvisoryLockType)
+pkg syscall/zx/io, method (*AdvisoryLockRequest) SetWait(bool)
+pkg syscall/zx/io, method (*AdvisoryLockingAdvisoryLockResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*AdvisoryLockingAdvisoryLockResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*AdvisoryLockingAdvisoryLockResult) Ordinal() uint64
+pkg syscall/zx/io, method (*AdvisoryLockingAdvisoryLockResult) SetErr(int32)
+pkg syscall/zx/io, method (*AdvisoryLockingAdvisoryLockResult) SetResponse(AdvisoryLockingAdvisoryLockResponse)
+pkg syscall/zx/io, method (*AdvisoryLockingAdvisoryLockResult) Which() I_advisoryLockingAdvisoryLockResultTag
+pkg syscall/zx/io, method (*AdvisoryLockingEventProxy) Handle() *zx.Handle
+pkg syscall/zx/io, method (*AdvisoryLockingWithCtxInterface) AdvisoryLock(context.Context, AdvisoryLockRequest) (AdvisoryLockingAdvisoryLockResult, error)
+pkg syscall/zx/io, method (*AdvisoryLockingWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/io, method (*AdvisoryLockingWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/io, method (*AdvisoryLockingWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/io, method (*ConnectionInfo) ClearRights()
+pkg syscall/zx/io, method (*ConnectionInfo) GetRights() Operations
+pkg syscall/zx/io, method (*ConnectionInfo) GetRightsWithDefault(Operations) Operations
+pkg syscall/zx/io, method (*ConnectionInfo) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/io, method (*ConnectionInfo) HasRights() bool
+pkg syscall/zx/io, method (*ConnectionInfo) HasUnknownData() bool
+pkg syscall/zx/io, method (*ConnectionInfo) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*ConnectionInfo) SetRights(Operations)
+pkg syscall/zx/io, method (*ConnectionProtocols) GetUnknownData() fidl.UnknownData
+pkg syscall/zx/io, method (*ConnectionProtocols) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*ConnectionProtocols) Ordinal() uint64
+pkg syscall/zx/io, method (*ConnectionProtocols) SetConnector(ConnectorFlags)
+pkg syscall/zx/io, method (*ConnectionProtocols) SetNode(NodeOptions)
+pkg syscall/zx/io, method (*ConnectionProtocols) Which() I_connectionProtocolsTag
+pkg syscall/zx/io, method (*ConnectorInfo) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/io, method (*ConnectorInfo) HasUnknownData() bool
+pkg syscall/zx/io, method (*ConnectorInfo) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*DatagramSocket) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*Directory1EventProxy) Handle() *zx.Handle
+pkg syscall/zx/io, method (*Directory1EventProxy) OnOpen(int32, *NodeInfo) error
+pkg syscall/zx/io, method (*Directory1WithCtxInterface) Clone(context.Context, OpenFlags, NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/io, method (*Directory1WithCtxInterface) Describe(context.Context) (NodeInfo, error)
+pkg syscall/zx/io, method (*Directory1WithCtxInterface) ExpectOnOpen(context.Context) (int32, *NodeInfo, error)
+pkg syscall/zx/io, method (*Directory1WithCtxInterface) GetAttr(context.Context) (int32, NodeAttributes, error)
+pkg syscall/zx/io, method (*Directory1WithCtxInterface) GetFlags(context.Context) (int32, OpenFlags, error)
+pkg syscall/zx/io, method (*Directory1WithCtxInterface) GetToken(context.Context) (int32, zx.Handle, error)
+pkg syscall/zx/io, method (*Directory1WithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/io, method (*Directory1WithCtxInterface) Link(context.Context, string, zx.Handle, string) (int32, error)
+pkg syscall/zx/io, method (*Directory1WithCtxInterface) Open(context.Context, OpenFlags, uint32, string, NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/io, method (*Directory1WithCtxInterface) QueryFilesystem(context.Context) (int32, *FilesystemInfo, error)
+pkg syscall/zx/io, method (*Directory1WithCtxInterface) ReadDirents(context.Context, uint64) (int32, []uint8, error)
+pkg syscall/zx/io, method (*Directory1WithCtxInterface) Rewind(context.Context) (int32, error)
+pkg syscall/zx/io, method (*Directory1WithCtxInterface) SetAttr(context.Context, NodeAttributeFlags, NodeAttributes) (int32, error)
+pkg syscall/zx/io, method (*Directory1WithCtxInterface) SetFlags(context.Context, OpenFlags) (int32, error)
+pkg syscall/zx/io, method (*Directory1WithCtxInterface) Watch(context.Context, WatchMask, uint32, DirectoryWatcherWithCtxInterfaceRequest) (int32, error)
+pkg syscall/zx/io, method (*Directory1WithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/io, method (*Directory1WithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/io, method (*Directory2EventProxy) Handle() *zx.Handle
+pkg syscall/zx/io, method (*Directory2EventProxy) OnRepresentation(Representation) error
+pkg syscall/zx/io, method (*Directory2RenameResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*Directory2RenameResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*Directory2RenameResult) Ordinal() uint64
+pkg syscall/zx/io, method (*Directory2RenameResult) SetErr(int32)
+pkg syscall/zx/io, method (*Directory2RenameResult) SetResponse(Directory2RenameResponse)
+pkg syscall/zx/io, method (*Directory2RenameResult) Which() I_directory2RenameResultTag
+pkg syscall/zx/io, method (*Directory2UnlinkResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*Directory2UnlinkResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*Directory2UnlinkResult) Ordinal() uint64
+pkg syscall/zx/io, method (*Directory2UnlinkResult) SetErr(int32)
+pkg syscall/zx/io, method (*Directory2UnlinkResult) SetResponse(Directory2UnlinkResponse)
+pkg syscall/zx/io, method (*Directory2UnlinkResult) Which() I_directory2UnlinkResultTag
+pkg syscall/zx/io, method (*Directory2WithCtxInterface) AddInotifyFilter(context.Context, string, InotifyWatchMask, uint32, zx.Socket) error
+pkg syscall/zx/io, method (*Directory2WithCtxInterface) AdvisoryLock(context.Context, AdvisoryLockRequest) (AdvisoryLockingAdvisoryLockResult, error)
+pkg syscall/zx/io, method (*Directory2WithCtxInterface) Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/io, method (*Directory2WithCtxInterface) Enumerate(context.Context, DirectoryEnumerateOptions, DirectoryIteratorWithCtxInterfaceRequest) error
+pkg syscall/zx/io, method (*Directory2WithCtxInterface) ExpectOnRepresentation(context.Context) (Representation, error)
+pkg syscall/zx/io, method (*Directory2WithCtxInterface) GetAttributes(context.Context, NodeAttributesQuery) (Node2GetAttributesResult, error)
+pkg syscall/zx/io, method (*Directory2WithCtxInterface) GetConnectionInfo(context.Context) (ConnectionInfo, error)
+pkg syscall/zx/io, method (*Directory2WithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/io, method (*Directory2WithCtxInterface) Open2(context.Context, string, ConnectionProtocols, zx.Channel) error
+pkg syscall/zx/io, method (*Directory2WithCtxInterface) Query(context.Context) (uint64, error)
+pkg syscall/zx/io, method (*Directory2WithCtxInterface) Rename(context.Context, string, zx.Event, string) (Directory2RenameResult, error)
+pkg syscall/zx/io, method (*Directory2WithCtxInterface) Reopen(context.Context, *RightsRequest, zx.Channel) error
+pkg syscall/zx/io, method (*Directory2WithCtxInterface) Sync(context.Context) (Node2SyncResult, error)
+pkg syscall/zx/io, method (*Directory2WithCtxInterface) Unlink(context.Context, string, UnlinkOptions) (Directory2UnlinkResult, error)
+pkg syscall/zx/io, method (*Directory2WithCtxInterface) UpdateAttributes(context.Context, MutableNodeAttributes) (Node2UpdateAttributesResult, error)
+pkg syscall/zx/io, method (*Directory2WithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/io, method (*Directory2WithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/io, method (*Directory2WithCtxTransitionalBase) Enumerate(context.Context, DirectoryEnumerateOptions, DirectoryIteratorWithCtxInterfaceRequest) error
+pkg syscall/zx/io, method (*Directory2WithCtxTransitionalBase) GetAttributes(context.Context, NodeAttributesQuery) (Node2GetAttributesResult, error)
+pkg syscall/zx/io, method (*Directory2WithCtxTransitionalBase) Open2(context.Context, string, ConnectionProtocols, zx.Channel) error
+pkg syscall/zx/io, method (*Directory2WithCtxTransitionalBase) Query(context.Context) (uint64, error)
+pkg syscall/zx/io, method (*Directory2WithCtxTransitionalBase) Reopen(context.Context, *RightsRequest, zx.Channel) error
+pkg syscall/zx/io, method (*Directory2WithCtxTransitionalBase) UpdateAttributes(context.Context, MutableNodeAttributes) (Node2UpdateAttributesResult, error)
+pkg syscall/zx/io, method (*DirectoryEntry) ClearAbilities()
+pkg syscall/zx/io, method (*DirectoryEntry) ClearId()
+pkg syscall/zx/io, method (*DirectoryEntry) ClearName()
+pkg syscall/zx/io, method (*DirectoryEntry) ClearProtocols()
+pkg syscall/zx/io, method (*DirectoryEntry) GetAbilities() Operations
+pkg syscall/zx/io, method (*DirectoryEntry) GetAbilitiesWithDefault(Operations) Operations
+pkg syscall/zx/io, method (*DirectoryEntry) GetId() uint64
+pkg syscall/zx/io, method (*DirectoryEntry) GetIdWithDefault(uint64) uint64
+pkg syscall/zx/io, method (*DirectoryEntry) GetName() string
+pkg syscall/zx/io, method (*DirectoryEntry) GetNameWithDefault(string) string
+pkg syscall/zx/io, method (*DirectoryEntry) GetProtocols() NodeProtocolKinds
+pkg syscall/zx/io, method (*DirectoryEntry) GetProtocolsWithDefault(NodeProtocolKinds) NodeProtocolKinds
+pkg syscall/zx/io, method (*DirectoryEntry) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/io, method (*DirectoryEntry) HasAbilities() bool
+pkg syscall/zx/io, method (*DirectoryEntry) HasId() bool
+pkg syscall/zx/io, method (*DirectoryEntry) HasName() bool
+pkg syscall/zx/io, method (*DirectoryEntry) HasProtocols() bool
+pkg syscall/zx/io, method (*DirectoryEntry) HasUnknownData() bool
+pkg syscall/zx/io, method (*DirectoryEntry) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*DirectoryEntry) SetAbilities(Operations)
+pkg syscall/zx/io, method (*DirectoryEntry) SetId(uint64)
+pkg syscall/zx/io, method (*DirectoryEntry) SetName(string)
+pkg syscall/zx/io, method (*DirectoryEntry) SetProtocols(NodeProtocolKinds)
+pkg syscall/zx/io, method (*DirectoryEnumerateOptions) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/io, method (*DirectoryEnumerateOptions) HasUnknownData() bool
+pkg syscall/zx/io, method (*DirectoryEnumerateOptions) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*DirectoryEventProxy) Handle() *zx.Handle
+pkg syscall/zx/io, method (*DirectoryEventProxy) OnOpen(int32, *NodeInfo) error
+pkg syscall/zx/io, method (*DirectoryEventProxy) OnRepresentation(Representation) error
+pkg syscall/zx/io, method (*DirectoryInfo) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/io, method (*DirectoryInfo) HasUnknownData() bool
+pkg syscall/zx/io, method (*DirectoryInfo) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*DirectoryIteratorEventProxy) Handle() *zx.Handle
+pkg syscall/zx/io, method (*DirectoryIteratorGetNextResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*DirectoryIteratorGetNextResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*DirectoryIteratorGetNextResult) Ordinal() uint64
+pkg syscall/zx/io, method (*DirectoryIteratorGetNextResult) SetErr(int32)
+pkg syscall/zx/io, method (*DirectoryIteratorGetNextResult) SetResponse(DirectoryIteratorGetNextResponse)
+pkg syscall/zx/io, method (*DirectoryIteratorGetNextResult) Which() I_directoryIteratorGetNextResultTag
+pkg syscall/zx/io, method (*DirectoryIteratorWithCtxInterface) GetNext(context.Context) (DirectoryIteratorGetNextResult, error)
+pkg syscall/zx/io, method (*DirectoryIteratorWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/io, method (*DirectoryIteratorWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/io, method (*DirectoryIteratorWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/io, method (*DirectoryObject) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*DirectoryProtocol) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*DirectoryWatcherEventProxy) Handle() *zx.Handle
+pkg syscall/zx/io, method (*DirectoryWatcherWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/io, method (*DirectoryWatcherWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/io, method (*DirectoryWatcherWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) AddInotifyFilter(context.Context, string, InotifyWatchMask, uint32, zx.Socket) error
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) AdvisoryLock(context.Context, AdvisoryLockRequest) (AdvisoryLockingAdvisoryLockResult, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) Clone(context.Context, OpenFlags, NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) Describe(context.Context) (NodeInfo, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) Enumerate(context.Context, DirectoryEnumerateOptions, DirectoryIteratorWithCtxInterfaceRequest) error
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) ExpectOnOpen(context.Context) (int32, *NodeInfo, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) ExpectOnRepresentation(context.Context) (Representation, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) GetAttr(context.Context) (int32, NodeAttributes, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) GetAttributes(context.Context, NodeAttributesQuery) (Node2GetAttributesResult, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) GetConnectionInfo(context.Context) (ConnectionInfo, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) GetFlags(context.Context) (int32, OpenFlags, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) GetToken(context.Context) (int32, zx.Handle, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) Link(context.Context, string, zx.Handle, string) (int32, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) Open(context.Context, OpenFlags, uint32, string, NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) Open2(context.Context, string, ConnectionProtocols, zx.Channel) error
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) Query(context.Context) (uint64, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) QueryFilesystem(context.Context) (int32, *FilesystemInfo, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) ReadDirents(context.Context, uint64) (int32, []uint8, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) Rename(context.Context, string, zx.Event, string) (Directory2RenameResult, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) Reopen(context.Context, *RightsRequest, zx.Channel) error
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) Rewind(context.Context) (int32, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) SetAttr(context.Context, NodeAttributeFlags, NodeAttributes) (int32, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) SetFlags(context.Context, OpenFlags) (int32, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) Sync(context.Context) (Node2SyncResult, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) Unlink(context.Context, string, UnlinkOptions) (Directory2UnlinkResult, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) UpdateAttributes(context.Context, MutableNodeAttributes) (Node2UpdateAttributesResult, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterface) Watch(context.Context, WatchMask, uint32, DirectoryWatcherWithCtxInterfaceRequest) (int32, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/io, method (*DirectoryWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxTransitionalBase) Enumerate(context.Context, DirectoryEnumerateOptions, DirectoryIteratorWithCtxInterfaceRequest) error
+pkg syscall/zx/io, method (*DirectoryWithCtxTransitionalBase) GetAttributes(context.Context, NodeAttributesQuery) (Node2GetAttributesResult, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxTransitionalBase) Open2(context.Context, string, ConnectionProtocols, zx.Channel) error
+pkg syscall/zx/io, method (*DirectoryWithCtxTransitionalBase) Query(context.Context) (uint64, error)
+pkg syscall/zx/io, method (*DirectoryWithCtxTransitionalBase) Reopen(context.Context, *RightsRequest, zx.Channel) error
+pkg syscall/zx/io, method (*DirectoryWithCtxTransitionalBase) UpdateAttributes(context.Context, MutableNodeAttributes) (Node2UpdateAttributesResult, error)
+pkg syscall/zx/io, method (*File2EventProxy) Handle() *zx.Handle
+pkg syscall/zx/io, method (*File2EventProxy) OnRepresentation(Representation) error
+pkg syscall/zx/io, method (*File2GetBackingMemoryResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*File2GetBackingMemoryResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*File2GetBackingMemoryResult) Ordinal() uint64
+pkg syscall/zx/io, method (*File2GetBackingMemoryResult) SetErr(int32)
+pkg syscall/zx/io, method (*File2GetBackingMemoryResult) SetResponse(File2GetBackingMemoryResponse)
+pkg syscall/zx/io, method (*File2GetBackingMemoryResult) Which() I_file2GetBackingMemoryResultTag
+pkg syscall/zx/io, method (*File2ReadAtResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*File2ReadAtResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*File2ReadAtResult) Ordinal() uint64
+pkg syscall/zx/io, method (*File2ReadAtResult) SetErr(int32)
+pkg syscall/zx/io, method (*File2ReadAtResult) SetResponse(File2ReadAtResponse)
+pkg syscall/zx/io, method (*File2ReadAtResult) Which() I_file2ReadAtResultTag
+pkg syscall/zx/io, method (*File2ReadResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*File2ReadResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*File2ReadResult) Ordinal() uint64
+pkg syscall/zx/io, method (*File2ReadResult) SetErr(int32)
+pkg syscall/zx/io, method (*File2ReadResult) SetResponse(File2ReadResponse)
+pkg syscall/zx/io, method (*File2ReadResult) Which() I_file2ReadResultTag
+pkg syscall/zx/io, method (*File2ResizeResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*File2ResizeResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*File2ResizeResult) Ordinal() uint64
+pkg syscall/zx/io, method (*File2ResizeResult) SetErr(int32)
+pkg syscall/zx/io, method (*File2ResizeResult) SetResponse(File2ResizeResponse)
+pkg syscall/zx/io, method (*File2ResizeResult) Which() I_file2ResizeResultTag
+pkg syscall/zx/io, method (*File2SeekResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*File2SeekResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*File2SeekResult) Ordinal() uint64
+pkg syscall/zx/io, method (*File2SeekResult) SetErr(int32)
+pkg syscall/zx/io, method (*File2SeekResult) SetResponse(File2SeekResponse)
+pkg syscall/zx/io, method (*File2SeekResult) Which() I_file2SeekResultTag
+pkg syscall/zx/io, method (*File2WithCtxInterface) Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/io, method (*File2WithCtxInterface) ExpectOnRepresentation(context.Context) (Representation, error)
+pkg syscall/zx/io, method (*File2WithCtxInterface) GetAttributes(context.Context, NodeAttributesQuery) (Node2GetAttributesResult, error)
+pkg syscall/zx/io, method (*File2WithCtxInterface) GetBackingMemory(context.Context, VmoFlags) (File2GetBackingMemoryResult, error)
+pkg syscall/zx/io, method (*File2WithCtxInterface) GetConnectionInfo(context.Context) (ConnectionInfo, error)
+pkg syscall/zx/io, method (*File2WithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/io, method (*File2WithCtxInterface) Query(context.Context) (uint64, error)
+pkg syscall/zx/io, method (*File2WithCtxInterface) Read(context.Context, uint64) (File2ReadResult, error)
+pkg syscall/zx/io, method (*File2WithCtxInterface) ReadAt(context.Context, uint64, uint64) (File2ReadAtResult, error)
+pkg syscall/zx/io, method (*File2WithCtxInterface) Reopen(context.Context, *RightsRequest, zx.Channel) error
+pkg syscall/zx/io, method (*File2WithCtxInterface) Resize(context.Context, uint64) (File2ResizeResult, error)
+pkg syscall/zx/io, method (*File2WithCtxInterface) Seek(context.Context, SeekOrigin, int64) (File2SeekResult, error)
+pkg syscall/zx/io, method (*File2WithCtxInterface) Sync(context.Context) (Node2SyncResult, error)
+pkg syscall/zx/io, method (*File2WithCtxInterface) UpdateAttributes(context.Context, MutableNodeAttributes) (Node2UpdateAttributesResult, error)
+pkg syscall/zx/io, method (*File2WithCtxInterface) Write(context.Context, []uint8) (File2WriteResult, error)
+pkg syscall/zx/io, method (*File2WithCtxInterface) WriteAt(context.Context, []uint8, uint64) (File2WriteAtResult, error)
+pkg syscall/zx/io, method (*File2WithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/io, method (*File2WithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/io, method (*File2WithCtxTransitionalBase) GetAttributes(context.Context, NodeAttributesQuery) (Node2GetAttributesResult, error)
+pkg syscall/zx/io, method (*File2WithCtxTransitionalBase) Query(context.Context) (uint64, error)
+pkg syscall/zx/io, method (*File2WithCtxTransitionalBase) Reopen(context.Context, *RightsRequest, zx.Channel) error
+pkg syscall/zx/io, method (*File2WithCtxTransitionalBase) UpdateAttributes(context.Context, MutableNodeAttributes) (Node2UpdateAttributesResult, error)
+pkg syscall/zx/io, method (*File2WriteAtResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*File2WriteAtResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*File2WriteAtResult) Ordinal() uint64
+pkg syscall/zx/io, method (*File2WriteAtResult) SetErr(int32)
+pkg syscall/zx/io, method (*File2WriteAtResult) SetResponse(File2WriteAtResponse)
+pkg syscall/zx/io, method (*File2WriteAtResult) Which() I_file2WriteAtResultTag
+pkg syscall/zx/io, method (*File2WriteResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*File2WriteResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*File2WriteResult) Ordinal() uint64
+pkg syscall/zx/io, method (*File2WriteResult) SetErr(int32)
+pkg syscall/zx/io, method (*File2WriteResult) SetResponse(File2WriteResponse)
+pkg syscall/zx/io, method (*File2WriteResult) Which() I_file2WriteResultTag
+pkg syscall/zx/io, method (*FileEventProxy) Handle() *zx.Handle
+pkg syscall/zx/io, method (*FileEventProxy) OnOpen(int32, *NodeInfo) error
+pkg syscall/zx/io, method (*FileEventProxy) OnRepresentation(Representation) error
+pkg syscall/zx/io, method (*FileInfo) ClearIsAppend()
+pkg syscall/zx/io, method (*FileInfo) ClearObserver()
+pkg syscall/zx/io, method (*FileInfo) ClearStream()
+pkg syscall/zx/io, method (*FileInfo) GetIsAppend() bool
+pkg syscall/zx/io, method (*FileInfo) GetIsAppendWithDefault(bool) bool
+pkg syscall/zx/io, method (*FileInfo) GetObserver() zx.Event
+pkg syscall/zx/io, method (*FileInfo) GetObserverWithDefault(zx.Event) zx.Event
+pkg syscall/zx/io, method (*FileInfo) GetStream() zx.Handle
+pkg syscall/zx/io, method (*FileInfo) GetStreamWithDefault(zx.Handle) zx.Handle
+pkg syscall/zx/io, method (*FileInfo) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/io, method (*FileInfo) HasIsAppend() bool
+pkg syscall/zx/io, method (*FileInfo) HasObserver() bool
+pkg syscall/zx/io, method (*FileInfo) HasStream() bool
+pkg syscall/zx/io, method (*FileInfo) HasUnknownData() bool
+pkg syscall/zx/io, method (*FileInfo) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*FileInfo) SetIsAppend(bool)
+pkg syscall/zx/io, method (*FileInfo) SetObserver(zx.Event)
+pkg syscall/zx/io, method (*FileInfo) SetStream(zx.Handle)
+pkg syscall/zx/io, method (*FileObject) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*FileWithCtxInterface) AdvisoryLock(context.Context, AdvisoryLockRequest) (AdvisoryLockingAdvisoryLockResult, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) Clone(context.Context, OpenFlags, NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/io, method (*FileWithCtxInterface) Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) Describe(context.Context) (NodeInfo, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) Describe2(context.Context) (FileInfo, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) ExpectOnOpen(context.Context) (int32, *NodeInfo, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) ExpectOnRepresentation(context.Context) (Representation, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) GetAttr(context.Context) (int32, NodeAttributes, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) GetAttributes(context.Context, NodeAttributesQuery) (Node2GetAttributesResult, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) GetBackingMemory(context.Context, VmoFlags) (File2GetBackingMemoryResult, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) GetConnectionInfo(context.Context) (ConnectionInfo, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) GetFlags(context.Context) (int32, OpenFlags, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/io, method (*FileWithCtxInterface) Query(context.Context) (uint64, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) QueryFilesystem(context.Context) (int32, *FilesystemInfo, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) Read(context.Context, uint64) (File2ReadResult, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) ReadAt(context.Context, uint64, uint64) (File2ReadAtResult, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) Reopen(context.Context, *RightsRequest, zx.Channel) error
+pkg syscall/zx/io, method (*FileWithCtxInterface) Resize(context.Context, uint64) (File2ResizeResult, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) Seek(context.Context, SeekOrigin, int64) (File2SeekResult, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) SetAttr(context.Context, NodeAttributeFlags, NodeAttributes) (int32, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) SetFlags(context.Context, OpenFlags) (int32, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) Sync(context.Context) (Node2SyncResult, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) UpdateAttributes(context.Context, MutableNodeAttributes) (Node2UpdateAttributesResult, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) Write(context.Context, []uint8) (File2WriteResult, error)
+pkg syscall/zx/io, method (*FileWithCtxInterface) WriteAt(context.Context, []uint8, uint64) (File2WriteAtResult, error)
+pkg syscall/zx/io, method (*FileWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/io, method (*FileWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/io, method (*FileWithCtxTransitionalBase) GetAttributes(context.Context, NodeAttributesQuery) (Node2GetAttributesResult, error)
+pkg syscall/zx/io, method (*FileWithCtxTransitionalBase) Query(context.Context) (uint64, error)
+pkg syscall/zx/io, method (*FileWithCtxTransitionalBase) Reopen(context.Context, *RightsRequest, zx.Channel) error
+pkg syscall/zx/io, method (*FileWithCtxTransitionalBase) UpdateAttributes(context.Context, MutableNodeAttributes) (Node2UpdateAttributesResult, error)
+pkg syscall/zx/io, method (*FilesystemInfo) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) ClearAbilities()
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) ClearContentSize()
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) ClearId()
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) ClearLinkCount()
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) ClearProtocols()
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) ClearStorageSize()
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) GetAbilities() Operations
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) GetAbilitiesWithDefault(Operations) Operations
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) GetContentSize() uint64
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) GetContentSizeWithDefault(uint64) uint64
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) GetId() uint64
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) GetIdWithDefault(uint64) uint64
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) GetLinkCount() uint64
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) GetLinkCountWithDefault(uint64) uint64
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) GetProtocols() NodeProtocolKinds
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) GetProtocolsWithDefault(NodeProtocolKinds) NodeProtocolKinds
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) GetStorageSize() uint64
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) GetStorageSizeWithDefault(uint64) uint64
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) HasAbilities() bool
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) HasContentSize() bool
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) HasId() bool
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) HasLinkCount() bool
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) HasProtocols() bool
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) HasStorageSize() bool
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) HasUnknownData() bool
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) SetAbilities(Operations)
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) SetContentSize(uint64)
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) SetId(uint64)
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) SetLinkCount(uint64)
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) SetProtocols(NodeProtocolKinds)
+pkg syscall/zx/io, method (*ImmutableNodeAttributes) SetStorageSize(uint64)
+pkg syscall/zx/io, method (*InotifierEventProxy) Handle() *zx.Handle
+pkg syscall/zx/io, method (*InotifierWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/io, method (*InotifierWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/io, method (*InotifierWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/io, method (*InotifyEvent) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*MutableNodeAttributes) ClearCreationTime()
+pkg syscall/zx/io, method (*MutableNodeAttributes) ClearModificationTime()
+pkg syscall/zx/io, method (*MutableNodeAttributes) GetCreationTime() uint64
+pkg syscall/zx/io, method (*MutableNodeAttributes) GetCreationTimeWithDefault(uint64) uint64
+pkg syscall/zx/io, method (*MutableNodeAttributes) GetModificationTime() uint64
+pkg syscall/zx/io, method (*MutableNodeAttributes) GetModificationTimeWithDefault(uint64) uint64
+pkg syscall/zx/io, method (*MutableNodeAttributes) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/io, method (*MutableNodeAttributes) HasCreationTime() bool
+pkg syscall/zx/io, method (*MutableNodeAttributes) HasModificationTime() bool
+pkg syscall/zx/io, method (*MutableNodeAttributes) HasUnknownData() bool
+pkg syscall/zx/io, method (*MutableNodeAttributes) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*MutableNodeAttributes) SetCreationTime(uint64)
+pkg syscall/zx/io, method (*MutableNodeAttributes) SetModificationTime(uint64)
+pkg syscall/zx/io, method (*Node1EventProxy) Handle() *zx.Handle
+pkg syscall/zx/io, method (*Node1EventProxy) OnOpen(int32, *NodeInfo) error
+pkg syscall/zx/io, method (*Node1WithCtxInterface) Clone(context.Context, OpenFlags, NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/io, method (*Node1WithCtxInterface) Describe(context.Context) (NodeInfo, error)
+pkg syscall/zx/io, method (*Node1WithCtxInterface) ExpectOnOpen(context.Context) (int32, *NodeInfo, error)
+pkg syscall/zx/io, method (*Node1WithCtxInterface) GetAttr(context.Context) (int32, NodeAttributes, error)
+pkg syscall/zx/io, method (*Node1WithCtxInterface) GetFlags(context.Context) (int32, OpenFlags, error)
+pkg syscall/zx/io, method (*Node1WithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/io, method (*Node1WithCtxInterface) QueryFilesystem(context.Context) (int32, *FilesystemInfo, error)
+pkg syscall/zx/io, method (*Node1WithCtxInterface) SetAttr(context.Context, NodeAttributeFlags, NodeAttributes) (int32, error)
+pkg syscall/zx/io, method (*Node1WithCtxInterface) SetFlags(context.Context, OpenFlags) (int32, error)
+pkg syscall/zx/io, method (*Node1WithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/io, method (*Node1WithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/io, method (*Node2EventProxy) Handle() *zx.Handle
+pkg syscall/zx/io, method (*Node2EventProxy) OnRepresentation(Representation) error
+pkg syscall/zx/io, method (*Node2GetAttributesResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*Node2GetAttributesResult) Ordinal() uint64
+pkg syscall/zx/io, method (*Node2GetAttributesResult) SetErr(int32)
+pkg syscall/zx/io, method (*Node2GetAttributesResult) SetResponse(NodeAttributes2)
+pkg syscall/zx/io, method (*Node2GetAttributesResult) Which() I_node2GetAttributesResultTag
+pkg syscall/zx/io, method (*Node2SyncResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*Node2SyncResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*Node2SyncResult) Ordinal() uint64
+pkg syscall/zx/io, method (*Node2SyncResult) SetErr(int32)
+pkg syscall/zx/io, method (*Node2SyncResult) SetResponse(Node2SyncResponse)
+pkg syscall/zx/io, method (*Node2SyncResult) Which() I_node2SyncResultTag
+pkg syscall/zx/io, method (*Node2UpdateAttributesResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*Node2UpdateAttributesResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*Node2UpdateAttributesResult) Ordinal() uint64
+pkg syscall/zx/io, method (*Node2UpdateAttributesResult) SetErr(int32)
+pkg syscall/zx/io, method (*Node2UpdateAttributesResult) SetResponse(Node2UpdateAttributesResponse)
+pkg syscall/zx/io, method (*Node2UpdateAttributesResult) Which() I_node2UpdateAttributesResultTag
+pkg syscall/zx/io, method (*Node2WithCtxInterface) Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/io, method (*Node2WithCtxInterface) ExpectOnRepresentation(context.Context) (Representation, error)
+pkg syscall/zx/io, method (*Node2WithCtxInterface) GetAttributes(context.Context, NodeAttributesQuery) (Node2GetAttributesResult, error)
+pkg syscall/zx/io, method (*Node2WithCtxInterface) GetConnectionInfo(context.Context) (ConnectionInfo, error)
+pkg syscall/zx/io, method (*Node2WithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/io, method (*Node2WithCtxInterface) Query(context.Context) (uint64, error)
+pkg syscall/zx/io, method (*Node2WithCtxInterface) Reopen(context.Context, *RightsRequest, zx.Channel) error
+pkg syscall/zx/io, method (*Node2WithCtxInterface) Sync(context.Context) (Node2SyncResult, error)
+pkg syscall/zx/io, method (*Node2WithCtxInterface) UpdateAttributes(context.Context, MutableNodeAttributes) (Node2UpdateAttributesResult, error)
+pkg syscall/zx/io, method (*Node2WithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/io, method (*Node2WithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/io, method (*Node2WithCtxTransitionalBase) GetAttributes(context.Context, NodeAttributesQuery) (Node2GetAttributesResult, error)
+pkg syscall/zx/io, method (*Node2WithCtxTransitionalBase) Query(context.Context) (uint64, error)
+pkg syscall/zx/io, method (*Node2WithCtxTransitionalBase) Reopen(context.Context, *RightsRequest, zx.Channel) error
+pkg syscall/zx/io, method (*Node2WithCtxTransitionalBase) UpdateAttributes(context.Context, MutableNodeAttributes) (Node2UpdateAttributesResult, error)
+pkg syscall/zx/io, method (*NodeAttributes) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*NodeAttributes2) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*NodeEventProxy) Handle() *zx.Handle
+pkg syscall/zx/io, method (*NodeEventProxy) OnOpen(int32, *NodeInfo) error
+pkg syscall/zx/io, method (*NodeEventProxy) OnRepresentation(Representation) error
+pkg syscall/zx/io, method (*NodeInfo) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*NodeInfo) Ordinal() uint64
+pkg syscall/zx/io, method (*NodeInfo) SetDatagramSocket(DatagramSocket)
+pkg syscall/zx/io, method (*NodeInfo) SetDirectory(DirectoryObject)
+pkg syscall/zx/io, method (*NodeInfo) SetFile(FileObject)
+pkg syscall/zx/io, method (*NodeInfo) SetPacketSocket(PacketSocket)
+pkg syscall/zx/io, method (*NodeInfo) SetRawSocket(RawSocket)
+pkg syscall/zx/io, method (*NodeInfo) SetService(Service)
+pkg syscall/zx/io, method (*NodeInfo) SetStreamSocket(StreamSocket)
+pkg syscall/zx/io, method (*NodeInfo) SetSynchronousDatagramSocket(SynchronousDatagramSocket)
+pkg syscall/zx/io, method (*NodeInfo) SetTty(Tty)
+pkg syscall/zx/io, method (*NodeInfo) SetVmofileDeprecated(VmofileDeprecated)
+pkg syscall/zx/io, method (*NodeInfo) Which() I_nodeInfoTag
+pkg syscall/zx/io, method (*NodeOptions) ClearFlags()
+pkg syscall/zx/io, method (*NodeOptions) ClearMode()
+pkg syscall/zx/io, method (*NodeOptions) ClearProtocols()
+pkg syscall/zx/io, method (*NodeOptions) ClearRightsRequest()
+pkg syscall/zx/io, method (*NodeOptions) GetFlags() NodeFlags
+pkg syscall/zx/io, method (*NodeOptions) GetFlagsWithDefault(NodeFlags) NodeFlags
+pkg syscall/zx/io, method (*NodeOptions) GetMode() OpenMode
+pkg syscall/zx/io, method (*NodeOptions) GetModeWithDefault(OpenMode) OpenMode
+pkg syscall/zx/io, method (*NodeOptions) GetProtocols() NodeProtocols
+pkg syscall/zx/io, method (*NodeOptions) GetProtocolsWithDefault(NodeProtocols) NodeProtocols
+pkg syscall/zx/io, method (*NodeOptions) GetRightsRequest() RightsRequest
+pkg syscall/zx/io, method (*NodeOptions) GetRightsRequestWithDefault(RightsRequest) RightsRequest
+pkg syscall/zx/io, method (*NodeOptions) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/io, method (*NodeOptions) HasFlags() bool
+pkg syscall/zx/io, method (*NodeOptions) HasMode() bool
+pkg syscall/zx/io, method (*NodeOptions) HasProtocols() bool
+pkg syscall/zx/io, method (*NodeOptions) HasRightsRequest() bool
+pkg syscall/zx/io, method (*NodeOptions) HasUnknownData() bool
+pkg syscall/zx/io, method (*NodeOptions) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*NodeOptions) SetFlags(NodeFlags)
+pkg syscall/zx/io, method (*NodeOptions) SetMode(OpenMode)
+pkg syscall/zx/io, method (*NodeOptions) SetProtocols(NodeProtocols)
+pkg syscall/zx/io, method (*NodeOptions) SetRightsRequest(RightsRequest)
+pkg syscall/zx/io, method (*NodeProtocols) ClearDirectory()
+pkg syscall/zx/io, method (*NodeProtocols) ClearFile()
+pkg syscall/zx/io, method (*NodeProtocols) GetDirectory() DirectoryProtocol
+pkg syscall/zx/io, method (*NodeProtocols) GetDirectoryWithDefault(DirectoryProtocol) DirectoryProtocol
+pkg syscall/zx/io, method (*NodeProtocols) GetFile() FileProtocolFlags
+pkg syscall/zx/io, method (*NodeProtocols) GetFileWithDefault(FileProtocolFlags) FileProtocolFlags
+pkg syscall/zx/io, method (*NodeProtocols) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/io, method (*NodeProtocols) HasDirectory() bool
+pkg syscall/zx/io, method (*NodeProtocols) HasFile() bool
+pkg syscall/zx/io, method (*NodeProtocols) HasUnknownData() bool
+pkg syscall/zx/io, method (*NodeProtocols) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*NodeProtocols) SetDirectory(DirectoryProtocol)
+pkg syscall/zx/io, method (*NodeProtocols) SetFile(FileProtocolFlags)
+pkg syscall/zx/io, method (*NodeWithCtxInterface) Clone(context.Context, OpenFlags, NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/io, method (*NodeWithCtxInterface) Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/io, method (*NodeWithCtxInterface) Describe(context.Context) (NodeInfo, error)
+pkg syscall/zx/io, method (*NodeWithCtxInterface) ExpectOnOpen(context.Context) (int32, *NodeInfo, error)
+pkg syscall/zx/io, method (*NodeWithCtxInterface) ExpectOnRepresentation(context.Context) (Representation, error)
+pkg syscall/zx/io, method (*NodeWithCtxInterface) GetAttr(context.Context) (int32, NodeAttributes, error)
+pkg syscall/zx/io, method (*NodeWithCtxInterface) GetAttributes(context.Context, NodeAttributesQuery) (Node2GetAttributesResult, error)
+pkg syscall/zx/io, method (*NodeWithCtxInterface) GetConnectionInfo(context.Context) (ConnectionInfo, error)
+pkg syscall/zx/io, method (*NodeWithCtxInterface) GetFlags(context.Context) (int32, OpenFlags, error)
+pkg syscall/zx/io, method (*NodeWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/io, method (*NodeWithCtxInterface) Query(context.Context) (uint64, error)
+pkg syscall/zx/io, method (*NodeWithCtxInterface) QueryFilesystem(context.Context) (int32, *FilesystemInfo, error)
+pkg syscall/zx/io, method (*NodeWithCtxInterface) Reopen(context.Context, *RightsRequest, zx.Channel) error
+pkg syscall/zx/io, method (*NodeWithCtxInterface) SetAttr(context.Context, NodeAttributeFlags, NodeAttributes) (int32, error)
+pkg syscall/zx/io, method (*NodeWithCtxInterface) SetFlags(context.Context, OpenFlags) (int32, error)
+pkg syscall/zx/io, method (*NodeWithCtxInterface) Sync(context.Context) (Node2SyncResult, error)
+pkg syscall/zx/io, method (*NodeWithCtxInterface) UpdateAttributes(context.Context, MutableNodeAttributes) (Node2UpdateAttributesResult, error)
+pkg syscall/zx/io, method (*NodeWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/io, method (*NodeWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/io, method (*NodeWithCtxTransitionalBase) GetAttributes(context.Context, NodeAttributesQuery) (Node2GetAttributesResult, error)
+pkg syscall/zx/io, method (*NodeWithCtxTransitionalBase) Query(context.Context) (uint64, error)
+pkg syscall/zx/io, method (*NodeWithCtxTransitionalBase) Reopen(context.Context, *RightsRequest, zx.Channel) error
+pkg syscall/zx/io, method (*NodeWithCtxTransitionalBase) UpdateAttributes(context.Context, MutableNodeAttributes) (Node2UpdateAttributesResult, error)
+pkg syscall/zx/io, method (*PacketSocket) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*RawSocket) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*Representation) GetUnknownData() fidl.UnknownData
+pkg syscall/zx/io, method (*Representation) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*Representation) Ordinal() uint64
+pkg syscall/zx/io, method (*Representation) SetConnector(ConnectorInfo)
+pkg syscall/zx/io, method (*Representation) SetDirectory(DirectoryInfo)
+pkg syscall/zx/io, method (*Representation) SetFile(FileInfo)
+pkg syscall/zx/io, method (*Representation) Which() I_representationTag
+pkg syscall/zx/io, method (*RightsRequest) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*Service) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*StreamSocket) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*SynchronousDatagramSocket) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*Tty) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*UnlinkOptions) ClearFlags()
+pkg syscall/zx/io, method (*UnlinkOptions) GetFlags() UnlinkFlags
+pkg syscall/zx/io, method (*UnlinkOptions) GetFlagsWithDefault(UnlinkFlags) UnlinkFlags
+pkg syscall/zx/io, method (*UnlinkOptions) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/io, method (*UnlinkOptions) HasFlags() bool
+pkg syscall/zx/io, method (*UnlinkOptions) HasUnknownData() bool
+pkg syscall/zx/io, method (*UnlinkOptions) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (*UnlinkOptions) SetFlags(UnlinkFlags)
+pkg syscall/zx/io, method (*VmofileDeprecated) Marshaler() fidl.Marshaler
+pkg syscall/zx/io, method (AdvisoryLockType) I_EnumIsStrict() bool
+pkg syscall/zx/io, method (AdvisoryLockType) I_EnumValues() []AdvisoryLockType
+pkg syscall/zx/io, method (AdvisoryLockType) IsUnknown() bool
+pkg syscall/zx/io, method (AdvisoryLockType) String() string
+pkg syscall/zx/io, method (ConnectorFlags) ClearBits(ConnectorFlags) ConnectorFlags
+pkg syscall/zx/io, method (ConnectorFlags) GetUnknownBits() uint64
+pkg syscall/zx/io, method (ConnectorFlags) HasBits(ConnectorFlags) bool
+pkg syscall/zx/io, method (ConnectorFlags) HasUnknownBits() bool
+pkg syscall/zx/io, method (ConnectorFlags) I_BitsIsStrict() bool
+pkg syscall/zx/io, method (ConnectorFlags) I_BitsMask() ConnectorFlags
+pkg syscall/zx/io, method (ConnectorFlags) InvertBits() ConnectorFlags
+pkg syscall/zx/io, method (ConnectorFlags) String() string
+pkg syscall/zx/io, method (DirentType) I_EnumIsStrict() bool
+pkg syscall/zx/io, method (DirentType) I_EnumValues() []DirentType
+pkg syscall/zx/io, method (DirentType) IsUnknown() bool
+pkg syscall/zx/io, method (DirentType) String() string
+pkg syscall/zx/io, method (FileProtocolFlags) ClearBits(FileProtocolFlags) FileProtocolFlags
+pkg syscall/zx/io, method (FileProtocolFlags) GetUnknownBits() uint64
+pkg syscall/zx/io, method (FileProtocolFlags) HasBits(FileProtocolFlags) bool
+pkg syscall/zx/io, method (FileProtocolFlags) HasUnknownBits() bool
+pkg syscall/zx/io, method (FileProtocolFlags) I_BitsIsStrict() bool
+pkg syscall/zx/io, method (FileProtocolFlags) I_BitsMask() FileProtocolFlags
+pkg syscall/zx/io, method (FileProtocolFlags) InvertBits() FileProtocolFlags
+pkg syscall/zx/io, method (FileProtocolFlags) String() string
+pkg syscall/zx/io, method (FileSignal) ClearBits(FileSignal) FileSignal
+pkg syscall/zx/io, method (FileSignal) GetUnknownBits() uint64
+pkg syscall/zx/io, method (FileSignal) HasBits(FileSignal) bool
+pkg syscall/zx/io, method (FileSignal) HasUnknownBits() bool
+pkg syscall/zx/io, method (FileSignal) I_BitsIsStrict() bool
+pkg syscall/zx/io, method (FileSignal) I_BitsMask() FileSignal
+pkg syscall/zx/io, method (FileSignal) InvertBits() FileSignal
+pkg syscall/zx/io, method (FileSignal) String() string
+pkg syscall/zx/io, method (InotifyWatchMask) ClearBits(InotifyWatchMask) InotifyWatchMask
+pkg syscall/zx/io, method (InotifyWatchMask) GetUnknownBits() uint64
+pkg syscall/zx/io, method (InotifyWatchMask) HasBits(InotifyWatchMask) bool
+pkg syscall/zx/io, method (InotifyWatchMask) HasUnknownBits() bool
+pkg syscall/zx/io, method (InotifyWatchMask) I_BitsIsStrict() bool
+pkg syscall/zx/io, method (InotifyWatchMask) I_BitsMask() InotifyWatchMask
+pkg syscall/zx/io, method (InotifyWatchMask) InvertBits() InotifyWatchMask
+pkg syscall/zx/io, method (InotifyWatchMask) String() string
+pkg syscall/zx/io, method (NodeAttributeFlags) ClearBits(NodeAttributeFlags) NodeAttributeFlags
+pkg syscall/zx/io, method (NodeAttributeFlags) GetUnknownBits() uint64
+pkg syscall/zx/io, method (NodeAttributeFlags) HasBits(NodeAttributeFlags) bool
+pkg syscall/zx/io, method (NodeAttributeFlags) HasUnknownBits() bool
+pkg syscall/zx/io, method (NodeAttributeFlags) I_BitsIsStrict() bool
+pkg syscall/zx/io, method (NodeAttributeFlags) I_BitsMask() NodeAttributeFlags
+pkg syscall/zx/io, method (NodeAttributeFlags) InvertBits() NodeAttributeFlags
+pkg syscall/zx/io, method (NodeAttributeFlags) String() string
+pkg syscall/zx/io, method (NodeAttributesQuery) ClearBits(NodeAttributesQuery) NodeAttributesQuery
+pkg syscall/zx/io, method (NodeAttributesQuery) GetUnknownBits() uint64
+pkg syscall/zx/io, method (NodeAttributesQuery) HasBits(NodeAttributesQuery) bool
+pkg syscall/zx/io, method (NodeAttributesQuery) HasUnknownBits() bool
+pkg syscall/zx/io, method (NodeAttributesQuery) I_BitsIsStrict() bool
+pkg syscall/zx/io, method (NodeAttributesQuery) I_BitsMask() NodeAttributesQuery
+pkg syscall/zx/io, method (NodeAttributesQuery) InvertBits() NodeAttributesQuery
+pkg syscall/zx/io, method (NodeAttributesQuery) String() string
+pkg syscall/zx/io, method (NodeFlags) ClearBits(NodeFlags) NodeFlags
+pkg syscall/zx/io, method (NodeFlags) GetUnknownBits() uint64
+pkg syscall/zx/io, method (NodeFlags) HasBits(NodeFlags) bool
+pkg syscall/zx/io, method (NodeFlags) HasUnknownBits() bool
+pkg syscall/zx/io, method (NodeFlags) I_BitsIsStrict() bool
+pkg syscall/zx/io, method (NodeFlags) I_BitsMask() NodeFlags
+pkg syscall/zx/io, method (NodeFlags) InvertBits() NodeFlags
+pkg syscall/zx/io, method (NodeFlags) String() string
+pkg syscall/zx/io, method (NodeProtocolKinds) ClearBits(NodeProtocolKinds) NodeProtocolKinds
+pkg syscall/zx/io, method (NodeProtocolKinds) GetUnknownBits() uint64
+pkg syscall/zx/io, method (NodeProtocolKinds) HasBits(NodeProtocolKinds) bool
+pkg syscall/zx/io, method (NodeProtocolKinds) HasUnknownBits() bool
+pkg syscall/zx/io, method (NodeProtocolKinds) I_BitsIsStrict() bool
+pkg syscall/zx/io, method (NodeProtocolKinds) I_BitsMask() NodeProtocolKinds
+pkg syscall/zx/io, method (NodeProtocolKinds) InvertBits() NodeProtocolKinds
+pkg syscall/zx/io, method (NodeProtocolKinds) String() string
+pkg syscall/zx/io, method (OpenFlags) ClearBits(OpenFlags) OpenFlags
+pkg syscall/zx/io, method (OpenFlags) GetUnknownBits() uint64
+pkg syscall/zx/io, method (OpenFlags) HasBits(OpenFlags) bool
+pkg syscall/zx/io, method (OpenFlags) HasUnknownBits() bool
+pkg syscall/zx/io, method (OpenFlags) I_BitsIsStrict() bool
+pkg syscall/zx/io, method (OpenFlags) I_BitsMask() OpenFlags
+pkg syscall/zx/io, method (OpenFlags) InvertBits() OpenFlags
+pkg syscall/zx/io, method (OpenFlags) String() string
+pkg syscall/zx/io, method (OpenMode) I_EnumIsStrict() bool
+pkg syscall/zx/io, method (OpenMode) I_EnumValues() []OpenMode
+pkg syscall/zx/io, method (OpenMode) IsUnknown() bool
+pkg syscall/zx/io, method (OpenMode) String() string
+pkg syscall/zx/io, method (Operations) ClearBits(Operations) Operations
+pkg syscall/zx/io, method (Operations) GetUnknownBits() uint64
+pkg syscall/zx/io, method (Operations) HasBits(Operations) bool
+pkg syscall/zx/io, method (Operations) HasUnknownBits() bool
+pkg syscall/zx/io, method (Operations) I_BitsIsStrict() bool
+pkg syscall/zx/io, method (Operations) I_BitsMask() Operations
+pkg syscall/zx/io, method (Operations) InvertBits() Operations
+pkg syscall/zx/io, method (Operations) String() string
+pkg syscall/zx/io, method (RightsResolution) I_EnumIsStrict() bool
+pkg syscall/zx/io, method (RightsResolution) I_EnumValues() []RightsResolution
+pkg syscall/zx/io, method (RightsResolution) IsUnknown() bool
+pkg syscall/zx/io, method (RightsResolution) String() string
+pkg syscall/zx/io, method (SeekOrigin) I_EnumIsStrict() bool
+pkg syscall/zx/io, method (SeekOrigin) I_EnumValues() []SeekOrigin
+pkg syscall/zx/io, method (SeekOrigin) IsUnknown() bool
+pkg syscall/zx/io, method (SeekOrigin) String() string
+pkg syscall/zx/io, method (UnlinkFlags) ClearBits(UnlinkFlags) UnlinkFlags
+pkg syscall/zx/io, method (UnlinkFlags) GetUnknownBits() uint64
+pkg syscall/zx/io, method (UnlinkFlags) HasBits(UnlinkFlags) bool
+pkg syscall/zx/io, method (UnlinkFlags) HasUnknownBits() bool
+pkg syscall/zx/io, method (UnlinkFlags) I_BitsIsStrict() bool
+pkg syscall/zx/io, method (UnlinkFlags) I_BitsMask() UnlinkFlags
+pkg syscall/zx/io, method (UnlinkFlags) InvertBits() UnlinkFlags
+pkg syscall/zx/io, method (UnlinkFlags) String() string
+pkg syscall/zx/io, method (VmoFlags) ClearBits(VmoFlags) VmoFlags
+pkg syscall/zx/io, method (VmoFlags) GetUnknownBits() uint64
+pkg syscall/zx/io, method (VmoFlags) HasBits(VmoFlags) bool
+pkg syscall/zx/io, method (VmoFlags) HasUnknownBits() bool
+pkg syscall/zx/io, method (VmoFlags) I_BitsIsStrict() bool
+pkg syscall/zx/io, method (VmoFlags) I_BitsMask() VmoFlags
+pkg syscall/zx/io, method (VmoFlags) InvertBits() VmoFlags
+pkg syscall/zx/io, method (VmoFlags) String() string
+pkg syscall/zx/io, method (WatchEvent) I_EnumIsStrict() bool
+pkg syscall/zx/io, method (WatchEvent) I_EnumValues() []WatchEvent
+pkg syscall/zx/io, method (WatchEvent) IsUnknown() bool
+pkg syscall/zx/io, method (WatchEvent) String() string
+pkg syscall/zx/io, method (WatchMask) ClearBits(WatchMask) WatchMask
+pkg syscall/zx/io, method (WatchMask) GetUnknownBits() uint64
+pkg syscall/zx/io, method (WatchMask) HasBits(WatchMask) bool
+pkg syscall/zx/io, method (WatchMask) HasUnknownBits() bool
+pkg syscall/zx/io, method (WatchMask) I_BitsIsStrict() bool
+pkg syscall/zx/io, method (WatchMask) I_BitsMask() WatchMask
+pkg syscall/zx/io, method (WatchMask) InvertBits() WatchMask
+pkg syscall/zx/io, method (WatchMask) String() string
+pkg syscall/zx/io, type AdvisoryLockRange struct
+pkg syscall/zx/io, type AdvisoryLockRange struct, Length int64
+pkg syscall/zx/io, type AdvisoryLockRange struct, Offset int64
+pkg syscall/zx/io, type AdvisoryLockRange struct, Origin SeekOrigin
+pkg syscall/zx/io, type AdvisoryLockRequest struct
+pkg syscall/zx/io, type AdvisoryLockRequest struct, I_unknownData interface{}
+pkg syscall/zx/io, type AdvisoryLockRequest struct, Range AdvisoryLockRange
+pkg syscall/zx/io, type AdvisoryLockRequest struct, RangePresent bool
+pkg syscall/zx/io, type AdvisoryLockRequest struct, Type AdvisoryLockType
+pkg syscall/zx/io, type AdvisoryLockRequest struct, TypePresent bool
+pkg syscall/zx/io, type AdvisoryLockRequest struct, Wait bool
+pkg syscall/zx/io, type AdvisoryLockRequest struct, WaitPresent bool
+pkg syscall/zx/io, type AdvisoryLockType uint32
+pkg syscall/zx/io, type AdvisoryLockingAdvisoryLockResponse struct
+pkg syscall/zx/io, type AdvisoryLockingAdvisoryLockResult struct
+pkg syscall/zx/io, type AdvisoryLockingAdvisoryLockResult struct, Err int32
+pkg syscall/zx/io, type AdvisoryLockingAdvisoryLockResult struct, Response AdvisoryLockingAdvisoryLockResponse
+pkg syscall/zx/io, type AdvisoryLockingAdvisoryLockResult struct, embedded I_advisoryLockingAdvisoryLockResultTag
+pkg syscall/zx/io, type AdvisoryLockingEventProxy struct
+pkg syscall/zx/io, type AdvisoryLockingEventProxy struct, embedded zx.Channel
+pkg syscall/zx/io, type AdvisoryLockingWithCtx interface { AdvisoryLock }
+pkg syscall/zx/io, type AdvisoryLockingWithCtx interface, AdvisoryLock(context.Context, AdvisoryLockRequest) (AdvisoryLockingAdvisoryLockResult, error)
+pkg syscall/zx/io, type AdvisoryLockingWithCtxInterface struct
+pkg syscall/zx/io, type AdvisoryLockingWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/io, type AdvisoryLockingWithCtxInterfaceRequest struct
+pkg syscall/zx/io, type AdvisoryLockingWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/io, type AdvisoryLockingWithCtxStub struct
+pkg syscall/zx/io, type AdvisoryLockingWithCtxStub struct, Impl AdvisoryLockingWithCtx
+pkg syscall/zx/io, type AdvisoryLockingWithCtxTransitionalBase struct
+pkg syscall/zx/io, type ConnectionInfo struct
+pkg syscall/zx/io, type ConnectionInfo struct, I_unknownData interface{}
+pkg syscall/zx/io, type ConnectionInfo struct, Rights Operations
+pkg syscall/zx/io, type ConnectionInfo struct, RightsPresent bool
+pkg syscall/zx/io, type ConnectionProtocols struct
+pkg syscall/zx/io, type ConnectionProtocols struct, Connector ConnectorFlags
+pkg syscall/zx/io, type ConnectionProtocols struct, I_unknownData interface{}
+pkg syscall/zx/io, type ConnectionProtocols struct, Node NodeOptions
+pkg syscall/zx/io, type ConnectionProtocols struct, embedded I_connectionProtocolsTag
+pkg syscall/zx/io, type ConnectorFlags uint64
+pkg syscall/zx/io, type ConnectorInfo struct
+pkg syscall/zx/io, type ConnectorInfo struct, I_unknownData interface{}
+pkg syscall/zx/io, type DatagramSocket struct
+pkg syscall/zx/io, type DatagramSocket struct, RxMetaBufSize uint64
+pkg syscall/zx/io, type DatagramSocket struct, Socket zx.Socket
+pkg syscall/zx/io, type DatagramSocket struct, TxMetaBufSize uint64
+pkg syscall/zx/io, type Directory1EventProxy struct
+pkg syscall/zx/io, type Directory1EventProxy struct, embedded zx.Channel
+pkg syscall/zx/io, type Directory1WithCtx interface { Clone, Describe, GetAttr, GetFlags, GetToken, Link, Open, QueryFilesystem, ReadDirents, Rewind, SetAttr, SetFlags, Watch }
+pkg syscall/zx/io, type Directory1WithCtx interface, Clone(context.Context, OpenFlags, NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/io, type Directory1WithCtx interface, Describe(context.Context) (NodeInfo, error)
+pkg syscall/zx/io, type Directory1WithCtx interface, GetAttr(context.Context) (int32, NodeAttributes, error)
+pkg syscall/zx/io, type Directory1WithCtx interface, GetFlags(context.Context) (int32, OpenFlags, error)
+pkg syscall/zx/io, type Directory1WithCtx interface, GetToken(context.Context) (int32, zx.Handle, error)
+pkg syscall/zx/io, type Directory1WithCtx interface, Link(context.Context, string, zx.Handle, string) (int32, error)
+pkg syscall/zx/io, type Directory1WithCtx interface, Open(context.Context, OpenFlags, uint32, string, NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/io, type Directory1WithCtx interface, QueryFilesystem(context.Context) (int32, *FilesystemInfo, error)
+pkg syscall/zx/io, type Directory1WithCtx interface, ReadDirents(context.Context, uint64) (int32, []uint8, error)
+pkg syscall/zx/io, type Directory1WithCtx interface, Rewind(context.Context) (int32, error)
+pkg syscall/zx/io, type Directory1WithCtx interface, SetAttr(context.Context, NodeAttributeFlags, NodeAttributes) (int32, error)
+pkg syscall/zx/io, type Directory1WithCtx interface, SetFlags(context.Context, OpenFlags) (int32, error)
+pkg syscall/zx/io, type Directory1WithCtx interface, Watch(context.Context, WatchMask, uint32, DirectoryWatcherWithCtxInterfaceRequest) (int32, error)
+pkg syscall/zx/io, type Directory1WithCtxInterface struct
+pkg syscall/zx/io, type Directory1WithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/io, type Directory1WithCtxInterfaceRequest struct
+pkg syscall/zx/io, type Directory1WithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/io, type Directory1WithCtxStub struct
+pkg syscall/zx/io, type Directory1WithCtxStub struct, Impl Directory1WithCtx
+pkg syscall/zx/io, type Directory1WithCtxTransitionalBase struct
+pkg syscall/zx/io, type Directory2EventProxy struct
+pkg syscall/zx/io, type Directory2EventProxy struct, embedded zx.Channel
+pkg syscall/zx/io, type Directory2RenameResponse struct
+pkg syscall/zx/io, type Directory2RenameResult struct
+pkg syscall/zx/io, type Directory2RenameResult struct, Err int32
+pkg syscall/zx/io, type Directory2RenameResult struct, Response Directory2RenameResponse
+pkg syscall/zx/io, type Directory2RenameResult struct, embedded I_directory2RenameResultTag
+pkg syscall/zx/io, type Directory2UnlinkResponse struct
+pkg syscall/zx/io, type Directory2UnlinkResult struct
+pkg syscall/zx/io, type Directory2UnlinkResult struct, Err int32
+pkg syscall/zx/io, type Directory2UnlinkResult struct, Response Directory2UnlinkResponse
+pkg syscall/zx/io, type Directory2UnlinkResult struct, embedded I_directory2UnlinkResultTag
+pkg syscall/zx/io, type Directory2WithCtx interface { AddInotifyFilter, AdvisoryLock, Close, Enumerate, GetAttributes, GetConnectionInfo, Open2, Query, Rename, Reopen, Sync, Unlink, UpdateAttributes }
+pkg syscall/zx/io, type Directory2WithCtx interface, AddInotifyFilter(context.Context, string, InotifyWatchMask, uint32, zx.Socket) error
+pkg syscall/zx/io, type Directory2WithCtx interface, AdvisoryLock(context.Context, AdvisoryLockRequest) (AdvisoryLockingAdvisoryLockResult, error)
+pkg syscall/zx/io, type Directory2WithCtx interface, Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/io, type Directory2WithCtx interface, Enumerate(context.Context, DirectoryEnumerateOptions, DirectoryIteratorWithCtxInterfaceRequest) error
+pkg syscall/zx/io, type Directory2WithCtx interface, GetAttributes(context.Context, NodeAttributesQuery) (Node2GetAttributesResult, error)
+pkg syscall/zx/io, type Directory2WithCtx interface, GetConnectionInfo(context.Context) (ConnectionInfo, error)
+pkg syscall/zx/io, type Directory2WithCtx interface, Open2(context.Context, string, ConnectionProtocols, zx.Channel) error
+pkg syscall/zx/io, type Directory2WithCtx interface, Query(context.Context) (uint64, error)
+pkg syscall/zx/io, type Directory2WithCtx interface, Rename(context.Context, string, zx.Event, string) (Directory2RenameResult, error)
+pkg syscall/zx/io, type Directory2WithCtx interface, Reopen(context.Context, *RightsRequest, zx.Channel) error
+pkg syscall/zx/io, type Directory2WithCtx interface, Sync(context.Context) (Node2SyncResult, error)
+pkg syscall/zx/io, type Directory2WithCtx interface, Unlink(context.Context, string, UnlinkOptions) (Directory2UnlinkResult, error)
+pkg syscall/zx/io, type Directory2WithCtx interface, UpdateAttributes(context.Context, MutableNodeAttributes) (Node2UpdateAttributesResult, error)
+pkg syscall/zx/io, type Directory2WithCtxInterface struct
+pkg syscall/zx/io, type Directory2WithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/io, type Directory2WithCtxInterfaceRequest struct
+pkg syscall/zx/io, type Directory2WithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/io, type Directory2WithCtxStub struct
+pkg syscall/zx/io, type Directory2WithCtxStub struct, Impl Directory2WithCtx
+pkg syscall/zx/io, type Directory2WithCtxTransitionalBase struct
+pkg syscall/zx/io, type DirectoryEntry struct
+pkg syscall/zx/io, type DirectoryEntry struct, Abilities Operations
+pkg syscall/zx/io, type DirectoryEntry struct, AbilitiesPresent bool
+pkg syscall/zx/io, type DirectoryEntry struct, I_unknownData interface{}
+pkg syscall/zx/io, type DirectoryEntry struct, Id uint64
+pkg syscall/zx/io, type DirectoryEntry struct, IdPresent bool
+pkg syscall/zx/io, type DirectoryEntry struct, Name string
+pkg syscall/zx/io, type DirectoryEntry struct, NamePresent bool
+pkg syscall/zx/io, type DirectoryEntry struct, Protocols NodeProtocolKinds
+pkg syscall/zx/io, type DirectoryEntry struct, ProtocolsPresent bool
+pkg syscall/zx/io, type DirectoryEnumerateOptions struct
+pkg syscall/zx/io, type DirectoryEnumerateOptions struct, I_unknownData interface{}
+pkg syscall/zx/io, type DirectoryEventProxy struct
+pkg syscall/zx/io, type DirectoryEventProxy struct, embedded zx.Channel
+pkg syscall/zx/io, type DirectoryInfo struct
+pkg syscall/zx/io, type DirectoryInfo struct, I_unknownData interface{}
+pkg syscall/zx/io, type DirectoryIteratorEventProxy struct
+pkg syscall/zx/io, type DirectoryIteratorEventProxy struct, embedded zx.Channel
+pkg syscall/zx/io, type DirectoryIteratorGetNextResponse struct
+pkg syscall/zx/io, type DirectoryIteratorGetNextResponse struct, Entries []DirectoryEntry
+pkg syscall/zx/io, type DirectoryIteratorGetNextResult struct
+pkg syscall/zx/io, type DirectoryIteratorGetNextResult struct, Err int32
+pkg syscall/zx/io, type DirectoryIteratorGetNextResult struct, Response DirectoryIteratorGetNextResponse
+pkg syscall/zx/io, type DirectoryIteratorGetNextResult struct, embedded I_directoryIteratorGetNextResultTag
+pkg syscall/zx/io, type DirectoryIteratorWithCtx interface { GetNext }
+pkg syscall/zx/io, type DirectoryIteratorWithCtx interface, GetNext(context.Context) (DirectoryIteratorGetNextResult, error)
+pkg syscall/zx/io, type DirectoryIteratorWithCtxInterface struct
+pkg syscall/zx/io, type DirectoryIteratorWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/io, type DirectoryIteratorWithCtxInterfaceRequest struct
+pkg syscall/zx/io, type DirectoryIteratorWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/io, type DirectoryIteratorWithCtxStub struct
+pkg syscall/zx/io, type DirectoryIteratorWithCtxStub struct, Impl DirectoryIteratorWithCtx
+pkg syscall/zx/io, type DirectoryIteratorWithCtxTransitionalBase struct
+pkg syscall/zx/io, type DirectoryObject struct
+pkg syscall/zx/io, type DirectoryProtocol struct
+pkg syscall/zx/io, type DirectoryWatcherEventProxy struct
+pkg syscall/zx/io, type DirectoryWatcherEventProxy struct, embedded zx.Channel
+pkg syscall/zx/io, type DirectoryWatcherWithCtx interface {}
+pkg syscall/zx/io, type DirectoryWatcherWithCtxInterface struct
+pkg syscall/zx/io, type DirectoryWatcherWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/io, type DirectoryWatcherWithCtxInterfaceRequest struct
+pkg syscall/zx/io, type DirectoryWatcherWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/io, type DirectoryWatcherWithCtxStub struct
+pkg syscall/zx/io, type DirectoryWatcherWithCtxStub struct, Impl DirectoryWatcherWithCtx
+pkg syscall/zx/io, type DirectoryWatcherWithCtxTransitionalBase struct
+pkg syscall/zx/io, type DirectoryWithCtx interface { AddInotifyFilter, AdvisoryLock, Clone, Close, Describe, Enumerate, GetAttr, GetAttributes, GetConnectionInfo, GetFlags, GetToken, Link, Open, Open2, Query, QueryFilesystem, ReadDirents, Rename, Reopen, Rewind, SetAttr, SetFlags, Sync, Unlink, UpdateAttributes, Watch }
+pkg syscall/zx/io, type DirectoryWithCtx interface, AddInotifyFilter(context.Context, string, InotifyWatchMask, uint32, zx.Socket) error
+pkg syscall/zx/io, type DirectoryWithCtx interface, AdvisoryLock(context.Context, AdvisoryLockRequest) (AdvisoryLockingAdvisoryLockResult, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, Clone(context.Context, OpenFlags, NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/io, type DirectoryWithCtx interface, Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, Describe(context.Context) (NodeInfo, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, Enumerate(context.Context, DirectoryEnumerateOptions, DirectoryIteratorWithCtxInterfaceRequest) error
+pkg syscall/zx/io, type DirectoryWithCtx interface, GetAttr(context.Context) (int32, NodeAttributes, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, GetAttributes(context.Context, NodeAttributesQuery) (Node2GetAttributesResult, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, GetConnectionInfo(context.Context) (ConnectionInfo, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, GetFlags(context.Context) (int32, OpenFlags, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, GetToken(context.Context) (int32, zx.Handle, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, Link(context.Context, string, zx.Handle, string) (int32, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, Open(context.Context, OpenFlags, uint32, string, NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/io, type DirectoryWithCtx interface, Open2(context.Context, string, ConnectionProtocols, zx.Channel) error
+pkg syscall/zx/io, type DirectoryWithCtx interface, Query(context.Context) (uint64, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, QueryFilesystem(context.Context) (int32, *FilesystemInfo, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, ReadDirents(context.Context, uint64) (int32, []uint8, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, Rename(context.Context, string, zx.Event, string) (Directory2RenameResult, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, Reopen(context.Context, *RightsRequest, zx.Channel) error
+pkg syscall/zx/io, type DirectoryWithCtx interface, Rewind(context.Context) (int32, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, SetAttr(context.Context, NodeAttributeFlags, NodeAttributes) (int32, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, SetFlags(context.Context, OpenFlags) (int32, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, Sync(context.Context) (Node2SyncResult, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, Unlink(context.Context, string, UnlinkOptions) (Directory2UnlinkResult, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, UpdateAttributes(context.Context, MutableNodeAttributes) (Node2UpdateAttributesResult, error)
+pkg syscall/zx/io, type DirectoryWithCtx interface, Watch(context.Context, WatchMask, uint32, DirectoryWatcherWithCtxInterfaceRequest) (int32, error)
+pkg syscall/zx/io, type DirectoryWithCtxInterface struct
+pkg syscall/zx/io, type DirectoryWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/io, type DirectoryWithCtxInterfaceRequest struct
+pkg syscall/zx/io, type DirectoryWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/io, type DirectoryWithCtxStub struct
+pkg syscall/zx/io, type DirectoryWithCtxStub struct, Impl DirectoryWithCtx
+pkg syscall/zx/io, type DirectoryWithCtxTransitionalBase struct
+pkg syscall/zx/io, type DirentType uint8
+pkg syscall/zx/io, type File2EventProxy struct
+pkg syscall/zx/io, type File2EventProxy struct, embedded zx.Channel
+pkg syscall/zx/io, type File2GetBackingMemoryResponse struct
+pkg syscall/zx/io, type File2GetBackingMemoryResponse struct, Vmo zx.VMO
+pkg syscall/zx/io, type File2GetBackingMemoryResult struct
+pkg syscall/zx/io, type File2GetBackingMemoryResult struct, Err int32
+pkg syscall/zx/io, type File2GetBackingMemoryResult struct, Response File2GetBackingMemoryResponse
+pkg syscall/zx/io, type File2GetBackingMemoryResult struct, embedded I_file2GetBackingMemoryResultTag
+pkg syscall/zx/io, type File2ReadAtResponse struct
+pkg syscall/zx/io, type File2ReadAtResponse struct, Data []uint8
+pkg syscall/zx/io, type File2ReadAtResult struct
+pkg syscall/zx/io, type File2ReadAtResult struct, Err int32
+pkg syscall/zx/io, type File2ReadAtResult struct, Response File2ReadAtResponse
+pkg syscall/zx/io, type File2ReadAtResult struct, embedded I_file2ReadAtResultTag
+pkg syscall/zx/io, type File2ReadResponse struct
+pkg syscall/zx/io, type File2ReadResponse struct, Data []uint8
+pkg syscall/zx/io, type File2ReadResult struct
+pkg syscall/zx/io, type File2ReadResult struct, Err int32
+pkg syscall/zx/io, type File2ReadResult struct, Response File2ReadResponse
+pkg syscall/zx/io, type File2ReadResult struct, embedded I_file2ReadResultTag
+pkg syscall/zx/io, type File2ResizeResponse struct
+pkg syscall/zx/io, type File2ResizeResult struct
+pkg syscall/zx/io, type File2ResizeResult struct, Err int32
+pkg syscall/zx/io, type File2ResizeResult struct, Response File2ResizeResponse
+pkg syscall/zx/io, type File2ResizeResult struct, embedded I_file2ResizeResultTag
+pkg syscall/zx/io, type File2SeekResponse struct
+pkg syscall/zx/io, type File2SeekResponse struct, OffsetFromStart uint64
+pkg syscall/zx/io, type File2SeekResult struct
+pkg syscall/zx/io, type File2SeekResult struct, Err int32
+pkg syscall/zx/io, type File2SeekResult struct, Response File2SeekResponse
+pkg syscall/zx/io, type File2SeekResult struct, embedded I_file2SeekResultTag
+pkg syscall/zx/io, type File2WithCtx interface { Close, GetAttributes, GetBackingMemory, GetConnectionInfo, Query, Read, ReadAt, Reopen, Resize, Seek, Sync, UpdateAttributes, Write, WriteAt }
+pkg syscall/zx/io, type File2WithCtx interface, Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/io, type File2WithCtx interface, GetAttributes(context.Context, NodeAttributesQuery) (Node2GetAttributesResult, error)
+pkg syscall/zx/io, type File2WithCtx interface, GetBackingMemory(context.Context, VmoFlags) (File2GetBackingMemoryResult, error)
+pkg syscall/zx/io, type File2WithCtx interface, GetConnectionInfo(context.Context) (ConnectionInfo, error)
+pkg syscall/zx/io, type File2WithCtx interface, Query(context.Context) (uint64, error)
+pkg syscall/zx/io, type File2WithCtx interface, Read(context.Context, uint64) (File2ReadResult, error)
+pkg syscall/zx/io, type File2WithCtx interface, ReadAt(context.Context, uint64, uint64) (File2ReadAtResult, error)
+pkg syscall/zx/io, type File2WithCtx interface, Reopen(context.Context, *RightsRequest, zx.Channel) error
+pkg syscall/zx/io, type File2WithCtx interface, Resize(context.Context, uint64) (File2ResizeResult, error)
+pkg syscall/zx/io, type File2WithCtx interface, Seek(context.Context, SeekOrigin, int64) (File2SeekResult, error)
+pkg syscall/zx/io, type File2WithCtx interface, Sync(context.Context) (Node2SyncResult, error)
+pkg syscall/zx/io, type File2WithCtx interface, UpdateAttributes(context.Context, MutableNodeAttributes) (Node2UpdateAttributesResult, error)
+pkg syscall/zx/io, type File2WithCtx interface, Write(context.Context, []uint8) (File2WriteResult, error)
+pkg syscall/zx/io, type File2WithCtx interface, WriteAt(context.Context, []uint8, uint64) (File2WriteAtResult, error)
+pkg syscall/zx/io, type File2WithCtxInterface struct
+pkg syscall/zx/io, type File2WithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/io, type File2WithCtxInterfaceRequest struct
+pkg syscall/zx/io, type File2WithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/io, type File2WithCtxStub struct
+pkg syscall/zx/io, type File2WithCtxStub struct, Impl File2WithCtx
+pkg syscall/zx/io, type File2WithCtxTransitionalBase struct
+pkg syscall/zx/io, type File2WriteAtResponse struct
+pkg syscall/zx/io, type File2WriteAtResponse struct, ActualCount uint64
+pkg syscall/zx/io, type File2WriteAtResult struct
+pkg syscall/zx/io, type File2WriteAtResult struct, Err int32
+pkg syscall/zx/io, type File2WriteAtResult struct, Response File2WriteAtResponse
+pkg syscall/zx/io, type File2WriteAtResult struct, embedded I_file2WriteAtResultTag
+pkg syscall/zx/io, type File2WriteResponse struct
+pkg syscall/zx/io, type File2WriteResponse struct, ActualCount uint64
+pkg syscall/zx/io, type File2WriteResult struct
+pkg syscall/zx/io, type File2WriteResult struct, Err int32
+pkg syscall/zx/io, type File2WriteResult struct, Response File2WriteResponse
+pkg syscall/zx/io, type File2WriteResult struct, embedded I_file2WriteResultTag
+pkg syscall/zx/io, type FileEventProxy struct
+pkg syscall/zx/io, type FileEventProxy struct, embedded zx.Channel
+pkg syscall/zx/io, type FileInfo struct
+pkg syscall/zx/io, type FileInfo struct, I_unknownData interface{}
+pkg syscall/zx/io, type FileInfo struct, IsAppend bool
+pkg syscall/zx/io, type FileInfo struct, IsAppendPresent bool
+pkg syscall/zx/io, type FileInfo struct, Observer zx.Event
+pkg syscall/zx/io, type FileInfo struct, ObserverPresent bool
+pkg syscall/zx/io, type FileInfo struct, Stream zx.Handle
+pkg syscall/zx/io, type FileInfo struct, StreamPresent bool
+pkg syscall/zx/io, type FileObject struct
+pkg syscall/zx/io, type FileObject struct, Event zx.Event
+pkg syscall/zx/io, type FileObject struct, Stream zx.Handle
+pkg syscall/zx/io, type FileProtocolFlags uint64
+pkg syscall/zx/io, type FileSignal uint32
+pkg syscall/zx/io, type FileWithCtx interface { AdvisoryLock, Clone, Close, Describe, Describe2, GetAttr, GetAttributes, GetBackingMemory, GetConnectionInfo, GetFlags, Query, QueryFilesystem, Read, ReadAt, Reopen, Resize, Seek, SetAttr, SetFlags, Sync, UpdateAttributes, Write, WriteAt }
+pkg syscall/zx/io, type FileWithCtx interface, AdvisoryLock(context.Context, AdvisoryLockRequest) (AdvisoryLockingAdvisoryLockResult, error)
+pkg syscall/zx/io, type FileWithCtx interface, Clone(context.Context, OpenFlags, NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/io, type FileWithCtx interface, Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/io, type FileWithCtx interface, Describe(context.Context) (NodeInfo, error)
+pkg syscall/zx/io, type FileWithCtx interface, Describe2(context.Context) (FileInfo, error)
+pkg syscall/zx/io, type FileWithCtx interface, GetAttr(context.Context) (int32, NodeAttributes, error)
+pkg syscall/zx/io, type FileWithCtx interface, GetAttributes(context.Context, NodeAttributesQuery) (Node2GetAttributesResult, error)
+pkg syscall/zx/io, type FileWithCtx interface, GetBackingMemory(context.Context, VmoFlags) (File2GetBackingMemoryResult, error)
+pkg syscall/zx/io, type FileWithCtx interface, GetConnectionInfo(context.Context) (ConnectionInfo, error)
+pkg syscall/zx/io, type FileWithCtx interface, GetFlags(context.Context) (int32, OpenFlags, error)
+pkg syscall/zx/io, type FileWithCtx interface, Query(context.Context) (uint64, error)
+pkg syscall/zx/io, type FileWithCtx interface, QueryFilesystem(context.Context) (int32, *FilesystemInfo, error)
+pkg syscall/zx/io, type FileWithCtx interface, Read(context.Context, uint64) (File2ReadResult, error)
+pkg syscall/zx/io, type FileWithCtx interface, ReadAt(context.Context, uint64, uint64) (File2ReadAtResult, error)
+pkg syscall/zx/io, type FileWithCtx interface, Reopen(context.Context, *RightsRequest, zx.Channel) error
+pkg syscall/zx/io, type FileWithCtx interface, Resize(context.Context, uint64) (File2ResizeResult, error)
+pkg syscall/zx/io, type FileWithCtx interface, Seek(context.Context, SeekOrigin, int64) (File2SeekResult, error)
+pkg syscall/zx/io, type FileWithCtx interface, SetAttr(context.Context, NodeAttributeFlags, NodeAttributes) (int32, error)
+pkg syscall/zx/io, type FileWithCtx interface, SetFlags(context.Context, OpenFlags) (int32, error)
+pkg syscall/zx/io, type FileWithCtx interface, Sync(context.Context) (Node2SyncResult, error)
+pkg syscall/zx/io, type FileWithCtx interface, UpdateAttributes(context.Context, MutableNodeAttributes) (Node2UpdateAttributesResult, error)
+pkg syscall/zx/io, type FileWithCtx interface, Write(context.Context, []uint8) (File2WriteResult, error)
+pkg syscall/zx/io, type FileWithCtx interface, WriteAt(context.Context, []uint8, uint64) (File2WriteAtResult, error)
+pkg syscall/zx/io, type FileWithCtxInterface struct
+pkg syscall/zx/io, type FileWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/io, type FileWithCtxInterfaceRequest struct
+pkg syscall/zx/io, type FileWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/io, type FileWithCtxStub struct
+pkg syscall/zx/io, type FileWithCtxStub struct, Impl FileWithCtx
+pkg syscall/zx/io, type FileWithCtxTransitionalBase struct
+pkg syscall/zx/io, type FilesystemInfo struct
+pkg syscall/zx/io, type FilesystemInfo struct, BlockSize uint32
+pkg syscall/zx/io, type FilesystemInfo struct, FreeSharedPoolBytes uint64
+pkg syscall/zx/io, type FilesystemInfo struct, FsId uint64
+pkg syscall/zx/io, type FilesystemInfo struct, FsType uint32
+pkg syscall/zx/io, type FilesystemInfo struct, MaxFilenameSize uint32
+pkg syscall/zx/io, type FilesystemInfo struct, Name [32]int8
+pkg syscall/zx/io, type FilesystemInfo struct, Padding uint32
+pkg syscall/zx/io, type FilesystemInfo struct, TotalBytes uint64
+pkg syscall/zx/io, type FilesystemInfo struct, TotalNodes uint64
+pkg syscall/zx/io, type FilesystemInfo struct, UsedBytes uint64
+pkg syscall/zx/io, type FilesystemInfo struct, UsedNodes uint64
+pkg syscall/zx/io, type I_advisoryLockingAdvisoryLockResultTag uint64
+pkg syscall/zx/io, type I_connectionProtocolsTag uint64
+pkg syscall/zx/io, type I_directory2RenameResultTag uint64
+pkg syscall/zx/io, type I_directory2UnlinkResultTag uint64
+pkg syscall/zx/io, type I_directoryIteratorGetNextResultTag uint64
+pkg syscall/zx/io, type I_file2GetBackingMemoryResultTag uint64
+pkg syscall/zx/io, type I_file2ReadAtResultTag uint64
+pkg syscall/zx/io, type I_file2ReadResultTag uint64
+pkg syscall/zx/io, type I_file2ResizeResultTag uint64
+pkg syscall/zx/io, type I_file2SeekResultTag uint64
+pkg syscall/zx/io, type I_file2WriteAtResultTag uint64
+pkg syscall/zx/io, type I_file2WriteResultTag uint64
+pkg syscall/zx/io, type I_node2GetAttributesResultTag uint64
+pkg syscall/zx/io, type I_node2SyncResultTag uint64
+pkg syscall/zx/io, type I_node2UpdateAttributesResultTag uint64
+pkg syscall/zx/io, type I_nodeInfoTag uint64
+pkg syscall/zx/io, type I_representationTag uint64
+pkg syscall/zx/io, type ImmutableNodeAttributes struct
+pkg syscall/zx/io, type ImmutableNodeAttributes struct, Abilities Operations
+pkg syscall/zx/io, type ImmutableNodeAttributes struct, AbilitiesPresent bool
+pkg syscall/zx/io, type ImmutableNodeAttributes struct, ContentSize uint64
+pkg syscall/zx/io, type ImmutableNodeAttributes struct, ContentSizePresent bool
+pkg syscall/zx/io, type ImmutableNodeAttributes struct, I_unknownData interface{}
+pkg syscall/zx/io, type ImmutableNodeAttributes struct, Id uint64
+pkg syscall/zx/io, type ImmutableNodeAttributes struct, IdPresent bool
+pkg syscall/zx/io, type ImmutableNodeAttributes struct, LinkCount uint64
+pkg syscall/zx/io, type ImmutableNodeAttributes struct, LinkCountPresent bool
+pkg syscall/zx/io, type ImmutableNodeAttributes struct, Protocols NodeProtocolKinds
+pkg syscall/zx/io, type ImmutableNodeAttributes struct, ProtocolsPresent bool
+pkg syscall/zx/io, type ImmutableNodeAttributes struct, StorageSize uint64
+pkg syscall/zx/io, type ImmutableNodeAttributes struct, StorageSizePresent bool
+pkg syscall/zx/io, type InotifierEventProxy struct
+pkg syscall/zx/io, type InotifierEventProxy struct, embedded zx.Channel
+pkg syscall/zx/io, type InotifierWithCtx interface {}
+pkg syscall/zx/io, type InotifierWithCtxInterface struct
+pkg syscall/zx/io, type InotifierWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/io, type InotifierWithCtxInterfaceRequest struct
+pkg syscall/zx/io, type InotifierWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/io, type InotifierWithCtxStub struct
+pkg syscall/zx/io, type InotifierWithCtxStub struct, Impl InotifierWithCtx
+pkg syscall/zx/io, type InotifierWithCtxTransitionalBase struct
+pkg syscall/zx/io, type InotifyEvent struct
+pkg syscall/zx/io, type InotifyEvent struct, Cookie uint32
+pkg syscall/zx/io, type InotifyEvent struct, Filename string
+pkg syscall/zx/io, type InotifyEvent struct, Len uint32
+pkg syscall/zx/io, type InotifyEvent struct, Mask InotifyWatchMask
+pkg syscall/zx/io, type InotifyEvent struct, WatchDescriptor uint32
+pkg syscall/zx/io, type InotifyWatchMask uint32
+pkg syscall/zx/io, type MutableNodeAttributes struct
+pkg syscall/zx/io, type MutableNodeAttributes struct, CreationTime uint64
+pkg syscall/zx/io, type MutableNodeAttributes struct, CreationTimePresent bool
+pkg syscall/zx/io, type MutableNodeAttributes struct, I_unknownData interface{}
+pkg syscall/zx/io, type MutableNodeAttributes struct, ModificationTime uint64
+pkg syscall/zx/io, type MutableNodeAttributes struct, ModificationTimePresent bool
+pkg syscall/zx/io, type Node1EventProxy struct
+pkg syscall/zx/io, type Node1EventProxy struct, embedded zx.Channel
+pkg syscall/zx/io, type Node1WithCtx interface { Clone, Describe, GetAttr, GetFlags, QueryFilesystem, SetAttr, SetFlags }
+pkg syscall/zx/io, type Node1WithCtx interface, Clone(context.Context, OpenFlags, NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/io, type Node1WithCtx interface, Describe(context.Context) (NodeInfo, error)
+pkg syscall/zx/io, type Node1WithCtx interface, GetAttr(context.Context) (int32, NodeAttributes, error)
+pkg syscall/zx/io, type Node1WithCtx interface, GetFlags(context.Context) (int32, OpenFlags, error)
+pkg syscall/zx/io, type Node1WithCtx interface, QueryFilesystem(context.Context) (int32, *FilesystemInfo, error)
+pkg syscall/zx/io, type Node1WithCtx interface, SetAttr(context.Context, NodeAttributeFlags, NodeAttributes) (int32, error)
+pkg syscall/zx/io, type Node1WithCtx interface, SetFlags(context.Context, OpenFlags) (int32, error)
+pkg syscall/zx/io, type Node1WithCtxInterface struct
+pkg syscall/zx/io, type Node1WithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/io, type Node1WithCtxInterfaceRequest struct
+pkg syscall/zx/io, type Node1WithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/io, type Node1WithCtxStub struct
+pkg syscall/zx/io, type Node1WithCtxStub struct, Impl Node1WithCtx
+pkg syscall/zx/io, type Node1WithCtxTransitionalBase struct
+pkg syscall/zx/io, type Node2EventProxy struct
+pkg syscall/zx/io, type Node2EventProxy struct, embedded zx.Channel
+pkg syscall/zx/io, type Node2GetAttributesResult struct
+pkg syscall/zx/io, type Node2GetAttributesResult struct, Err int32
+pkg syscall/zx/io, type Node2GetAttributesResult struct, Response NodeAttributes2
+pkg syscall/zx/io, type Node2GetAttributesResult struct, embedded I_node2GetAttributesResultTag
+pkg syscall/zx/io, type Node2SyncResponse struct
+pkg syscall/zx/io, type Node2SyncResult struct
+pkg syscall/zx/io, type Node2SyncResult struct, Err int32
+pkg syscall/zx/io, type Node2SyncResult struct, Response Node2SyncResponse
+pkg syscall/zx/io, type Node2SyncResult struct, embedded I_node2SyncResultTag
+pkg syscall/zx/io, type Node2UpdateAttributesResponse struct
+pkg syscall/zx/io, type Node2UpdateAttributesResult struct
+pkg syscall/zx/io, type Node2UpdateAttributesResult struct, Err int32
+pkg syscall/zx/io, type Node2UpdateAttributesResult struct, Response Node2UpdateAttributesResponse
+pkg syscall/zx/io, type Node2UpdateAttributesResult struct, embedded I_node2UpdateAttributesResultTag
+pkg syscall/zx/io, type Node2WithCtx interface { Close, GetAttributes, GetConnectionInfo, Query, Reopen, Sync, UpdateAttributes }
+pkg syscall/zx/io, type Node2WithCtx interface, Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/io, type Node2WithCtx interface, GetAttributes(context.Context, NodeAttributesQuery) (Node2GetAttributesResult, error)
+pkg syscall/zx/io, type Node2WithCtx interface, GetConnectionInfo(context.Context) (ConnectionInfo, error)
+pkg syscall/zx/io, type Node2WithCtx interface, Query(context.Context) (uint64, error)
+pkg syscall/zx/io, type Node2WithCtx interface, Reopen(context.Context, *RightsRequest, zx.Channel) error
+pkg syscall/zx/io, type Node2WithCtx interface, Sync(context.Context) (Node2SyncResult, error)
+pkg syscall/zx/io, type Node2WithCtx interface, UpdateAttributes(context.Context, MutableNodeAttributes) (Node2UpdateAttributesResult, error)
+pkg syscall/zx/io, type Node2WithCtxInterface struct
+pkg syscall/zx/io, type Node2WithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/io, type Node2WithCtxInterfaceRequest struct
+pkg syscall/zx/io, type Node2WithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/io, type Node2WithCtxStub struct
+pkg syscall/zx/io, type Node2WithCtxStub struct, Impl Node2WithCtx
+pkg syscall/zx/io, type Node2WithCtxTransitionalBase struct
+pkg syscall/zx/io, type NodeAttributeFlags uint32
+pkg syscall/zx/io, type NodeAttributes struct
+pkg syscall/zx/io, type NodeAttributes struct, ContentSize uint64
+pkg syscall/zx/io, type NodeAttributes struct, CreationTime uint64
+pkg syscall/zx/io, type NodeAttributes struct, Id uint64
+pkg syscall/zx/io, type NodeAttributes struct, LinkCount uint64
+pkg syscall/zx/io, type NodeAttributes struct, Mode uint32
+pkg syscall/zx/io, type NodeAttributes struct, ModificationTime uint64
+pkg syscall/zx/io, type NodeAttributes struct, StorageSize uint64
+pkg syscall/zx/io, type NodeAttributes2 struct
+pkg syscall/zx/io, type NodeAttributes2 struct, ImmutableAttributes ImmutableNodeAttributes
+pkg syscall/zx/io, type NodeAttributes2 struct, MutableAttributes MutableNodeAttributes
+pkg syscall/zx/io, type NodeAttributesQuery uint64
+pkg syscall/zx/io, type NodeEventProxy struct
+pkg syscall/zx/io, type NodeEventProxy struct, embedded zx.Channel
+pkg syscall/zx/io, type NodeFlags uint64
+pkg syscall/zx/io, type NodeInfo struct
+pkg syscall/zx/io, type NodeInfo struct, DatagramSocket DatagramSocket
+pkg syscall/zx/io, type NodeInfo struct, Directory DirectoryObject
+pkg syscall/zx/io, type NodeInfo struct, File FileObject
+pkg syscall/zx/io, type NodeInfo struct, PacketSocket PacketSocket
+pkg syscall/zx/io, type NodeInfo struct, RawSocket RawSocket
+pkg syscall/zx/io, type NodeInfo struct, Service Service
+pkg syscall/zx/io, type NodeInfo struct, StreamSocket StreamSocket
+pkg syscall/zx/io, type NodeInfo struct, SynchronousDatagramSocket SynchronousDatagramSocket
+pkg syscall/zx/io, type NodeInfo struct, Tty Tty
+pkg syscall/zx/io, type NodeInfo struct, VmofileDeprecated VmofileDeprecated
+pkg syscall/zx/io, type NodeInfo struct, embedded I_nodeInfoTag
+pkg syscall/zx/io, type NodeOptions struct
+pkg syscall/zx/io, type NodeOptions struct, Flags NodeFlags
+pkg syscall/zx/io, type NodeOptions struct, FlagsPresent bool
+pkg syscall/zx/io, type NodeOptions struct, I_unknownData interface{}
+pkg syscall/zx/io, type NodeOptions struct, Mode OpenMode
+pkg syscall/zx/io, type NodeOptions struct, ModePresent bool
+pkg syscall/zx/io, type NodeOptions struct, Protocols NodeProtocols
+pkg syscall/zx/io, type NodeOptions struct, ProtocolsPresent bool
+pkg syscall/zx/io, type NodeOptions struct, RightsRequest RightsRequest
+pkg syscall/zx/io, type NodeOptions struct, RightsRequestPresent bool
+pkg syscall/zx/io, type NodeProtocolKinds uint64
+pkg syscall/zx/io, type NodeProtocols struct
+pkg syscall/zx/io, type NodeProtocols struct, Directory DirectoryProtocol
+pkg syscall/zx/io, type NodeProtocols struct, DirectoryPresent bool
+pkg syscall/zx/io, type NodeProtocols struct, File FileProtocolFlags
+pkg syscall/zx/io, type NodeProtocols struct, FilePresent bool
+pkg syscall/zx/io, type NodeProtocols struct, I_unknownData interface{}
+pkg syscall/zx/io, type NodeWithCtx interface { Clone, Close, Describe, GetAttr, GetAttributes, GetConnectionInfo, GetFlags, Query, QueryFilesystem, Reopen, SetAttr, SetFlags, Sync, UpdateAttributes }
+pkg syscall/zx/io, type NodeWithCtx interface, Clone(context.Context, OpenFlags, NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/io, type NodeWithCtx interface, Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/io, type NodeWithCtx interface, Describe(context.Context) (NodeInfo, error)
+pkg syscall/zx/io, type NodeWithCtx interface, GetAttr(context.Context) (int32, NodeAttributes, error)
+pkg syscall/zx/io, type NodeWithCtx interface, GetAttributes(context.Context, NodeAttributesQuery) (Node2GetAttributesResult, error)
+pkg syscall/zx/io, type NodeWithCtx interface, GetConnectionInfo(context.Context) (ConnectionInfo, error)
+pkg syscall/zx/io, type NodeWithCtx interface, GetFlags(context.Context) (int32, OpenFlags, error)
+pkg syscall/zx/io, type NodeWithCtx interface, Query(context.Context) (uint64, error)
+pkg syscall/zx/io, type NodeWithCtx interface, QueryFilesystem(context.Context) (int32, *FilesystemInfo, error)
+pkg syscall/zx/io, type NodeWithCtx interface, Reopen(context.Context, *RightsRequest, zx.Channel) error
+pkg syscall/zx/io, type NodeWithCtx interface, SetAttr(context.Context, NodeAttributeFlags, NodeAttributes) (int32, error)
+pkg syscall/zx/io, type NodeWithCtx interface, SetFlags(context.Context, OpenFlags) (int32, error)
+pkg syscall/zx/io, type NodeWithCtx interface, Sync(context.Context) (Node2SyncResult, error)
+pkg syscall/zx/io, type NodeWithCtx interface, UpdateAttributes(context.Context, MutableNodeAttributes) (Node2UpdateAttributesResult, error)
+pkg syscall/zx/io, type NodeWithCtxInterface struct
+pkg syscall/zx/io, type NodeWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/io, type NodeWithCtxInterfaceRequest struct
+pkg syscall/zx/io, type NodeWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/io, type NodeWithCtxStub struct
+pkg syscall/zx/io, type NodeWithCtxStub struct, Impl NodeWithCtx
+pkg syscall/zx/io, type NodeWithCtxTransitionalBase struct
+pkg syscall/zx/io, type OpenFlags uint32
+pkg syscall/zx/io, type OpenMode uint32
+pkg syscall/zx/io, type Operations uint64
+pkg syscall/zx/io, type PacketSocket struct
+pkg syscall/zx/io, type PacketSocket struct, Event zx.Handle
+pkg syscall/zx/io, type RawSocket struct
+pkg syscall/zx/io, type RawSocket struct, Event zx.Handle
+pkg syscall/zx/io, type Representation struct
+pkg syscall/zx/io, type Representation struct, Connector ConnectorInfo
+pkg syscall/zx/io, type Representation struct, Directory DirectoryInfo
+pkg syscall/zx/io, type Representation struct, File FileInfo
+pkg syscall/zx/io, type Representation struct, I_unknownData interface{}
+pkg syscall/zx/io, type Representation struct, embedded I_representationTag
+pkg syscall/zx/io, type RightsRequest struct
+pkg syscall/zx/io, type RightsRequest struct, AtLeast Operations
+pkg syscall/zx/io, type RightsRequest struct, AtMost Operations
+pkg syscall/zx/io, type RightsRequest struct, Resolution RightsResolution
+pkg syscall/zx/io, type RightsResolution uint32
+pkg syscall/zx/io, type SeekOrigin uint32
+pkg syscall/zx/io, type Service struct
+pkg syscall/zx/io, type StreamSocket struct
+pkg syscall/zx/io, type StreamSocket struct, Socket zx.Socket
+pkg syscall/zx/io, type SynchronousDatagramSocket struct
+pkg syscall/zx/io, type SynchronousDatagramSocket struct, Event zx.Handle
+pkg syscall/zx/io, type Tty struct
+pkg syscall/zx/io, type Tty struct, Event zx.Handle
+pkg syscall/zx/io, type UnlinkFlags uint64
+pkg syscall/zx/io, type UnlinkOptions struct
+pkg syscall/zx/io, type UnlinkOptions struct, Flags UnlinkFlags
+pkg syscall/zx/io, type UnlinkOptions struct, FlagsPresent bool
+pkg syscall/zx/io, type UnlinkOptions struct, I_unknownData interface{}
+pkg syscall/zx/io, type VmoFlags uint32
+pkg syscall/zx/io, type VmofileDeprecated struct
+pkg syscall/zx/io, type VmofileDeprecated struct, Length uint64
+pkg syscall/zx/io, type VmofileDeprecated struct, Offset uint64
+pkg syscall/zx/io, type VmofileDeprecated struct, Vmo zx.VMO
+pkg syscall/zx/io, type WatchEvent uint8
+pkg syscall/zx/io, type WatchMask uint32
+pkg syscall/zx/logger, const InterestChangeErrorCalledTwice = 1
+pkg syscall/zx/logger, const InterestChangeErrorCalledTwice InterestChangeError
+pkg syscall/zx/logger, const LogDumpLogsSafeOrdinal = 1505222195749004569
+pkg syscall/zx/logger, const LogDumpLogsSafeOrdinal uint64
+pkg syscall/zx/logger, const LogLevelDefault = 48
+pkg syscall/zx/logger, const LogLevelDefault LogLevelFilter
+pkg syscall/zx/logger, const LogLevelFilterDebug = 32
+pkg syscall/zx/logger, const LogLevelFilterDebug LogLevelFilter
+pkg syscall/zx/logger, const LogLevelFilterError = 80
+pkg syscall/zx/logger, const LogLevelFilterError LogLevelFilter
+pkg syscall/zx/logger, const LogLevelFilterFatal = 96
+pkg syscall/zx/logger, const LogLevelFilterFatal LogLevelFilter
+pkg syscall/zx/logger, const LogLevelFilterInfo = 48
+pkg syscall/zx/logger, const LogLevelFilterInfo LogLevelFilter
+pkg syscall/zx/logger, const LogLevelFilterNone = 127
+pkg syscall/zx/logger, const LogLevelFilterNone LogLevelFilter
+pkg syscall/zx/logger, const LogLevelFilterTrace = 16
+pkg syscall/zx/logger, const LogLevelFilterTrace LogLevelFilter
+pkg syscall/zx/logger, const LogLevelFilterWarn = 64
+pkg syscall/zx/logger, const LogLevelFilterWarn LogLevelFilter
+pkg syscall/zx/logger, const LogListenSafeOrdinal = 5643638173917143473
+pkg syscall/zx/logger, const LogListenSafeOrdinal uint64
+pkg syscall/zx/logger, const LogListenSafeWithSelectorsOrdinal = 1960844265602547838
+pkg syscall/zx/logger, const LogListenSafeWithSelectorsOrdinal uint64
+pkg syscall/zx/logger, const LogListenerSafeDoneOrdinal = 3789886091192272056
+pkg syscall/zx/logger, const LogListenerSafeDoneOrdinal uint64
+pkg syscall/zx/logger, const LogListenerSafeLogManyOrdinal = 139706434677727850
+pkg syscall/zx/logger, const LogListenerSafeLogManyOrdinal uint64
+pkg syscall/zx/logger, const LogListenerSafeLogOrdinal = 5882719137999207690
+pkg syscall/zx/logger, const LogListenerSafeLogOrdinal uint64
+pkg syscall/zx/logger, const LogName = "fuchsia.logger.Log"
+pkg syscall/zx/logger, const LogName ideal-string
+pkg syscall/zx/logger, const LogSeverityMaxStep = 6
+pkg syscall/zx/logger, const LogSeverityMaxStep uint8
+pkg syscall/zx/logger, const LogSeverityStepSize = 16
+pkg syscall/zx/logger, const LogSeverityStepSize uint8
+pkg syscall/zx/logger, const LogSinkConnectOrdinal = 7263263143300023835
+pkg syscall/zx/logger, const LogSinkConnectOrdinal uint64
+pkg syscall/zx/logger, const LogSinkConnectStructuredOrdinal = 7157386067685058380
+pkg syscall/zx/logger, const LogSinkConnectStructuredOrdinal uint64
+pkg syscall/zx/logger, const LogSinkName = "fuchsia.logger.LogSink"
+pkg syscall/zx/logger, const LogSinkName ideal-string
+pkg syscall/zx/logger, const LogSinkWaitForInterestChangeOrdinal = 2138400952013124162
+pkg syscall/zx/logger, const LogSinkWaitForInterestChangeOrdinal uint64
+pkg syscall/zx/logger, const LogSinkWaitForInterestChangeResultErr = 2
+pkg syscall/zx/logger, const LogSinkWaitForInterestChangeResultErr ideal-int
+pkg syscall/zx/logger, const LogSinkWaitForInterestChangeResultResponse = 1
+pkg syscall/zx/logger, const LogSinkWaitForInterestChangeResultResponse ideal-int
+pkg syscall/zx/logger, const LogVerbosityStepSize = 1
+pkg syscall/zx/logger, const LogVerbosityStepSize uint8
+pkg syscall/zx/logger, const MaxDatagramLenBytes = 32768
+pkg syscall/zx/logger, const MaxDatagramLenBytes uint32
+pkg syscall/zx/logger, const MaxLogManySizeBytes = 16384
+pkg syscall/zx/logger, const MaxLogManySizeBytes uint64
+pkg syscall/zx/logger, const MaxTagLenBytes = 63
+pkg syscall/zx/logger, const MaxTagLenBytes uint8
+pkg syscall/zx/logger, const MaxTags = 16
+pkg syscall/zx/logger, const MaxTags uint8
+pkg syscall/zx/logger, const MaxTagsPerLogMessage = 5
+pkg syscall/zx/logger, const MaxTagsPerLogMessage uint8
+pkg syscall/zx/logger, func LogSinkWaitForInterestChangeResultWithErr(InterestChangeError) LogSinkWaitForInterestChangeResult
+pkg syscall/zx/logger, func LogSinkWaitForInterestChangeResultWithResponse(LogSinkWaitForInterestChangeResponse) LogSinkWaitForInterestChangeResult
+pkg syscall/zx/logger, func NewLogListenerSafeWithCtxInterfaceRequest() (LogListenerSafeWithCtxInterfaceRequest, *LogListenerSafeWithCtxInterface, error)
+pkg syscall/zx/logger, func NewLogSinkWithCtxInterfaceRequest() (LogSinkWithCtxInterfaceRequest, *LogSinkWithCtxInterface, error)
+pkg syscall/zx/logger, func NewLogWithCtxInterfaceRequest() (LogWithCtxInterfaceRequest, *LogWithCtxInterface, error)
+pkg syscall/zx/logger, method (*LogEventProxy) Handle() *zx.Handle
+pkg syscall/zx/logger, method (*LogFilterOptions) Marshaler() fidl.Marshaler
+pkg syscall/zx/logger, method (*LogListenerSafeEventProxy) Handle() *zx.Handle
+pkg syscall/zx/logger, method (*LogListenerSafeWithCtxInterface) Done(context.Context) error
+pkg syscall/zx/logger, method (*LogListenerSafeWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/logger, method (*LogListenerSafeWithCtxInterface) Log(context.Context, LogMessage) error
+pkg syscall/zx/logger, method (*LogListenerSafeWithCtxInterface) LogMany(context.Context, []LogMessage) error
+pkg syscall/zx/logger, method (*LogListenerSafeWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/logger, method (*LogListenerSafeWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/logger, method (*LogMessage) Marshaler() fidl.Marshaler
+pkg syscall/zx/logger, method (*LogSinkEventProxy) Handle() *zx.Handle
+pkg syscall/zx/logger, method (*LogSinkWaitForInterestChangeResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/logger, method (*LogSinkWaitForInterestChangeResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/logger, method (*LogSinkWaitForInterestChangeResult) Ordinal() uint64
+pkg syscall/zx/logger, method (*LogSinkWaitForInterestChangeResult) SetErr(InterestChangeError)
+pkg syscall/zx/logger, method (*LogSinkWaitForInterestChangeResult) SetResponse(LogSinkWaitForInterestChangeResponse)
+pkg syscall/zx/logger, method (*LogSinkWaitForInterestChangeResult) Which() I_logSinkWaitForInterestChangeResultTag
+pkg syscall/zx/logger, method (*LogSinkWithCtxInterface) Connect(context.Context, zx.Socket) error
+pkg syscall/zx/logger, method (*LogSinkWithCtxInterface) ConnectStructured(context.Context, zx.Socket) error
+pkg syscall/zx/logger, method (*LogSinkWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/logger, method (*LogSinkWithCtxInterface) WaitForInterestChange(context.Context) (LogSinkWaitForInterestChangeResult, error)
+pkg syscall/zx/logger, method (*LogSinkWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/logger, method (*LogSinkWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/logger, method (*LogWithCtxInterface) DumpLogsSafe(context.Context, LogListenerSafeWithCtxInterface, *LogFilterOptions) error
+pkg syscall/zx/logger, method (*LogWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/logger, method (*LogWithCtxInterface) ListenSafe(context.Context, LogListenerSafeWithCtxInterface, *LogFilterOptions) error
+pkg syscall/zx/logger, method (*LogWithCtxInterface) ListenSafeWithSelectors(context.Context, LogListenerSafeWithCtxInterface, *LogFilterOptions, []diagnostics.LogInterestSelector) error
+pkg syscall/zx/logger, method (*LogWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/logger, method (*LogWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/logger, method (InterestChangeError) I_EnumIsStrict() bool
+pkg syscall/zx/logger, method (InterestChangeError) I_EnumValues() []InterestChangeError
+pkg syscall/zx/logger, method (InterestChangeError) IsUnknown() bool
+pkg syscall/zx/logger, method (InterestChangeError) String() string
+pkg syscall/zx/logger, method (LogLevelFilter) I_EnumIsStrict() bool
+pkg syscall/zx/logger, method (LogLevelFilter) I_EnumValues() []LogLevelFilter
+pkg syscall/zx/logger, method (LogLevelFilter) IsUnknown() bool
+pkg syscall/zx/logger, method (LogLevelFilter) String() string
+pkg syscall/zx/logger, method (LogSinkWithCtxInterfaceRequest) Name() string
+pkg syscall/zx/logger, method (LogSinkWithCtxInterfaceRequest) ToChannel() zx.Channel
+pkg syscall/zx/logger, method (LogWithCtxInterfaceRequest) Name() string
+pkg syscall/zx/logger, method (LogWithCtxInterfaceRequest) ToChannel() zx.Channel
+pkg syscall/zx/logger, type I_logSinkWaitForInterestChangeResultTag uint64
+pkg syscall/zx/logger, type InterestChangeError uint32
+pkg syscall/zx/logger, type LogEventProxy struct
+pkg syscall/zx/logger, type LogEventProxy struct, embedded zx.Channel
+pkg syscall/zx/logger, type LogFilterOptions struct
+pkg syscall/zx/logger, type LogFilterOptions struct, FilterByPid bool
+pkg syscall/zx/logger, type LogFilterOptions struct, FilterByTid bool
+pkg syscall/zx/logger, type LogFilterOptions struct, MinSeverity LogLevelFilter
+pkg syscall/zx/logger, type LogFilterOptions struct, Pid uint64
+pkg syscall/zx/logger, type LogFilterOptions struct, Tags []string
+pkg syscall/zx/logger, type LogFilterOptions struct, Tid uint64
+pkg syscall/zx/logger, type LogFilterOptions struct, Verbosity uint8
+pkg syscall/zx/logger, type LogLevelFilter int8
+pkg syscall/zx/logger, type LogListenerSafeEventProxy struct
+pkg syscall/zx/logger, type LogListenerSafeEventProxy struct, embedded zx.Channel
+pkg syscall/zx/logger, type LogListenerSafeWithCtx interface { Done, Log, LogMany }
+pkg syscall/zx/logger, type LogListenerSafeWithCtx interface, Done(context.Context) error
+pkg syscall/zx/logger, type LogListenerSafeWithCtx interface, Log(context.Context, LogMessage) error
+pkg syscall/zx/logger, type LogListenerSafeWithCtx interface, LogMany(context.Context, []LogMessage) error
+pkg syscall/zx/logger, type LogListenerSafeWithCtxInterface struct
+pkg syscall/zx/logger, type LogListenerSafeWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/logger, type LogListenerSafeWithCtxInterfaceRequest struct
+pkg syscall/zx/logger, type LogListenerSafeWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/logger, type LogListenerSafeWithCtxStub struct
+pkg syscall/zx/logger, type LogListenerSafeWithCtxStub struct, Impl LogListenerSafeWithCtx
+pkg syscall/zx/logger, type LogListenerSafeWithCtxTransitionalBase struct
+pkg syscall/zx/logger, type LogMessage struct
+pkg syscall/zx/logger, type LogMessage struct, DroppedLogs uint32
+pkg syscall/zx/logger, type LogMessage struct, Msg string
+pkg syscall/zx/logger, type LogMessage struct, Pid uint64
+pkg syscall/zx/logger, type LogMessage struct, Severity int32
+pkg syscall/zx/logger, type LogMessage struct, Tags []string
+pkg syscall/zx/logger, type LogMessage struct, Tid uint64
+pkg syscall/zx/logger, type LogMessage struct, Time int64
+pkg syscall/zx/logger, type LogSinkEventProxy struct
+pkg syscall/zx/logger, type LogSinkEventProxy struct, embedded zx.Channel
+pkg syscall/zx/logger, type LogSinkWaitForInterestChangeResponse struct
+pkg syscall/zx/logger, type LogSinkWaitForInterestChangeResponse struct, Data diagnostics.Interest
+pkg syscall/zx/logger, type LogSinkWaitForInterestChangeResult struct
+pkg syscall/zx/logger, type LogSinkWaitForInterestChangeResult struct, Err InterestChangeError
+pkg syscall/zx/logger, type LogSinkWaitForInterestChangeResult struct, Response LogSinkWaitForInterestChangeResponse
+pkg syscall/zx/logger, type LogSinkWaitForInterestChangeResult struct, embedded I_logSinkWaitForInterestChangeResultTag
+pkg syscall/zx/logger, type LogSinkWithCtx interface { Connect, ConnectStructured, WaitForInterestChange }
+pkg syscall/zx/logger, type LogSinkWithCtx interface, Connect(context.Context, zx.Socket) error
+pkg syscall/zx/logger, type LogSinkWithCtx interface, ConnectStructured(context.Context, zx.Socket) error
+pkg syscall/zx/logger, type LogSinkWithCtx interface, WaitForInterestChange(context.Context) (LogSinkWaitForInterestChangeResult, error)
+pkg syscall/zx/logger, type LogSinkWithCtxInterface struct
+pkg syscall/zx/logger, type LogSinkWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/logger, type LogSinkWithCtxInterfaceRequest struct
+pkg syscall/zx/logger, type LogSinkWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/logger, type LogSinkWithCtxStub struct
+pkg syscall/zx/logger, type LogSinkWithCtxStub struct, Impl LogSinkWithCtx
+pkg syscall/zx/logger, type LogSinkWithCtxTransitionalBase struct
+pkg syscall/zx/logger, type LogWithCtx interface { DumpLogsSafe, ListenSafe, ListenSafeWithSelectors }
+pkg syscall/zx/logger, type LogWithCtx interface, DumpLogsSafe(context.Context, LogListenerSafeWithCtxInterface, *LogFilterOptions) error
+pkg syscall/zx/logger, type LogWithCtx interface, ListenSafe(context.Context, LogListenerSafeWithCtxInterface, *LogFilterOptions) error
+pkg syscall/zx/logger, type LogWithCtx interface, ListenSafeWithSelectors(context.Context, LogListenerSafeWithCtxInterface, *LogFilterOptions, []diagnostics.LogInterestSelector) error
+pkg syscall/zx/logger, type LogWithCtxInterface struct
+pkg syscall/zx/logger, type LogWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/logger, type LogWithCtxInterfaceRequest struct
+pkg syscall/zx/logger, type LogWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/logger, type LogWithCtxStub struct
+pkg syscall/zx/logger, type LogWithCtxStub struct, Impl LogWithCtx
+pkg syscall/zx/logger, type LogWithCtxTransitionalBase struct
+pkg syscall/zx/mem, const DataBuffer = 2
+pkg syscall/zx/mem, const DataBuffer ideal-int
+pkg syscall/zx/mem, const DataBytes = 1
+pkg syscall/zx/mem, const DataBytes ideal-int
+pkg syscall/zx/mem, const Data_unknownData = 0
+pkg syscall/zx/mem, const Data_unknownData ideal-int
+pkg syscall/zx/mem, func DataWithBuffer(Buffer) Data
+pkg syscall/zx/mem, func DataWithBytes([]uint8) Data
+pkg syscall/zx/mem, method (*Buffer) Marshaler() fidl.Marshaler
+pkg syscall/zx/mem, method (*Data) GetUnknownData() fidl.UnknownData
+pkg syscall/zx/mem, method (*Data) Marshaler() fidl.Marshaler
+pkg syscall/zx/mem, method (*Data) Ordinal() uint64
+pkg syscall/zx/mem, method (*Data) SetBuffer(Buffer)
+pkg syscall/zx/mem, method (*Data) SetBytes([]uint8)
+pkg syscall/zx/mem, method (*Data) Which() I_dataTag
+pkg syscall/zx/mem, method (*Range) Marshaler() fidl.Marshaler
+pkg syscall/zx/mem, type Buffer struct
+pkg syscall/zx/mem, type Buffer struct, Size uint64
+pkg syscall/zx/mem, type Buffer struct, Vmo zx.VMO
+pkg syscall/zx/mem, type Data struct
+pkg syscall/zx/mem, type Data struct, Buffer Buffer
+pkg syscall/zx/mem, type Data struct, Bytes []uint8
+pkg syscall/zx/mem, type Data struct, I_unknownData interface{}
+pkg syscall/zx/mem, type Data struct, embedded I_dataTag
+pkg syscall/zx/mem, type I_dataTag uint64
+pkg syscall/zx/mem, type Range struct
+pkg syscall/zx/mem, type Range struct, Offset uint64
+pkg syscall/zx/mem, type Range struct, Size uint64
+pkg syscall/zx/mem, type Range struct, Vmo zx.VMO
+pkg syscall/zx/net, const IpAddressIpv4 = 1
+pkg syscall/zx/net, const IpAddressIpv4 ideal-int
+pkg syscall/zx/net, const IpAddressIpv6 = 2
+pkg syscall/zx/net, const IpAddressIpv6 ideal-int
+pkg syscall/zx/net, const IpVersionV4 = 1
+pkg syscall/zx/net, const IpVersionV4 IpVersion
+pkg syscall/zx/net, const IpVersionV6 = 2
+pkg syscall/zx/net, const IpVersionV6 IpVersion
+pkg syscall/zx/net, const MaxHostnameSize = 255
+pkg syscall/zx/net, const MaxHostnameSize uint64
+pkg syscall/zx/net, const SocketAddressIpv4 = 1
+pkg syscall/zx/net, const SocketAddressIpv4 ideal-int
+pkg syscall/zx/net, const SocketAddressIpv6 = 2
+pkg syscall/zx/net, const SocketAddressIpv6 ideal-int
+pkg syscall/zx/net, func IpAddressWithIpv4(Ipv4Address) IpAddress
+pkg syscall/zx/net, func IpAddressWithIpv6(Ipv6Address) IpAddress
+pkg syscall/zx/net, func SocketAddressWithIpv4(Ipv4SocketAddress) SocketAddress
+pkg syscall/zx/net, func SocketAddressWithIpv6(Ipv6SocketAddress) SocketAddress
+pkg syscall/zx/net, method (*IpAddress) Marshaler() fidl.Marshaler
+pkg syscall/zx/net, method (*IpAddress) Ordinal() uint64
+pkg syscall/zx/net, method (*IpAddress) SetIpv4(Ipv4Address)
+pkg syscall/zx/net, method (*IpAddress) SetIpv6(Ipv6Address)
+pkg syscall/zx/net, method (*IpAddress) Which() I_ipAddressTag
+pkg syscall/zx/net, method (*Ipv4Address) Marshaler() fidl.Marshaler
+pkg syscall/zx/net, method (*Ipv4AddressWithPrefix) Marshaler() fidl.Marshaler
+pkg syscall/zx/net, method (*Ipv4SocketAddress) Marshaler() fidl.Marshaler
+pkg syscall/zx/net, method (*Ipv6Address) Marshaler() fidl.Marshaler
+pkg syscall/zx/net, method (*Ipv6AddressWithPrefix) Marshaler() fidl.Marshaler
+pkg syscall/zx/net, method (*Ipv6SocketAddress) Marshaler() fidl.Marshaler
+pkg syscall/zx/net, method (*MacAddress) Marshaler() fidl.Marshaler
+pkg syscall/zx/net, method (*SocketAddress) Marshaler() fidl.Marshaler
+pkg syscall/zx/net, method (*SocketAddress) Ordinal() uint64
+pkg syscall/zx/net, method (*SocketAddress) SetIpv4(Ipv4SocketAddress)
+pkg syscall/zx/net, method (*SocketAddress) SetIpv6(Ipv6SocketAddress)
+pkg syscall/zx/net, method (*SocketAddress) Which() I_socketAddressTag
+pkg syscall/zx/net, method (*Subnet) Marshaler() fidl.Marshaler
+pkg syscall/zx/net, method (IpVersion) I_EnumIsStrict() bool
+pkg syscall/zx/net, method (IpVersion) I_EnumValues() []IpVersion
+pkg syscall/zx/net, method (IpVersion) IsUnknown() bool
+pkg syscall/zx/net, method (IpVersion) String() string
+pkg syscall/zx/net, type I_ipAddressTag uint64
+pkg syscall/zx/net, type I_socketAddressTag uint64
+pkg syscall/zx/net, type IpAddress struct
+pkg syscall/zx/net, type IpAddress struct, Ipv4 Ipv4Address
+pkg syscall/zx/net, type IpAddress struct, Ipv6 Ipv6Address
+pkg syscall/zx/net, type IpAddress struct, embedded I_ipAddressTag
+pkg syscall/zx/net, type IpVersion uint32
+pkg syscall/zx/net, type Ipv4Address struct
+pkg syscall/zx/net, type Ipv4Address struct, Addr [4]uint8
+pkg syscall/zx/net, type Ipv4AddressWithPrefix struct
+pkg syscall/zx/net, type Ipv4AddressWithPrefix struct, Addr Ipv4Address
+pkg syscall/zx/net, type Ipv4AddressWithPrefix struct, PrefixLen uint8
+pkg syscall/zx/net, type Ipv4SocketAddress struct
+pkg syscall/zx/net, type Ipv4SocketAddress struct, Address Ipv4Address
+pkg syscall/zx/net, type Ipv4SocketAddress struct, Port uint16
+pkg syscall/zx/net, type Ipv6Address struct
+pkg syscall/zx/net, type Ipv6Address struct, Addr [16]uint8
+pkg syscall/zx/net, type Ipv6AddressWithPrefix struct
+pkg syscall/zx/net, type Ipv6AddressWithPrefix struct, Addr Ipv6Address
+pkg syscall/zx/net, type Ipv6AddressWithPrefix struct, PrefixLen uint8
+pkg syscall/zx/net, type Ipv6SocketAddress struct
+pkg syscall/zx/net, type Ipv6SocketAddress struct, Address Ipv6Address
+pkg syscall/zx/net, type Ipv6SocketAddress struct, Port uint16
+pkg syscall/zx/net, type Ipv6SocketAddress struct, ZoneIndex uint64
+pkg syscall/zx/net, type MacAddress struct
+pkg syscall/zx/net, type MacAddress struct, Octets [6]uint8
+pkg syscall/zx/net, type SocketAddress struct
+pkg syscall/zx/net, type SocketAddress struct, Ipv4 Ipv4SocketAddress
+pkg syscall/zx/net, type SocketAddress struct, Ipv6 Ipv6SocketAddress
+pkg syscall/zx/net, type SocketAddress struct, embedded I_socketAddressTag
+pkg syscall/zx/net, type Subnet struct
+pkg syscall/zx/net, type Subnet struct, Addr IpAddress
+pkg syscall/zx/net, type Subnet struct, PrefixLen uint8
+pkg syscall/zx/net/interfaces, const DeviceClassDevice = 2
+pkg syscall/zx/net/interfaces, const DeviceClassDevice ideal-int
+pkg syscall/zx/net/interfaces, const DeviceClassLoopback = 1
+pkg syscall/zx/net/interfaces, const DeviceClassLoopback ideal-int
+pkg syscall/zx/net/interfaces, const EventAdded = 2
+pkg syscall/zx/net/interfaces, const EventAdded ideal-int
+pkg syscall/zx/net/interfaces, const EventChanged = 4
+pkg syscall/zx/net/interfaces, const EventChanged ideal-int
+pkg syscall/zx/net/interfaces, const EventExisting = 1
+pkg syscall/zx/net/interfaces, const EventExisting ideal-int
+pkg syscall/zx/net/interfaces, const EventIdle = 5
+pkg syscall/zx/net/interfaces, const EventIdle ideal-int
+pkg syscall/zx/net/interfaces, const EventRemoved = 3
+pkg syscall/zx/net/interfaces, const EventRemoved ideal-int
+pkg syscall/zx/net/interfaces, const InterfaceNameLength = 15
+pkg syscall/zx/net/interfaces, const InterfaceNameLength uint8
+pkg syscall/zx/net/interfaces, const PreferredLifetimeInfoDeprecated = 2
+pkg syscall/zx/net/interfaces, const PreferredLifetimeInfoDeprecated ideal-int
+pkg syscall/zx/net/interfaces, const PreferredLifetimeInfoPreferredUntil = 1
+pkg syscall/zx/net/interfaces, const PreferredLifetimeInfoPreferredUntil ideal-int
+pkg syscall/zx/net/interfaces, const StateGetWatcherOrdinal = 5756202622262852323
+pkg syscall/zx/net/interfaces, const StateGetWatcherOrdinal uint64
+pkg syscall/zx/net/interfaces, const StateName = "fuchsia.net.interfaces.State"
+pkg syscall/zx/net/interfaces, const StateName ideal-string
+pkg syscall/zx/net/interfaces, const WatcherWatchOrdinal = 6126979800581992179
+pkg syscall/zx/net/interfaces, const WatcherWatchOrdinal uint64
+pkg syscall/zx/net/interfaces, func DeviceClassWithDevice(network.DeviceClass) DeviceClass
+pkg syscall/zx/net/interfaces, func DeviceClassWithLoopback(Empty) DeviceClass
+pkg syscall/zx/net/interfaces, func EventWithAdded(Properties) Event
+pkg syscall/zx/net/interfaces, func EventWithChanged(Properties) Event
+pkg syscall/zx/net/interfaces, func EventWithExisting(Properties) Event
+pkg syscall/zx/net/interfaces, func EventWithIdle(Empty) Event
+pkg syscall/zx/net/interfaces, func EventWithRemoved(uint64) Event
+pkg syscall/zx/net/interfaces, func NewStateWithCtxInterfaceRequest() (StateWithCtxInterfaceRequest, *StateWithCtxInterface, error)
+pkg syscall/zx/net/interfaces, func NewWatcherWithCtxInterfaceRequest() (WatcherWithCtxInterfaceRequest, *WatcherWithCtxInterface, error)
+pkg syscall/zx/net/interfaces, func PreferredLifetimeInfoWithDeprecated(Empty) PreferredLifetimeInfo
+pkg syscall/zx/net/interfaces, func PreferredLifetimeInfoWithPreferredUntil(int64) PreferredLifetimeInfo
+pkg syscall/zx/net/interfaces, method (*Address) ClearAddr()
+pkg syscall/zx/net/interfaces, method (*Address) ClearPreferredLifetimeInfo()
+pkg syscall/zx/net/interfaces, method (*Address) ClearValidUntil()
+pkg syscall/zx/net/interfaces, method (*Address) GetAddr() net.Subnet
+pkg syscall/zx/net/interfaces, method (*Address) GetAddrWithDefault(net.Subnet) net.Subnet
+pkg syscall/zx/net/interfaces, method (*Address) GetPreferredLifetimeInfo() PreferredLifetimeInfo
+pkg syscall/zx/net/interfaces, method (*Address) GetPreferredLifetimeInfoWithDefault(PreferredLifetimeInfo) PreferredLifetimeInfo
+pkg syscall/zx/net/interfaces, method (*Address) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/net/interfaces, method (*Address) GetValidUntil() int64
+pkg syscall/zx/net/interfaces, method (*Address) GetValidUntilWithDefault(int64) int64
+pkg syscall/zx/net/interfaces, method (*Address) HasAddr() bool
+pkg syscall/zx/net/interfaces, method (*Address) HasPreferredLifetimeInfo() bool
+pkg syscall/zx/net/interfaces, method (*Address) HasUnknownData() bool
+pkg syscall/zx/net/interfaces, method (*Address) HasValidUntil() bool
+pkg syscall/zx/net/interfaces, method (*Address) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/interfaces, method (*Address) SetAddr(net.Subnet)
+pkg syscall/zx/net/interfaces, method (*Address) SetPreferredLifetimeInfo(PreferredLifetimeInfo)
+pkg syscall/zx/net/interfaces, method (*Address) SetValidUntil(int64)
+pkg syscall/zx/net/interfaces, method (*DeviceClass) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/interfaces, method (*DeviceClass) Ordinal() uint64
+pkg syscall/zx/net/interfaces, method (*DeviceClass) SetDevice(network.DeviceClass)
+pkg syscall/zx/net/interfaces, method (*DeviceClass) SetLoopback(Empty)
+pkg syscall/zx/net/interfaces, method (*DeviceClass) Which() I_deviceClassTag
+pkg syscall/zx/net/interfaces, method (*Empty) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/interfaces, method (*Event) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/interfaces, method (*Event) Ordinal() uint64
+pkg syscall/zx/net/interfaces, method (*Event) SetAdded(Properties)
+pkg syscall/zx/net/interfaces, method (*Event) SetChanged(Properties)
+pkg syscall/zx/net/interfaces, method (*Event) SetExisting(Properties)
+pkg syscall/zx/net/interfaces, method (*Event) SetIdle(Empty)
+pkg syscall/zx/net/interfaces, method (*Event) SetRemoved(uint64)
+pkg syscall/zx/net/interfaces, method (*Event) Which() I_eventTag
+pkg syscall/zx/net/interfaces, method (*PreferredLifetimeInfo) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/interfaces, method (*PreferredLifetimeInfo) Ordinal() uint64
+pkg syscall/zx/net/interfaces, method (*PreferredLifetimeInfo) SetDeprecated(Empty)
+pkg syscall/zx/net/interfaces, method (*PreferredLifetimeInfo) SetPreferredUntil(int64)
+pkg syscall/zx/net/interfaces, method (*PreferredLifetimeInfo) Which() I_preferredLifetimeInfoTag
+pkg syscall/zx/net/interfaces, method (*Properties) ClearAddresses()
+pkg syscall/zx/net/interfaces, method (*Properties) ClearDeviceClass()
+pkg syscall/zx/net/interfaces, method (*Properties) ClearHasDefaultIpv4Route()
+pkg syscall/zx/net/interfaces, method (*Properties) ClearHasDefaultIpv6Route()
+pkg syscall/zx/net/interfaces, method (*Properties) ClearId()
+pkg syscall/zx/net/interfaces, method (*Properties) ClearName()
+pkg syscall/zx/net/interfaces, method (*Properties) ClearOnline()
+pkg syscall/zx/net/interfaces, method (*Properties) GetAddresses() []Address
+pkg syscall/zx/net/interfaces, method (*Properties) GetAddressesWithDefault([]Address) []Address
+pkg syscall/zx/net/interfaces, method (*Properties) GetDeviceClass() DeviceClass
+pkg syscall/zx/net/interfaces, method (*Properties) GetDeviceClassWithDefault(DeviceClass) DeviceClass
+pkg syscall/zx/net/interfaces, method (*Properties) GetHasDefaultIpv4Route() bool
+pkg syscall/zx/net/interfaces, method (*Properties) GetHasDefaultIpv4RouteWithDefault(bool) bool
+pkg syscall/zx/net/interfaces, method (*Properties) GetHasDefaultIpv6Route() bool
+pkg syscall/zx/net/interfaces, method (*Properties) GetHasDefaultIpv6RouteWithDefault(bool) bool
+pkg syscall/zx/net/interfaces, method (*Properties) GetId() uint64
+pkg syscall/zx/net/interfaces, method (*Properties) GetIdWithDefault(uint64) uint64
+pkg syscall/zx/net/interfaces, method (*Properties) GetName() string
+pkg syscall/zx/net/interfaces, method (*Properties) GetNameWithDefault(string) string
+pkg syscall/zx/net/interfaces, method (*Properties) GetOnline() bool
+pkg syscall/zx/net/interfaces, method (*Properties) GetOnlineWithDefault(bool) bool
+pkg syscall/zx/net/interfaces, method (*Properties) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/net/interfaces, method (*Properties) HasAddresses() bool
+pkg syscall/zx/net/interfaces, method (*Properties) HasDeviceClass() bool
+pkg syscall/zx/net/interfaces, method (*Properties) HasHasDefaultIpv4Route() bool
+pkg syscall/zx/net/interfaces, method (*Properties) HasHasDefaultIpv6Route() bool
+pkg syscall/zx/net/interfaces, method (*Properties) HasId() bool
+pkg syscall/zx/net/interfaces, method (*Properties) HasName() bool
+pkg syscall/zx/net/interfaces, method (*Properties) HasOnline() bool
+pkg syscall/zx/net/interfaces, method (*Properties) HasUnknownData() bool
+pkg syscall/zx/net/interfaces, method (*Properties) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/interfaces, method (*Properties) SetAddresses([]Address)
+pkg syscall/zx/net/interfaces, method (*Properties) SetDeviceClass(DeviceClass)
+pkg syscall/zx/net/interfaces, method (*Properties) SetHasDefaultIpv4Route(bool)
+pkg syscall/zx/net/interfaces, method (*Properties) SetHasDefaultIpv6Route(bool)
+pkg syscall/zx/net/interfaces, method (*Properties) SetId(uint64)
+pkg syscall/zx/net/interfaces, method (*Properties) SetName(string)
+pkg syscall/zx/net/interfaces, method (*Properties) SetOnline(bool)
+pkg syscall/zx/net/interfaces, method (*StateEventProxy) Handle() *zx.Handle
+pkg syscall/zx/net/interfaces, method (*StateWithCtxInterface) GetWatcher(context.Context, WatcherOptions, WatcherWithCtxInterfaceRequest) error
+pkg syscall/zx/net/interfaces, method (*StateWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/net/interfaces, method (*StateWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/net/interfaces, method (*StateWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/net/interfaces, method (*WatcherEventProxy) Handle() *zx.Handle
+pkg syscall/zx/net/interfaces, method (*WatcherOptions) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/net/interfaces, method (*WatcherOptions) HasUnknownData() bool
+pkg syscall/zx/net/interfaces, method (*WatcherOptions) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/interfaces, method (*WatcherWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/net/interfaces, method (*WatcherWithCtxInterface) Watch(context.Context) (Event, error)
+pkg syscall/zx/net/interfaces, method (*WatcherWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/net/interfaces, method (*WatcherWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/net/interfaces, method (StateWithCtxInterfaceRequest) Name() string
+pkg syscall/zx/net/interfaces, method (StateWithCtxInterfaceRequest) ToChannel() zx.Channel
+pkg syscall/zx/net/interfaces, type Address struct
+pkg syscall/zx/net/interfaces, type Address struct, Addr net.Subnet
+pkg syscall/zx/net/interfaces, type Address struct, AddrPresent bool
+pkg syscall/zx/net/interfaces, type Address struct, I_unknownData interface{}
+pkg syscall/zx/net/interfaces, type Address struct, PreferredLifetimeInfo PreferredLifetimeInfo
+pkg syscall/zx/net/interfaces, type Address struct, PreferredLifetimeInfoPresent bool
+pkg syscall/zx/net/interfaces, type Address struct, ValidUntil int64
+pkg syscall/zx/net/interfaces, type Address struct, ValidUntilPresent bool
+pkg syscall/zx/net/interfaces, type DeviceClass struct
+pkg syscall/zx/net/interfaces, type DeviceClass struct, Device network.DeviceClass
+pkg syscall/zx/net/interfaces, type DeviceClass struct, Loopback Empty
+pkg syscall/zx/net/interfaces, type DeviceClass struct, embedded I_deviceClassTag
+pkg syscall/zx/net/interfaces, type Empty struct
+pkg syscall/zx/net/interfaces, type Event struct
+pkg syscall/zx/net/interfaces, type Event struct, Added Properties
+pkg syscall/zx/net/interfaces, type Event struct, Changed Properties
+pkg syscall/zx/net/interfaces, type Event struct, Existing Properties
+pkg syscall/zx/net/interfaces, type Event struct, Idle Empty
+pkg syscall/zx/net/interfaces, type Event struct, Removed uint64
+pkg syscall/zx/net/interfaces, type Event struct, embedded I_eventTag
+pkg syscall/zx/net/interfaces, type I_deviceClassTag uint64
+pkg syscall/zx/net/interfaces, type I_eventTag uint64
+pkg syscall/zx/net/interfaces, type I_preferredLifetimeInfoTag uint64
+pkg syscall/zx/net/interfaces, type PreferredLifetimeInfo struct
+pkg syscall/zx/net/interfaces, type PreferredLifetimeInfo struct, Deprecated Empty
+pkg syscall/zx/net/interfaces, type PreferredLifetimeInfo struct, PreferredUntil int64
+pkg syscall/zx/net/interfaces, type PreferredLifetimeInfo struct, embedded I_preferredLifetimeInfoTag
+pkg syscall/zx/net/interfaces, type Properties struct
+pkg syscall/zx/net/interfaces, type Properties struct, Addresses []Address
+pkg syscall/zx/net/interfaces, type Properties struct, AddressesPresent bool
+pkg syscall/zx/net/interfaces, type Properties struct, DeviceClass DeviceClass
+pkg syscall/zx/net/interfaces, type Properties struct, DeviceClassPresent bool
+pkg syscall/zx/net/interfaces, type Properties struct, HasDefaultIpv4Route bool
+pkg syscall/zx/net/interfaces, type Properties struct, HasDefaultIpv4RoutePresent bool
+pkg syscall/zx/net/interfaces, type Properties struct, HasDefaultIpv6Route bool
+pkg syscall/zx/net/interfaces, type Properties struct, HasDefaultIpv6RoutePresent bool
+pkg syscall/zx/net/interfaces, type Properties struct, I_unknownData interface{}
+pkg syscall/zx/net/interfaces, type Properties struct, Id uint64
+pkg syscall/zx/net/interfaces, type Properties struct, IdPresent bool
+pkg syscall/zx/net/interfaces, type Properties struct, Name string
+pkg syscall/zx/net/interfaces, type Properties struct, NamePresent bool
+pkg syscall/zx/net/interfaces, type Properties struct, Online bool
+pkg syscall/zx/net/interfaces, type Properties struct, OnlinePresent bool
+pkg syscall/zx/net/interfaces, type StateEventProxy struct
+pkg syscall/zx/net/interfaces, type StateEventProxy struct, embedded zx.Channel
+pkg syscall/zx/net/interfaces, type StateWithCtx interface { GetWatcher }
+pkg syscall/zx/net/interfaces, type StateWithCtx interface, GetWatcher(context.Context, WatcherOptions, WatcherWithCtxInterfaceRequest) error
+pkg syscall/zx/net/interfaces, type StateWithCtxInterface struct
+pkg syscall/zx/net/interfaces, type StateWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/net/interfaces, type StateWithCtxInterfaceRequest struct
+pkg syscall/zx/net/interfaces, type StateWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/net/interfaces, type StateWithCtxStub struct
+pkg syscall/zx/net/interfaces, type StateWithCtxStub struct, Impl StateWithCtx
+pkg syscall/zx/net/interfaces, type StateWithCtxTransitionalBase struct
+pkg syscall/zx/net/interfaces, type WatcherEventProxy struct
+pkg syscall/zx/net/interfaces, type WatcherEventProxy struct, embedded zx.Channel
+pkg syscall/zx/net/interfaces, type WatcherOptions struct
+pkg syscall/zx/net/interfaces, type WatcherOptions struct, I_unknownData interface{}
+pkg syscall/zx/net/interfaces, type WatcherWithCtx interface { Watch }
+pkg syscall/zx/net/interfaces, type WatcherWithCtx interface, Watch(context.Context) (Event, error)
+pkg syscall/zx/net/interfaces, type WatcherWithCtxInterface struct
+pkg syscall/zx/net/interfaces, type WatcherWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/net/interfaces, type WatcherWithCtxInterfaceRequest struct
+pkg syscall/zx/net/interfaces, type WatcherWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/net/interfaces, type WatcherWithCtxStub struct
+pkg syscall/zx/net/interfaces, type WatcherWithCtxStub struct, Impl WatcherWithCtx
+pkg syscall/zx/net/interfaces, type WatcherWithCtxTransitionalBase struct
+pkg syscall/zx/net/name, const DnsServerSourceDhcp = 2
+pkg syscall/zx/net/name, const DnsServerSourceDhcp ideal-int
+pkg syscall/zx/net/name, const DnsServerSourceDhcpv6 = 4
+pkg syscall/zx/net/name, const DnsServerSourceDhcpv6 ideal-int
+pkg syscall/zx/net/name, const DnsServerSourceNdp = 3
+pkg syscall/zx/net/name, const DnsServerSourceNdp ideal-int
+pkg syscall/zx/net/name, const DnsServerSourceStaticSource = 1
+pkg syscall/zx/net/name, const DnsServerSourceStaticSource ideal-int
+pkg syscall/zx/net/name, const DnsServerWatcherWatchServersOrdinal = 6289435752595043890
+pkg syscall/zx/net/name, const DnsServerWatcherWatchServersOrdinal uint64
+pkg syscall/zx/net/name, const LookupAdminGetDnsServersOrdinal = 7008449565845288975
+pkg syscall/zx/net/name, const LookupAdminGetDnsServersOrdinal uint64
+pkg syscall/zx/net/name, const LookupAdminName = "fuchsia.net.name.LookupAdmin"
+pkg syscall/zx/net/name, const LookupAdminName ideal-string
+pkg syscall/zx/net/name, const LookupAdminSetDnsServersOrdinal = 6188713333289893526
+pkg syscall/zx/net/name, const LookupAdminSetDnsServersOrdinal uint64
+pkg syscall/zx/net/name, const LookupAdminSetDnsServersResultErr = 2
+pkg syscall/zx/net/name, const LookupAdminSetDnsServersResultErr ideal-int
+pkg syscall/zx/net/name, const LookupAdminSetDnsServersResultResponse = 1
+pkg syscall/zx/net/name, const LookupAdminSetDnsServersResultResponse ideal-int
+pkg syscall/zx/net/name, const LookupErrorInternalError = 4
+pkg syscall/zx/net/name, const LookupErrorInternalError LookupError
+pkg syscall/zx/net/name, const LookupErrorInvalidArgs = 3
+pkg syscall/zx/net/name, const LookupErrorInvalidArgs LookupError
+pkg syscall/zx/net/name, const LookupErrorNotFound = 1
+pkg syscall/zx/net/name, const LookupErrorNotFound LookupError
+pkg syscall/zx/net/name, const LookupErrorTransient = 2
+pkg syscall/zx/net/name, const LookupErrorTransient LookupError
+pkg syscall/zx/net/name, const LookupLookupHostnameOrdinal = 1965094522514342692
+pkg syscall/zx/net/name, const LookupLookupHostnameOrdinal uint64
+pkg syscall/zx/net/name, const LookupLookupHostnameResultErr = 2
+pkg syscall/zx/net/name, const LookupLookupHostnameResultErr ideal-int
+pkg syscall/zx/net/name, const LookupLookupHostnameResultResponse = 1
+pkg syscall/zx/net/name, const LookupLookupHostnameResultResponse ideal-int
+pkg syscall/zx/net/name, const LookupLookupIpOrdinal = 6423396061567566288
+pkg syscall/zx/net/name, const LookupLookupIpOrdinal uint64
+pkg syscall/zx/net/name, const LookupLookupIpResultErr = 2
+pkg syscall/zx/net/name, const LookupLookupIpResultErr ideal-int
+pkg syscall/zx/net/name, const LookupLookupIpResultResponse = 1
+pkg syscall/zx/net/name, const LookupLookupIpResultResponse ideal-int
+pkg syscall/zx/net/name, const LookupName = "fuchsia.net.name.Lookup"
+pkg syscall/zx/net/name, const LookupName ideal-string
+pkg syscall/zx/net/name, func DnsServerSourceWithDhcp(DhcpDnsServerSource) DnsServerSource
+pkg syscall/zx/net/name, func DnsServerSourceWithDhcpv6(Dhcpv6DnsServerSource) DnsServerSource
+pkg syscall/zx/net/name, func DnsServerSourceWithNdp(NdpDnsServerSource) DnsServerSource
+pkg syscall/zx/net/name, func DnsServerSourceWithStaticSource(StaticDnsServerSource) DnsServerSource
+pkg syscall/zx/net/name, func LookupAdminSetDnsServersResultWithErr(int32) LookupAdminSetDnsServersResult
+pkg syscall/zx/net/name, func LookupAdminSetDnsServersResultWithResponse(LookupAdminSetDnsServersResponse) LookupAdminSetDnsServersResult
+pkg syscall/zx/net/name, func LookupLookupHostnameResultWithErr(LookupError) LookupLookupHostnameResult
+pkg syscall/zx/net/name, func LookupLookupHostnameResultWithResponse(LookupLookupHostnameResponse) LookupLookupHostnameResult
+pkg syscall/zx/net/name, func LookupLookupIpResultWithErr(LookupError) LookupLookupIpResult
+pkg syscall/zx/net/name, func LookupLookupIpResultWithResponse(LookupLookupIpResponse) LookupLookupIpResult
+pkg syscall/zx/net/name, func NewDnsServerWatcherWithCtxInterfaceRequest() (DnsServerWatcherWithCtxInterfaceRequest, *DnsServerWatcherWithCtxInterface, error)
+pkg syscall/zx/net/name, func NewLookupAdminWithCtxInterfaceRequest() (LookupAdminWithCtxInterfaceRequest, *LookupAdminWithCtxInterface, error)
+pkg syscall/zx/net/name, func NewLookupWithCtxInterfaceRequest() (LookupWithCtxInterfaceRequest, *LookupWithCtxInterface, error)
+pkg syscall/zx/net/name, method (*DhcpDnsServerSource) ClearSourceInterface()
+pkg syscall/zx/net/name, method (*DhcpDnsServerSource) GetSourceInterface() uint64
+pkg syscall/zx/net/name, method (*DhcpDnsServerSource) GetSourceInterfaceWithDefault(uint64) uint64
+pkg syscall/zx/net/name, method (*DhcpDnsServerSource) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/net/name, method (*DhcpDnsServerSource) HasSourceInterface() bool
+pkg syscall/zx/net/name, method (*DhcpDnsServerSource) HasUnknownData() bool
+pkg syscall/zx/net/name, method (*DhcpDnsServerSource) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/name, method (*DhcpDnsServerSource) SetSourceInterface(uint64)
+pkg syscall/zx/net/name, method (*Dhcpv6DnsServerSource) ClearSourceInterface()
+pkg syscall/zx/net/name, method (*Dhcpv6DnsServerSource) GetSourceInterface() uint64
+pkg syscall/zx/net/name, method (*Dhcpv6DnsServerSource) GetSourceInterfaceWithDefault(uint64) uint64
+pkg syscall/zx/net/name, method (*Dhcpv6DnsServerSource) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/net/name, method (*Dhcpv6DnsServerSource) HasSourceInterface() bool
+pkg syscall/zx/net/name, method (*Dhcpv6DnsServerSource) HasUnknownData() bool
+pkg syscall/zx/net/name, method (*Dhcpv6DnsServerSource) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/name, method (*Dhcpv6DnsServerSource) SetSourceInterface(uint64)
+pkg syscall/zx/net/name, method (*DnsServer) ClearAddress()
+pkg syscall/zx/net/name, method (*DnsServer) ClearSource()
+pkg syscall/zx/net/name, method (*DnsServer) GetAddress() net.SocketAddress
+pkg syscall/zx/net/name, method (*DnsServer) GetAddressWithDefault(net.SocketAddress) net.SocketAddress
+pkg syscall/zx/net/name, method (*DnsServer) GetSource() DnsServerSource
+pkg syscall/zx/net/name, method (*DnsServer) GetSourceWithDefault(DnsServerSource) DnsServerSource
+pkg syscall/zx/net/name, method (*DnsServer) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/net/name, method (*DnsServer) HasAddress() bool
+pkg syscall/zx/net/name, method (*DnsServer) HasSource() bool
+pkg syscall/zx/net/name, method (*DnsServer) HasUnknownData() bool
+pkg syscall/zx/net/name, method (*DnsServer) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/name, method (*DnsServer) SetAddress(net.SocketAddress)
+pkg syscall/zx/net/name, method (*DnsServer) SetSource(DnsServerSource)
+pkg syscall/zx/net/name, method (*DnsServerSource) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/name, method (*DnsServerSource) Ordinal() uint64
+pkg syscall/zx/net/name, method (*DnsServerSource) SetDhcp(DhcpDnsServerSource)
+pkg syscall/zx/net/name, method (*DnsServerSource) SetDhcpv6(Dhcpv6DnsServerSource)
+pkg syscall/zx/net/name, method (*DnsServerSource) SetNdp(NdpDnsServerSource)
+pkg syscall/zx/net/name, method (*DnsServerSource) SetStaticSource(StaticDnsServerSource)
+pkg syscall/zx/net/name, method (*DnsServerSource) Which() I_dnsServerSourceTag
+pkg syscall/zx/net/name, method (*DnsServerWatcherEventProxy) Handle() *zx.Handle
+pkg syscall/zx/net/name, method (*DnsServerWatcherWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/net/name, method (*DnsServerWatcherWithCtxInterface) WatchServers(context.Context) ([]DnsServer, error)
+pkg syscall/zx/net/name, method (*DnsServerWatcherWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/net/name, method (*DnsServerWatcherWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/net/name, method (*LookupAdminEventProxy) Handle() *zx.Handle
+pkg syscall/zx/net/name, method (*LookupAdminSetDnsServersResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/name, method (*LookupAdminSetDnsServersResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/name, method (*LookupAdminSetDnsServersResult) Ordinal() uint64
+pkg syscall/zx/net/name, method (*LookupAdminSetDnsServersResult) SetErr(int32)
+pkg syscall/zx/net/name, method (*LookupAdminSetDnsServersResult) SetResponse(LookupAdminSetDnsServersResponse)
+pkg syscall/zx/net/name, method (*LookupAdminSetDnsServersResult) Which() I_lookupAdminSetDnsServersResultTag
+pkg syscall/zx/net/name, method (*LookupAdminWithCtxInterface) GetDnsServers(context.Context) ([]net.SocketAddress, error)
+pkg syscall/zx/net/name, method (*LookupAdminWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/net/name, method (*LookupAdminWithCtxInterface) SetDnsServers(context.Context, []net.SocketAddress) (LookupAdminSetDnsServersResult, error)
+pkg syscall/zx/net/name, method (*LookupAdminWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/net/name, method (*LookupAdminWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/net/name, method (*LookupEventProxy) Handle() *zx.Handle
+pkg syscall/zx/net/name, method (*LookupIpOptions) ClearIpv4Lookup()
+pkg syscall/zx/net/name, method (*LookupIpOptions) ClearIpv6Lookup()
+pkg syscall/zx/net/name, method (*LookupIpOptions) ClearSortAddresses()
+pkg syscall/zx/net/name, method (*LookupIpOptions) GetIpv4Lookup() bool
+pkg syscall/zx/net/name, method (*LookupIpOptions) GetIpv4LookupWithDefault(bool) bool
+pkg syscall/zx/net/name, method (*LookupIpOptions) GetIpv6Lookup() bool
+pkg syscall/zx/net/name, method (*LookupIpOptions) GetIpv6LookupWithDefault(bool) bool
+pkg syscall/zx/net/name, method (*LookupIpOptions) GetSortAddresses() bool
+pkg syscall/zx/net/name, method (*LookupIpOptions) GetSortAddressesWithDefault(bool) bool
+pkg syscall/zx/net/name, method (*LookupIpOptions) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/net/name, method (*LookupIpOptions) HasIpv4Lookup() bool
+pkg syscall/zx/net/name, method (*LookupIpOptions) HasIpv6Lookup() bool
+pkg syscall/zx/net/name, method (*LookupIpOptions) HasSortAddresses() bool
+pkg syscall/zx/net/name, method (*LookupIpOptions) HasUnknownData() bool
+pkg syscall/zx/net/name, method (*LookupIpOptions) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/name, method (*LookupIpOptions) SetIpv4Lookup(bool)
+pkg syscall/zx/net/name, method (*LookupIpOptions) SetIpv6Lookup(bool)
+pkg syscall/zx/net/name, method (*LookupIpOptions) SetSortAddresses(bool)
+pkg syscall/zx/net/name, method (*LookupLookupHostnameResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/name, method (*LookupLookupHostnameResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/name, method (*LookupLookupHostnameResult) Ordinal() uint64
+pkg syscall/zx/net/name, method (*LookupLookupHostnameResult) SetErr(LookupError)
+pkg syscall/zx/net/name, method (*LookupLookupHostnameResult) SetResponse(LookupLookupHostnameResponse)
+pkg syscall/zx/net/name, method (*LookupLookupHostnameResult) Which() I_lookupLookupHostnameResultTag
+pkg syscall/zx/net/name, method (*LookupLookupIpResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/name, method (*LookupLookupIpResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/name, method (*LookupLookupIpResult) Ordinal() uint64
+pkg syscall/zx/net/name, method (*LookupLookupIpResult) SetErr(LookupError)
+pkg syscall/zx/net/name, method (*LookupLookupIpResult) SetResponse(LookupLookupIpResponse)
+pkg syscall/zx/net/name, method (*LookupLookupIpResult) Which() I_lookupLookupIpResultTag
+pkg syscall/zx/net/name, method (*LookupResult) ClearAddresses()
+pkg syscall/zx/net/name, method (*LookupResult) GetAddresses() []net.IpAddress
+pkg syscall/zx/net/name, method (*LookupResult) GetAddressesWithDefault([]net.IpAddress) []net.IpAddress
+pkg syscall/zx/net/name, method (*LookupResult) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/net/name, method (*LookupResult) HasAddresses() bool
+pkg syscall/zx/net/name, method (*LookupResult) HasUnknownData() bool
+pkg syscall/zx/net/name, method (*LookupResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/name, method (*LookupResult) SetAddresses([]net.IpAddress)
+pkg syscall/zx/net/name, method (*LookupWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/net/name, method (*LookupWithCtxInterface) LookupHostname(context.Context, net.IpAddress) (LookupLookupHostnameResult, error)
+pkg syscall/zx/net/name, method (*LookupWithCtxInterface) LookupIp(context.Context, string, LookupIpOptions) (LookupLookupIpResult, error)
+pkg syscall/zx/net/name, method (*LookupWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/net/name, method (*LookupWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/net/name, method (*NdpDnsServerSource) ClearSourceInterface()
+pkg syscall/zx/net/name, method (*NdpDnsServerSource) GetSourceInterface() uint64
+pkg syscall/zx/net/name, method (*NdpDnsServerSource) GetSourceInterfaceWithDefault(uint64) uint64
+pkg syscall/zx/net/name, method (*NdpDnsServerSource) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/net/name, method (*NdpDnsServerSource) HasSourceInterface() bool
+pkg syscall/zx/net/name, method (*NdpDnsServerSource) HasUnknownData() bool
+pkg syscall/zx/net/name, method (*NdpDnsServerSource) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/name, method (*NdpDnsServerSource) SetSourceInterface(uint64)
+pkg syscall/zx/net/name, method (*StaticDnsServerSource) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/net/name, method (*StaticDnsServerSource) HasUnknownData() bool
+pkg syscall/zx/net/name, method (*StaticDnsServerSource) Marshaler() fidl.Marshaler
+pkg syscall/zx/net/name, method (LookupAdminWithCtxInterfaceRequest) Name() string
+pkg syscall/zx/net/name, method (LookupAdminWithCtxInterfaceRequest) ToChannel() zx.Channel
+pkg syscall/zx/net/name, method (LookupError) I_EnumIsStrict() bool
+pkg syscall/zx/net/name, method (LookupError) I_EnumValues() []LookupError
+pkg syscall/zx/net/name, method (LookupError) IsUnknown() bool
+pkg syscall/zx/net/name, method (LookupError) String() string
+pkg syscall/zx/net/name, method (LookupWithCtxInterfaceRequest) Name() string
+pkg syscall/zx/net/name, method (LookupWithCtxInterfaceRequest) ToChannel() zx.Channel
+pkg syscall/zx/net/name, type DhcpDnsServerSource struct
+pkg syscall/zx/net/name, type DhcpDnsServerSource struct, I_unknownData interface{}
+pkg syscall/zx/net/name, type DhcpDnsServerSource struct, SourceInterface uint64
+pkg syscall/zx/net/name, type DhcpDnsServerSource struct, SourceInterfacePresent bool
+pkg syscall/zx/net/name, type Dhcpv6DnsServerSource struct
+pkg syscall/zx/net/name, type Dhcpv6DnsServerSource struct, I_unknownData interface{}
+pkg syscall/zx/net/name, type Dhcpv6DnsServerSource struct, SourceInterface uint64
+pkg syscall/zx/net/name, type Dhcpv6DnsServerSource struct, SourceInterfacePresent bool
+pkg syscall/zx/net/name, type DnsServer struct
+pkg syscall/zx/net/name, type DnsServer struct, Address net.SocketAddress
+pkg syscall/zx/net/name, type DnsServer struct, AddressPresent bool
+pkg syscall/zx/net/name, type DnsServer struct, I_unknownData interface{}
+pkg syscall/zx/net/name, type DnsServer struct, Source DnsServerSource
+pkg syscall/zx/net/name, type DnsServer struct, SourcePresent bool
+pkg syscall/zx/net/name, type DnsServerSource struct
+pkg syscall/zx/net/name, type DnsServerSource struct, Dhcp DhcpDnsServerSource
+pkg syscall/zx/net/name, type DnsServerSource struct, Dhcpv6 Dhcpv6DnsServerSource
+pkg syscall/zx/net/name, type DnsServerSource struct, Ndp NdpDnsServerSource
+pkg syscall/zx/net/name, type DnsServerSource struct, StaticSource StaticDnsServerSource
+pkg syscall/zx/net/name, type DnsServerSource struct, embedded I_dnsServerSourceTag
+pkg syscall/zx/net/name, type DnsServerWatcherEventProxy struct
+pkg syscall/zx/net/name, type DnsServerWatcherEventProxy struct, embedded zx.Channel
+pkg syscall/zx/net/name, type DnsServerWatcherWithCtx interface { WatchServers }
+pkg syscall/zx/net/name, type DnsServerWatcherWithCtx interface, WatchServers(context.Context) ([]DnsServer, error)
+pkg syscall/zx/net/name, type DnsServerWatcherWithCtxInterface struct
+pkg syscall/zx/net/name, type DnsServerWatcherWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/net/name, type DnsServerWatcherWithCtxInterfaceRequest struct
+pkg syscall/zx/net/name, type DnsServerWatcherWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/net/name, type DnsServerWatcherWithCtxStub struct
+pkg syscall/zx/net/name, type DnsServerWatcherWithCtxStub struct, Impl DnsServerWatcherWithCtx
+pkg syscall/zx/net/name, type DnsServerWatcherWithCtxTransitionalBase struct
+pkg syscall/zx/net/name, type I_dnsServerSourceTag uint64
+pkg syscall/zx/net/name, type I_lookupAdminSetDnsServersResultTag uint64
+pkg syscall/zx/net/name, type I_lookupLookupHostnameResultTag uint64
+pkg syscall/zx/net/name, type I_lookupLookupIpResultTag uint64
+pkg syscall/zx/net/name, type LookupAdminEventProxy struct
+pkg syscall/zx/net/name, type LookupAdminEventProxy struct, embedded zx.Channel
+pkg syscall/zx/net/name, type LookupAdminSetDnsServersResponse struct
+pkg syscall/zx/net/name, type LookupAdminSetDnsServersResult struct
+pkg syscall/zx/net/name, type LookupAdminSetDnsServersResult struct, Err int32
+pkg syscall/zx/net/name, type LookupAdminSetDnsServersResult struct, Response LookupAdminSetDnsServersResponse
+pkg syscall/zx/net/name, type LookupAdminSetDnsServersResult struct, embedded I_lookupAdminSetDnsServersResultTag
+pkg syscall/zx/net/name, type LookupAdminWithCtx interface { GetDnsServers, SetDnsServers }
+pkg syscall/zx/net/name, type LookupAdminWithCtx interface, GetDnsServers(context.Context) ([]net.SocketAddress, error)
+pkg syscall/zx/net/name, type LookupAdminWithCtx interface, SetDnsServers(context.Context, []net.SocketAddress) (LookupAdminSetDnsServersResult, error)
+pkg syscall/zx/net/name, type LookupAdminWithCtxInterface struct
+pkg syscall/zx/net/name, type LookupAdminWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/net/name, type LookupAdminWithCtxInterfaceRequest struct
+pkg syscall/zx/net/name, type LookupAdminWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/net/name, type LookupAdminWithCtxStub struct
+pkg syscall/zx/net/name, type LookupAdminWithCtxStub struct, Impl LookupAdminWithCtx
+pkg syscall/zx/net/name, type LookupAdminWithCtxTransitionalBase struct
+pkg syscall/zx/net/name, type LookupError uint32
+pkg syscall/zx/net/name, type LookupEventProxy struct
+pkg syscall/zx/net/name, type LookupEventProxy struct, embedded zx.Channel
+pkg syscall/zx/net/name, type LookupIpOptions struct
+pkg syscall/zx/net/name, type LookupIpOptions struct, I_unknownData interface{}
+pkg syscall/zx/net/name, type LookupIpOptions struct, Ipv4Lookup bool
+pkg syscall/zx/net/name, type LookupIpOptions struct, Ipv4LookupPresent bool
+pkg syscall/zx/net/name, type LookupIpOptions struct, Ipv6Lookup bool
+pkg syscall/zx/net/name, type LookupIpOptions struct, Ipv6LookupPresent bool
+pkg syscall/zx/net/name, type LookupIpOptions struct, SortAddresses bool
+pkg syscall/zx/net/name, type LookupIpOptions struct, SortAddressesPresent bool
+pkg syscall/zx/net/name, type LookupLookupHostnameResponse struct
+pkg syscall/zx/net/name, type LookupLookupHostnameResponse struct, Hostname string
+pkg syscall/zx/net/name, type LookupLookupHostnameResult struct
+pkg syscall/zx/net/name, type LookupLookupHostnameResult struct, Err LookupError
+pkg syscall/zx/net/name, type LookupLookupHostnameResult struct, Response LookupLookupHostnameResponse
+pkg syscall/zx/net/name, type LookupLookupHostnameResult struct, embedded I_lookupLookupHostnameResultTag
+pkg syscall/zx/net/name, type LookupLookupIpResponse struct
+pkg syscall/zx/net/name, type LookupLookupIpResponse struct, Result LookupResult
+pkg syscall/zx/net/name, type LookupLookupIpResult struct
+pkg syscall/zx/net/name, type LookupLookupIpResult struct, Err LookupError
+pkg syscall/zx/net/name, type LookupLookupIpResult struct, Response LookupLookupIpResponse
+pkg syscall/zx/net/name, type LookupLookupIpResult struct, embedded I_lookupLookupIpResultTag
+pkg syscall/zx/net/name, type LookupResult struct
+pkg syscall/zx/net/name, type LookupResult struct, Addresses []net.IpAddress
+pkg syscall/zx/net/name, type LookupResult struct, AddressesPresent bool
+pkg syscall/zx/net/name, type LookupResult struct, I_unknownData interface{}
+pkg syscall/zx/net/name, type LookupWithCtx interface { LookupHostname, LookupIp }
+pkg syscall/zx/net/name, type LookupWithCtx interface, LookupHostname(context.Context, net.IpAddress) (LookupLookupHostnameResult, error)
+pkg syscall/zx/net/name, type LookupWithCtx interface, LookupIp(context.Context, string, LookupIpOptions) (LookupLookupIpResult, error)
+pkg syscall/zx/net/name, type LookupWithCtxInterface struct
+pkg syscall/zx/net/name, type LookupWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/net/name, type LookupWithCtxInterfaceRequest struct
+pkg syscall/zx/net/name, type LookupWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/net/name, type LookupWithCtxStub struct
+pkg syscall/zx/net/name, type LookupWithCtxStub struct, Impl LookupWithCtx
+pkg syscall/zx/net/name, type LookupWithCtxTransitionalBase struct
+pkg syscall/zx/net/name, type NdpDnsServerSource struct
+pkg syscall/zx/net/name, type NdpDnsServerSource struct, I_unknownData interface{}
+pkg syscall/zx/net/name, type NdpDnsServerSource struct, SourceInterface uint64
+pkg syscall/zx/net/name, type NdpDnsServerSource struct, SourceInterfacePresent bool
+pkg syscall/zx/net/name, type StaticDnsServerSource struct
+pkg syscall/zx/net/name, type StaticDnsServerSource struct, I_unknownData interface{}
+pkg syscall/zx/posix, const Edeadlock = 35
+pkg syscall/zx/posix, const Edeadlock Errno
+pkg syscall/zx/posix, const Enotsup = 95
+pkg syscall/zx/posix, const Enotsup Errno
+pkg syscall/zx/posix, const ErrnoE2Big = 7
+pkg syscall/zx/posix, const ErrnoE2Big Errno
+pkg syscall/zx/posix, const ErrnoEacces = 13
+pkg syscall/zx/posix, const ErrnoEacces Errno
+pkg syscall/zx/posix, const ErrnoEaddrinuse = 98
+pkg syscall/zx/posix, const ErrnoEaddrinuse Errno
+pkg syscall/zx/posix, const ErrnoEaddrnotavail = 99
+pkg syscall/zx/posix, const ErrnoEaddrnotavail Errno
+pkg syscall/zx/posix, const ErrnoEadv = 68
+pkg syscall/zx/posix, const ErrnoEadv Errno
+pkg syscall/zx/posix, const ErrnoEafnosupport = 97
+pkg syscall/zx/posix, const ErrnoEafnosupport Errno
+pkg syscall/zx/posix, const ErrnoEagain = 11
+pkg syscall/zx/posix, const ErrnoEagain Errno
+pkg syscall/zx/posix, const ErrnoEalready = 114
+pkg syscall/zx/posix, const ErrnoEalready Errno
+pkg syscall/zx/posix, const ErrnoEbade = 52
+pkg syscall/zx/posix, const ErrnoEbade Errno
+pkg syscall/zx/posix, const ErrnoEbadf = 9
+pkg syscall/zx/posix, const ErrnoEbadf Errno
+pkg syscall/zx/posix, const ErrnoEbadfd = 77
+pkg syscall/zx/posix, const ErrnoEbadfd Errno
+pkg syscall/zx/posix, const ErrnoEbadmsg = 74
+pkg syscall/zx/posix, const ErrnoEbadmsg Errno
+pkg syscall/zx/posix, const ErrnoEbadr = 53
+pkg syscall/zx/posix, const ErrnoEbadr Errno
+pkg syscall/zx/posix, const ErrnoEbadrqc = 56
+pkg syscall/zx/posix, const ErrnoEbadrqc Errno
+pkg syscall/zx/posix, const ErrnoEbadslt = 57
+pkg syscall/zx/posix, const ErrnoEbadslt Errno
+pkg syscall/zx/posix, const ErrnoEbfont = 59
+pkg syscall/zx/posix, const ErrnoEbfont Errno
+pkg syscall/zx/posix, const ErrnoEbusy = 16
+pkg syscall/zx/posix, const ErrnoEbusy Errno
+pkg syscall/zx/posix, const ErrnoEcanceled = 125
+pkg syscall/zx/posix, const ErrnoEcanceled Errno
+pkg syscall/zx/posix, const ErrnoEchild = 10
+pkg syscall/zx/posix, const ErrnoEchild Errno
+pkg syscall/zx/posix, const ErrnoEchrng = 44
+pkg syscall/zx/posix, const ErrnoEchrng Errno
+pkg syscall/zx/posix, const ErrnoEcomm = 70
+pkg syscall/zx/posix, const ErrnoEcomm Errno
+pkg syscall/zx/posix, const ErrnoEconnaborted = 103
+pkg syscall/zx/posix, const ErrnoEconnaborted Errno
+pkg syscall/zx/posix, const ErrnoEconnrefused = 111
+pkg syscall/zx/posix, const ErrnoEconnrefused Errno
+pkg syscall/zx/posix, const ErrnoEconnreset = 104
+pkg syscall/zx/posix, const ErrnoEconnreset Errno
+pkg syscall/zx/posix, const ErrnoEdeadlk = 35
+pkg syscall/zx/posix, const ErrnoEdeadlk Errno
+pkg syscall/zx/posix, const ErrnoEdestaddrreq = 89
+pkg syscall/zx/posix, const ErrnoEdestaddrreq Errno
+pkg syscall/zx/posix, const ErrnoEdom = 33
+pkg syscall/zx/posix, const ErrnoEdom Errno
+pkg syscall/zx/posix, const ErrnoEdotdot = 73
+pkg syscall/zx/posix, const ErrnoEdotdot Errno
+pkg syscall/zx/posix, const ErrnoEdquot = 122
+pkg syscall/zx/posix, const ErrnoEdquot Errno
+pkg syscall/zx/posix, const ErrnoEexist = 17
+pkg syscall/zx/posix, const ErrnoEexist Errno
+pkg syscall/zx/posix, const ErrnoEfault = 14
+pkg syscall/zx/posix, const ErrnoEfault Errno
+pkg syscall/zx/posix, const ErrnoEfbig = 27
+pkg syscall/zx/posix, const ErrnoEfbig Errno
+pkg syscall/zx/posix, const ErrnoEhostdown = 112
+pkg syscall/zx/posix, const ErrnoEhostdown Errno
+pkg syscall/zx/posix, const ErrnoEhostunreach = 113
+pkg syscall/zx/posix, const ErrnoEhostunreach Errno
+pkg syscall/zx/posix, const ErrnoEhwpoison = 133
+pkg syscall/zx/posix, const ErrnoEhwpoison Errno
+pkg syscall/zx/posix, const ErrnoEidrm = 43
+pkg syscall/zx/posix, const ErrnoEidrm Errno
+pkg syscall/zx/posix, const ErrnoEilseq = 84
+pkg syscall/zx/posix, const ErrnoEilseq Errno
+pkg syscall/zx/posix, const ErrnoEinprogress = 115
+pkg syscall/zx/posix, const ErrnoEinprogress Errno
+pkg syscall/zx/posix, const ErrnoEintr = 4
+pkg syscall/zx/posix, const ErrnoEintr Errno
+pkg syscall/zx/posix, const ErrnoEinval = 22
+pkg syscall/zx/posix, const ErrnoEinval Errno
+pkg syscall/zx/posix, const ErrnoEio = 5
+pkg syscall/zx/posix, const ErrnoEio Errno
+pkg syscall/zx/posix, const ErrnoEisconn = 106
+pkg syscall/zx/posix, const ErrnoEisconn Errno
+pkg syscall/zx/posix, const ErrnoEisdir = 21
+pkg syscall/zx/posix, const ErrnoEisdir Errno
+pkg syscall/zx/posix, const ErrnoEisnam = 120
+pkg syscall/zx/posix, const ErrnoEisnam Errno
+pkg syscall/zx/posix, const ErrnoEkeyexpired = 127
+pkg syscall/zx/posix, const ErrnoEkeyexpired Errno
+pkg syscall/zx/posix, const ErrnoEkeyrejected = 129
+pkg syscall/zx/posix, const ErrnoEkeyrejected Errno
+pkg syscall/zx/posix, const ErrnoEkeyrevoked = 128
+pkg syscall/zx/posix, const ErrnoEkeyrevoked Errno
+pkg syscall/zx/posix, const ErrnoEl2Hlt = 51
+pkg syscall/zx/posix, const ErrnoEl2Hlt Errno
+pkg syscall/zx/posix, const ErrnoEl2Nsync = 45
+pkg syscall/zx/posix, const ErrnoEl2Nsync Errno
+pkg syscall/zx/posix, const ErrnoEl3Hlt = 46
+pkg syscall/zx/posix, const ErrnoEl3Hlt Errno
+pkg syscall/zx/posix, const ErrnoEl3Rst = 47
+pkg syscall/zx/posix, const ErrnoEl3Rst Errno
+pkg syscall/zx/posix, const ErrnoElibacc = 79
+pkg syscall/zx/posix, const ErrnoElibacc Errno
+pkg syscall/zx/posix, const ErrnoElibbad = 80
+pkg syscall/zx/posix, const ErrnoElibbad Errno
+pkg syscall/zx/posix, const ErrnoElibexec = 83
+pkg syscall/zx/posix, const ErrnoElibexec Errno
+pkg syscall/zx/posix, const ErrnoElibmax = 82
+pkg syscall/zx/posix, const ErrnoElibmax Errno
+pkg syscall/zx/posix, const ErrnoElibscn = 81
+pkg syscall/zx/posix, const ErrnoElibscn Errno
+pkg syscall/zx/posix, const ErrnoElnrng = 48
+pkg syscall/zx/posix, const ErrnoElnrng Errno
+pkg syscall/zx/posix, const ErrnoEloop = 40
+pkg syscall/zx/posix, const ErrnoEloop Errno
+pkg syscall/zx/posix, const ErrnoEmediumtype = 124
+pkg syscall/zx/posix, const ErrnoEmediumtype Errno
+pkg syscall/zx/posix, const ErrnoEmfile = 24
+pkg syscall/zx/posix, const ErrnoEmfile Errno
+pkg syscall/zx/posix, const ErrnoEmlink = 31
+pkg syscall/zx/posix, const ErrnoEmlink Errno
+pkg syscall/zx/posix, const ErrnoEmsgsize = 90
+pkg syscall/zx/posix, const ErrnoEmsgsize Errno
+pkg syscall/zx/posix, const ErrnoEmultihop = 72
+pkg syscall/zx/posix, const ErrnoEmultihop Errno
+pkg syscall/zx/posix, const ErrnoEnametoolong = 36
+pkg syscall/zx/posix, const ErrnoEnametoolong Errno
+pkg syscall/zx/posix, const ErrnoEnavail = 119
+pkg syscall/zx/posix, const ErrnoEnavail Errno
+pkg syscall/zx/posix, const ErrnoEnetdown = 100
+pkg syscall/zx/posix, const ErrnoEnetdown Errno
+pkg syscall/zx/posix, const ErrnoEnetreset = 102
+pkg syscall/zx/posix, const ErrnoEnetreset Errno
+pkg syscall/zx/posix, const ErrnoEnetunreach = 101
+pkg syscall/zx/posix, const ErrnoEnetunreach Errno
+pkg syscall/zx/posix, const ErrnoEnfile = 23
+pkg syscall/zx/posix, const ErrnoEnfile Errno
+pkg syscall/zx/posix, const ErrnoEnoano = 55
+pkg syscall/zx/posix, const ErrnoEnoano Errno
+pkg syscall/zx/posix, const ErrnoEnobufs = 105
+pkg syscall/zx/posix, const ErrnoEnobufs Errno
+pkg syscall/zx/posix, const ErrnoEnocsi = 50
+pkg syscall/zx/posix, const ErrnoEnocsi Errno
+pkg syscall/zx/posix, const ErrnoEnodata = 61
+pkg syscall/zx/posix, const ErrnoEnodata Errno
+pkg syscall/zx/posix, const ErrnoEnodev = 19
+pkg syscall/zx/posix, const ErrnoEnodev Errno
+pkg syscall/zx/posix, const ErrnoEnoent = 2
+pkg syscall/zx/posix, const ErrnoEnoent Errno
+pkg syscall/zx/posix, const ErrnoEnoexec = 8
+pkg syscall/zx/posix, const ErrnoEnoexec Errno
+pkg syscall/zx/posix, const ErrnoEnokey = 126
+pkg syscall/zx/posix, const ErrnoEnokey Errno
+pkg syscall/zx/posix, const ErrnoEnolck = 37
+pkg syscall/zx/posix, const ErrnoEnolck Errno
+pkg syscall/zx/posix, const ErrnoEnolink = 67
+pkg syscall/zx/posix, const ErrnoEnolink Errno
+pkg syscall/zx/posix, const ErrnoEnomedium = 123
+pkg syscall/zx/posix, const ErrnoEnomedium Errno
+pkg syscall/zx/posix, const ErrnoEnomem = 12
+pkg syscall/zx/posix, const ErrnoEnomem Errno
+pkg syscall/zx/posix, const ErrnoEnomsg = 42
+pkg syscall/zx/posix, const ErrnoEnomsg Errno
+pkg syscall/zx/posix, const ErrnoEnonet = 64
+pkg syscall/zx/posix, const ErrnoEnonet Errno
+pkg syscall/zx/posix, const ErrnoEnopkg = 65
+pkg syscall/zx/posix, const ErrnoEnopkg Errno
+pkg syscall/zx/posix, const ErrnoEnoprotoopt = 92
+pkg syscall/zx/posix, const ErrnoEnoprotoopt Errno
+pkg syscall/zx/posix, const ErrnoEnospc = 28
+pkg syscall/zx/posix, const ErrnoEnospc Errno
+pkg syscall/zx/posix, const ErrnoEnosr = 63
+pkg syscall/zx/posix, const ErrnoEnosr Errno
+pkg syscall/zx/posix, const ErrnoEnostr = 60
+pkg syscall/zx/posix, const ErrnoEnostr Errno
+pkg syscall/zx/posix, const ErrnoEnosys = 38
+pkg syscall/zx/posix, const ErrnoEnosys Errno
+pkg syscall/zx/posix, const ErrnoEnotblk = 15
+pkg syscall/zx/posix, const ErrnoEnotblk Errno
+pkg syscall/zx/posix, const ErrnoEnotconn = 107
+pkg syscall/zx/posix, const ErrnoEnotconn Errno
+pkg syscall/zx/posix, const ErrnoEnotdir = 20
+pkg syscall/zx/posix, const ErrnoEnotdir Errno
+pkg syscall/zx/posix, const ErrnoEnotempty = 39
+pkg syscall/zx/posix, const ErrnoEnotempty Errno
+pkg syscall/zx/posix, const ErrnoEnotnam = 118
+pkg syscall/zx/posix, const ErrnoEnotnam Errno
+pkg syscall/zx/posix, const ErrnoEnotrecoverable = 131
+pkg syscall/zx/posix, const ErrnoEnotrecoverable Errno
+pkg syscall/zx/posix, const ErrnoEnotsock = 88
+pkg syscall/zx/posix, const ErrnoEnotsock Errno
+pkg syscall/zx/posix, const ErrnoEnotty = 25
+pkg syscall/zx/posix, const ErrnoEnotty Errno
+pkg syscall/zx/posix, const ErrnoEnotuniq = 76
+pkg syscall/zx/posix, const ErrnoEnotuniq Errno
+pkg syscall/zx/posix, const ErrnoEnxio = 6
+pkg syscall/zx/posix, const ErrnoEnxio Errno
+pkg syscall/zx/posix, const ErrnoEopnotsupp = 95
+pkg syscall/zx/posix, const ErrnoEopnotsupp Errno
+pkg syscall/zx/posix, const ErrnoEoverflow = 75
+pkg syscall/zx/posix, const ErrnoEoverflow Errno
+pkg syscall/zx/posix, const ErrnoEownerdead = 130
+pkg syscall/zx/posix, const ErrnoEownerdead Errno
+pkg syscall/zx/posix, const ErrnoEperm = 1
+pkg syscall/zx/posix, const ErrnoEperm Errno
+pkg syscall/zx/posix, const ErrnoEpfnosupport = 96
+pkg syscall/zx/posix, const ErrnoEpfnosupport Errno
+pkg syscall/zx/posix, const ErrnoEpipe = 32
+pkg syscall/zx/posix, const ErrnoEpipe Errno
+pkg syscall/zx/posix, const ErrnoEproto = 71
+pkg syscall/zx/posix, const ErrnoEproto Errno
+pkg syscall/zx/posix, const ErrnoEprotonosupport = 93
+pkg syscall/zx/posix, const ErrnoEprotonosupport Errno
+pkg syscall/zx/posix, const ErrnoEprototype = 91
+pkg syscall/zx/posix, const ErrnoEprototype Errno
+pkg syscall/zx/posix, const ErrnoErange = 34
+pkg syscall/zx/posix, const ErrnoErange Errno
+pkg syscall/zx/posix, const ErrnoEremchg = 78
+pkg syscall/zx/posix, const ErrnoEremchg Errno
+pkg syscall/zx/posix, const ErrnoEremote = 66
+pkg syscall/zx/posix, const ErrnoEremote Errno
+pkg syscall/zx/posix, const ErrnoEremoteio = 121
+pkg syscall/zx/posix, const ErrnoEremoteio Errno
+pkg syscall/zx/posix, const ErrnoErestart = 85
+pkg syscall/zx/posix, const ErrnoErestart Errno
+pkg syscall/zx/posix, const ErrnoErfkill = 132
+pkg syscall/zx/posix, const ErrnoErfkill Errno
+pkg syscall/zx/posix, const ErrnoErofs = 30
+pkg syscall/zx/posix, const ErrnoErofs Errno
+pkg syscall/zx/posix, const ErrnoEshutdown = 108
+pkg syscall/zx/posix, const ErrnoEshutdown Errno
+pkg syscall/zx/posix, const ErrnoEsocktnosupport = 94
+pkg syscall/zx/posix, const ErrnoEsocktnosupport Errno
+pkg syscall/zx/posix, const ErrnoEspipe = 29
+pkg syscall/zx/posix, const ErrnoEspipe Errno
+pkg syscall/zx/posix, const ErrnoEsrch = 3
+pkg syscall/zx/posix, const ErrnoEsrch Errno
+pkg syscall/zx/posix, const ErrnoEsrmnt = 69
+pkg syscall/zx/posix, const ErrnoEsrmnt Errno
+pkg syscall/zx/posix, const ErrnoEstale = 116
+pkg syscall/zx/posix, const ErrnoEstale Errno
+pkg syscall/zx/posix, const ErrnoEstrpipe = 86
+pkg syscall/zx/posix, const ErrnoEstrpipe Errno
+pkg syscall/zx/posix, const ErrnoEtime = 62
+pkg syscall/zx/posix, const ErrnoEtime Errno
+pkg syscall/zx/posix, const ErrnoEtimedout = 110
+pkg syscall/zx/posix, const ErrnoEtimedout Errno
+pkg syscall/zx/posix, const ErrnoEtoomanyrefs = 109
+pkg syscall/zx/posix, const ErrnoEtoomanyrefs Errno
+pkg syscall/zx/posix, const ErrnoEtxtbsy = 26
+pkg syscall/zx/posix, const ErrnoEtxtbsy Errno
+pkg syscall/zx/posix, const ErrnoEuclean = 117
+pkg syscall/zx/posix, const ErrnoEuclean Errno
+pkg syscall/zx/posix, const ErrnoEunatch = 49
+pkg syscall/zx/posix, const ErrnoEunatch Errno
+pkg syscall/zx/posix, const ErrnoEusers = 87
+pkg syscall/zx/posix, const ErrnoEusers Errno
+pkg syscall/zx/posix, const ErrnoExdev = 18
+pkg syscall/zx/posix, const ErrnoExdev Errno
+pkg syscall/zx/posix, const ErrnoExfull = 54
+pkg syscall/zx/posix, const ErrnoExfull Errno
+pkg syscall/zx/posix, const Ewouldblock = 11
+pkg syscall/zx/posix, const Ewouldblock Errno
+pkg syscall/zx/posix, method (Errno) I_EnumIsStrict() bool
+pkg syscall/zx/posix, method (Errno) I_EnumValues() []Errno
+pkg syscall/zx/posix, method (Errno) IsUnknown() bool
+pkg syscall/zx/posix, method (Errno) String() string
+pkg syscall/zx/posix, type Errno int32
+pkg syscall/zx/posix/socket, const BaseDatagramSocketAddIpMembershipOrdinal = 8555851866500740304
+pkg syscall/zx/posix/socket, const BaseDatagramSocketAddIpMembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketAddIpv6MembershipOrdinal = 8976925828978746547
+pkg syscall/zx/posix/socket, const BaseDatagramSocketAddIpv6MembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketBindOrdinal = 341257625864901213
+pkg syscall/zx/posix/socket, const BaseDatagramSocketBindOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketClone2Ordinal = 2366825959783828089
+pkg syscall/zx/posix/socket, const BaseDatagramSocketClone2Ordinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketCloneOrdinal = 6512600400724287855
+pkg syscall/zx/posix/socket, const BaseDatagramSocketCloneOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketCloseOrdinal = 6540867515453498750
+pkg syscall/zx/posix/socket, const BaseDatagramSocketCloseOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketConnectOrdinal = 6847144460767430769
+pkg syscall/zx/posix/socket, const BaseDatagramSocketConnectOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketDescribeOrdinal = 1152055232528178848
+pkg syscall/zx/posix/socket, const BaseDatagramSocketDescribeOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketDisconnectOrdinal = 526467853197191602
+pkg syscall/zx/posix/socket, const BaseDatagramSocketDisconnectOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketDropIpMembershipOrdinal = 182553223798230275
+pkg syscall/zx/posix/socket, const BaseDatagramSocketDropIpMembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketDropIpv6MembershipOrdinal = 4760388853484462852
+pkg syscall/zx/posix/socket, const BaseDatagramSocketDropIpv6MembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetAcceptConnOrdinal = 7480036662830729574
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetAcceptConnOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetAttrOrdinal = 8689798978500614909
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetAttrOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetAttributesOrdinal = 4414537700416816443
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetAttributesOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetBindToDeviceOrdinal = 1923595528092321480
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetBindToDeviceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetBroadcastOrdinal = 7528171145484924941
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetBroadcastOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetConnectionInfoOrdinal = 6362521381364198667
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetConnectionInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetErrorOrdinal = 6533942076392828603
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetErrorOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetFlagsOrdinal = 6595803110182632097
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetFlagsOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetInfoDeprecatedOrdinal = 7940165717368966159
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetInfoDeprecatedOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetInfoDeprecatedResultErr = 2
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetInfoDeprecatedResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetInfoDeprecatedResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetInfoDeprecatedResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetInfoOrdinal = 5236008646813602541
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetInfoResultErr = 2
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetInfoResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetInfoResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetInfoResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpMulticastInterfaceOrdinal = 3606206052295526084
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpMulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpMulticastLoopbackOrdinal = 4281558748838926578
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpMulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpMulticastTtlOrdinal = 317042887113285146
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpMulticastTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpPacketInfoOrdinal = 6103791408020719424
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpPacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpReceiveTtlOrdinal = 7461863537816252085
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpReceiveTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpReceiveTypeOfServiceOrdinal = 4708718459712264544
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpReceiveTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpTtlOrdinal = 5180405804914549873
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpTypeOfServiceOrdinal = 4041030972495847371
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpv6MulticastHopsOrdinal = 5949652343433003306
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpv6MulticastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpv6MulticastInterfaceOrdinal = 2244759491290536066
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpv6MulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpv6MulticastLoopbackOrdinal = 4906028588272392643
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpv6MulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpv6OnlyOrdinal = 5378199598003566748
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpv6OnlyOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpv6ReceiveHopLimitOrdinal = 3755446185578837184
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpv6ReceiveHopLimitOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpv6ReceivePacketInfoOrdinal = 8848810376192257141
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpv6ReceivePacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpv6ReceiveTrafficClassOrdinal = 3329090250702405626
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpv6ReceiveTrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpv6TrafficClassOrdinal = 484971415598804740
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpv6TrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpv6UnicastHopsOrdinal = 2446690571902507218
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetIpv6UnicastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetKeepAliveOrdinal = 3301874315258153426
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetKeepAliveOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetLingerOrdinal = 5254329658518474309
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetLingerOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetNoCheckOrdinal = 3230247044467750548
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetNoCheckOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetOutOfBandInlineOrdinal = 3786430745745692485
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetOutOfBandInlineOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetPeerNameOrdinal = 2305507983875261230
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetPeerNameOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetReceiveBufferOrdinal = 1495657654187499100
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetReceiveBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetReuseAddressOrdinal = 7473477752945623205
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetReuseAddressOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetReusePortOrdinal = 8795860040453978152
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetReusePortOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetSendBufferOrdinal = 8693407268113367307
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetSendBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetSockNameOrdinal = 5142868848782495621
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetSockNameOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetTimestampDeprecatedOrdinal = 1091736298891551443
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetTimestampDeprecatedOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetTimestampOrdinal = 5328602765801471271
+pkg syscall/zx/posix/socket, const BaseDatagramSocketGetTimestampOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketOnOpenOrdinal = 9207534335756671346
+pkg syscall/zx/posix/socket, const BaseDatagramSocketOnOpenOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketOnRepresentationOrdinal = 6679970090861613324
+pkg syscall/zx/posix/socket, const BaseDatagramSocketOnRepresentationOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketQueryFilesystemOrdinal = 8013111122914313744
+pkg syscall/zx/posix/socket, const BaseDatagramSocketQueryFilesystemOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketQueryOrdinal = 2763219980499352582
+pkg syscall/zx/posix/socket, const BaseDatagramSocketQueryOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketReopenOrdinal = 7675434429343513249
+pkg syscall/zx/posix/socket, const BaseDatagramSocketReopenOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetAttrOrdinal = 4721673413776871238
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetAttrOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetBindToDeviceOrdinal = 2384854481495568324
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetBindToDeviceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetBroadcastOrdinal = 6927627499941452103
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetBroadcastOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetFlagsOrdinal = 5950864159036794675
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetFlagsOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpMulticastInterfaceOrdinal = 527761160117862142
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpMulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpMulticastLoopbackOrdinal = 2361394811737031658
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpMulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpMulticastTtlOrdinal = 7139134855189173921
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpMulticastTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpPacketInfoOrdinal = 4119974243205910038
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpPacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpReceiveTtlOrdinal = 5111968073129834539
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpReceiveTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpReceiveTypeOfServiceOrdinal = 7804570017426539759
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpReceiveTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpTtlOrdinal = 3018047591309566447
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpTypeOfServiceOrdinal = 690675822370712902
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpv6MulticastHopsOrdinal = 2718429581095699137
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpv6MulticastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpv6MulticastInterfaceOrdinal = 1395965093408451387
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpv6MulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpv6MulticastLoopbackOrdinal = 6156451754502527808
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpv6MulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpv6OnlyOrdinal = 5220781608480066490
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpv6OnlyOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpv6ReceiveHopLimitOrdinal = 6639573101563103774
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpv6ReceiveHopLimitOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpv6ReceivePacketInfoOrdinal = 1812020956834113384
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpv6ReceivePacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpv6ReceiveTrafficClassOrdinal = 6408759191306017184
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpv6ReceiveTrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpv6TrafficClassOrdinal = 7705790354277665615
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpv6TrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpv6UnicastHopsOrdinal = 1548483910458288217
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetIpv6UnicastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetKeepAliveOrdinal = 6281950768033485511
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetKeepAliveOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetLingerOrdinal = 4987845787467553166
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetLingerOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetNoCheckOrdinal = 7763925129696671938
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetNoCheckOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetOutOfBandInlineOrdinal = 282799447597835321
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetOutOfBandInlineOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetReceiveBufferOrdinal = 7713807381122805761
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetReceiveBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetReuseAddressOrdinal = 2294389296622512246
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetReuseAddressOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetReusePortOrdinal = 2656347923086679243
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetReusePortOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetSendBufferOrdinal = 8461890084235016816
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetSendBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetTimestampDeprecatedOrdinal = 8051701552985791052
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetTimestampDeprecatedOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetTimestampOrdinal = 2908592082776217657
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSetTimestampOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketShutdownOrdinal = 2629883065423938358
+pkg syscall/zx/posix/socket, const BaseDatagramSocketShutdownOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSyncOrdinal = 3196473584242777161
+pkg syscall/zx/posix/socket, const BaseDatagramSocketSyncOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseDatagramSocketUpdateAttributesOrdinal = 3677402239314018056
+pkg syscall/zx/posix/socket, const BaseDatagramSocketUpdateAttributesOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketAddIpMembershipOrdinal = 8555851866500740304
+pkg syscall/zx/posix/socket, const BaseNetworkSocketAddIpMembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketAddIpMembershipResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketAddIpMembershipResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketAddIpMembershipResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketAddIpMembershipResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketAddIpv6MembershipOrdinal = 8976925828978746547
+pkg syscall/zx/posix/socket, const BaseNetworkSocketAddIpv6MembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketAddIpv6MembershipResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketAddIpv6MembershipResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketAddIpv6MembershipResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketAddIpv6MembershipResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketBindOrdinal = 341257625864901213
+pkg syscall/zx/posix/socket, const BaseNetworkSocketBindOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketBindResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketBindResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketBindResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketBindResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketClone2Ordinal = 2366825959783828089
+pkg syscall/zx/posix/socket, const BaseNetworkSocketClone2Ordinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketCloneOrdinal = 6512600400724287855
+pkg syscall/zx/posix/socket, const BaseNetworkSocketCloneOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketCloseOrdinal = 6540867515453498750
+pkg syscall/zx/posix/socket, const BaseNetworkSocketCloseOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketConnectOrdinal = 6847144460767430769
+pkg syscall/zx/posix/socket, const BaseNetworkSocketConnectOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketConnectResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketConnectResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketConnectResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketConnectResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDescribeOrdinal = 1152055232528178848
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDescribeOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDisconnectOrdinal = 526467853197191602
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDisconnectOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDisconnectResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDisconnectResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDisconnectResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDisconnectResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDropIpMembershipOrdinal = 182553223798230275
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDropIpMembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDropIpMembershipResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDropIpMembershipResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDropIpMembershipResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDropIpMembershipResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDropIpv6MembershipOrdinal = 4760388853484462852
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDropIpv6MembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDropIpv6MembershipResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDropIpv6MembershipResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDropIpv6MembershipResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketDropIpv6MembershipResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetAcceptConnOrdinal = 7480036662830729574
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetAcceptConnOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetAttrOrdinal = 8689798978500614909
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetAttrOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetAttributesOrdinal = 4414537700416816443
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetAttributesOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetBindToDeviceOrdinal = 1923595528092321480
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetBindToDeviceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetBroadcastOrdinal = 7528171145484924941
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetBroadcastOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetConnectionInfoOrdinal = 6362521381364198667
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetConnectionInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetErrorOrdinal = 6533942076392828603
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetErrorOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetFlagsOrdinal = 6595803110182632097
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetFlagsOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpMulticastInterfaceOrdinal = 3606206052295526084
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpMulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpMulticastInterfaceResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpMulticastInterfaceResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpMulticastInterfaceResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpMulticastInterfaceResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpMulticastLoopbackOrdinal = 4281558748838926578
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpMulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpMulticastLoopbackResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpMulticastLoopbackResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpMulticastLoopbackResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpMulticastLoopbackResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpMulticastTtlOrdinal = 317042887113285146
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpMulticastTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpMulticastTtlResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpMulticastTtlResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpMulticastTtlResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpMulticastTtlResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpPacketInfoOrdinal = 6103791408020719424
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpPacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpPacketInfoResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpPacketInfoResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpPacketInfoResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpPacketInfoResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpReceiveTtlOrdinal = 7461863537816252085
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpReceiveTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpReceiveTtlResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpReceiveTtlResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpReceiveTtlResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpReceiveTtlResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpReceiveTypeOfServiceOrdinal = 4708718459712264544
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpReceiveTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpReceiveTypeOfServiceResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpReceiveTypeOfServiceResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpReceiveTypeOfServiceResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpReceiveTypeOfServiceResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpTtlOrdinal = 5180405804914549873
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpTtlResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpTtlResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpTtlResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpTtlResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpTypeOfServiceOrdinal = 4041030972495847371
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpTypeOfServiceResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpTypeOfServiceResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpTypeOfServiceResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpTypeOfServiceResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6MulticastHopsOrdinal = 5949652343433003306
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6MulticastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6MulticastHopsResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6MulticastHopsResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6MulticastHopsResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6MulticastHopsResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6MulticastInterfaceOrdinal = 2244759491290536066
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6MulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6MulticastInterfaceResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6MulticastInterfaceResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6MulticastInterfaceResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6MulticastInterfaceResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6MulticastLoopbackOrdinal = 4906028588272392643
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6MulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6MulticastLoopbackResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6MulticastLoopbackResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6MulticastLoopbackResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6MulticastLoopbackResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6OnlyOrdinal = 5378199598003566748
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6OnlyOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6OnlyResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6OnlyResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6OnlyResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6OnlyResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6ReceiveHopLimitOrdinal = 3755446185578837184
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6ReceiveHopLimitOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6ReceiveHopLimitResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6ReceiveHopLimitResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6ReceiveHopLimitResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6ReceiveHopLimitResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6ReceivePacketInfoOrdinal = 8848810376192257141
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6ReceivePacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6ReceivePacketInfoResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6ReceivePacketInfoResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6ReceivePacketInfoResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6ReceivePacketInfoResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6ReceiveTrafficClassOrdinal = 3329090250702405626
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6ReceiveTrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6ReceiveTrafficClassResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6ReceiveTrafficClassResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6ReceiveTrafficClassResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6ReceiveTrafficClassResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6TrafficClassOrdinal = 484971415598804740
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6TrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6TrafficClassResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6TrafficClassResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6TrafficClassResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6TrafficClassResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6UnicastHopsOrdinal = 2446690571902507218
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6UnicastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6UnicastHopsResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6UnicastHopsResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6UnicastHopsResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetIpv6UnicastHopsResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetKeepAliveOrdinal = 3301874315258153426
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetKeepAliveOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetLingerOrdinal = 5254329658518474309
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetLingerOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetNoCheckOrdinal = 3230247044467750548
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetNoCheckOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetOutOfBandInlineOrdinal = 3786430745745692485
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetOutOfBandInlineOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetPeerNameOrdinal = 2305507983875261230
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetPeerNameOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetPeerNameResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetPeerNameResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetPeerNameResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetPeerNameResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetReceiveBufferOrdinal = 1495657654187499100
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetReceiveBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetReuseAddressOrdinal = 7473477752945623205
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetReuseAddressOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetReusePortOrdinal = 8795860040453978152
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetReusePortOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetSendBufferOrdinal = 8693407268113367307
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetSendBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetSockNameOrdinal = 5142868848782495621
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetSockNameOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetSockNameResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetSockNameResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetSockNameResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetSockNameResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetTimestampDeprecatedOrdinal = 1091736298891551443
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetTimestampDeprecatedOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetTimestampOrdinal = 5328602765801471271
+pkg syscall/zx/posix/socket, const BaseNetworkSocketGetTimestampOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketOnOpenOrdinal = 9207534335756671346
+pkg syscall/zx/posix/socket, const BaseNetworkSocketOnOpenOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketOnRepresentationOrdinal = 6679970090861613324
+pkg syscall/zx/posix/socket, const BaseNetworkSocketOnRepresentationOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketQueryFilesystemOrdinal = 8013111122914313744
+pkg syscall/zx/posix/socket, const BaseNetworkSocketQueryFilesystemOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketQueryOrdinal = 2763219980499352582
+pkg syscall/zx/posix/socket, const BaseNetworkSocketQueryOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketReopenOrdinal = 7675434429343513249
+pkg syscall/zx/posix/socket, const BaseNetworkSocketReopenOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetAttrOrdinal = 4721673413776871238
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetAttrOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetBindToDeviceOrdinal = 2384854481495568324
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetBindToDeviceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetBroadcastOrdinal = 6927627499941452103
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetBroadcastOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetFlagsOrdinal = 5950864159036794675
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetFlagsOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpMulticastInterfaceOrdinal = 527761160117862142
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpMulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpMulticastInterfaceResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpMulticastInterfaceResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpMulticastInterfaceResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpMulticastInterfaceResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpMulticastLoopbackOrdinal = 2361394811737031658
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpMulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpMulticastLoopbackResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpMulticastLoopbackResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpMulticastLoopbackResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpMulticastLoopbackResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpMulticastTtlOrdinal = 7139134855189173921
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpMulticastTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpMulticastTtlResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpMulticastTtlResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpMulticastTtlResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpMulticastTtlResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpPacketInfoOrdinal = 4119974243205910038
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpPacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpPacketInfoResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpPacketInfoResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpPacketInfoResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpPacketInfoResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpReceiveTtlOrdinal = 5111968073129834539
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpReceiveTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpReceiveTtlResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpReceiveTtlResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpReceiveTtlResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpReceiveTtlResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpReceiveTypeOfServiceOrdinal = 7804570017426539759
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpReceiveTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpReceiveTypeOfServiceResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpReceiveTypeOfServiceResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpReceiveTypeOfServiceResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpReceiveTypeOfServiceResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpTtlOrdinal = 3018047591309566447
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpTtlResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpTtlResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpTtlResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpTtlResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpTypeOfServiceOrdinal = 690675822370712902
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpTypeOfServiceResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpTypeOfServiceResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpTypeOfServiceResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpTypeOfServiceResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6MulticastHopsOrdinal = 2718429581095699137
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6MulticastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6MulticastHopsResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6MulticastHopsResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6MulticastHopsResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6MulticastHopsResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6MulticastInterfaceOrdinal = 1395965093408451387
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6MulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6MulticastInterfaceResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6MulticastInterfaceResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6MulticastInterfaceResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6MulticastInterfaceResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6MulticastLoopbackOrdinal = 6156451754502527808
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6MulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6MulticastLoopbackResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6MulticastLoopbackResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6MulticastLoopbackResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6MulticastLoopbackResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6OnlyOrdinal = 5220781608480066490
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6OnlyOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6OnlyResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6OnlyResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6OnlyResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6OnlyResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6ReceiveHopLimitOrdinal = 6639573101563103774
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6ReceiveHopLimitOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6ReceiveHopLimitResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6ReceiveHopLimitResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6ReceiveHopLimitResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6ReceiveHopLimitResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6ReceivePacketInfoOrdinal = 1812020956834113384
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6ReceivePacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6ReceivePacketInfoResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6ReceivePacketInfoResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6ReceivePacketInfoResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6ReceivePacketInfoResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6ReceiveTrafficClassOrdinal = 6408759191306017184
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6ReceiveTrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6ReceiveTrafficClassResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6ReceiveTrafficClassResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6ReceiveTrafficClassResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6ReceiveTrafficClassResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6TrafficClassOrdinal = 7705790354277665615
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6TrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6TrafficClassResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6TrafficClassResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6TrafficClassResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6TrafficClassResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6UnicastHopsOrdinal = 1548483910458288217
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6UnicastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6UnicastHopsResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6UnicastHopsResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6UnicastHopsResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetIpv6UnicastHopsResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetKeepAliveOrdinal = 6281950768033485511
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetKeepAliveOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetLingerOrdinal = 4987845787467553166
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetLingerOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetNoCheckOrdinal = 7763925129696671938
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetNoCheckOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetOutOfBandInlineOrdinal = 282799447597835321
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetOutOfBandInlineOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetReceiveBufferOrdinal = 7713807381122805761
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetReceiveBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetReuseAddressOrdinal = 2294389296622512246
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetReuseAddressOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetReusePortOrdinal = 2656347923086679243
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetReusePortOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetSendBufferOrdinal = 8461890084235016816
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetSendBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetTimestampDeprecatedOrdinal = 8051701552985791052
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetTimestampDeprecatedOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetTimestampOrdinal = 2908592082776217657
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSetTimestampOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketShutdownOrdinal = 2629883065423938358
+pkg syscall/zx/posix/socket, const BaseNetworkSocketShutdownOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketShutdownResultErr = 2
+pkg syscall/zx/posix/socket, const BaseNetworkSocketShutdownResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketShutdownResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseNetworkSocketShutdownResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSyncOrdinal = 3196473584242777161
+pkg syscall/zx/posix/socket, const BaseNetworkSocketSyncOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseNetworkSocketUpdateAttributesOrdinal = 3677402239314018056
+pkg syscall/zx/posix/socket, const BaseNetworkSocketUpdateAttributesOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketClone2Ordinal = 2366825959783828089
+pkg syscall/zx/posix/socket, const BaseSocketClone2Ordinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketCloneOrdinal = 6512600400724287855
+pkg syscall/zx/posix/socket, const BaseSocketCloneOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketCloseOrdinal = 6540867515453498750
+pkg syscall/zx/posix/socket, const BaseSocketCloseOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketDescribeOrdinal = 1152055232528178848
+pkg syscall/zx/posix/socket, const BaseSocketDescribeOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetAcceptConnOrdinal = 7480036662830729574
+pkg syscall/zx/posix/socket, const BaseSocketGetAcceptConnOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetAcceptConnResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketGetAcceptConnResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetAcceptConnResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketGetAcceptConnResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetAttrOrdinal = 8689798978500614909
+pkg syscall/zx/posix/socket, const BaseSocketGetAttrOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetAttributesOrdinal = 4414537700416816443
+pkg syscall/zx/posix/socket, const BaseSocketGetAttributesOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetBindToDeviceOrdinal = 1923595528092321480
+pkg syscall/zx/posix/socket, const BaseSocketGetBindToDeviceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetBindToDeviceResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketGetBindToDeviceResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetBindToDeviceResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketGetBindToDeviceResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetBroadcastOrdinal = 7528171145484924941
+pkg syscall/zx/posix/socket, const BaseSocketGetBroadcastOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetBroadcastResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketGetBroadcastResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetBroadcastResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketGetBroadcastResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetConnectionInfoOrdinal = 6362521381364198667
+pkg syscall/zx/posix/socket, const BaseSocketGetConnectionInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetErrorOrdinal = 6533942076392828603
+pkg syscall/zx/posix/socket, const BaseSocketGetErrorOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetErrorResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketGetErrorResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetErrorResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketGetErrorResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetFlagsOrdinal = 6595803110182632097
+pkg syscall/zx/posix/socket, const BaseSocketGetFlagsOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetKeepAliveOrdinal = 3301874315258153426
+pkg syscall/zx/posix/socket, const BaseSocketGetKeepAliveOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetKeepAliveResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketGetKeepAliveResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetKeepAliveResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketGetKeepAliveResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetLingerOrdinal = 5254329658518474309
+pkg syscall/zx/posix/socket, const BaseSocketGetLingerOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetLingerResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketGetLingerResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetLingerResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketGetLingerResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetNoCheckOrdinal = 3230247044467750548
+pkg syscall/zx/posix/socket, const BaseSocketGetNoCheckOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetNoCheckResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketGetNoCheckResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetNoCheckResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketGetNoCheckResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetOutOfBandInlineOrdinal = 3786430745745692485
+pkg syscall/zx/posix/socket, const BaseSocketGetOutOfBandInlineOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetOutOfBandInlineResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketGetOutOfBandInlineResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetOutOfBandInlineResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketGetOutOfBandInlineResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetReceiveBufferOrdinal = 1495657654187499100
+pkg syscall/zx/posix/socket, const BaseSocketGetReceiveBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetReceiveBufferResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketGetReceiveBufferResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetReceiveBufferResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketGetReceiveBufferResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetReuseAddressOrdinal = 7473477752945623205
+pkg syscall/zx/posix/socket, const BaseSocketGetReuseAddressOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetReuseAddressResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketGetReuseAddressResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetReuseAddressResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketGetReuseAddressResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetReusePortOrdinal = 8795860040453978152
+pkg syscall/zx/posix/socket, const BaseSocketGetReusePortOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetReusePortResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketGetReusePortResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetReusePortResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketGetReusePortResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetSendBufferOrdinal = 8693407268113367307
+pkg syscall/zx/posix/socket, const BaseSocketGetSendBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetSendBufferResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketGetSendBufferResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetSendBufferResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketGetSendBufferResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetTimestampDeprecatedOrdinal = 1091736298891551443
+pkg syscall/zx/posix/socket, const BaseSocketGetTimestampDeprecatedOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetTimestampDeprecatedResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketGetTimestampDeprecatedResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetTimestampDeprecatedResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketGetTimestampDeprecatedResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetTimestampOrdinal = 5328602765801471271
+pkg syscall/zx/posix/socket, const BaseSocketGetTimestampOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketGetTimestampResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketGetTimestampResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketGetTimestampResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketGetTimestampResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketOnOpenOrdinal = 9207534335756671346
+pkg syscall/zx/posix/socket, const BaseSocketOnOpenOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketOnRepresentationOrdinal = 6679970090861613324
+pkg syscall/zx/posix/socket, const BaseSocketOnRepresentationOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketQueryFilesystemOrdinal = 8013111122914313744
+pkg syscall/zx/posix/socket, const BaseSocketQueryFilesystemOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketQueryOrdinal = 2763219980499352582
+pkg syscall/zx/posix/socket, const BaseSocketQueryOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketReopenOrdinal = 7675434429343513249
+pkg syscall/zx/posix/socket, const BaseSocketReopenOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketSetAttrOrdinal = 4721673413776871238
+pkg syscall/zx/posix/socket, const BaseSocketSetAttrOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketSetBindToDeviceOrdinal = 2384854481495568324
+pkg syscall/zx/posix/socket, const BaseSocketSetBindToDeviceOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketSetBindToDeviceResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketSetBindToDeviceResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetBindToDeviceResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketSetBindToDeviceResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetBroadcastOrdinal = 6927627499941452103
+pkg syscall/zx/posix/socket, const BaseSocketSetBroadcastOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketSetBroadcastResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketSetBroadcastResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetBroadcastResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketSetBroadcastResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetFlagsOrdinal = 5950864159036794675
+pkg syscall/zx/posix/socket, const BaseSocketSetFlagsOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketSetKeepAliveOrdinal = 6281950768033485511
+pkg syscall/zx/posix/socket, const BaseSocketSetKeepAliveOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketSetKeepAliveResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketSetKeepAliveResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetKeepAliveResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketSetKeepAliveResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetLingerOrdinal = 4987845787467553166
+pkg syscall/zx/posix/socket, const BaseSocketSetLingerOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketSetLingerResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketSetLingerResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetLingerResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketSetLingerResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetNoCheckOrdinal = 7763925129696671938
+pkg syscall/zx/posix/socket, const BaseSocketSetNoCheckOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketSetNoCheckResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketSetNoCheckResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetNoCheckResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketSetNoCheckResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetOutOfBandInlineOrdinal = 282799447597835321
+pkg syscall/zx/posix/socket, const BaseSocketSetOutOfBandInlineOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketSetOutOfBandInlineResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketSetOutOfBandInlineResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetOutOfBandInlineResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketSetOutOfBandInlineResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetReceiveBufferOrdinal = 7713807381122805761
+pkg syscall/zx/posix/socket, const BaseSocketSetReceiveBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketSetReceiveBufferResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketSetReceiveBufferResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetReceiveBufferResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketSetReceiveBufferResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetReuseAddressOrdinal = 2294389296622512246
+pkg syscall/zx/posix/socket, const BaseSocketSetReuseAddressOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketSetReuseAddressResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketSetReuseAddressResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetReuseAddressResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketSetReuseAddressResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetReusePortOrdinal = 2656347923086679243
+pkg syscall/zx/posix/socket, const BaseSocketSetReusePortOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketSetReusePortResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketSetReusePortResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetReusePortResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketSetReusePortResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetSendBufferOrdinal = 8461890084235016816
+pkg syscall/zx/posix/socket, const BaseSocketSetSendBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketSetSendBufferResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketSetSendBufferResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetSendBufferResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketSetSendBufferResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetTimestampDeprecatedOrdinal = 8051701552985791052
+pkg syscall/zx/posix/socket, const BaseSocketSetTimestampDeprecatedOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketSetTimestampDeprecatedResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketSetTimestampDeprecatedResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetTimestampDeprecatedResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketSetTimestampDeprecatedResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetTimestampOrdinal = 2908592082776217657
+pkg syscall/zx/posix/socket, const BaseSocketSetTimestampOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketSetTimestampResultErr = 2
+pkg syscall/zx/posix/socket, const BaseSocketSetTimestampResultErr ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSetTimestampResultResponse = 1
+pkg syscall/zx/posix/socket, const BaseSocketSetTimestampResultResponse ideal-int
+pkg syscall/zx/posix/socket, const BaseSocketSyncOrdinal = 3196473584242777161
+pkg syscall/zx/posix/socket, const BaseSocketSyncOrdinal uint64
+pkg syscall/zx/posix/socket, const BaseSocketUpdateAttributesOrdinal = 3677402239314018056
+pkg syscall/zx/posix/socket, const BaseSocketUpdateAttributesOrdinal uint64
+pkg syscall/zx/posix/socket, const CmsgRequestsIpTos = 1
+pkg syscall/zx/posix/socket, const CmsgRequestsIpTos CmsgRequests
+pkg syscall/zx/posix/socket, const CmsgRequestsIpTtl = 2
+pkg syscall/zx/posix/socket, const CmsgRequestsIpTtl CmsgRequests
+pkg syscall/zx/posix/socket, const CmsgRequestsIpv6Hoplimit = 8
+pkg syscall/zx/posix/socket, const CmsgRequestsIpv6Hoplimit CmsgRequests
+pkg syscall/zx/posix/socket, const CmsgRequestsIpv6Pktinfo = 16
+pkg syscall/zx/posix/socket, const CmsgRequestsIpv6Pktinfo CmsgRequests
+pkg syscall/zx/posix/socket, const CmsgRequestsIpv6Tclass = 4
+pkg syscall/zx/posix/socket, const CmsgRequestsIpv6Tclass CmsgRequests
+pkg syscall/zx/posix/socket, const CmsgRequests_Mask = 31
+pkg syscall/zx/posix/socket, const CmsgRequests_Mask CmsgRequests
+pkg syscall/zx/posix/socket, const DatagramSocketAddIpMembershipOrdinal = 8555851866500740304
+pkg syscall/zx/posix/socket, const DatagramSocketAddIpMembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketAddIpv6MembershipOrdinal = 8976925828978746547
+pkg syscall/zx/posix/socket, const DatagramSocketAddIpv6MembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketBindOrdinal = 341257625864901213
+pkg syscall/zx/posix/socket, const DatagramSocketBindOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketClone2Ordinal = 2366825959783828089
+pkg syscall/zx/posix/socket, const DatagramSocketClone2Ordinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketCloneOrdinal = 6512600400724287855
+pkg syscall/zx/posix/socket, const DatagramSocketCloneOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketCloseOrdinal = 6540867515453498750
+pkg syscall/zx/posix/socket, const DatagramSocketCloseOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketConnectOrdinal = 6847144460767430769
+pkg syscall/zx/posix/socket, const DatagramSocketConnectOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketDescribe2Ordinal = 860718527049761267
+pkg syscall/zx/posix/socket, const DatagramSocketDescribe2Ordinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketDescribeOrdinal = 1152055232528178848
+pkg syscall/zx/posix/socket, const DatagramSocketDescribeOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketDisconnectOrdinal = 526467853197191602
+pkg syscall/zx/posix/socket, const DatagramSocketDisconnectOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketDropIpMembershipOrdinal = 182553223798230275
+pkg syscall/zx/posix/socket, const DatagramSocketDropIpMembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketDropIpv6MembershipOrdinal = 4760388853484462852
+pkg syscall/zx/posix/socket, const DatagramSocketDropIpv6MembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetAcceptConnOrdinal = 7480036662830729574
+pkg syscall/zx/posix/socket, const DatagramSocketGetAcceptConnOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetAttrOrdinal = 8689798978500614909
+pkg syscall/zx/posix/socket, const DatagramSocketGetAttrOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetAttributesOrdinal = 4414537700416816443
+pkg syscall/zx/posix/socket, const DatagramSocketGetAttributesOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetBindToDeviceOrdinal = 1923595528092321480
+pkg syscall/zx/posix/socket, const DatagramSocketGetBindToDeviceOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetBroadcastOrdinal = 7528171145484924941
+pkg syscall/zx/posix/socket, const DatagramSocketGetBroadcastOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetConnectionInfoOrdinal = 6362521381364198667
+pkg syscall/zx/posix/socket, const DatagramSocketGetConnectionInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetErrorOrdinal = 6533942076392828603
+pkg syscall/zx/posix/socket, const DatagramSocketGetErrorOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetFlagsOrdinal = 6595803110182632097
+pkg syscall/zx/posix/socket, const DatagramSocketGetFlagsOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetInfoDeprecatedOrdinal = 7940165717368966159
+pkg syscall/zx/posix/socket, const DatagramSocketGetInfoDeprecatedOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetInfoOrdinal = 5236008646813602541
+pkg syscall/zx/posix/socket, const DatagramSocketGetInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpMulticastInterfaceOrdinal = 3606206052295526084
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpMulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpMulticastLoopbackOrdinal = 4281558748838926578
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpMulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpMulticastTtlOrdinal = 317042887113285146
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpMulticastTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpPacketInfoOrdinal = 6103791408020719424
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpPacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpReceiveTtlOrdinal = 7461863537816252085
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpReceiveTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpReceiveTypeOfServiceOrdinal = 4708718459712264544
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpReceiveTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpTtlOrdinal = 5180405804914549873
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpTypeOfServiceOrdinal = 4041030972495847371
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpv6MulticastHopsOrdinal = 5949652343433003306
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpv6MulticastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpv6MulticastInterfaceOrdinal = 2244759491290536066
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpv6MulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpv6MulticastLoopbackOrdinal = 4906028588272392643
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpv6MulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpv6OnlyOrdinal = 5378199598003566748
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpv6OnlyOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpv6ReceiveHopLimitOrdinal = 3755446185578837184
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpv6ReceiveHopLimitOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpv6ReceivePacketInfoOrdinal = 8848810376192257141
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpv6ReceivePacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpv6ReceiveTrafficClassOrdinal = 3329090250702405626
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpv6ReceiveTrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpv6TrafficClassOrdinal = 484971415598804740
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpv6TrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpv6UnicastHopsOrdinal = 2446690571902507218
+pkg syscall/zx/posix/socket, const DatagramSocketGetIpv6UnicastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetKeepAliveOrdinal = 3301874315258153426
+pkg syscall/zx/posix/socket, const DatagramSocketGetKeepAliveOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetLingerOrdinal = 5254329658518474309
+pkg syscall/zx/posix/socket, const DatagramSocketGetLingerOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetNoCheckOrdinal = 3230247044467750548
+pkg syscall/zx/posix/socket, const DatagramSocketGetNoCheckOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetOutOfBandInlineOrdinal = 3786430745745692485
+pkg syscall/zx/posix/socket, const DatagramSocketGetOutOfBandInlineOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetPeerNameOrdinal = 2305507983875261230
+pkg syscall/zx/posix/socket, const DatagramSocketGetPeerNameOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetReceiveBufferOrdinal = 1495657654187499100
+pkg syscall/zx/posix/socket, const DatagramSocketGetReceiveBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetReuseAddressOrdinal = 7473477752945623205
+pkg syscall/zx/posix/socket, const DatagramSocketGetReuseAddressOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetReusePortOrdinal = 8795860040453978152
+pkg syscall/zx/posix/socket, const DatagramSocketGetReusePortOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetSendBufferOrdinal = 8693407268113367307
+pkg syscall/zx/posix/socket, const DatagramSocketGetSendBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetSockNameOrdinal = 5142868848782495621
+pkg syscall/zx/posix/socket, const DatagramSocketGetSockNameOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetTimestampDeprecatedOrdinal = 1091736298891551443
+pkg syscall/zx/posix/socket, const DatagramSocketGetTimestampDeprecatedOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketGetTimestampOrdinal = 5328602765801471271
+pkg syscall/zx/posix/socket, const DatagramSocketGetTimestampOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketOnOpenOrdinal = 9207534335756671346
+pkg syscall/zx/posix/socket, const DatagramSocketOnOpenOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketOnRepresentationOrdinal = 6679970090861613324
+pkg syscall/zx/posix/socket, const DatagramSocketOnRepresentationOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketProtocolIcmpEcho = 2
+pkg syscall/zx/posix/socket, const DatagramSocketProtocolIcmpEcho DatagramSocketProtocol
+pkg syscall/zx/posix/socket, const DatagramSocketProtocolUdp = 1
+pkg syscall/zx/posix/socket, const DatagramSocketProtocolUdp DatagramSocketProtocol
+pkg syscall/zx/posix/socket, const DatagramSocketQueryFilesystemOrdinal = 8013111122914313744
+pkg syscall/zx/posix/socket, const DatagramSocketQueryFilesystemOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketQueryOrdinal = 2763219980499352582
+pkg syscall/zx/posix/socket, const DatagramSocketQueryOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketRecvMsgPostflightOrdinal = 1908645302860953826
+pkg syscall/zx/posix/socket, const DatagramSocketRecvMsgPostflightOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketRecvMsgPostflightResultErr = 2
+pkg syscall/zx/posix/socket, const DatagramSocketRecvMsgPostflightResultErr ideal-int
+pkg syscall/zx/posix/socket, const DatagramSocketRecvMsgPostflightResultResponse = 1
+pkg syscall/zx/posix/socket, const DatagramSocketRecvMsgPostflightResultResponse ideal-int
+pkg syscall/zx/posix/socket, const DatagramSocketReopenOrdinal = 7675434429343513249
+pkg syscall/zx/posix/socket, const DatagramSocketReopenOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSendMsgPreflightOrdinal = 6008618191099995274
+pkg syscall/zx/posix/socket, const DatagramSocketSendMsgPreflightOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSendMsgPreflightResultErr = 2
+pkg syscall/zx/posix/socket, const DatagramSocketSendMsgPreflightResultErr ideal-int
+pkg syscall/zx/posix/socket, const DatagramSocketSendMsgPreflightResultResponse = 1
+pkg syscall/zx/posix/socket, const DatagramSocketSendMsgPreflightResultResponse ideal-int
+pkg syscall/zx/posix/socket, const DatagramSocketSetAttrOrdinal = 4721673413776871238
+pkg syscall/zx/posix/socket, const DatagramSocketSetAttrOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetBindToDeviceOrdinal = 2384854481495568324
+pkg syscall/zx/posix/socket, const DatagramSocketSetBindToDeviceOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetBroadcastOrdinal = 6927627499941452103
+pkg syscall/zx/posix/socket, const DatagramSocketSetBroadcastOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetFlagsOrdinal = 5950864159036794675
+pkg syscall/zx/posix/socket, const DatagramSocketSetFlagsOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpMulticastInterfaceOrdinal = 527761160117862142
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpMulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpMulticastLoopbackOrdinal = 2361394811737031658
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpMulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpMulticastTtlOrdinal = 7139134855189173921
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpMulticastTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpPacketInfoOrdinal = 4119974243205910038
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpPacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpReceiveTtlOrdinal = 5111968073129834539
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpReceiveTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpReceiveTypeOfServiceOrdinal = 7804570017426539759
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpReceiveTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpTtlOrdinal = 3018047591309566447
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpTypeOfServiceOrdinal = 690675822370712902
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpv6MulticastHopsOrdinal = 2718429581095699137
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpv6MulticastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpv6MulticastInterfaceOrdinal = 1395965093408451387
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpv6MulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpv6MulticastLoopbackOrdinal = 6156451754502527808
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpv6MulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpv6OnlyOrdinal = 5220781608480066490
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpv6OnlyOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpv6ReceiveHopLimitOrdinal = 6639573101563103774
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpv6ReceiveHopLimitOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpv6ReceivePacketInfoOrdinal = 1812020956834113384
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpv6ReceivePacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpv6ReceiveTrafficClassOrdinal = 6408759191306017184
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpv6ReceiveTrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpv6TrafficClassOrdinal = 7705790354277665615
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpv6TrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpv6UnicastHopsOrdinal = 1548483910458288217
+pkg syscall/zx/posix/socket, const DatagramSocketSetIpv6UnicastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetKeepAliveOrdinal = 6281950768033485511
+pkg syscall/zx/posix/socket, const DatagramSocketSetKeepAliveOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetLingerOrdinal = 4987845787467553166
+pkg syscall/zx/posix/socket, const DatagramSocketSetLingerOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetNoCheckOrdinal = 7763925129696671938
+pkg syscall/zx/posix/socket, const DatagramSocketSetNoCheckOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetOutOfBandInlineOrdinal = 282799447597835321
+pkg syscall/zx/posix/socket, const DatagramSocketSetOutOfBandInlineOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetReceiveBufferOrdinal = 7713807381122805761
+pkg syscall/zx/posix/socket, const DatagramSocketSetReceiveBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetReuseAddressOrdinal = 2294389296622512246
+pkg syscall/zx/posix/socket, const DatagramSocketSetReuseAddressOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetReusePortOrdinal = 2656347923086679243
+pkg syscall/zx/posix/socket, const DatagramSocketSetReusePortOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetSendBufferOrdinal = 8461890084235016816
+pkg syscall/zx/posix/socket, const DatagramSocketSetSendBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetTimestampDeprecatedOrdinal = 8051701552985791052
+pkg syscall/zx/posix/socket, const DatagramSocketSetTimestampDeprecatedOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSetTimestampOrdinal = 2908592082776217657
+pkg syscall/zx/posix/socket, const DatagramSocketSetTimestampOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketShutdownOrdinal = 2629883065423938358
+pkg syscall/zx/posix/socket, const DatagramSocketShutdownOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketSyncOrdinal = 3196473584242777161
+pkg syscall/zx/posix/socket, const DatagramSocketSyncOrdinal uint64
+pkg syscall/zx/posix/socket, const DatagramSocketUpdateAttributesOrdinal = 3677402239314018056
+pkg syscall/zx/posix/socket, const DatagramSocketUpdateAttributesOrdinal uint64
+pkg syscall/zx/posix/socket, const DomainIpv4 = 0
+pkg syscall/zx/posix/socket, const DomainIpv4 Domain
+pkg syscall/zx/posix/socket, const DomainIpv6 = 1
+pkg syscall/zx/posix/socket, const DomainIpv6 Domain
+pkg syscall/zx/posix/socket, const FastUdpWaitManyMaximumItems = 63
+pkg syscall/zx/posix/socket, const FastUdpWaitManyMaximumItems uint32
+pkg syscall/zx/posix/socket, const InterfaceFlagsAllmulti = 512
+pkg syscall/zx/posix/socket, const InterfaceFlagsAllmulti InterfaceFlags
+pkg syscall/zx/posix/socket, const InterfaceFlagsAutomedia = 16384
+pkg syscall/zx/posix/socket, const InterfaceFlagsAutomedia InterfaceFlags
+pkg syscall/zx/posix/socket, const InterfaceFlagsBroadcast = 2
+pkg syscall/zx/posix/socket, const InterfaceFlagsBroadcast InterfaceFlags
+pkg syscall/zx/posix/socket, const InterfaceFlagsDebug = 4
+pkg syscall/zx/posix/socket, const InterfaceFlagsDebug InterfaceFlags
+pkg syscall/zx/posix/socket, const InterfaceFlagsDynamic = 32768
+pkg syscall/zx/posix/socket, const InterfaceFlagsDynamic InterfaceFlags
+pkg syscall/zx/posix/socket, const InterfaceFlagsFollower = 2048
+pkg syscall/zx/posix/socket, const InterfaceFlagsFollower InterfaceFlags
+pkg syscall/zx/posix/socket, const InterfaceFlagsLeader = 1024
+pkg syscall/zx/posix/socket, const InterfaceFlagsLeader InterfaceFlags
+pkg syscall/zx/posix/socket, const InterfaceFlagsLoopback = 8
+pkg syscall/zx/posix/socket, const InterfaceFlagsLoopback InterfaceFlags
+pkg syscall/zx/posix/socket, const InterfaceFlagsMulticast = 4096
+pkg syscall/zx/posix/socket, const InterfaceFlagsMulticast InterfaceFlags
+pkg syscall/zx/posix/socket, const InterfaceFlagsNoarp = 128
+pkg syscall/zx/posix/socket, const InterfaceFlagsNoarp InterfaceFlags
+pkg syscall/zx/posix/socket, const InterfaceFlagsNotrailers = 32
+pkg syscall/zx/posix/socket, const InterfaceFlagsNotrailers InterfaceFlags
+pkg syscall/zx/posix/socket, const InterfaceFlagsPointtopoint = 16
+pkg syscall/zx/posix/socket, const InterfaceFlagsPointtopoint InterfaceFlags
+pkg syscall/zx/posix/socket, const InterfaceFlagsPortsel = 8192
+pkg syscall/zx/posix/socket, const InterfaceFlagsPortsel InterfaceFlags
+pkg syscall/zx/posix/socket, const InterfaceFlagsPromisc = 256
+pkg syscall/zx/posix/socket, const InterfaceFlagsPromisc InterfaceFlags
+pkg syscall/zx/posix/socket, const InterfaceFlagsRunning = 64
+pkg syscall/zx/posix/socket, const InterfaceFlagsRunning InterfaceFlags
+pkg syscall/zx/posix/socket, const InterfaceFlagsUp = 1
+pkg syscall/zx/posix/socket, const InterfaceFlagsUp InterfaceFlags
+pkg syscall/zx/posix/socket, const InterfaceFlags_Mask = 65535
+pkg syscall/zx/posix/socket, const InterfaceFlags_Mask InterfaceFlags
+pkg syscall/zx/posix/socket, const OptionalUint32Unset = 2
+pkg syscall/zx/posix/socket, const OptionalUint32Unset ideal-int
+pkg syscall/zx/posix/socket, const OptionalUint32Value = 1
+pkg syscall/zx/posix/socket, const OptionalUint32Value ideal-int
+pkg syscall/zx/posix/socket, const OptionalUint8Unset = 2
+pkg syscall/zx/posix/socket, const OptionalUint8Unset ideal-int
+pkg syscall/zx/posix/socket, const OptionalUint8Value = 1
+pkg syscall/zx/posix/socket, const OptionalUint8Value ideal-int
+pkg syscall/zx/posix/socket, const ProviderDatagramSocketDeprecatedOrdinal = 4073343718529375409
+pkg syscall/zx/posix/socket, const ProviderDatagramSocketDeprecatedOrdinal uint64
+pkg syscall/zx/posix/socket, const ProviderDatagramSocketDeprecatedResultErr = 2
+pkg syscall/zx/posix/socket, const ProviderDatagramSocketDeprecatedResultErr ideal-int
+pkg syscall/zx/posix/socket, const ProviderDatagramSocketDeprecatedResultResponse = 1
+pkg syscall/zx/posix/socket, const ProviderDatagramSocketDeprecatedResultResponse ideal-int
+pkg syscall/zx/posix/socket, const ProviderDatagramSocketOrdinal = 4621173678953222898
+pkg syscall/zx/posix/socket, const ProviderDatagramSocketOrdinal uint64
+pkg syscall/zx/posix/socket, const ProviderDatagramSocketResponseDatagramSocket = 1
+pkg syscall/zx/posix/socket, const ProviderDatagramSocketResponseDatagramSocket ideal-int
+pkg syscall/zx/posix/socket, const ProviderDatagramSocketResponseSynchronousDatagramSocket = 2
+pkg syscall/zx/posix/socket, const ProviderDatagramSocketResponseSynchronousDatagramSocket ideal-int
+pkg syscall/zx/posix/socket, const ProviderDatagramSocketResultErr = 2
+pkg syscall/zx/posix/socket, const ProviderDatagramSocketResultErr ideal-int
+pkg syscall/zx/posix/socket, const ProviderDatagramSocketResultResponse = 1
+pkg syscall/zx/posix/socket, const ProviderDatagramSocketResultResponse ideal-int
+pkg syscall/zx/posix/socket, const ProviderGetInterfaceAddressesOrdinal = 209340051571066992
+pkg syscall/zx/posix/socket, const ProviderGetInterfaceAddressesOrdinal uint64
+pkg syscall/zx/posix/socket, const ProviderInterfaceIndexToNameOrdinal = 5573668875546404655
+pkg syscall/zx/posix/socket, const ProviderInterfaceIndexToNameOrdinal uint64
+pkg syscall/zx/posix/socket, const ProviderInterfaceIndexToNameResultErr = 2
+pkg syscall/zx/posix/socket, const ProviderInterfaceIndexToNameResultErr ideal-int
+pkg syscall/zx/posix/socket, const ProviderInterfaceIndexToNameResultResponse = 1
+pkg syscall/zx/posix/socket, const ProviderInterfaceIndexToNameResultResponse ideal-int
+pkg syscall/zx/posix/socket, const ProviderInterfaceNameToFlagsOrdinal = 2724941441366694411
+pkg syscall/zx/posix/socket, const ProviderInterfaceNameToFlagsOrdinal uint64
+pkg syscall/zx/posix/socket, const ProviderInterfaceNameToFlagsResultErr = 2
+pkg syscall/zx/posix/socket, const ProviderInterfaceNameToFlagsResultErr ideal-int
+pkg syscall/zx/posix/socket, const ProviderInterfaceNameToFlagsResultResponse = 1
+pkg syscall/zx/posix/socket, const ProviderInterfaceNameToFlagsResultResponse ideal-int
+pkg syscall/zx/posix/socket, const ProviderInterfaceNameToIndexOrdinal = 7569663474231824632
+pkg syscall/zx/posix/socket, const ProviderInterfaceNameToIndexOrdinal uint64
+pkg syscall/zx/posix/socket, const ProviderInterfaceNameToIndexResultErr = 2
+pkg syscall/zx/posix/socket, const ProviderInterfaceNameToIndexResultErr ideal-int
+pkg syscall/zx/posix/socket, const ProviderInterfaceNameToIndexResultResponse = 1
+pkg syscall/zx/posix/socket, const ProviderInterfaceNameToIndexResultResponse ideal-int
+pkg syscall/zx/posix/socket, const ProviderName = "fuchsia.posix.socket.Provider"
+pkg syscall/zx/posix/socket, const ProviderName ideal-string
+pkg syscall/zx/posix/socket, const ProviderStreamSocketOrdinal = 2865230672234370373
+pkg syscall/zx/posix/socket, const ProviderStreamSocketOrdinal uint64
+pkg syscall/zx/posix/socket, const ProviderStreamSocketResultErr = 2
+pkg syscall/zx/posix/socket, const ProviderStreamSocketResultErr ideal-int
+pkg syscall/zx/posix/socket, const ProviderStreamSocketResultResponse = 1
+pkg syscall/zx/posix/socket, const ProviderStreamSocketResultResponse ideal-int
+pkg syscall/zx/posix/socket, const RecvMsgFlagsPeek = 2
+pkg syscall/zx/posix/socket, const RecvMsgFlagsPeek RecvMsgFlags
+pkg syscall/zx/posix/socket, const RecvMsgFlags_Mask = 2
+pkg syscall/zx/posix/socket, const RecvMsgFlags_Mask RecvMsgFlags
+pkg syscall/zx/posix/socket, const SendMsgFlagsReserved = 32768
+pkg syscall/zx/posix/socket, const SendMsgFlagsReserved SendMsgFlags
+pkg syscall/zx/posix/socket, const SendMsgFlags_Mask = 32768
+pkg syscall/zx/posix/socket, const SendMsgFlags_Mask SendMsgFlags
+pkg syscall/zx/posix/socket, const ShutdownModeRead = 1
+pkg syscall/zx/posix/socket, const ShutdownModeRead ShutdownMode
+pkg syscall/zx/posix/socket, const ShutdownModeWrite = 2
+pkg syscall/zx/posix/socket, const ShutdownModeWrite ShutdownMode
+pkg syscall/zx/posix/socket, const ShutdownMode_Mask = 3
+pkg syscall/zx/posix/socket, const ShutdownMode_Mask ShutdownMode
+pkg syscall/zx/posix/socket, const StreamSocketAcceptOrdinal = 6536884020639482211
+pkg syscall/zx/posix/socket, const StreamSocketAcceptOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketAcceptResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketAcceptResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketAcceptResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketAcceptResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketAddIpMembershipOrdinal = 8555851866500740304
+pkg syscall/zx/posix/socket, const StreamSocketAddIpMembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketAddIpv6MembershipOrdinal = 8976925828978746547
+pkg syscall/zx/posix/socket, const StreamSocketAddIpv6MembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketBindOrdinal = 341257625864901213
+pkg syscall/zx/posix/socket, const StreamSocketBindOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketClone2Ordinal = 2366825959783828089
+pkg syscall/zx/posix/socket, const StreamSocketClone2Ordinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketCloneOrdinal = 6512600400724287855
+pkg syscall/zx/posix/socket, const StreamSocketCloneOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketCloseOrdinal = 6540867515453498750
+pkg syscall/zx/posix/socket, const StreamSocketCloseOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketConnectOrdinal = 6847144460767430769
+pkg syscall/zx/posix/socket, const StreamSocketConnectOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketDescribe2Ordinal = 3018020234056096818
+pkg syscall/zx/posix/socket, const StreamSocketDescribe2Ordinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketDescribeOrdinal = 1152055232528178848
+pkg syscall/zx/posix/socket, const StreamSocketDescribeOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketDisconnectOrdinal = 526467853197191602
+pkg syscall/zx/posix/socket, const StreamSocketDisconnectOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketDropIpMembershipOrdinal = 182553223798230275
+pkg syscall/zx/posix/socket, const StreamSocketDropIpMembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketDropIpv6MembershipOrdinal = 4760388853484462852
+pkg syscall/zx/posix/socket, const StreamSocketDropIpv6MembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetAcceptConnOrdinal = 7480036662830729574
+pkg syscall/zx/posix/socket, const StreamSocketGetAcceptConnOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetAttrOrdinal = 8689798978500614909
+pkg syscall/zx/posix/socket, const StreamSocketGetAttrOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetAttributesOrdinal = 4414537700416816443
+pkg syscall/zx/posix/socket, const StreamSocketGetAttributesOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetBindToDeviceOrdinal = 1923595528092321480
+pkg syscall/zx/posix/socket, const StreamSocketGetBindToDeviceOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetBroadcastOrdinal = 7528171145484924941
+pkg syscall/zx/posix/socket, const StreamSocketGetBroadcastOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetConnectionInfoOrdinal = 6362521381364198667
+pkg syscall/zx/posix/socket, const StreamSocketGetConnectionInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetErrorOrdinal = 6533942076392828603
+pkg syscall/zx/posix/socket, const StreamSocketGetErrorOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetFlagsOrdinal = 6595803110182632097
+pkg syscall/zx/posix/socket, const StreamSocketGetFlagsOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetInfoOrdinal = 611638895911602063
+pkg syscall/zx/posix/socket, const StreamSocketGetInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetInfoResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketGetInfoResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetInfoResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketGetInfoResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetIpMulticastInterfaceOrdinal = 3606206052295526084
+pkg syscall/zx/posix/socket, const StreamSocketGetIpMulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetIpMulticastLoopbackOrdinal = 4281558748838926578
+pkg syscall/zx/posix/socket, const StreamSocketGetIpMulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetIpMulticastTtlOrdinal = 317042887113285146
+pkg syscall/zx/posix/socket, const StreamSocketGetIpMulticastTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetIpPacketInfoOrdinal = 6103791408020719424
+pkg syscall/zx/posix/socket, const StreamSocketGetIpPacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetIpReceiveTtlOrdinal = 7461863537816252085
+pkg syscall/zx/posix/socket, const StreamSocketGetIpReceiveTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetIpReceiveTypeOfServiceOrdinal = 4708718459712264544
+pkg syscall/zx/posix/socket, const StreamSocketGetIpReceiveTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetIpTtlOrdinal = 5180405804914549873
+pkg syscall/zx/posix/socket, const StreamSocketGetIpTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetIpTypeOfServiceOrdinal = 4041030972495847371
+pkg syscall/zx/posix/socket, const StreamSocketGetIpTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetIpv6MulticastHopsOrdinal = 5949652343433003306
+pkg syscall/zx/posix/socket, const StreamSocketGetIpv6MulticastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetIpv6MulticastInterfaceOrdinal = 2244759491290536066
+pkg syscall/zx/posix/socket, const StreamSocketGetIpv6MulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetIpv6MulticastLoopbackOrdinal = 4906028588272392643
+pkg syscall/zx/posix/socket, const StreamSocketGetIpv6MulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetIpv6OnlyOrdinal = 5378199598003566748
+pkg syscall/zx/posix/socket, const StreamSocketGetIpv6OnlyOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetIpv6ReceiveHopLimitOrdinal = 3755446185578837184
+pkg syscall/zx/posix/socket, const StreamSocketGetIpv6ReceiveHopLimitOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetIpv6ReceivePacketInfoOrdinal = 8848810376192257141
+pkg syscall/zx/posix/socket, const StreamSocketGetIpv6ReceivePacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetIpv6ReceiveTrafficClassOrdinal = 3329090250702405626
+pkg syscall/zx/posix/socket, const StreamSocketGetIpv6ReceiveTrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetIpv6TrafficClassOrdinal = 484971415598804740
+pkg syscall/zx/posix/socket, const StreamSocketGetIpv6TrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetIpv6UnicastHopsOrdinal = 2446690571902507218
+pkg syscall/zx/posix/socket, const StreamSocketGetIpv6UnicastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetKeepAliveOrdinal = 3301874315258153426
+pkg syscall/zx/posix/socket, const StreamSocketGetKeepAliveOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetLingerOrdinal = 5254329658518474309
+pkg syscall/zx/posix/socket, const StreamSocketGetLingerOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetNoCheckOrdinal = 3230247044467750548
+pkg syscall/zx/posix/socket, const StreamSocketGetNoCheckOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetOutOfBandInlineOrdinal = 3786430745745692485
+pkg syscall/zx/posix/socket, const StreamSocketGetOutOfBandInlineOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetPeerNameOrdinal = 2305507983875261230
+pkg syscall/zx/posix/socket, const StreamSocketGetPeerNameOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetReceiveBufferOrdinal = 1495657654187499100
+pkg syscall/zx/posix/socket, const StreamSocketGetReceiveBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetReuseAddressOrdinal = 7473477752945623205
+pkg syscall/zx/posix/socket, const StreamSocketGetReuseAddressOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetReusePortOrdinal = 8795860040453978152
+pkg syscall/zx/posix/socket, const StreamSocketGetReusePortOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetSendBufferOrdinal = 8693407268113367307
+pkg syscall/zx/posix/socket, const StreamSocketGetSendBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetSockNameOrdinal = 5142868848782495621
+pkg syscall/zx/posix/socket, const StreamSocketGetSockNameOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpCongestionOrdinal = 1288420472382761543
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpCongestionOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpCongestionResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpCongestionResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpCongestionResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpCongestionResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpCorkOrdinal = 4853668955013205810
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpCorkOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpCorkResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpCorkResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpCorkResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpCorkResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpDeferAcceptOrdinal = 7230695848691939270
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpDeferAcceptOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpDeferAcceptResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpDeferAcceptResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpDeferAcceptResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpDeferAcceptResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpInfoOrdinal = 2304455690200279762
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpInfoResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpInfoResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpInfoResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpInfoResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpKeepAliveCountOrdinal = 3393298365054614025
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpKeepAliveCountOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpKeepAliveCountResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpKeepAliveCountResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpKeepAliveCountResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpKeepAliveCountResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpKeepAliveIdleOrdinal = 242848606632517036
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpKeepAliveIdleOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpKeepAliveIdleResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpKeepAliveIdleResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpKeepAliveIdleResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpKeepAliveIdleResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpKeepAliveIntervalOrdinal = 172521021101224580
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpKeepAliveIntervalOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpKeepAliveIntervalResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpKeepAliveIntervalResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpKeepAliveIntervalResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpKeepAliveIntervalResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpLingerOrdinal = 781498587187982571
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpLingerOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpLingerResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpLingerResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpLingerResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpLingerResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpMaxSegmentOrdinal = 7166358205780039724
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpMaxSegmentOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpMaxSegmentResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpMaxSegmentResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpMaxSegmentResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpMaxSegmentResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpNoDelayOrdinal = 775210274294269849
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpNoDelayOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpNoDelayResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpNoDelayResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpNoDelayResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpNoDelayResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpQuickAckOrdinal = 8311016296560123698
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpQuickAckOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpQuickAckResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpQuickAckResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpQuickAckResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpQuickAckResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpSynCountOrdinal = 9026758168845172454
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpSynCountOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpSynCountResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpSynCountResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpSynCountResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpSynCountResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpUserTimeoutOrdinal = 2646943975547126656
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpUserTimeoutOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpUserTimeoutResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpUserTimeoutResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpUserTimeoutResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpUserTimeoutResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpWindowClampOrdinal = 3312034922227198542
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpWindowClampOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpWindowClampResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpWindowClampResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpWindowClampResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketGetTcpWindowClampResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketGetTimestampDeprecatedOrdinal = 1091736298891551443
+pkg syscall/zx/posix/socket, const StreamSocketGetTimestampDeprecatedOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketGetTimestampOrdinal = 5328602765801471271
+pkg syscall/zx/posix/socket, const StreamSocketGetTimestampOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketListenOrdinal = 4398439925072068872
+pkg syscall/zx/posix/socket, const StreamSocketListenOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketListenResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketListenResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketListenResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketListenResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketOnOpenOrdinal = 9207534335756671346
+pkg syscall/zx/posix/socket, const StreamSocketOnOpenOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketOnRepresentationOrdinal = 6679970090861613324
+pkg syscall/zx/posix/socket, const StreamSocketOnRepresentationOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketProtocolTcp = 0
+pkg syscall/zx/posix/socket, const StreamSocketProtocolTcp StreamSocketProtocol
+pkg syscall/zx/posix/socket, const StreamSocketQueryFilesystemOrdinal = 8013111122914313744
+pkg syscall/zx/posix/socket, const StreamSocketQueryFilesystemOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketQueryOrdinal = 2763219980499352582
+pkg syscall/zx/posix/socket, const StreamSocketQueryOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketReopenOrdinal = 7675434429343513249
+pkg syscall/zx/posix/socket, const StreamSocketReopenOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetAttrOrdinal = 4721673413776871238
+pkg syscall/zx/posix/socket, const StreamSocketSetAttrOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetBindToDeviceOrdinal = 2384854481495568324
+pkg syscall/zx/posix/socket, const StreamSocketSetBindToDeviceOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetBroadcastOrdinal = 6927627499941452103
+pkg syscall/zx/posix/socket, const StreamSocketSetBroadcastOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetFlagsOrdinal = 5950864159036794675
+pkg syscall/zx/posix/socket, const StreamSocketSetFlagsOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetIpMulticastInterfaceOrdinal = 527761160117862142
+pkg syscall/zx/posix/socket, const StreamSocketSetIpMulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetIpMulticastLoopbackOrdinal = 2361394811737031658
+pkg syscall/zx/posix/socket, const StreamSocketSetIpMulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetIpMulticastTtlOrdinal = 7139134855189173921
+pkg syscall/zx/posix/socket, const StreamSocketSetIpMulticastTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetIpPacketInfoOrdinal = 4119974243205910038
+pkg syscall/zx/posix/socket, const StreamSocketSetIpPacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetIpReceiveTtlOrdinal = 5111968073129834539
+pkg syscall/zx/posix/socket, const StreamSocketSetIpReceiveTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetIpReceiveTypeOfServiceOrdinal = 7804570017426539759
+pkg syscall/zx/posix/socket, const StreamSocketSetIpReceiveTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetIpTtlOrdinal = 3018047591309566447
+pkg syscall/zx/posix/socket, const StreamSocketSetIpTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetIpTypeOfServiceOrdinal = 690675822370712902
+pkg syscall/zx/posix/socket, const StreamSocketSetIpTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetIpv6MulticastHopsOrdinal = 2718429581095699137
+pkg syscall/zx/posix/socket, const StreamSocketSetIpv6MulticastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetIpv6MulticastInterfaceOrdinal = 1395965093408451387
+pkg syscall/zx/posix/socket, const StreamSocketSetIpv6MulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetIpv6MulticastLoopbackOrdinal = 6156451754502527808
+pkg syscall/zx/posix/socket, const StreamSocketSetIpv6MulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetIpv6OnlyOrdinal = 5220781608480066490
+pkg syscall/zx/posix/socket, const StreamSocketSetIpv6OnlyOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetIpv6ReceiveHopLimitOrdinal = 6639573101563103774
+pkg syscall/zx/posix/socket, const StreamSocketSetIpv6ReceiveHopLimitOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetIpv6ReceivePacketInfoOrdinal = 1812020956834113384
+pkg syscall/zx/posix/socket, const StreamSocketSetIpv6ReceivePacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetIpv6ReceiveTrafficClassOrdinal = 6408759191306017184
+pkg syscall/zx/posix/socket, const StreamSocketSetIpv6ReceiveTrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetIpv6TrafficClassOrdinal = 7705790354277665615
+pkg syscall/zx/posix/socket, const StreamSocketSetIpv6TrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetIpv6UnicastHopsOrdinal = 1548483910458288217
+pkg syscall/zx/posix/socket, const StreamSocketSetIpv6UnicastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetKeepAliveOrdinal = 6281950768033485511
+pkg syscall/zx/posix/socket, const StreamSocketSetKeepAliveOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetLingerOrdinal = 4987845787467553166
+pkg syscall/zx/posix/socket, const StreamSocketSetLingerOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetNoCheckOrdinal = 7763925129696671938
+pkg syscall/zx/posix/socket, const StreamSocketSetNoCheckOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetOutOfBandInlineOrdinal = 282799447597835321
+pkg syscall/zx/posix/socket, const StreamSocketSetOutOfBandInlineOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetReceiveBufferOrdinal = 7713807381122805761
+pkg syscall/zx/posix/socket, const StreamSocketSetReceiveBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetReuseAddressOrdinal = 2294389296622512246
+pkg syscall/zx/posix/socket, const StreamSocketSetReuseAddressOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetReusePortOrdinal = 2656347923086679243
+pkg syscall/zx/posix/socket, const StreamSocketSetReusePortOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetSendBufferOrdinal = 8461890084235016816
+pkg syscall/zx/posix/socket, const StreamSocketSetSendBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpCongestionOrdinal = 8729320689261576606
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpCongestionOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpCongestionResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpCongestionResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpCongestionResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpCongestionResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpCorkOrdinal = 7125372533843510176
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpCorkOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpCorkResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpCorkResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpCorkResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpCorkResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpDeferAcceptOrdinal = 1515794530221671428
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpDeferAcceptOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpDeferAcceptResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpDeferAcceptResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpDeferAcceptResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpDeferAcceptResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpKeepAliveCountOrdinal = 3076777411366388769
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpKeepAliveCountOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpKeepAliveCountResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpKeepAliveCountResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpKeepAliveCountResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpKeepAliveCountResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpKeepAliveIdleOrdinal = 114507899072822338
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpKeepAliveIdleOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpKeepAliveIdleResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpKeepAliveIdleResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpKeepAliveIdleResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpKeepAliveIdleResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpKeepAliveIntervalOrdinal = 5215163707819181042
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpKeepAliveIntervalOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpKeepAliveIntervalResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpKeepAliveIntervalResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpKeepAliveIntervalResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpKeepAliveIntervalResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpLingerOrdinal = 962857624226576100
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpLingerOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpLingerResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpLingerResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpLingerResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpLingerResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpMaxSegmentOrdinal = 809857128920935704
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpMaxSegmentOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpMaxSegmentResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpMaxSegmentResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpMaxSegmentResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpMaxSegmentResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpNoDelayOrdinal = 6510436466512050906
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpNoDelayOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpNoDelayResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpNoDelayResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpNoDelayResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpNoDelayResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpQuickAckOrdinal = 8045700244452570199
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpQuickAckOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpQuickAckResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpQuickAckResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpQuickAckResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpQuickAckResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpSynCountOrdinal = 5606254438231318195
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpSynCountOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpSynCountResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpSynCountResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpSynCountResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpSynCountResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpUserTimeoutOrdinal = 7729758615618460256
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpUserTimeoutOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpUserTimeoutResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpUserTimeoutResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpUserTimeoutResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpUserTimeoutResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpWindowClampOrdinal = 5343184541010358726
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpWindowClampOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpWindowClampResultErr = 2
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpWindowClampResultErr ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpWindowClampResultResponse = 1
+pkg syscall/zx/posix/socket, const StreamSocketSetTcpWindowClampResultResponse ideal-int
+pkg syscall/zx/posix/socket, const StreamSocketSetTimestampDeprecatedOrdinal = 8051701552985791052
+pkg syscall/zx/posix/socket, const StreamSocketSetTimestampDeprecatedOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSetTimestampOrdinal = 2908592082776217657
+pkg syscall/zx/posix/socket, const StreamSocketSetTimestampOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketShutdownOrdinal = 2629883065423938358
+pkg syscall/zx/posix/socket, const StreamSocketShutdownOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketSyncOrdinal = 3196473584242777161
+pkg syscall/zx/posix/socket, const StreamSocketSyncOrdinal uint64
+pkg syscall/zx/posix/socket, const StreamSocketUpdateAttributesOrdinal = 3677402239314018056
+pkg syscall/zx/posix/socket, const StreamSocketUpdateAttributesOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketAddIpMembershipOrdinal = 8555851866500740304
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketAddIpMembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketAddIpv6MembershipOrdinal = 8976925828978746547
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketAddIpv6MembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketBindOrdinal = 341257625864901213
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketBindOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketClone2Ordinal = 2366825959783828089
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketClone2Ordinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketCloneOrdinal = 6512600400724287855
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketCloneOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketCloseOrdinal = 6540867515453498750
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketCloseOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketConnectOrdinal = 6847144460767430769
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketConnectOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketDescribe2Ordinal = 6367844369385457421
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketDescribe2Ordinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketDescribeOrdinal = 1152055232528178848
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketDescribeOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketDisconnectOrdinal = 526467853197191602
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketDisconnectOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketDropIpMembershipOrdinal = 182553223798230275
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketDropIpMembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketDropIpv6MembershipOrdinal = 4760388853484462852
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketDropIpv6MembershipOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetAcceptConnOrdinal = 7480036662830729574
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetAcceptConnOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetAttrOrdinal = 8689798978500614909
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetAttrOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetAttributesOrdinal = 4414537700416816443
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetAttributesOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetBindToDeviceOrdinal = 1923595528092321480
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetBindToDeviceOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetBroadcastOrdinal = 7528171145484924941
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetBroadcastOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetConnectionInfoOrdinal = 6362521381364198667
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetConnectionInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetErrorOrdinal = 6533942076392828603
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetErrorOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetFlagsOrdinal = 6595803110182632097
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetFlagsOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetInfoDeprecatedOrdinal = 7940165717368966159
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetInfoDeprecatedOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetInfoOrdinal = 5236008646813602541
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpMulticastInterfaceOrdinal = 3606206052295526084
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpMulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpMulticastLoopbackOrdinal = 4281558748838926578
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpMulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpMulticastTtlOrdinal = 317042887113285146
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpMulticastTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpPacketInfoOrdinal = 6103791408020719424
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpPacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpReceiveTtlOrdinal = 7461863537816252085
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpReceiveTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpReceiveTypeOfServiceOrdinal = 4708718459712264544
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpReceiveTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpTtlOrdinal = 5180405804914549873
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpTypeOfServiceOrdinal = 4041030972495847371
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpv6MulticastHopsOrdinal = 5949652343433003306
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpv6MulticastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpv6MulticastInterfaceOrdinal = 2244759491290536066
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpv6MulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpv6MulticastLoopbackOrdinal = 4906028588272392643
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpv6MulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpv6OnlyOrdinal = 5378199598003566748
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpv6OnlyOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpv6ReceiveHopLimitOrdinal = 3755446185578837184
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpv6ReceiveHopLimitOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpv6ReceivePacketInfoOrdinal = 8848810376192257141
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpv6ReceivePacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpv6ReceiveTrafficClassOrdinal = 3329090250702405626
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpv6ReceiveTrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpv6TrafficClassOrdinal = 484971415598804740
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpv6TrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpv6UnicastHopsOrdinal = 2446690571902507218
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetIpv6UnicastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetKeepAliveOrdinal = 3301874315258153426
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetKeepAliveOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetLingerOrdinal = 5254329658518474309
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetLingerOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetNoCheckOrdinal = 3230247044467750548
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetNoCheckOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetOutOfBandInlineOrdinal = 3786430745745692485
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetOutOfBandInlineOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetPeerNameOrdinal = 2305507983875261230
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetPeerNameOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetReceiveBufferOrdinal = 1495657654187499100
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetReceiveBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetReuseAddressOrdinal = 7473477752945623205
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetReuseAddressOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetReusePortOrdinal = 8795860040453978152
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetReusePortOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetSendBufferOrdinal = 8693407268113367307
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetSendBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetSockNameOrdinal = 5142868848782495621
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetSockNameOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetTimestampDeprecatedOrdinal = 1091736298891551443
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetTimestampDeprecatedOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetTimestampOrdinal = 5328602765801471271
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketGetTimestampOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketOnOpenOrdinal = 9207534335756671346
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketOnOpenOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketOnRepresentationOrdinal = 6679970090861613324
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketOnRepresentationOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketQueryFilesystemOrdinal = 8013111122914313744
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketQueryFilesystemOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketQueryOrdinal = 2763219980499352582
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketQueryOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketRecvMsgDeprecatedOrdinal = 8165942820816825210
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketRecvMsgDeprecatedOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketRecvMsgDeprecatedResultErr = 2
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketRecvMsgDeprecatedResultErr ideal-int
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketRecvMsgDeprecatedResultResponse = 1
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketRecvMsgDeprecatedResultResponse ideal-int
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketRecvMsgOrdinal = 2946643765591661555
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketRecvMsgOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketRecvMsgResultErr = 2
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketRecvMsgResultErr ideal-int
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketRecvMsgResultResponse = 1
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketRecvMsgResultResponse ideal-int
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketReopenOrdinal = 7675434429343513249
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketReopenOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSendMsgDeprecatedOrdinal = 3862789327346463099
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSendMsgDeprecatedOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSendMsgDeprecatedResultErr = 2
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSendMsgDeprecatedResultErr ideal-int
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSendMsgDeprecatedResultResponse = 1
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSendMsgDeprecatedResultResponse ideal-int
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSendMsgOrdinal = 1359013752244858794
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSendMsgOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSendMsgResultErr = 2
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSendMsgResultErr ideal-int
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSendMsgResultResponse = 1
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSendMsgResultResponse ideal-int
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetAttrOrdinal = 4721673413776871238
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetAttrOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetBindToDeviceOrdinal = 2384854481495568324
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetBindToDeviceOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetBroadcastOrdinal = 6927627499941452103
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetBroadcastOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetFlagsOrdinal = 5950864159036794675
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetFlagsOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpMulticastInterfaceOrdinal = 527761160117862142
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpMulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpMulticastLoopbackOrdinal = 2361394811737031658
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpMulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpMulticastTtlOrdinal = 7139134855189173921
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpMulticastTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpPacketInfoOrdinal = 4119974243205910038
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpPacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpReceiveTtlOrdinal = 5111968073129834539
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpReceiveTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpReceiveTypeOfServiceOrdinal = 7804570017426539759
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpReceiveTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpTtlOrdinal = 3018047591309566447
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpTtlOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpTypeOfServiceOrdinal = 690675822370712902
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpTypeOfServiceOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpv6MulticastHopsOrdinal = 2718429581095699137
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpv6MulticastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpv6MulticastInterfaceOrdinal = 1395965093408451387
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpv6MulticastInterfaceOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpv6MulticastLoopbackOrdinal = 6156451754502527808
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpv6MulticastLoopbackOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpv6OnlyOrdinal = 5220781608480066490
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpv6OnlyOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpv6ReceiveHopLimitOrdinal = 6639573101563103774
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpv6ReceiveHopLimitOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpv6ReceivePacketInfoOrdinal = 1812020956834113384
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpv6ReceivePacketInfoOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpv6ReceiveTrafficClassOrdinal = 6408759191306017184
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpv6ReceiveTrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpv6TrafficClassOrdinal = 7705790354277665615
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpv6TrafficClassOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpv6UnicastHopsOrdinal = 1548483910458288217
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetIpv6UnicastHopsOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetKeepAliveOrdinal = 6281950768033485511
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetKeepAliveOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetLingerOrdinal = 4987845787467553166
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetLingerOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetNoCheckOrdinal = 7763925129696671938
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetNoCheckOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetOutOfBandInlineOrdinal = 282799447597835321
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetOutOfBandInlineOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetReceiveBufferOrdinal = 7713807381122805761
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetReceiveBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetReuseAddressOrdinal = 2294389296622512246
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetReuseAddressOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetReusePortOrdinal = 2656347923086679243
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetReusePortOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetSendBufferOrdinal = 8461890084235016816
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetSendBufferOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetTimestampDeprecatedOrdinal = 8051701552985791052
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetTimestampDeprecatedOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetTimestampOrdinal = 2908592082776217657
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSetTimestampOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketShutdownOrdinal = 2629883065423938358
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketShutdownOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSyncOrdinal = 3196473584242777161
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketSyncOrdinal uint64
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketUpdateAttributesOrdinal = 3677402239314018056
+pkg syscall/zx/posix/socket, const SynchronousDatagramSocketUpdateAttributesOrdinal uint64
+pkg syscall/zx/posix/socket, const TcpCongestionControlCubic = 2
+pkg syscall/zx/posix/socket, const TcpCongestionControlCubic TcpCongestionControl
+pkg syscall/zx/posix/socket, const TcpCongestionControlReno = 1
+pkg syscall/zx/posix/socket, const TcpCongestionControlReno TcpCongestionControl
+pkg syscall/zx/posix/socket, const TcpCongestionControlStateCongestionWindowReduced = 2
+pkg syscall/zx/posix/socket, const TcpCongestionControlStateCongestionWindowReduced TcpCongestionControlState
+pkg syscall/zx/posix/socket, const TcpCongestionControlStateDisorder = 1
+pkg syscall/zx/posix/socket, const TcpCongestionControlStateDisorder TcpCongestionControlState
+pkg syscall/zx/posix/socket, const TcpCongestionControlStateLoss = 4
+pkg syscall/zx/posix/socket, const TcpCongestionControlStateLoss TcpCongestionControlState
+pkg syscall/zx/posix/socket, const TcpCongestionControlStateOpen = 0
+pkg syscall/zx/posix/socket, const TcpCongestionControlStateOpen TcpCongestionControlState
+pkg syscall/zx/posix/socket, const TcpCongestionControlStateRecovery = 3
+pkg syscall/zx/posix/socket, const TcpCongestionControlStateRecovery TcpCongestionControlState
+pkg syscall/zx/posix/socket, const TcpStateClose = 7
+pkg syscall/zx/posix/socket, const TcpStateClose TcpState
+pkg syscall/zx/posix/socket, const TcpStateCloseWait = 8
+pkg syscall/zx/posix/socket, const TcpStateCloseWait TcpState
+pkg syscall/zx/posix/socket, const TcpStateClosing = 11
+pkg syscall/zx/posix/socket, const TcpStateClosing TcpState
+pkg syscall/zx/posix/socket, const TcpStateEstablished = 1
+pkg syscall/zx/posix/socket, const TcpStateEstablished TcpState
+pkg syscall/zx/posix/socket, const TcpStateFinWait1 = 4
+pkg syscall/zx/posix/socket, const TcpStateFinWait1 TcpState
+pkg syscall/zx/posix/socket, const TcpStateFinWait2 = 5
+pkg syscall/zx/posix/socket, const TcpStateFinWait2 TcpState
+pkg syscall/zx/posix/socket, const TcpStateLastAck = 9
+pkg syscall/zx/posix/socket, const TcpStateLastAck TcpState
+pkg syscall/zx/posix/socket, const TcpStateListen = 10
+pkg syscall/zx/posix/socket, const TcpStateListen TcpState
+pkg syscall/zx/posix/socket, const TcpStateSynRecv = 3
+pkg syscall/zx/posix/socket, const TcpStateSynRecv TcpState
+pkg syscall/zx/posix/socket, const TcpStateSynSent = 2
+pkg syscall/zx/posix/socket, const TcpStateSynSent TcpState
+pkg syscall/zx/posix/socket, const TcpStateTimeWait = 6
+pkg syscall/zx/posix/socket, const TcpStateTimeWait TcpState
+pkg syscall/zx/posix/socket, const TimestampDeprecatedMicroseconds = 2
+pkg syscall/zx/posix/socket, const TimestampDeprecatedMicroseconds ideal-int
+pkg syscall/zx/posix/socket, const TimestampDeprecatedNanoseconds = 1
+pkg syscall/zx/posix/socket, const TimestampDeprecatedNanoseconds ideal-int
+pkg syscall/zx/posix/socket, const TimestampOptionDisabled = 0
+pkg syscall/zx/posix/socket, const TimestampOptionDisabled TimestampOption
+pkg syscall/zx/posix/socket, const TimestampOptionMicrosecond = 2
+pkg syscall/zx/posix/socket, const TimestampOptionMicrosecond TimestampOption
+pkg syscall/zx/posix/socket, const TimestampOptionNanosecond = 1
+pkg syscall/zx/posix/socket, const TimestampOptionNanosecond TimestampOption
+pkg syscall/zx/posix/socket, func BaseDatagramSocketGetInfoDeprecatedResultWithErr(posix.Errno) BaseDatagramSocketGetInfoDeprecatedResult
+pkg syscall/zx/posix/socket, func BaseDatagramSocketGetInfoDeprecatedResultWithResponse(BaseDatagramSocketGetInfoDeprecatedResponse) BaseDatagramSocketGetInfoDeprecatedResult
+pkg syscall/zx/posix/socket, func BaseDatagramSocketGetInfoResultWithErr(posix.Errno) BaseDatagramSocketGetInfoResult
+pkg syscall/zx/posix/socket, func BaseDatagramSocketGetInfoResultWithResponse(BaseDatagramSocketGetInfoResponse) BaseDatagramSocketGetInfoResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketAddIpMembershipResultWithErr(posix.Errno) BaseNetworkSocketAddIpMembershipResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketAddIpMembershipResultWithResponse(BaseNetworkSocketAddIpMembershipResponse) BaseNetworkSocketAddIpMembershipResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketAddIpv6MembershipResultWithErr(posix.Errno) BaseNetworkSocketAddIpv6MembershipResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketAddIpv6MembershipResultWithResponse(BaseNetworkSocketAddIpv6MembershipResponse) BaseNetworkSocketAddIpv6MembershipResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketBindResultWithErr(posix.Errno) BaseNetworkSocketBindResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketBindResultWithResponse(BaseNetworkSocketBindResponse) BaseNetworkSocketBindResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketConnectResultWithErr(posix.Errno) BaseNetworkSocketConnectResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketConnectResultWithResponse(BaseNetworkSocketConnectResponse) BaseNetworkSocketConnectResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketDisconnectResultWithErr(posix.Errno) BaseNetworkSocketDisconnectResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketDisconnectResultWithResponse(BaseNetworkSocketDisconnectResponse) BaseNetworkSocketDisconnectResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketDropIpMembershipResultWithErr(posix.Errno) BaseNetworkSocketDropIpMembershipResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketDropIpMembershipResultWithResponse(BaseNetworkSocketDropIpMembershipResponse) BaseNetworkSocketDropIpMembershipResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketDropIpv6MembershipResultWithErr(posix.Errno) BaseNetworkSocketDropIpv6MembershipResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketDropIpv6MembershipResultWithResponse(BaseNetworkSocketDropIpv6MembershipResponse) BaseNetworkSocketDropIpv6MembershipResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpMulticastInterfaceResultWithErr(posix.Errno) BaseNetworkSocketGetIpMulticastInterfaceResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpMulticastInterfaceResultWithResponse(BaseNetworkSocketGetIpMulticastInterfaceResponse) BaseNetworkSocketGetIpMulticastInterfaceResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpMulticastLoopbackResultWithErr(posix.Errno) BaseNetworkSocketGetIpMulticastLoopbackResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpMulticastLoopbackResultWithResponse(BaseNetworkSocketGetIpMulticastLoopbackResponse) BaseNetworkSocketGetIpMulticastLoopbackResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpMulticastTtlResultWithErr(posix.Errno) BaseNetworkSocketGetIpMulticastTtlResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpMulticastTtlResultWithResponse(BaseNetworkSocketGetIpMulticastTtlResponse) BaseNetworkSocketGetIpMulticastTtlResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpPacketInfoResultWithErr(posix.Errno) BaseNetworkSocketGetIpPacketInfoResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpPacketInfoResultWithResponse(BaseNetworkSocketGetIpPacketInfoResponse) BaseNetworkSocketGetIpPacketInfoResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpReceiveTtlResultWithErr(posix.Errno) BaseNetworkSocketGetIpReceiveTtlResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpReceiveTtlResultWithResponse(BaseNetworkSocketGetIpReceiveTtlResponse) BaseNetworkSocketGetIpReceiveTtlResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpReceiveTypeOfServiceResultWithErr(posix.Errno) BaseNetworkSocketGetIpReceiveTypeOfServiceResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpReceiveTypeOfServiceResultWithResponse(BaseNetworkSocketGetIpReceiveTypeOfServiceResponse) BaseNetworkSocketGetIpReceiveTypeOfServiceResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpTtlResultWithErr(posix.Errno) BaseNetworkSocketGetIpTtlResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpTtlResultWithResponse(BaseNetworkSocketGetIpTtlResponse) BaseNetworkSocketGetIpTtlResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpTypeOfServiceResultWithErr(posix.Errno) BaseNetworkSocketGetIpTypeOfServiceResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpTypeOfServiceResultWithResponse(BaseNetworkSocketGetIpTypeOfServiceResponse) BaseNetworkSocketGetIpTypeOfServiceResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpv6MulticastHopsResultWithErr(posix.Errno) BaseNetworkSocketGetIpv6MulticastHopsResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpv6MulticastHopsResultWithResponse(BaseNetworkSocketGetIpv6MulticastHopsResponse) BaseNetworkSocketGetIpv6MulticastHopsResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpv6MulticastInterfaceResultWithErr(posix.Errno) BaseNetworkSocketGetIpv6MulticastInterfaceResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpv6MulticastInterfaceResultWithResponse(BaseNetworkSocketGetIpv6MulticastInterfaceResponse) BaseNetworkSocketGetIpv6MulticastInterfaceResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpv6MulticastLoopbackResultWithErr(posix.Errno) BaseNetworkSocketGetIpv6MulticastLoopbackResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpv6MulticastLoopbackResultWithResponse(BaseNetworkSocketGetIpv6MulticastLoopbackResponse) BaseNetworkSocketGetIpv6MulticastLoopbackResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpv6OnlyResultWithErr(posix.Errno) BaseNetworkSocketGetIpv6OnlyResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpv6OnlyResultWithResponse(BaseNetworkSocketGetIpv6OnlyResponse) BaseNetworkSocketGetIpv6OnlyResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpv6ReceiveHopLimitResultWithErr(posix.Errno) BaseNetworkSocketGetIpv6ReceiveHopLimitResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpv6ReceiveHopLimitResultWithResponse(BaseNetworkSocketGetIpv6ReceiveHopLimitResponse) BaseNetworkSocketGetIpv6ReceiveHopLimitResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpv6ReceivePacketInfoResultWithErr(posix.Errno) BaseNetworkSocketGetIpv6ReceivePacketInfoResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpv6ReceivePacketInfoResultWithResponse(BaseNetworkSocketGetIpv6ReceivePacketInfoResponse) BaseNetworkSocketGetIpv6ReceivePacketInfoResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpv6ReceiveTrafficClassResultWithErr(posix.Errno) BaseNetworkSocketGetIpv6ReceiveTrafficClassResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpv6ReceiveTrafficClassResultWithResponse(BaseNetworkSocketGetIpv6ReceiveTrafficClassResponse) BaseNetworkSocketGetIpv6ReceiveTrafficClassResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpv6TrafficClassResultWithErr(posix.Errno) BaseNetworkSocketGetIpv6TrafficClassResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpv6TrafficClassResultWithResponse(BaseNetworkSocketGetIpv6TrafficClassResponse) BaseNetworkSocketGetIpv6TrafficClassResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpv6UnicastHopsResultWithErr(posix.Errno) BaseNetworkSocketGetIpv6UnicastHopsResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetIpv6UnicastHopsResultWithResponse(BaseNetworkSocketGetIpv6UnicastHopsResponse) BaseNetworkSocketGetIpv6UnicastHopsResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetPeerNameResultWithErr(posix.Errno) BaseNetworkSocketGetPeerNameResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetPeerNameResultWithResponse(BaseNetworkSocketGetPeerNameResponse) BaseNetworkSocketGetPeerNameResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetSockNameResultWithErr(posix.Errno) BaseNetworkSocketGetSockNameResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketGetSockNameResultWithResponse(BaseNetworkSocketGetSockNameResponse) BaseNetworkSocketGetSockNameResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpMulticastInterfaceResultWithErr(posix.Errno) BaseNetworkSocketSetIpMulticastInterfaceResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpMulticastInterfaceResultWithResponse(BaseNetworkSocketSetIpMulticastInterfaceResponse) BaseNetworkSocketSetIpMulticastInterfaceResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpMulticastLoopbackResultWithErr(posix.Errno) BaseNetworkSocketSetIpMulticastLoopbackResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpMulticastLoopbackResultWithResponse(BaseNetworkSocketSetIpMulticastLoopbackResponse) BaseNetworkSocketSetIpMulticastLoopbackResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpMulticastTtlResultWithErr(posix.Errno) BaseNetworkSocketSetIpMulticastTtlResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpMulticastTtlResultWithResponse(BaseNetworkSocketSetIpMulticastTtlResponse) BaseNetworkSocketSetIpMulticastTtlResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpPacketInfoResultWithErr(posix.Errno) BaseNetworkSocketSetIpPacketInfoResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpPacketInfoResultWithResponse(BaseNetworkSocketSetIpPacketInfoResponse) BaseNetworkSocketSetIpPacketInfoResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpReceiveTtlResultWithErr(posix.Errno) BaseNetworkSocketSetIpReceiveTtlResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpReceiveTtlResultWithResponse(BaseNetworkSocketSetIpReceiveTtlResponse) BaseNetworkSocketSetIpReceiveTtlResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpReceiveTypeOfServiceResultWithErr(posix.Errno) BaseNetworkSocketSetIpReceiveTypeOfServiceResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpReceiveTypeOfServiceResultWithResponse(BaseNetworkSocketSetIpReceiveTypeOfServiceResponse) BaseNetworkSocketSetIpReceiveTypeOfServiceResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpTtlResultWithErr(posix.Errno) BaseNetworkSocketSetIpTtlResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpTtlResultWithResponse(BaseNetworkSocketSetIpTtlResponse) BaseNetworkSocketSetIpTtlResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpTypeOfServiceResultWithErr(posix.Errno) BaseNetworkSocketSetIpTypeOfServiceResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpTypeOfServiceResultWithResponse(BaseNetworkSocketSetIpTypeOfServiceResponse) BaseNetworkSocketSetIpTypeOfServiceResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpv6MulticastHopsResultWithErr(posix.Errno) BaseNetworkSocketSetIpv6MulticastHopsResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpv6MulticastHopsResultWithResponse(BaseNetworkSocketSetIpv6MulticastHopsResponse) BaseNetworkSocketSetIpv6MulticastHopsResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpv6MulticastInterfaceResultWithErr(posix.Errno) BaseNetworkSocketSetIpv6MulticastInterfaceResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpv6MulticastInterfaceResultWithResponse(BaseNetworkSocketSetIpv6MulticastInterfaceResponse) BaseNetworkSocketSetIpv6MulticastInterfaceResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpv6MulticastLoopbackResultWithErr(posix.Errno) BaseNetworkSocketSetIpv6MulticastLoopbackResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpv6MulticastLoopbackResultWithResponse(BaseNetworkSocketSetIpv6MulticastLoopbackResponse) BaseNetworkSocketSetIpv6MulticastLoopbackResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpv6OnlyResultWithErr(posix.Errno) BaseNetworkSocketSetIpv6OnlyResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpv6OnlyResultWithResponse(BaseNetworkSocketSetIpv6OnlyResponse) BaseNetworkSocketSetIpv6OnlyResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpv6ReceiveHopLimitResultWithErr(posix.Errno) BaseNetworkSocketSetIpv6ReceiveHopLimitResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpv6ReceiveHopLimitResultWithResponse(BaseNetworkSocketSetIpv6ReceiveHopLimitResponse) BaseNetworkSocketSetIpv6ReceiveHopLimitResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpv6ReceivePacketInfoResultWithErr(posix.Errno) BaseNetworkSocketSetIpv6ReceivePacketInfoResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpv6ReceivePacketInfoResultWithResponse(BaseNetworkSocketSetIpv6ReceivePacketInfoResponse) BaseNetworkSocketSetIpv6ReceivePacketInfoResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpv6ReceiveTrafficClassResultWithErr(posix.Errno) BaseNetworkSocketSetIpv6ReceiveTrafficClassResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpv6ReceiveTrafficClassResultWithResponse(BaseNetworkSocketSetIpv6ReceiveTrafficClassResponse) BaseNetworkSocketSetIpv6ReceiveTrafficClassResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpv6TrafficClassResultWithErr(posix.Errno) BaseNetworkSocketSetIpv6TrafficClassResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpv6TrafficClassResultWithResponse(BaseNetworkSocketSetIpv6TrafficClassResponse) BaseNetworkSocketSetIpv6TrafficClassResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpv6UnicastHopsResultWithErr(posix.Errno) BaseNetworkSocketSetIpv6UnicastHopsResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketSetIpv6UnicastHopsResultWithResponse(BaseNetworkSocketSetIpv6UnicastHopsResponse) BaseNetworkSocketSetIpv6UnicastHopsResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketShutdownResultWithErr(posix.Errno) BaseNetworkSocketShutdownResult
+pkg syscall/zx/posix/socket, func BaseNetworkSocketShutdownResultWithResponse(BaseNetworkSocketShutdownResponse) BaseNetworkSocketShutdownResult
+pkg syscall/zx/posix/socket, func BaseSocketGetAcceptConnResultWithErr(posix.Errno) BaseSocketGetAcceptConnResult
+pkg syscall/zx/posix/socket, func BaseSocketGetAcceptConnResultWithResponse(BaseSocketGetAcceptConnResponse) BaseSocketGetAcceptConnResult
+pkg syscall/zx/posix/socket, func BaseSocketGetBindToDeviceResultWithErr(posix.Errno) BaseSocketGetBindToDeviceResult
+pkg syscall/zx/posix/socket, func BaseSocketGetBindToDeviceResultWithResponse(BaseSocketGetBindToDeviceResponse) BaseSocketGetBindToDeviceResult
+pkg syscall/zx/posix/socket, func BaseSocketGetBroadcastResultWithErr(posix.Errno) BaseSocketGetBroadcastResult
+pkg syscall/zx/posix/socket, func BaseSocketGetBroadcastResultWithResponse(BaseSocketGetBroadcastResponse) BaseSocketGetBroadcastResult
+pkg syscall/zx/posix/socket, func BaseSocketGetErrorResultWithErr(posix.Errno) BaseSocketGetErrorResult
+pkg syscall/zx/posix/socket, func BaseSocketGetErrorResultWithResponse(BaseSocketGetErrorResponse) BaseSocketGetErrorResult
+pkg syscall/zx/posix/socket, func BaseSocketGetKeepAliveResultWithErr(posix.Errno) BaseSocketGetKeepAliveResult
+pkg syscall/zx/posix/socket, func BaseSocketGetKeepAliveResultWithResponse(BaseSocketGetKeepAliveResponse) BaseSocketGetKeepAliveResult
+pkg syscall/zx/posix/socket, func BaseSocketGetLingerResultWithErr(posix.Errno) BaseSocketGetLingerResult
+pkg syscall/zx/posix/socket, func BaseSocketGetLingerResultWithResponse(BaseSocketGetLingerResponse) BaseSocketGetLingerResult
+pkg syscall/zx/posix/socket, func BaseSocketGetNoCheckResultWithErr(posix.Errno) BaseSocketGetNoCheckResult
+pkg syscall/zx/posix/socket, func BaseSocketGetNoCheckResultWithResponse(BaseSocketGetNoCheckResponse) BaseSocketGetNoCheckResult
+pkg syscall/zx/posix/socket, func BaseSocketGetOutOfBandInlineResultWithErr(posix.Errno) BaseSocketGetOutOfBandInlineResult
+pkg syscall/zx/posix/socket, func BaseSocketGetOutOfBandInlineResultWithResponse(BaseSocketGetOutOfBandInlineResponse) BaseSocketGetOutOfBandInlineResult
+pkg syscall/zx/posix/socket, func BaseSocketGetReceiveBufferResultWithErr(posix.Errno) BaseSocketGetReceiveBufferResult
+pkg syscall/zx/posix/socket, func BaseSocketGetReceiveBufferResultWithResponse(BaseSocketGetReceiveBufferResponse) BaseSocketGetReceiveBufferResult
+pkg syscall/zx/posix/socket, func BaseSocketGetReuseAddressResultWithErr(posix.Errno) BaseSocketGetReuseAddressResult
+pkg syscall/zx/posix/socket, func BaseSocketGetReuseAddressResultWithResponse(BaseSocketGetReuseAddressResponse) BaseSocketGetReuseAddressResult
+pkg syscall/zx/posix/socket, func BaseSocketGetReusePortResultWithErr(posix.Errno) BaseSocketGetReusePortResult
+pkg syscall/zx/posix/socket, func BaseSocketGetReusePortResultWithResponse(BaseSocketGetReusePortResponse) BaseSocketGetReusePortResult
+pkg syscall/zx/posix/socket, func BaseSocketGetSendBufferResultWithErr(posix.Errno) BaseSocketGetSendBufferResult
+pkg syscall/zx/posix/socket, func BaseSocketGetSendBufferResultWithResponse(BaseSocketGetSendBufferResponse) BaseSocketGetSendBufferResult
+pkg syscall/zx/posix/socket, func BaseSocketGetTimestampDeprecatedResultWithErr(posix.Errno) BaseSocketGetTimestampDeprecatedResult
+pkg syscall/zx/posix/socket, func BaseSocketGetTimestampDeprecatedResultWithResponse(BaseSocketGetTimestampDeprecatedResponse) BaseSocketGetTimestampDeprecatedResult
+pkg syscall/zx/posix/socket, func BaseSocketGetTimestampResultWithErr(posix.Errno) BaseSocketGetTimestampResult
+pkg syscall/zx/posix/socket, func BaseSocketGetTimestampResultWithResponse(BaseSocketGetTimestampResponse) BaseSocketGetTimestampResult
+pkg syscall/zx/posix/socket, func BaseSocketSetBindToDeviceResultWithErr(posix.Errno) BaseSocketSetBindToDeviceResult
+pkg syscall/zx/posix/socket, func BaseSocketSetBindToDeviceResultWithResponse(BaseSocketSetBindToDeviceResponse) BaseSocketSetBindToDeviceResult
+pkg syscall/zx/posix/socket, func BaseSocketSetBroadcastResultWithErr(posix.Errno) BaseSocketSetBroadcastResult
+pkg syscall/zx/posix/socket, func BaseSocketSetBroadcastResultWithResponse(BaseSocketSetBroadcastResponse) BaseSocketSetBroadcastResult
+pkg syscall/zx/posix/socket, func BaseSocketSetKeepAliveResultWithErr(posix.Errno) BaseSocketSetKeepAliveResult
+pkg syscall/zx/posix/socket, func BaseSocketSetKeepAliveResultWithResponse(BaseSocketSetKeepAliveResponse) BaseSocketSetKeepAliveResult
+pkg syscall/zx/posix/socket, func BaseSocketSetLingerResultWithErr(posix.Errno) BaseSocketSetLingerResult
+pkg syscall/zx/posix/socket, func BaseSocketSetLingerResultWithResponse(BaseSocketSetLingerResponse) BaseSocketSetLingerResult
+pkg syscall/zx/posix/socket, func BaseSocketSetNoCheckResultWithErr(posix.Errno) BaseSocketSetNoCheckResult
+pkg syscall/zx/posix/socket, func BaseSocketSetNoCheckResultWithResponse(BaseSocketSetNoCheckResponse) BaseSocketSetNoCheckResult
+pkg syscall/zx/posix/socket, func BaseSocketSetOutOfBandInlineResultWithErr(posix.Errno) BaseSocketSetOutOfBandInlineResult
+pkg syscall/zx/posix/socket, func BaseSocketSetOutOfBandInlineResultWithResponse(BaseSocketSetOutOfBandInlineResponse) BaseSocketSetOutOfBandInlineResult
+pkg syscall/zx/posix/socket, func BaseSocketSetReceiveBufferResultWithErr(posix.Errno) BaseSocketSetReceiveBufferResult
+pkg syscall/zx/posix/socket, func BaseSocketSetReceiveBufferResultWithResponse(BaseSocketSetReceiveBufferResponse) BaseSocketSetReceiveBufferResult
+pkg syscall/zx/posix/socket, func BaseSocketSetReuseAddressResultWithErr(posix.Errno) BaseSocketSetReuseAddressResult
+pkg syscall/zx/posix/socket, func BaseSocketSetReuseAddressResultWithResponse(BaseSocketSetReuseAddressResponse) BaseSocketSetReuseAddressResult
+pkg syscall/zx/posix/socket, func BaseSocketSetReusePortResultWithErr(posix.Errno) BaseSocketSetReusePortResult
+pkg syscall/zx/posix/socket, func BaseSocketSetReusePortResultWithResponse(BaseSocketSetReusePortResponse) BaseSocketSetReusePortResult
+pkg syscall/zx/posix/socket, func BaseSocketSetSendBufferResultWithErr(posix.Errno) BaseSocketSetSendBufferResult
+pkg syscall/zx/posix/socket, func BaseSocketSetSendBufferResultWithResponse(BaseSocketSetSendBufferResponse) BaseSocketSetSendBufferResult
+pkg syscall/zx/posix/socket, func BaseSocketSetTimestampDeprecatedResultWithErr(posix.Errno) BaseSocketSetTimestampDeprecatedResult
+pkg syscall/zx/posix/socket, func BaseSocketSetTimestampDeprecatedResultWithResponse(BaseSocketSetTimestampDeprecatedResponse) BaseSocketSetTimestampDeprecatedResult
+pkg syscall/zx/posix/socket, func BaseSocketSetTimestampResultWithErr(posix.Errno) BaseSocketSetTimestampResult
+pkg syscall/zx/posix/socket, func BaseSocketSetTimestampResultWithResponse(BaseSocketSetTimestampResponse) BaseSocketSetTimestampResult
+pkg syscall/zx/posix/socket, func DatagramSocketRecvMsgPostflightResultWithErr(posix.Errno) DatagramSocketRecvMsgPostflightResult
+pkg syscall/zx/posix/socket, func DatagramSocketRecvMsgPostflightResultWithResponse(DatagramSocketRecvMsgPostflightResponse) DatagramSocketRecvMsgPostflightResult
+pkg syscall/zx/posix/socket, func DatagramSocketSendMsgPreflightResultWithErr(posix.Errno) DatagramSocketSendMsgPreflightResult
+pkg syscall/zx/posix/socket, func DatagramSocketSendMsgPreflightResultWithResponse(DatagramSocketSendMsgPreflightResponse) DatagramSocketSendMsgPreflightResult
+pkg syscall/zx/posix/socket, func NewBaseDatagramSocketWithCtxInterfaceRequest() (BaseDatagramSocketWithCtxInterfaceRequest, *BaseDatagramSocketWithCtxInterface, error)
+pkg syscall/zx/posix/socket, func NewBaseNetworkSocketWithCtxInterfaceRequest() (BaseNetworkSocketWithCtxInterfaceRequest, *BaseNetworkSocketWithCtxInterface, error)
+pkg syscall/zx/posix/socket, func NewBaseSocketWithCtxInterfaceRequest() (BaseSocketWithCtxInterfaceRequest, *BaseSocketWithCtxInterface, error)
+pkg syscall/zx/posix/socket, func NewDatagramSocketWithCtxInterfaceRequest() (DatagramSocketWithCtxInterfaceRequest, *DatagramSocketWithCtxInterface, error)
+pkg syscall/zx/posix/socket, func NewProviderWithCtxInterfaceRequest() (ProviderWithCtxInterfaceRequest, *ProviderWithCtxInterface, error)
+pkg syscall/zx/posix/socket, func NewStreamSocketWithCtxInterfaceRequest() (StreamSocketWithCtxInterfaceRequest, *StreamSocketWithCtxInterface, error)
+pkg syscall/zx/posix/socket, func NewSynchronousDatagramSocketWithCtxInterfaceRequest() (SynchronousDatagramSocketWithCtxInterfaceRequest, *SynchronousDatagramSocketWithCtxInterface, error)
+pkg syscall/zx/posix/socket, func OptionalUint32WithUnset(Empty) OptionalUint32
+pkg syscall/zx/posix/socket, func OptionalUint32WithValue(uint32) OptionalUint32
+pkg syscall/zx/posix/socket, func OptionalUint8WithUnset(Empty) OptionalUint8
+pkg syscall/zx/posix/socket, func OptionalUint8WithValue(uint8) OptionalUint8
+pkg syscall/zx/posix/socket, func ProviderDatagramSocketDeprecatedResultWithErr(posix.Errno) ProviderDatagramSocketDeprecatedResult
+pkg syscall/zx/posix/socket, func ProviderDatagramSocketDeprecatedResultWithResponse(ProviderDatagramSocketDeprecatedResponse) ProviderDatagramSocketDeprecatedResult
+pkg syscall/zx/posix/socket, func ProviderDatagramSocketResponseWithDatagramSocket(DatagramSocketWithCtxInterface) ProviderDatagramSocketResponse
+pkg syscall/zx/posix/socket, func ProviderDatagramSocketResponseWithSynchronousDatagramSocket(SynchronousDatagramSocketWithCtxInterface) ProviderDatagramSocketResponse
+pkg syscall/zx/posix/socket, func ProviderDatagramSocketResultWithErr(posix.Errno) ProviderDatagramSocketResult
+pkg syscall/zx/posix/socket, func ProviderDatagramSocketResultWithResponse(ProviderDatagramSocketResponse) ProviderDatagramSocketResult
+pkg syscall/zx/posix/socket, func ProviderInterfaceIndexToNameResultWithErr(int32) ProviderInterfaceIndexToNameResult
+pkg syscall/zx/posix/socket, func ProviderInterfaceIndexToNameResultWithResponse(ProviderInterfaceIndexToNameResponse) ProviderInterfaceIndexToNameResult
+pkg syscall/zx/posix/socket, func ProviderInterfaceNameToFlagsResultWithErr(int32) ProviderInterfaceNameToFlagsResult
+pkg syscall/zx/posix/socket, func ProviderInterfaceNameToFlagsResultWithResponse(ProviderInterfaceNameToFlagsResponse) ProviderInterfaceNameToFlagsResult
+pkg syscall/zx/posix/socket, func ProviderInterfaceNameToIndexResultWithErr(int32) ProviderInterfaceNameToIndexResult
+pkg syscall/zx/posix/socket, func ProviderInterfaceNameToIndexResultWithResponse(ProviderInterfaceNameToIndexResponse) ProviderInterfaceNameToIndexResult
+pkg syscall/zx/posix/socket, func ProviderStreamSocketResultWithErr(posix.Errno) ProviderStreamSocketResult
+pkg syscall/zx/posix/socket, func ProviderStreamSocketResultWithResponse(ProviderStreamSocketResponse) ProviderStreamSocketResult
+pkg syscall/zx/posix/socket, func StreamSocketAcceptResultWithErr(posix.Errno) StreamSocketAcceptResult
+pkg syscall/zx/posix/socket, func StreamSocketAcceptResultWithResponse(StreamSocketAcceptResponse) StreamSocketAcceptResult
+pkg syscall/zx/posix/socket, func StreamSocketGetInfoResultWithErr(posix.Errno) StreamSocketGetInfoResult
+pkg syscall/zx/posix/socket, func StreamSocketGetInfoResultWithResponse(StreamSocketGetInfoResponse) StreamSocketGetInfoResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpCongestionResultWithErr(posix.Errno) StreamSocketGetTcpCongestionResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpCongestionResultWithResponse(StreamSocketGetTcpCongestionResponse) StreamSocketGetTcpCongestionResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpCorkResultWithErr(posix.Errno) StreamSocketGetTcpCorkResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpCorkResultWithResponse(StreamSocketGetTcpCorkResponse) StreamSocketGetTcpCorkResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpDeferAcceptResultWithErr(posix.Errno) StreamSocketGetTcpDeferAcceptResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpDeferAcceptResultWithResponse(StreamSocketGetTcpDeferAcceptResponse) StreamSocketGetTcpDeferAcceptResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpInfoResultWithErr(posix.Errno) StreamSocketGetTcpInfoResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpInfoResultWithResponse(StreamSocketGetTcpInfoResponse) StreamSocketGetTcpInfoResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpKeepAliveCountResultWithErr(posix.Errno) StreamSocketGetTcpKeepAliveCountResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpKeepAliveCountResultWithResponse(StreamSocketGetTcpKeepAliveCountResponse) StreamSocketGetTcpKeepAliveCountResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpKeepAliveIdleResultWithErr(posix.Errno) StreamSocketGetTcpKeepAliveIdleResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpKeepAliveIdleResultWithResponse(StreamSocketGetTcpKeepAliveIdleResponse) StreamSocketGetTcpKeepAliveIdleResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpKeepAliveIntervalResultWithErr(posix.Errno) StreamSocketGetTcpKeepAliveIntervalResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpKeepAliveIntervalResultWithResponse(StreamSocketGetTcpKeepAliveIntervalResponse) StreamSocketGetTcpKeepAliveIntervalResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpLingerResultWithErr(posix.Errno) StreamSocketGetTcpLingerResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpLingerResultWithResponse(StreamSocketGetTcpLingerResponse) StreamSocketGetTcpLingerResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpMaxSegmentResultWithErr(posix.Errno) StreamSocketGetTcpMaxSegmentResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpMaxSegmentResultWithResponse(StreamSocketGetTcpMaxSegmentResponse) StreamSocketGetTcpMaxSegmentResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpNoDelayResultWithErr(posix.Errno) StreamSocketGetTcpNoDelayResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpNoDelayResultWithResponse(StreamSocketGetTcpNoDelayResponse) StreamSocketGetTcpNoDelayResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpQuickAckResultWithErr(posix.Errno) StreamSocketGetTcpQuickAckResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpQuickAckResultWithResponse(StreamSocketGetTcpQuickAckResponse) StreamSocketGetTcpQuickAckResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpSynCountResultWithErr(posix.Errno) StreamSocketGetTcpSynCountResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpSynCountResultWithResponse(StreamSocketGetTcpSynCountResponse) StreamSocketGetTcpSynCountResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpUserTimeoutResultWithErr(posix.Errno) StreamSocketGetTcpUserTimeoutResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpUserTimeoutResultWithResponse(StreamSocketGetTcpUserTimeoutResponse) StreamSocketGetTcpUserTimeoutResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpWindowClampResultWithErr(posix.Errno) StreamSocketGetTcpWindowClampResult
+pkg syscall/zx/posix/socket, func StreamSocketGetTcpWindowClampResultWithResponse(StreamSocketGetTcpWindowClampResponse) StreamSocketGetTcpWindowClampResult
+pkg syscall/zx/posix/socket, func StreamSocketListenResultWithErr(posix.Errno) StreamSocketListenResult
+pkg syscall/zx/posix/socket, func StreamSocketListenResultWithResponse(StreamSocketListenResponse) StreamSocketListenResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpCongestionResultWithErr(posix.Errno) StreamSocketSetTcpCongestionResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpCongestionResultWithResponse(StreamSocketSetTcpCongestionResponse) StreamSocketSetTcpCongestionResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpCorkResultWithErr(posix.Errno) StreamSocketSetTcpCorkResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpCorkResultWithResponse(StreamSocketSetTcpCorkResponse) StreamSocketSetTcpCorkResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpDeferAcceptResultWithErr(posix.Errno) StreamSocketSetTcpDeferAcceptResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpDeferAcceptResultWithResponse(StreamSocketSetTcpDeferAcceptResponse) StreamSocketSetTcpDeferAcceptResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpKeepAliveCountResultWithErr(posix.Errno) StreamSocketSetTcpKeepAliveCountResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpKeepAliveCountResultWithResponse(StreamSocketSetTcpKeepAliveCountResponse) StreamSocketSetTcpKeepAliveCountResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpKeepAliveIdleResultWithErr(posix.Errno) StreamSocketSetTcpKeepAliveIdleResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpKeepAliveIdleResultWithResponse(StreamSocketSetTcpKeepAliveIdleResponse) StreamSocketSetTcpKeepAliveIdleResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpKeepAliveIntervalResultWithErr(posix.Errno) StreamSocketSetTcpKeepAliveIntervalResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpKeepAliveIntervalResultWithResponse(StreamSocketSetTcpKeepAliveIntervalResponse) StreamSocketSetTcpKeepAliveIntervalResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpLingerResultWithErr(posix.Errno) StreamSocketSetTcpLingerResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpLingerResultWithResponse(StreamSocketSetTcpLingerResponse) StreamSocketSetTcpLingerResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpMaxSegmentResultWithErr(posix.Errno) StreamSocketSetTcpMaxSegmentResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpMaxSegmentResultWithResponse(StreamSocketSetTcpMaxSegmentResponse) StreamSocketSetTcpMaxSegmentResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpNoDelayResultWithErr(posix.Errno) StreamSocketSetTcpNoDelayResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpNoDelayResultWithResponse(StreamSocketSetTcpNoDelayResponse) StreamSocketSetTcpNoDelayResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpQuickAckResultWithErr(posix.Errno) StreamSocketSetTcpQuickAckResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpQuickAckResultWithResponse(StreamSocketSetTcpQuickAckResponse) StreamSocketSetTcpQuickAckResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpSynCountResultWithErr(posix.Errno) StreamSocketSetTcpSynCountResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpSynCountResultWithResponse(StreamSocketSetTcpSynCountResponse) StreamSocketSetTcpSynCountResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpUserTimeoutResultWithErr(posix.Errno) StreamSocketSetTcpUserTimeoutResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpUserTimeoutResultWithResponse(StreamSocketSetTcpUserTimeoutResponse) StreamSocketSetTcpUserTimeoutResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpWindowClampResultWithErr(posix.Errno) StreamSocketSetTcpWindowClampResult
+pkg syscall/zx/posix/socket, func StreamSocketSetTcpWindowClampResultWithResponse(StreamSocketSetTcpWindowClampResponse) StreamSocketSetTcpWindowClampResult
+pkg syscall/zx/posix/socket, func SynchronousDatagramSocketRecvMsgDeprecatedResultWithErr(posix.Errno) SynchronousDatagramSocketRecvMsgDeprecatedResult
+pkg syscall/zx/posix/socket, func SynchronousDatagramSocketRecvMsgDeprecatedResultWithResponse(SynchronousDatagramSocketRecvMsgDeprecatedResponse) SynchronousDatagramSocketRecvMsgDeprecatedResult
+pkg syscall/zx/posix/socket, func SynchronousDatagramSocketRecvMsgResultWithErr(posix.Errno) SynchronousDatagramSocketRecvMsgResult
+pkg syscall/zx/posix/socket, func SynchronousDatagramSocketRecvMsgResultWithResponse(SynchronousDatagramSocketRecvMsgResponse) SynchronousDatagramSocketRecvMsgResult
+pkg syscall/zx/posix/socket, func SynchronousDatagramSocketSendMsgDeprecatedResultWithErr(posix.Errno) SynchronousDatagramSocketSendMsgDeprecatedResult
+pkg syscall/zx/posix/socket, func SynchronousDatagramSocketSendMsgDeprecatedResultWithResponse(SynchronousDatagramSocketSendMsgDeprecatedResponse) SynchronousDatagramSocketSendMsgDeprecatedResult
+pkg syscall/zx/posix/socket, func SynchronousDatagramSocketSendMsgResultWithErr(posix.Errno) SynchronousDatagramSocketSendMsgResult
+pkg syscall/zx/posix/socket, func SynchronousDatagramSocketSendMsgResultWithResponse(SynchronousDatagramSocketSendMsgResponse) SynchronousDatagramSocketSendMsgResult
+pkg syscall/zx/posix/socket, func TimestampDeprecatedWithMicroseconds(int64) TimestampDeprecated
+pkg syscall/zx/posix/socket, func TimestampDeprecatedWithNanoseconds(int64) TimestampDeprecated
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketEventProxy) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketEventProxy) OnOpen(int32, *io.NodeInfo) error
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketEventProxy) OnRepresentation(io.Representation) error
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketGetInfoDeprecatedResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketGetInfoDeprecatedResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketGetInfoDeprecatedResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketGetInfoDeprecatedResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketGetInfoDeprecatedResult) SetResponse(BaseDatagramSocketGetInfoDeprecatedResponse)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketGetInfoDeprecatedResult) Which() I_baseDatagramSocketGetInfoDeprecatedResultTag
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketGetInfoResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketGetInfoResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketGetInfoResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketGetInfoResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketGetInfoResult) SetResponse(BaseDatagramSocketGetInfoResponse)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketGetInfoResult) Which() I_baseDatagramSocketGetInfoResultTag
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) AddIpMembership(context.Context, IpMulticastMembership) (BaseNetworkSocketAddIpMembershipResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) AddIpv6Membership(context.Context, Ipv6MulticastMembership) (BaseNetworkSocketAddIpv6MembershipResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) Bind(context.Context, net.SocketAddress) (BaseNetworkSocketBindResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) Clone(context.Context, io.OpenFlags, io.NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) Clone2(context.Context, unknown.CloneableWithCtxInterfaceRequest) error
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) Connect(context.Context, net.SocketAddress) (BaseNetworkSocketConnectResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) Describe(context.Context) (io.NodeInfo, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) Disconnect(context.Context) (BaseNetworkSocketDisconnectResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) DropIpMembership(context.Context, IpMulticastMembership) (BaseNetworkSocketDropIpMembershipResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) DropIpv6Membership(context.Context, Ipv6MulticastMembership) (BaseNetworkSocketDropIpv6MembershipResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) ExpectOnOpen(context.Context) (int32, *io.NodeInfo, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) ExpectOnRepresentation(context.Context) (io.Representation, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetAcceptConn(context.Context) (BaseSocketGetAcceptConnResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetAttr(context.Context) (int32, io.NodeAttributes, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetAttributes(context.Context, io.NodeAttributesQuery) (io.Node2GetAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetBindToDevice(context.Context) (BaseSocketGetBindToDeviceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetBroadcast(context.Context) (BaseSocketGetBroadcastResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetConnectionInfo(context.Context) (io.ConnectionInfo, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetError(context.Context) (BaseSocketGetErrorResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetFlags(context.Context) (int32, io.OpenFlags, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetInfo(context.Context) (BaseDatagramSocketGetInfoResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetInfoDeprecated(context.Context) (BaseDatagramSocketGetInfoDeprecatedResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetIpMulticastInterface(context.Context) (BaseNetworkSocketGetIpMulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetIpMulticastLoopback(context.Context) (BaseNetworkSocketGetIpMulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetIpMulticastTtl(context.Context) (BaseNetworkSocketGetIpMulticastTtlResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetIpPacketInfo(context.Context) (BaseNetworkSocketGetIpPacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetIpReceiveTtl(context.Context) (BaseNetworkSocketGetIpReceiveTtlResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetIpReceiveTypeOfService(context.Context) (BaseNetworkSocketGetIpReceiveTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetIpTtl(context.Context) (BaseNetworkSocketGetIpTtlResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetIpTypeOfService(context.Context) (BaseNetworkSocketGetIpTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetIpv6MulticastHops(context.Context) (BaseNetworkSocketGetIpv6MulticastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetIpv6MulticastInterface(context.Context) (BaseNetworkSocketGetIpv6MulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetIpv6MulticastLoopback(context.Context) (BaseNetworkSocketGetIpv6MulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetIpv6Only(context.Context) (BaseNetworkSocketGetIpv6OnlyResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetIpv6ReceiveHopLimit(context.Context) (BaseNetworkSocketGetIpv6ReceiveHopLimitResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetIpv6ReceivePacketInfo(context.Context) (BaseNetworkSocketGetIpv6ReceivePacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetIpv6ReceiveTrafficClass(context.Context) (BaseNetworkSocketGetIpv6ReceiveTrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetIpv6TrafficClass(context.Context) (BaseNetworkSocketGetIpv6TrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetIpv6UnicastHops(context.Context) (BaseNetworkSocketGetIpv6UnicastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetKeepAlive(context.Context) (BaseSocketGetKeepAliveResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetLinger(context.Context) (BaseSocketGetLingerResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetNoCheck(context.Context) (BaseSocketGetNoCheckResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetOutOfBandInline(context.Context) (BaseSocketGetOutOfBandInlineResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetPeerName(context.Context) (BaseNetworkSocketGetPeerNameResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetReceiveBuffer(context.Context) (BaseSocketGetReceiveBufferResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetReuseAddress(context.Context) (BaseSocketGetReuseAddressResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetReusePort(context.Context) (BaseSocketGetReusePortResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetSendBuffer(context.Context) (BaseSocketGetSendBufferResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetSockName(context.Context) (BaseNetworkSocketGetSockNameResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetTimestamp(context.Context) (BaseSocketGetTimestampResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) GetTimestampDeprecated(context.Context) (BaseSocketGetTimestampDeprecatedResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) Query(context.Context) (uint64, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) QueryFilesystem(context.Context) (int32, *io.FilesystemInfo, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) Reopen(context.Context, *io.RightsRequest, zx.Channel) error
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetAttr(context.Context, io.NodeAttributeFlags, io.NodeAttributes) (int32, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetBindToDevice(context.Context, string) (BaseSocketSetBindToDeviceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetBroadcast(context.Context, bool) (BaseSocketSetBroadcastResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetFlags(context.Context, io.OpenFlags) (int32, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetIpMulticastInterface(context.Context, uint64, net.Ipv4Address) (BaseNetworkSocketSetIpMulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetIpMulticastLoopback(context.Context, bool) (BaseNetworkSocketSetIpMulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetIpMulticastTtl(context.Context, OptionalUint8) (BaseNetworkSocketSetIpMulticastTtlResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetIpPacketInfo(context.Context, bool) (BaseNetworkSocketSetIpPacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetIpReceiveTtl(context.Context, bool) (BaseNetworkSocketSetIpReceiveTtlResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetIpReceiveTypeOfService(context.Context, bool) (BaseNetworkSocketSetIpReceiveTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetIpTtl(context.Context, OptionalUint8) (BaseNetworkSocketSetIpTtlResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetIpTypeOfService(context.Context, uint8) (BaseNetworkSocketSetIpTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetIpv6MulticastHops(context.Context, OptionalUint8) (BaseNetworkSocketSetIpv6MulticastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetIpv6MulticastInterface(context.Context, uint64) (BaseNetworkSocketSetIpv6MulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetIpv6MulticastLoopback(context.Context, bool) (BaseNetworkSocketSetIpv6MulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetIpv6Only(context.Context, bool) (BaseNetworkSocketSetIpv6OnlyResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetIpv6ReceiveHopLimit(context.Context, bool) (BaseNetworkSocketSetIpv6ReceiveHopLimitResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetIpv6ReceivePacketInfo(context.Context, bool) (BaseNetworkSocketSetIpv6ReceivePacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetIpv6ReceiveTrafficClass(context.Context, bool) (BaseNetworkSocketSetIpv6ReceiveTrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetIpv6TrafficClass(context.Context, OptionalUint8) (BaseNetworkSocketSetIpv6TrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetIpv6UnicastHops(context.Context, OptionalUint8) (BaseNetworkSocketSetIpv6UnicastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetKeepAlive(context.Context, bool) (BaseSocketSetKeepAliveResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetLinger(context.Context, bool, uint32) (BaseSocketSetLingerResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetNoCheck(context.Context, bool) (BaseSocketSetNoCheckResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetOutOfBandInline(context.Context, bool) (BaseSocketSetOutOfBandInlineResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetReceiveBuffer(context.Context, uint64) (BaseSocketSetReceiveBufferResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetReuseAddress(context.Context, bool) (BaseSocketSetReuseAddressResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetReusePort(context.Context, bool) (BaseSocketSetReusePortResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetSendBuffer(context.Context, uint64) (BaseSocketSetSendBufferResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetTimestamp(context.Context, TimestampOption) (BaseSocketSetTimestampResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) SetTimestampDeprecated(context.Context, TimestampOption) (BaseSocketSetTimestampDeprecatedResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) Shutdown(context.Context, ShutdownMode) (BaseNetworkSocketShutdownResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) Sync(context.Context) (io.Node2SyncResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterface) UpdateAttributes(context.Context, io.MutableNodeAttributes) (io.Node2UpdateAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxTransitionalBase) GetAttributes(context.Context, io.NodeAttributesQuery) (io.Node2GetAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxTransitionalBase) Query(context.Context) (uint64, error)
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxTransitionalBase) Reopen(context.Context, *io.RightsRequest, zx.Channel) error
+pkg syscall/zx/posix/socket, method (*BaseDatagramSocketWithCtxTransitionalBase) UpdateAttributes(context.Context, io.MutableNodeAttributes) (io.Node2UpdateAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketAddIpMembershipResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketAddIpMembershipResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketAddIpMembershipResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketAddIpMembershipResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketAddIpMembershipResult) SetResponse(BaseNetworkSocketAddIpMembershipResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketAddIpMembershipResult) Which() I_baseNetworkSocketAddIpMembershipResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketAddIpv6MembershipResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketAddIpv6MembershipResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketAddIpv6MembershipResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketAddIpv6MembershipResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketAddIpv6MembershipResult) SetResponse(BaseNetworkSocketAddIpv6MembershipResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketAddIpv6MembershipResult) Which() I_baseNetworkSocketAddIpv6MembershipResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketBindResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketBindResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketBindResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketBindResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketBindResult) SetResponse(BaseNetworkSocketBindResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketBindResult) Which() I_baseNetworkSocketBindResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketConnectResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketConnectResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketConnectResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketConnectResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketConnectResult) SetResponse(BaseNetworkSocketConnectResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketConnectResult) Which() I_baseNetworkSocketConnectResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketDisconnectResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketDisconnectResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketDisconnectResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketDisconnectResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketDisconnectResult) SetResponse(BaseNetworkSocketDisconnectResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketDisconnectResult) Which() I_baseNetworkSocketDisconnectResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketDropIpMembershipResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketDropIpMembershipResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketDropIpMembershipResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketDropIpMembershipResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketDropIpMembershipResult) SetResponse(BaseNetworkSocketDropIpMembershipResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketDropIpMembershipResult) Which() I_baseNetworkSocketDropIpMembershipResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketDropIpv6MembershipResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketDropIpv6MembershipResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketDropIpv6MembershipResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketDropIpv6MembershipResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketDropIpv6MembershipResult) SetResponse(BaseNetworkSocketDropIpv6MembershipResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketDropIpv6MembershipResult) Which() I_baseNetworkSocketDropIpv6MembershipResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketEventProxy) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketEventProxy) OnOpen(int32, *io.NodeInfo) error
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketEventProxy) OnRepresentation(io.Representation) error
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpMulticastInterfaceResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpMulticastInterfaceResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpMulticastInterfaceResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpMulticastInterfaceResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpMulticastInterfaceResult) SetResponse(BaseNetworkSocketGetIpMulticastInterfaceResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpMulticastInterfaceResult) Which() I_baseNetworkSocketGetIpMulticastInterfaceResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpMulticastLoopbackResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpMulticastLoopbackResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpMulticastLoopbackResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpMulticastLoopbackResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpMulticastLoopbackResult) SetResponse(BaseNetworkSocketGetIpMulticastLoopbackResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpMulticastLoopbackResult) Which() I_baseNetworkSocketGetIpMulticastLoopbackResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpMulticastTtlResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpMulticastTtlResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpMulticastTtlResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpMulticastTtlResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpMulticastTtlResult) SetResponse(BaseNetworkSocketGetIpMulticastTtlResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpMulticastTtlResult) Which() I_baseNetworkSocketGetIpMulticastTtlResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpPacketInfoResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpPacketInfoResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpPacketInfoResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpPacketInfoResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpPacketInfoResult) SetResponse(BaseNetworkSocketGetIpPacketInfoResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpPacketInfoResult) Which() I_baseNetworkSocketGetIpPacketInfoResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpReceiveTtlResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpReceiveTtlResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpReceiveTtlResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpReceiveTtlResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpReceiveTtlResult) SetResponse(BaseNetworkSocketGetIpReceiveTtlResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpReceiveTtlResult) Which() I_baseNetworkSocketGetIpReceiveTtlResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpReceiveTypeOfServiceResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpReceiveTypeOfServiceResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpReceiveTypeOfServiceResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpReceiveTypeOfServiceResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpReceiveTypeOfServiceResult) SetResponse(BaseNetworkSocketGetIpReceiveTypeOfServiceResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpReceiveTypeOfServiceResult) Which() I_baseNetworkSocketGetIpReceiveTypeOfServiceResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpTtlResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpTtlResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpTtlResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpTtlResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpTtlResult) SetResponse(BaseNetworkSocketGetIpTtlResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpTtlResult) Which() I_baseNetworkSocketGetIpTtlResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpTypeOfServiceResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpTypeOfServiceResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpTypeOfServiceResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpTypeOfServiceResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpTypeOfServiceResult) SetResponse(BaseNetworkSocketGetIpTypeOfServiceResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpTypeOfServiceResult) Which() I_baseNetworkSocketGetIpTypeOfServiceResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6MulticastHopsResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6MulticastHopsResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6MulticastHopsResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6MulticastHopsResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6MulticastHopsResult) SetResponse(BaseNetworkSocketGetIpv6MulticastHopsResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6MulticastHopsResult) Which() I_baseNetworkSocketGetIpv6MulticastHopsResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6MulticastInterfaceResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6MulticastInterfaceResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6MulticastInterfaceResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6MulticastInterfaceResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6MulticastInterfaceResult) SetResponse(BaseNetworkSocketGetIpv6MulticastInterfaceResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6MulticastInterfaceResult) Which() I_baseNetworkSocketGetIpv6MulticastInterfaceResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6MulticastLoopbackResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6MulticastLoopbackResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6MulticastLoopbackResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6MulticastLoopbackResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6MulticastLoopbackResult) SetResponse(BaseNetworkSocketGetIpv6MulticastLoopbackResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6MulticastLoopbackResult) Which() I_baseNetworkSocketGetIpv6MulticastLoopbackResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6OnlyResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6OnlyResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6OnlyResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6OnlyResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6OnlyResult) SetResponse(BaseNetworkSocketGetIpv6OnlyResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6OnlyResult) Which() I_baseNetworkSocketGetIpv6OnlyResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6ReceiveHopLimitResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6ReceiveHopLimitResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6ReceiveHopLimitResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6ReceiveHopLimitResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6ReceiveHopLimitResult) SetResponse(BaseNetworkSocketGetIpv6ReceiveHopLimitResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6ReceiveHopLimitResult) Which() I_baseNetworkSocketGetIpv6ReceiveHopLimitResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6ReceivePacketInfoResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6ReceivePacketInfoResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6ReceivePacketInfoResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6ReceivePacketInfoResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6ReceivePacketInfoResult) SetResponse(BaseNetworkSocketGetIpv6ReceivePacketInfoResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6ReceivePacketInfoResult) Which() I_baseNetworkSocketGetIpv6ReceivePacketInfoResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6ReceiveTrafficClassResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6ReceiveTrafficClassResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6ReceiveTrafficClassResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6ReceiveTrafficClassResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6ReceiveTrafficClassResult) SetResponse(BaseNetworkSocketGetIpv6ReceiveTrafficClassResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6ReceiveTrafficClassResult) Which() I_baseNetworkSocketGetIpv6ReceiveTrafficClassResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6TrafficClassResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6TrafficClassResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6TrafficClassResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6TrafficClassResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6TrafficClassResult) SetResponse(BaseNetworkSocketGetIpv6TrafficClassResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6TrafficClassResult) Which() I_baseNetworkSocketGetIpv6TrafficClassResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6UnicastHopsResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6UnicastHopsResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6UnicastHopsResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6UnicastHopsResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6UnicastHopsResult) SetResponse(BaseNetworkSocketGetIpv6UnicastHopsResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetIpv6UnicastHopsResult) Which() I_baseNetworkSocketGetIpv6UnicastHopsResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetPeerNameResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetPeerNameResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetPeerNameResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetPeerNameResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetPeerNameResult) SetResponse(BaseNetworkSocketGetPeerNameResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetPeerNameResult) Which() I_baseNetworkSocketGetPeerNameResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetSockNameResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetSockNameResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetSockNameResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetSockNameResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetSockNameResult) SetResponse(BaseNetworkSocketGetSockNameResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketGetSockNameResult) Which() I_baseNetworkSocketGetSockNameResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpMulticastInterfaceResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpMulticastInterfaceResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpMulticastInterfaceResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpMulticastInterfaceResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpMulticastInterfaceResult) SetResponse(BaseNetworkSocketSetIpMulticastInterfaceResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpMulticastInterfaceResult) Which() I_baseNetworkSocketSetIpMulticastInterfaceResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpMulticastLoopbackResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpMulticastLoopbackResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpMulticastLoopbackResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpMulticastLoopbackResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpMulticastLoopbackResult) SetResponse(BaseNetworkSocketSetIpMulticastLoopbackResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpMulticastLoopbackResult) Which() I_baseNetworkSocketSetIpMulticastLoopbackResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpMulticastTtlResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpMulticastTtlResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpMulticastTtlResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpMulticastTtlResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpMulticastTtlResult) SetResponse(BaseNetworkSocketSetIpMulticastTtlResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpMulticastTtlResult) Which() I_baseNetworkSocketSetIpMulticastTtlResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpPacketInfoResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpPacketInfoResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpPacketInfoResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpPacketInfoResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpPacketInfoResult) SetResponse(BaseNetworkSocketSetIpPacketInfoResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpPacketInfoResult) Which() I_baseNetworkSocketSetIpPacketInfoResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpReceiveTtlResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpReceiveTtlResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpReceiveTtlResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpReceiveTtlResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpReceiveTtlResult) SetResponse(BaseNetworkSocketSetIpReceiveTtlResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpReceiveTtlResult) Which() I_baseNetworkSocketSetIpReceiveTtlResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpReceiveTypeOfServiceResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpReceiveTypeOfServiceResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpReceiveTypeOfServiceResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpReceiveTypeOfServiceResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpReceiveTypeOfServiceResult) SetResponse(BaseNetworkSocketSetIpReceiveTypeOfServiceResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpReceiveTypeOfServiceResult) Which() I_baseNetworkSocketSetIpReceiveTypeOfServiceResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpTtlResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpTtlResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpTtlResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpTtlResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpTtlResult) SetResponse(BaseNetworkSocketSetIpTtlResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpTtlResult) Which() I_baseNetworkSocketSetIpTtlResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpTypeOfServiceResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpTypeOfServiceResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpTypeOfServiceResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpTypeOfServiceResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpTypeOfServiceResult) SetResponse(BaseNetworkSocketSetIpTypeOfServiceResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpTypeOfServiceResult) Which() I_baseNetworkSocketSetIpTypeOfServiceResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6MulticastHopsResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6MulticastHopsResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6MulticastHopsResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6MulticastHopsResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6MulticastHopsResult) SetResponse(BaseNetworkSocketSetIpv6MulticastHopsResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6MulticastHopsResult) Which() I_baseNetworkSocketSetIpv6MulticastHopsResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6MulticastInterfaceResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6MulticastInterfaceResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6MulticastInterfaceResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6MulticastInterfaceResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6MulticastInterfaceResult) SetResponse(BaseNetworkSocketSetIpv6MulticastInterfaceResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6MulticastInterfaceResult) Which() I_baseNetworkSocketSetIpv6MulticastInterfaceResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6MulticastLoopbackResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6MulticastLoopbackResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6MulticastLoopbackResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6MulticastLoopbackResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6MulticastLoopbackResult) SetResponse(BaseNetworkSocketSetIpv6MulticastLoopbackResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6MulticastLoopbackResult) Which() I_baseNetworkSocketSetIpv6MulticastLoopbackResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6OnlyResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6OnlyResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6OnlyResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6OnlyResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6OnlyResult) SetResponse(BaseNetworkSocketSetIpv6OnlyResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6OnlyResult) Which() I_baseNetworkSocketSetIpv6OnlyResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6ReceiveHopLimitResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6ReceiveHopLimitResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6ReceiveHopLimitResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6ReceiveHopLimitResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6ReceiveHopLimitResult) SetResponse(BaseNetworkSocketSetIpv6ReceiveHopLimitResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6ReceiveHopLimitResult) Which() I_baseNetworkSocketSetIpv6ReceiveHopLimitResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6ReceivePacketInfoResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6ReceivePacketInfoResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6ReceivePacketInfoResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6ReceivePacketInfoResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6ReceivePacketInfoResult) SetResponse(BaseNetworkSocketSetIpv6ReceivePacketInfoResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6ReceivePacketInfoResult) Which() I_baseNetworkSocketSetIpv6ReceivePacketInfoResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6ReceiveTrafficClassResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6ReceiveTrafficClassResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6ReceiveTrafficClassResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6ReceiveTrafficClassResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6ReceiveTrafficClassResult) SetResponse(BaseNetworkSocketSetIpv6ReceiveTrafficClassResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6ReceiveTrafficClassResult) Which() I_baseNetworkSocketSetIpv6ReceiveTrafficClassResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6TrafficClassResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6TrafficClassResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6TrafficClassResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6TrafficClassResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6TrafficClassResult) SetResponse(BaseNetworkSocketSetIpv6TrafficClassResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6TrafficClassResult) Which() I_baseNetworkSocketSetIpv6TrafficClassResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6UnicastHopsResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6UnicastHopsResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6UnicastHopsResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6UnicastHopsResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6UnicastHopsResult) SetResponse(BaseNetworkSocketSetIpv6UnicastHopsResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketSetIpv6UnicastHopsResult) Which() I_baseNetworkSocketSetIpv6UnicastHopsResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketShutdownResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketShutdownResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketShutdownResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketShutdownResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketShutdownResult) SetResponse(BaseNetworkSocketShutdownResponse)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketShutdownResult) Which() I_baseNetworkSocketShutdownResultTag
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) AddIpMembership(context.Context, IpMulticastMembership) (BaseNetworkSocketAddIpMembershipResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) AddIpv6Membership(context.Context, Ipv6MulticastMembership) (BaseNetworkSocketAddIpv6MembershipResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) Bind(context.Context, net.SocketAddress) (BaseNetworkSocketBindResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) Clone(context.Context, io.OpenFlags, io.NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) Clone2(context.Context, unknown.CloneableWithCtxInterfaceRequest) error
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) Connect(context.Context, net.SocketAddress) (BaseNetworkSocketConnectResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) Describe(context.Context) (io.NodeInfo, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) Disconnect(context.Context) (BaseNetworkSocketDisconnectResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) DropIpMembership(context.Context, IpMulticastMembership) (BaseNetworkSocketDropIpMembershipResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) DropIpv6Membership(context.Context, Ipv6MulticastMembership) (BaseNetworkSocketDropIpv6MembershipResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) ExpectOnOpen(context.Context) (int32, *io.NodeInfo, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) ExpectOnRepresentation(context.Context) (io.Representation, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetAcceptConn(context.Context) (BaseSocketGetAcceptConnResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetAttr(context.Context) (int32, io.NodeAttributes, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetAttributes(context.Context, io.NodeAttributesQuery) (io.Node2GetAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetBindToDevice(context.Context) (BaseSocketGetBindToDeviceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetBroadcast(context.Context) (BaseSocketGetBroadcastResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetConnectionInfo(context.Context) (io.ConnectionInfo, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetError(context.Context) (BaseSocketGetErrorResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetFlags(context.Context) (int32, io.OpenFlags, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetIpMulticastInterface(context.Context) (BaseNetworkSocketGetIpMulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetIpMulticastLoopback(context.Context) (BaseNetworkSocketGetIpMulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetIpMulticastTtl(context.Context) (BaseNetworkSocketGetIpMulticastTtlResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetIpPacketInfo(context.Context) (BaseNetworkSocketGetIpPacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetIpReceiveTtl(context.Context) (BaseNetworkSocketGetIpReceiveTtlResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetIpReceiveTypeOfService(context.Context) (BaseNetworkSocketGetIpReceiveTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetIpTtl(context.Context) (BaseNetworkSocketGetIpTtlResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetIpTypeOfService(context.Context) (BaseNetworkSocketGetIpTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetIpv6MulticastHops(context.Context) (BaseNetworkSocketGetIpv6MulticastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetIpv6MulticastInterface(context.Context) (BaseNetworkSocketGetIpv6MulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetIpv6MulticastLoopback(context.Context) (BaseNetworkSocketGetIpv6MulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetIpv6Only(context.Context) (BaseNetworkSocketGetIpv6OnlyResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetIpv6ReceiveHopLimit(context.Context) (BaseNetworkSocketGetIpv6ReceiveHopLimitResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetIpv6ReceivePacketInfo(context.Context) (BaseNetworkSocketGetIpv6ReceivePacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetIpv6ReceiveTrafficClass(context.Context) (BaseNetworkSocketGetIpv6ReceiveTrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetIpv6TrafficClass(context.Context) (BaseNetworkSocketGetIpv6TrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetIpv6UnicastHops(context.Context) (BaseNetworkSocketGetIpv6UnicastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetKeepAlive(context.Context) (BaseSocketGetKeepAliveResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetLinger(context.Context) (BaseSocketGetLingerResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetNoCheck(context.Context) (BaseSocketGetNoCheckResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetOutOfBandInline(context.Context) (BaseSocketGetOutOfBandInlineResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetPeerName(context.Context) (BaseNetworkSocketGetPeerNameResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetReceiveBuffer(context.Context) (BaseSocketGetReceiveBufferResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetReuseAddress(context.Context) (BaseSocketGetReuseAddressResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetReusePort(context.Context) (BaseSocketGetReusePortResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetSendBuffer(context.Context) (BaseSocketGetSendBufferResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetSockName(context.Context) (BaseNetworkSocketGetSockNameResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetTimestamp(context.Context) (BaseSocketGetTimestampResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) GetTimestampDeprecated(context.Context) (BaseSocketGetTimestampDeprecatedResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) Query(context.Context) (uint64, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) QueryFilesystem(context.Context) (int32, *io.FilesystemInfo, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) Reopen(context.Context, *io.RightsRequest, zx.Channel) error
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetAttr(context.Context, io.NodeAttributeFlags, io.NodeAttributes) (int32, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetBindToDevice(context.Context, string) (BaseSocketSetBindToDeviceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetBroadcast(context.Context, bool) (BaseSocketSetBroadcastResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetFlags(context.Context, io.OpenFlags) (int32, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetIpMulticastInterface(context.Context, uint64, net.Ipv4Address) (BaseNetworkSocketSetIpMulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetIpMulticastLoopback(context.Context, bool) (BaseNetworkSocketSetIpMulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetIpMulticastTtl(context.Context, OptionalUint8) (BaseNetworkSocketSetIpMulticastTtlResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetIpPacketInfo(context.Context, bool) (BaseNetworkSocketSetIpPacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetIpReceiveTtl(context.Context, bool) (BaseNetworkSocketSetIpReceiveTtlResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetIpReceiveTypeOfService(context.Context, bool) (BaseNetworkSocketSetIpReceiveTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetIpTtl(context.Context, OptionalUint8) (BaseNetworkSocketSetIpTtlResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetIpTypeOfService(context.Context, uint8) (BaseNetworkSocketSetIpTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetIpv6MulticastHops(context.Context, OptionalUint8) (BaseNetworkSocketSetIpv6MulticastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetIpv6MulticastInterface(context.Context, uint64) (BaseNetworkSocketSetIpv6MulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetIpv6MulticastLoopback(context.Context, bool) (BaseNetworkSocketSetIpv6MulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetIpv6Only(context.Context, bool) (BaseNetworkSocketSetIpv6OnlyResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetIpv6ReceiveHopLimit(context.Context, bool) (BaseNetworkSocketSetIpv6ReceiveHopLimitResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetIpv6ReceivePacketInfo(context.Context, bool) (BaseNetworkSocketSetIpv6ReceivePacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetIpv6ReceiveTrafficClass(context.Context, bool) (BaseNetworkSocketSetIpv6ReceiveTrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetIpv6TrafficClass(context.Context, OptionalUint8) (BaseNetworkSocketSetIpv6TrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetIpv6UnicastHops(context.Context, OptionalUint8) (BaseNetworkSocketSetIpv6UnicastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetKeepAlive(context.Context, bool) (BaseSocketSetKeepAliveResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetLinger(context.Context, bool, uint32) (BaseSocketSetLingerResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetNoCheck(context.Context, bool) (BaseSocketSetNoCheckResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetOutOfBandInline(context.Context, bool) (BaseSocketSetOutOfBandInlineResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetReceiveBuffer(context.Context, uint64) (BaseSocketSetReceiveBufferResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetReuseAddress(context.Context, bool) (BaseSocketSetReuseAddressResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetReusePort(context.Context, bool) (BaseSocketSetReusePortResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetSendBuffer(context.Context, uint64) (BaseSocketSetSendBufferResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetTimestamp(context.Context, TimestampOption) (BaseSocketSetTimestampResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) SetTimestampDeprecated(context.Context, TimestampOption) (BaseSocketSetTimestampDeprecatedResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) Shutdown(context.Context, ShutdownMode) (BaseNetworkSocketShutdownResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) Sync(context.Context) (io.Node2SyncResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterface) UpdateAttributes(context.Context, io.MutableNodeAttributes) (io.Node2UpdateAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxTransitionalBase) GetAttributes(context.Context, io.NodeAttributesQuery) (io.Node2GetAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxTransitionalBase) Query(context.Context) (uint64, error)
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxTransitionalBase) Reopen(context.Context, *io.RightsRequest, zx.Channel) error
+pkg syscall/zx/posix/socket, method (*BaseNetworkSocketWithCtxTransitionalBase) UpdateAttributes(context.Context, io.MutableNodeAttributes) (io.Node2UpdateAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketEventProxy) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*BaseSocketEventProxy) OnOpen(int32, *io.NodeInfo) error
+pkg syscall/zx/posix/socket, method (*BaseSocketEventProxy) OnRepresentation(io.Representation) error
+pkg syscall/zx/posix/socket, method (*BaseSocketGetAcceptConnResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetAcceptConnResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetAcceptConnResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketGetAcceptConnResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetAcceptConnResult) SetResponse(BaseSocketGetAcceptConnResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetAcceptConnResult) Which() I_baseSocketGetAcceptConnResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketGetBindToDeviceResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetBindToDeviceResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetBindToDeviceResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketGetBindToDeviceResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetBindToDeviceResult) SetResponse(BaseSocketGetBindToDeviceResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetBindToDeviceResult) Which() I_baseSocketGetBindToDeviceResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketGetBroadcastResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetBroadcastResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetBroadcastResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketGetBroadcastResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetBroadcastResult) SetResponse(BaseSocketGetBroadcastResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetBroadcastResult) Which() I_baseSocketGetBroadcastResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketGetErrorResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetErrorResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetErrorResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketGetErrorResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetErrorResult) SetResponse(BaseSocketGetErrorResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetErrorResult) Which() I_baseSocketGetErrorResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketGetKeepAliveResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetKeepAliveResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetKeepAliveResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketGetKeepAliveResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetKeepAliveResult) SetResponse(BaseSocketGetKeepAliveResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetKeepAliveResult) Which() I_baseSocketGetKeepAliveResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketGetLingerResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetLingerResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetLingerResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketGetLingerResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetLingerResult) SetResponse(BaseSocketGetLingerResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetLingerResult) Which() I_baseSocketGetLingerResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketGetNoCheckResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetNoCheckResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetNoCheckResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketGetNoCheckResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetNoCheckResult) SetResponse(BaseSocketGetNoCheckResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetNoCheckResult) Which() I_baseSocketGetNoCheckResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketGetOutOfBandInlineResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetOutOfBandInlineResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetOutOfBandInlineResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketGetOutOfBandInlineResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetOutOfBandInlineResult) SetResponse(BaseSocketGetOutOfBandInlineResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetOutOfBandInlineResult) Which() I_baseSocketGetOutOfBandInlineResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketGetReceiveBufferResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetReceiveBufferResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetReceiveBufferResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketGetReceiveBufferResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetReceiveBufferResult) SetResponse(BaseSocketGetReceiveBufferResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetReceiveBufferResult) Which() I_baseSocketGetReceiveBufferResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketGetReuseAddressResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetReuseAddressResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetReuseAddressResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketGetReuseAddressResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetReuseAddressResult) SetResponse(BaseSocketGetReuseAddressResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetReuseAddressResult) Which() I_baseSocketGetReuseAddressResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketGetReusePortResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetReusePortResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetReusePortResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketGetReusePortResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetReusePortResult) SetResponse(BaseSocketGetReusePortResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetReusePortResult) Which() I_baseSocketGetReusePortResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketGetSendBufferResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetSendBufferResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetSendBufferResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketGetSendBufferResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetSendBufferResult) SetResponse(BaseSocketGetSendBufferResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetSendBufferResult) Which() I_baseSocketGetSendBufferResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketGetTimestampDeprecatedResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetTimestampDeprecatedResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetTimestampDeprecatedResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketGetTimestampDeprecatedResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetTimestampDeprecatedResult) SetResponse(BaseSocketGetTimestampDeprecatedResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetTimestampDeprecatedResult) Which() I_baseSocketGetTimestampDeprecatedResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketGetTimestampResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetTimestampResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketGetTimestampResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketGetTimestampResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetTimestampResult) SetResponse(BaseSocketGetTimestampResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketGetTimestampResult) Which() I_baseSocketGetTimestampResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketSetBindToDeviceResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetBindToDeviceResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetBindToDeviceResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketSetBindToDeviceResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetBindToDeviceResult) SetResponse(BaseSocketSetBindToDeviceResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetBindToDeviceResult) Which() I_baseSocketSetBindToDeviceResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketSetBroadcastResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetBroadcastResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetBroadcastResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketSetBroadcastResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetBroadcastResult) SetResponse(BaseSocketSetBroadcastResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetBroadcastResult) Which() I_baseSocketSetBroadcastResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketSetKeepAliveResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetKeepAliveResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetKeepAliveResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketSetKeepAliveResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetKeepAliveResult) SetResponse(BaseSocketSetKeepAliveResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetKeepAliveResult) Which() I_baseSocketSetKeepAliveResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketSetLingerResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetLingerResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetLingerResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketSetLingerResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetLingerResult) SetResponse(BaseSocketSetLingerResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetLingerResult) Which() I_baseSocketSetLingerResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketSetNoCheckResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetNoCheckResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetNoCheckResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketSetNoCheckResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetNoCheckResult) SetResponse(BaseSocketSetNoCheckResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetNoCheckResult) Which() I_baseSocketSetNoCheckResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketSetOutOfBandInlineResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetOutOfBandInlineResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetOutOfBandInlineResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketSetOutOfBandInlineResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetOutOfBandInlineResult) SetResponse(BaseSocketSetOutOfBandInlineResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetOutOfBandInlineResult) Which() I_baseSocketSetOutOfBandInlineResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketSetReceiveBufferResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetReceiveBufferResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetReceiveBufferResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketSetReceiveBufferResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetReceiveBufferResult) SetResponse(BaseSocketSetReceiveBufferResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetReceiveBufferResult) Which() I_baseSocketSetReceiveBufferResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketSetReuseAddressResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetReuseAddressResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetReuseAddressResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketSetReuseAddressResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetReuseAddressResult) SetResponse(BaseSocketSetReuseAddressResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetReuseAddressResult) Which() I_baseSocketSetReuseAddressResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketSetReusePortResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetReusePortResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetReusePortResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketSetReusePortResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetReusePortResult) SetResponse(BaseSocketSetReusePortResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetReusePortResult) Which() I_baseSocketSetReusePortResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketSetSendBufferResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetSendBufferResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetSendBufferResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketSetSendBufferResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetSendBufferResult) SetResponse(BaseSocketSetSendBufferResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetSendBufferResult) Which() I_baseSocketSetSendBufferResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketSetTimestampDeprecatedResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetTimestampDeprecatedResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetTimestampDeprecatedResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketSetTimestampDeprecatedResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetTimestampDeprecatedResult) SetResponse(BaseSocketSetTimestampDeprecatedResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetTimestampDeprecatedResult) Which() I_baseSocketSetTimestampDeprecatedResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketSetTimestampResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetTimestampResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*BaseSocketSetTimestampResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*BaseSocketSetTimestampResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetTimestampResult) SetResponse(BaseSocketSetTimestampResponse)
+pkg syscall/zx/posix/socket, method (*BaseSocketSetTimestampResult) Which() I_baseSocketSetTimestampResultTag
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) Clone(context.Context, io.OpenFlags, io.NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) Clone2(context.Context, unknown.CloneableWithCtxInterfaceRequest) error
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) Describe(context.Context) (io.NodeInfo, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) ExpectOnOpen(context.Context) (int32, *io.NodeInfo, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) ExpectOnRepresentation(context.Context) (io.Representation, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) GetAcceptConn(context.Context) (BaseSocketGetAcceptConnResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) GetAttr(context.Context) (int32, io.NodeAttributes, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) GetAttributes(context.Context, io.NodeAttributesQuery) (io.Node2GetAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) GetBindToDevice(context.Context) (BaseSocketGetBindToDeviceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) GetBroadcast(context.Context) (BaseSocketGetBroadcastResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) GetConnectionInfo(context.Context) (io.ConnectionInfo, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) GetError(context.Context) (BaseSocketGetErrorResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) GetFlags(context.Context) (int32, io.OpenFlags, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) GetKeepAlive(context.Context) (BaseSocketGetKeepAliveResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) GetLinger(context.Context) (BaseSocketGetLingerResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) GetNoCheck(context.Context) (BaseSocketGetNoCheckResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) GetOutOfBandInline(context.Context) (BaseSocketGetOutOfBandInlineResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) GetReceiveBuffer(context.Context) (BaseSocketGetReceiveBufferResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) GetReuseAddress(context.Context) (BaseSocketGetReuseAddressResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) GetReusePort(context.Context) (BaseSocketGetReusePortResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) GetSendBuffer(context.Context) (BaseSocketGetSendBufferResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) GetTimestamp(context.Context) (BaseSocketGetTimestampResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) GetTimestampDeprecated(context.Context) (BaseSocketGetTimestampDeprecatedResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) Query(context.Context) (uint64, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) QueryFilesystem(context.Context) (int32, *io.FilesystemInfo, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) Reopen(context.Context, *io.RightsRequest, zx.Channel) error
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) SetAttr(context.Context, io.NodeAttributeFlags, io.NodeAttributes) (int32, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) SetBindToDevice(context.Context, string) (BaseSocketSetBindToDeviceResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) SetBroadcast(context.Context, bool) (BaseSocketSetBroadcastResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) SetFlags(context.Context, io.OpenFlags) (int32, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) SetKeepAlive(context.Context, bool) (BaseSocketSetKeepAliveResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) SetLinger(context.Context, bool, uint32) (BaseSocketSetLingerResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) SetNoCheck(context.Context, bool) (BaseSocketSetNoCheckResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) SetOutOfBandInline(context.Context, bool) (BaseSocketSetOutOfBandInlineResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) SetReceiveBuffer(context.Context, uint64) (BaseSocketSetReceiveBufferResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) SetReuseAddress(context.Context, bool) (BaseSocketSetReuseAddressResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) SetReusePort(context.Context, bool) (BaseSocketSetReusePortResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) SetSendBuffer(context.Context, uint64) (BaseSocketSetSendBufferResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) SetTimestamp(context.Context, TimestampOption) (BaseSocketSetTimestampResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) SetTimestampDeprecated(context.Context, TimestampOption) (BaseSocketSetTimestampDeprecatedResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) Sync(context.Context) (io.Node2SyncResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterface) UpdateAttributes(context.Context, io.MutableNodeAttributes) (io.Node2UpdateAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxTransitionalBase) GetAttributes(context.Context, io.NodeAttributesQuery) (io.Node2GetAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxTransitionalBase) Query(context.Context) (uint64, error)
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxTransitionalBase) Reopen(context.Context, *io.RightsRequest, zx.Channel) error
+pkg syscall/zx/posix/socket, method (*BaseSocketWithCtxTransitionalBase) UpdateAttributes(context.Context, io.MutableNodeAttributes) (io.Node2UpdateAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketDescribe2Response) ClearRxMetaBufSize()
+pkg syscall/zx/posix/socket, method (*DatagramSocketDescribe2Response) ClearSocket()
+pkg syscall/zx/posix/socket, method (*DatagramSocketDescribe2Response) ClearTxMetaBufSize()
+pkg syscall/zx/posix/socket, method (*DatagramSocketDescribe2Response) GetRxMetaBufSize() uint64
+pkg syscall/zx/posix/socket, method (*DatagramSocketDescribe2Response) GetRxMetaBufSizeWithDefault(uint64) uint64
+pkg syscall/zx/posix/socket, method (*DatagramSocketDescribe2Response) GetSocket() zx.Socket
+pkg syscall/zx/posix/socket, method (*DatagramSocketDescribe2Response) GetSocketWithDefault(zx.Socket) zx.Socket
+pkg syscall/zx/posix/socket, method (*DatagramSocketDescribe2Response) GetTxMetaBufSize() uint64
+pkg syscall/zx/posix/socket, method (*DatagramSocketDescribe2Response) GetTxMetaBufSizeWithDefault(uint64) uint64
+pkg syscall/zx/posix/socket, method (*DatagramSocketDescribe2Response) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*DatagramSocketDescribe2Response) HasRxMetaBufSize() bool
+pkg syscall/zx/posix/socket, method (*DatagramSocketDescribe2Response) HasSocket() bool
+pkg syscall/zx/posix/socket, method (*DatagramSocketDescribe2Response) HasTxMetaBufSize() bool
+pkg syscall/zx/posix/socket, method (*DatagramSocketDescribe2Response) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*DatagramSocketDescribe2Response) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*DatagramSocketDescribe2Response) SetRxMetaBufSize(uint64)
+pkg syscall/zx/posix/socket, method (*DatagramSocketDescribe2Response) SetSocket(zx.Socket)
+pkg syscall/zx/posix/socket, method (*DatagramSocketDescribe2Response) SetTxMetaBufSize(uint64)
+pkg syscall/zx/posix/socket, method (*DatagramSocketEventProxy) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*DatagramSocketEventProxy) OnOpen(int32, *io.NodeInfo) error
+pkg syscall/zx/posix/socket, method (*DatagramSocketEventProxy) OnRepresentation(io.Representation) error
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvControlData) ClearNetwork()
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvControlData) GetNetwork() NetworkSocketRecvControlData
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvControlData) GetNetworkWithDefault(NetworkSocketRecvControlData) NetworkSocketRecvControlData
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvControlData) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvControlData) HasNetwork() bool
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvControlData) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvControlData) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvControlData) SetNetwork(NetworkSocketRecvControlData)
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResponse) ClearRequests()
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResponse) ClearTimestamp()
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResponse) ClearValidity()
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResponse) GetRequests() CmsgRequests
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResponse) GetRequestsWithDefault(CmsgRequests) CmsgRequests
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResponse) GetTimestamp() TimestampOption
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResponse) GetTimestampWithDefault(TimestampOption) TimestampOption
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResponse) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResponse) GetValidity() zx.Handle
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResponse) GetValidityWithDefault(zx.Handle) zx.Handle
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResponse) HasRequests() bool
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResponse) HasTimestamp() bool
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResponse) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResponse) HasValidity() bool
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResponse) SetRequests(CmsgRequests)
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResponse) SetTimestamp(TimestampOption)
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResponse) SetValidity(zx.Handle)
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResult) SetResponse(DatagramSocketRecvMsgPostflightResponse)
+pkg syscall/zx/posix/socket, method (*DatagramSocketRecvMsgPostflightResult) Which() I_datagramSocketRecvMsgPostflightResultTag
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendControlData) ClearNetwork()
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendControlData) GetNetwork() NetworkSocketSendControlData
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendControlData) GetNetworkWithDefault(NetworkSocketSendControlData) NetworkSocketSendControlData
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendControlData) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendControlData) HasNetwork() bool
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendControlData) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendControlData) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendControlData) SetNetwork(NetworkSocketSendControlData)
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightRequest) ClearTo()
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightRequest) GetTo() net.SocketAddress
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightRequest) GetToWithDefault(net.SocketAddress) net.SocketAddress
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightRequest) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightRequest) HasTo() bool
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightRequest) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightRequest) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightRequest) SetTo(net.SocketAddress)
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResponse) ClearMaximumSize()
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResponse) ClearTo()
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResponse) ClearValidity()
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResponse) GetMaximumSize() uint32
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResponse) GetMaximumSizeWithDefault(uint32) uint32
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResponse) GetTo() net.SocketAddress
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResponse) GetToWithDefault(net.SocketAddress) net.SocketAddress
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResponse) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResponse) GetValidity() []zx.Handle
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResponse) GetValidityWithDefault([]zx.Handle) []zx.Handle
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResponse) HasMaximumSize() bool
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResponse) HasTo() bool
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResponse) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResponse) HasValidity() bool
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResponse) SetMaximumSize(uint32)
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResponse) SetTo(net.SocketAddress)
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResponse) SetValidity([]zx.Handle)
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResult) SetResponse(DatagramSocketSendMsgPreflightResponse)
+pkg syscall/zx/posix/socket, method (*DatagramSocketSendMsgPreflightResult) Which() I_datagramSocketSendMsgPreflightResultTag
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) AddIpMembership(context.Context, IpMulticastMembership) (BaseNetworkSocketAddIpMembershipResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) AddIpv6Membership(context.Context, Ipv6MulticastMembership) (BaseNetworkSocketAddIpv6MembershipResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) Bind(context.Context, net.SocketAddress) (BaseNetworkSocketBindResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) Clone(context.Context, io.OpenFlags, io.NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) Clone2(context.Context, unknown.CloneableWithCtxInterfaceRequest) error
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) Connect(context.Context, net.SocketAddress) (BaseNetworkSocketConnectResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) Describe(context.Context) (io.NodeInfo, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) Describe2(context.Context) (DatagramSocketDescribe2Response, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) Disconnect(context.Context) (BaseNetworkSocketDisconnectResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) DropIpMembership(context.Context, IpMulticastMembership) (BaseNetworkSocketDropIpMembershipResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) DropIpv6Membership(context.Context, Ipv6MulticastMembership) (BaseNetworkSocketDropIpv6MembershipResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) ExpectOnOpen(context.Context) (int32, *io.NodeInfo, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) ExpectOnRepresentation(context.Context) (io.Representation, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetAcceptConn(context.Context) (BaseSocketGetAcceptConnResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetAttr(context.Context) (int32, io.NodeAttributes, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetAttributes(context.Context, io.NodeAttributesQuery) (io.Node2GetAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetBindToDevice(context.Context) (BaseSocketGetBindToDeviceResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetBroadcast(context.Context) (BaseSocketGetBroadcastResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetConnectionInfo(context.Context) (io.ConnectionInfo, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetError(context.Context) (BaseSocketGetErrorResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetFlags(context.Context) (int32, io.OpenFlags, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetInfo(context.Context) (BaseDatagramSocketGetInfoResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetInfoDeprecated(context.Context) (BaseDatagramSocketGetInfoDeprecatedResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetIpMulticastInterface(context.Context) (BaseNetworkSocketGetIpMulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetIpMulticastLoopback(context.Context) (BaseNetworkSocketGetIpMulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetIpMulticastTtl(context.Context) (BaseNetworkSocketGetIpMulticastTtlResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetIpPacketInfo(context.Context) (BaseNetworkSocketGetIpPacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetIpReceiveTtl(context.Context) (BaseNetworkSocketGetIpReceiveTtlResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetIpReceiveTypeOfService(context.Context) (BaseNetworkSocketGetIpReceiveTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetIpTtl(context.Context) (BaseNetworkSocketGetIpTtlResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetIpTypeOfService(context.Context) (BaseNetworkSocketGetIpTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetIpv6MulticastHops(context.Context) (BaseNetworkSocketGetIpv6MulticastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetIpv6MulticastInterface(context.Context) (BaseNetworkSocketGetIpv6MulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetIpv6MulticastLoopback(context.Context) (BaseNetworkSocketGetIpv6MulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetIpv6Only(context.Context) (BaseNetworkSocketGetIpv6OnlyResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetIpv6ReceiveHopLimit(context.Context) (BaseNetworkSocketGetIpv6ReceiveHopLimitResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetIpv6ReceivePacketInfo(context.Context) (BaseNetworkSocketGetIpv6ReceivePacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetIpv6ReceiveTrafficClass(context.Context) (BaseNetworkSocketGetIpv6ReceiveTrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetIpv6TrafficClass(context.Context) (BaseNetworkSocketGetIpv6TrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetIpv6UnicastHops(context.Context) (BaseNetworkSocketGetIpv6UnicastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetKeepAlive(context.Context) (BaseSocketGetKeepAliveResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetLinger(context.Context) (BaseSocketGetLingerResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetNoCheck(context.Context) (BaseSocketGetNoCheckResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetOutOfBandInline(context.Context) (BaseSocketGetOutOfBandInlineResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetPeerName(context.Context) (BaseNetworkSocketGetPeerNameResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetReceiveBuffer(context.Context) (BaseSocketGetReceiveBufferResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetReuseAddress(context.Context) (BaseSocketGetReuseAddressResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetReusePort(context.Context) (BaseSocketGetReusePortResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetSendBuffer(context.Context) (BaseSocketGetSendBufferResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetSockName(context.Context) (BaseNetworkSocketGetSockNameResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetTimestamp(context.Context) (BaseSocketGetTimestampResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) GetTimestampDeprecated(context.Context) (BaseSocketGetTimestampDeprecatedResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) Query(context.Context) (uint64, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) QueryFilesystem(context.Context) (int32, *io.FilesystemInfo, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) RecvMsgPostflight(context.Context) (DatagramSocketRecvMsgPostflightResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) Reopen(context.Context, *io.RightsRequest, zx.Channel) error
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SendMsgPreflight(context.Context, DatagramSocketSendMsgPreflightRequest) (DatagramSocketSendMsgPreflightResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetAttr(context.Context, io.NodeAttributeFlags, io.NodeAttributes) (int32, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetBindToDevice(context.Context, string) (BaseSocketSetBindToDeviceResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetBroadcast(context.Context, bool) (BaseSocketSetBroadcastResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetFlags(context.Context, io.OpenFlags) (int32, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetIpMulticastInterface(context.Context, uint64, net.Ipv4Address) (BaseNetworkSocketSetIpMulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetIpMulticastLoopback(context.Context, bool) (BaseNetworkSocketSetIpMulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetIpMulticastTtl(context.Context, OptionalUint8) (BaseNetworkSocketSetIpMulticastTtlResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetIpPacketInfo(context.Context, bool) (BaseNetworkSocketSetIpPacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetIpReceiveTtl(context.Context, bool) (BaseNetworkSocketSetIpReceiveTtlResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetIpReceiveTypeOfService(context.Context, bool) (BaseNetworkSocketSetIpReceiveTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetIpTtl(context.Context, OptionalUint8) (BaseNetworkSocketSetIpTtlResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetIpTypeOfService(context.Context, uint8) (BaseNetworkSocketSetIpTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetIpv6MulticastHops(context.Context, OptionalUint8) (BaseNetworkSocketSetIpv6MulticastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetIpv6MulticastInterface(context.Context, uint64) (BaseNetworkSocketSetIpv6MulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetIpv6MulticastLoopback(context.Context, bool) (BaseNetworkSocketSetIpv6MulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetIpv6Only(context.Context, bool) (BaseNetworkSocketSetIpv6OnlyResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetIpv6ReceiveHopLimit(context.Context, bool) (BaseNetworkSocketSetIpv6ReceiveHopLimitResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetIpv6ReceivePacketInfo(context.Context, bool) (BaseNetworkSocketSetIpv6ReceivePacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetIpv6ReceiveTrafficClass(context.Context, bool) (BaseNetworkSocketSetIpv6ReceiveTrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetIpv6TrafficClass(context.Context, OptionalUint8) (BaseNetworkSocketSetIpv6TrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetIpv6UnicastHops(context.Context, OptionalUint8) (BaseNetworkSocketSetIpv6UnicastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetKeepAlive(context.Context, bool) (BaseSocketSetKeepAliveResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetLinger(context.Context, bool, uint32) (BaseSocketSetLingerResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetNoCheck(context.Context, bool) (BaseSocketSetNoCheckResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetOutOfBandInline(context.Context, bool) (BaseSocketSetOutOfBandInlineResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetReceiveBuffer(context.Context, uint64) (BaseSocketSetReceiveBufferResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetReuseAddress(context.Context, bool) (BaseSocketSetReuseAddressResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetReusePort(context.Context, bool) (BaseSocketSetReusePortResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetSendBuffer(context.Context, uint64) (BaseSocketSetSendBufferResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetTimestamp(context.Context, TimestampOption) (BaseSocketSetTimestampResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) SetTimestampDeprecated(context.Context, TimestampOption) (BaseSocketSetTimestampDeprecatedResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) Shutdown(context.Context, ShutdownMode) (BaseNetworkSocketShutdownResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) Sync(context.Context) (io.Node2SyncResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterface) UpdateAttributes(context.Context, io.MutableNodeAttributes) (io.Node2UpdateAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxTransitionalBase) GetAttributes(context.Context, io.NodeAttributesQuery) (io.Node2GetAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxTransitionalBase) Query(context.Context) (uint64, error)
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxTransitionalBase) Reopen(context.Context, *io.RightsRequest, zx.Channel) error
+pkg syscall/zx/posix/socket, method (*DatagramSocketWithCtxTransitionalBase) UpdateAttributes(context.Context, io.MutableNodeAttributes) (io.Node2UpdateAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*Empty) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) ClearAddresses()
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) ClearId()
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) ClearInterfaceFlags()
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) ClearName()
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) GetAddresses() []net.Subnet
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) GetAddressesWithDefault([]net.Subnet) []net.Subnet
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) GetId() uint64
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) GetIdWithDefault(uint64) uint64
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) GetInterfaceFlags() InterfaceFlags
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) GetInterfaceFlagsWithDefault(InterfaceFlags) InterfaceFlags
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) GetName() string
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) GetNameWithDefault(string) string
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) HasAddresses() bool
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) HasId() bool
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) HasInterfaceFlags() bool
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) HasName() bool
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) SetAddresses([]net.Subnet)
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) SetId(uint64)
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) SetInterfaceFlags(InterfaceFlags)
+pkg syscall/zx/posix/socket, method (*InterfaceAddresses) SetName(string)
+pkg syscall/zx/posix/socket, method (*IpMulticastMembership) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*IpRecvControlData) ClearTos()
+pkg syscall/zx/posix/socket, method (*IpRecvControlData) ClearTtl()
+pkg syscall/zx/posix/socket, method (*IpRecvControlData) GetTos() uint8
+pkg syscall/zx/posix/socket, method (*IpRecvControlData) GetTosWithDefault(uint8) uint8
+pkg syscall/zx/posix/socket, method (*IpRecvControlData) GetTtl() uint8
+pkg syscall/zx/posix/socket, method (*IpRecvControlData) GetTtlWithDefault(uint8) uint8
+pkg syscall/zx/posix/socket, method (*IpRecvControlData) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*IpRecvControlData) HasTos() bool
+pkg syscall/zx/posix/socket, method (*IpRecvControlData) HasTtl() bool
+pkg syscall/zx/posix/socket, method (*IpRecvControlData) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*IpRecvControlData) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*IpRecvControlData) SetTos(uint8)
+pkg syscall/zx/posix/socket, method (*IpRecvControlData) SetTtl(uint8)
+pkg syscall/zx/posix/socket, method (*IpSendControlData) ClearTtl()
+pkg syscall/zx/posix/socket, method (*IpSendControlData) GetTtl() uint8
+pkg syscall/zx/posix/socket, method (*IpSendControlData) GetTtlWithDefault(uint8) uint8
+pkg syscall/zx/posix/socket, method (*IpSendControlData) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*IpSendControlData) HasTtl() bool
+pkg syscall/zx/posix/socket, method (*IpSendControlData) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*IpSendControlData) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*IpSendControlData) SetTtl(uint8)
+pkg syscall/zx/posix/socket, method (*Ipv6MulticastMembership) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*Ipv6PktInfoRecvControlData) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*Ipv6PktInfoSendControlData) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*Ipv6RecvControlData) ClearHoplimit()
+pkg syscall/zx/posix/socket, method (*Ipv6RecvControlData) ClearPktinfo()
+pkg syscall/zx/posix/socket, method (*Ipv6RecvControlData) ClearTclass()
+pkg syscall/zx/posix/socket, method (*Ipv6RecvControlData) GetHoplimit() uint8
+pkg syscall/zx/posix/socket, method (*Ipv6RecvControlData) GetHoplimitWithDefault(uint8) uint8
+pkg syscall/zx/posix/socket, method (*Ipv6RecvControlData) GetPktinfo() Ipv6PktInfoRecvControlData
+pkg syscall/zx/posix/socket, method (*Ipv6RecvControlData) GetPktinfoWithDefault(Ipv6PktInfoRecvControlData) Ipv6PktInfoRecvControlData
+pkg syscall/zx/posix/socket, method (*Ipv6RecvControlData) GetTclass() uint8
+pkg syscall/zx/posix/socket, method (*Ipv6RecvControlData) GetTclassWithDefault(uint8) uint8
+pkg syscall/zx/posix/socket, method (*Ipv6RecvControlData) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*Ipv6RecvControlData) HasHoplimit() bool
+pkg syscall/zx/posix/socket, method (*Ipv6RecvControlData) HasPktinfo() bool
+pkg syscall/zx/posix/socket, method (*Ipv6RecvControlData) HasTclass() bool
+pkg syscall/zx/posix/socket, method (*Ipv6RecvControlData) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*Ipv6RecvControlData) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*Ipv6RecvControlData) SetHoplimit(uint8)
+pkg syscall/zx/posix/socket, method (*Ipv6RecvControlData) SetPktinfo(Ipv6PktInfoRecvControlData)
+pkg syscall/zx/posix/socket, method (*Ipv6RecvControlData) SetTclass(uint8)
+pkg syscall/zx/posix/socket, method (*Ipv6SendControlData) ClearHoplimit()
+pkg syscall/zx/posix/socket, method (*Ipv6SendControlData) ClearPktinfo()
+pkg syscall/zx/posix/socket, method (*Ipv6SendControlData) GetHoplimit() uint8
+pkg syscall/zx/posix/socket, method (*Ipv6SendControlData) GetHoplimitWithDefault(uint8) uint8
+pkg syscall/zx/posix/socket, method (*Ipv6SendControlData) GetPktinfo() Ipv6PktInfoSendControlData
+pkg syscall/zx/posix/socket, method (*Ipv6SendControlData) GetPktinfoWithDefault(Ipv6PktInfoSendControlData) Ipv6PktInfoSendControlData
+pkg syscall/zx/posix/socket, method (*Ipv6SendControlData) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*Ipv6SendControlData) HasHoplimit() bool
+pkg syscall/zx/posix/socket, method (*Ipv6SendControlData) HasPktinfo() bool
+pkg syscall/zx/posix/socket, method (*Ipv6SendControlData) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*Ipv6SendControlData) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*Ipv6SendControlData) SetHoplimit(uint8)
+pkg syscall/zx/posix/socket, method (*Ipv6SendControlData) SetPktinfo(Ipv6PktInfoSendControlData)
+pkg syscall/zx/posix/socket, method (*NetworkSocketRecvControlData) ClearIp()
+pkg syscall/zx/posix/socket, method (*NetworkSocketRecvControlData) ClearIpv6()
+pkg syscall/zx/posix/socket, method (*NetworkSocketRecvControlData) ClearSocket()
+pkg syscall/zx/posix/socket, method (*NetworkSocketRecvControlData) GetIp() IpRecvControlData
+pkg syscall/zx/posix/socket, method (*NetworkSocketRecvControlData) GetIpWithDefault(IpRecvControlData) IpRecvControlData
+pkg syscall/zx/posix/socket, method (*NetworkSocketRecvControlData) GetIpv6() Ipv6RecvControlData
+pkg syscall/zx/posix/socket, method (*NetworkSocketRecvControlData) GetIpv6WithDefault(Ipv6RecvControlData) Ipv6RecvControlData
+pkg syscall/zx/posix/socket, method (*NetworkSocketRecvControlData) GetSocket() SocketRecvControlData
+pkg syscall/zx/posix/socket, method (*NetworkSocketRecvControlData) GetSocketWithDefault(SocketRecvControlData) SocketRecvControlData
+pkg syscall/zx/posix/socket, method (*NetworkSocketRecvControlData) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*NetworkSocketRecvControlData) HasIp() bool
+pkg syscall/zx/posix/socket, method (*NetworkSocketRecvControlData) HasIpv6() bool
+pkg syscall/zx/posix/socket, method (*NetworkSocketRecvControlData) HasSocket() bool
+pkg syscall/zx/posix/socket, method (*NetworkSocketRecvControlData) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*NetworkSocketRecvControlData) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*NetworkSocketRecvControlData) SetIp(IpRecvControlData)
+pkg syscall/zx/posix/socket, method (*NetworkSocketRecvControlData) SetIpv6(Ipv6RecvControlData)
+pkg syscall/zx/posix/socket, method (*NetworkSocketRecvControlData) SetSocket(SocketRecvControlData)
+pkg syscall/zx/posix/socket, method (*NetworkSocketSendControlData) ClearIp()
+pkg syscall/zx/posix/socket, method (*NetworkSocketSendControlData) ClearIpv6()
+pkg syscall/zx/posix/socket, method (*NetworkSocketSendControlData) ClearSocket()
+pkg syscall/zx/posix/socket, method (*NetworkSocketSendControlData) GetIp() IpSendControlData
+pkg syscall/zx/posix/socket, method (*NetworkSocketSendControlData) GetIpWithDefault(IpSendControlData) IpSendControlData
+pkg syscall/zx/posix/socket, method (*NetworkSocketSendControlData) GetIpv6() Ipv6SendControlData
+pkg syscall/zx/posix/socket, method (*NetworkSocketSendControlData) GetIpv6WithDefault(Ipv6SendControlData) Ipv6SendControlData
+pkg syscall/zx/posix/socket, method (*NetworkSocketSendControlData) GetSocket() SocketSendControlData
+pkg syscall/zx/posix/socket, method (*NetworkSocketSendControlData) GetSocketWithDefault(SocketSendControlData) SocketSendControlData
+pkg syscall/zx/posix/socket, method (*NetworkSocketSendControlData) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*NetworkSocketSendControlData) HasIp() bool
+pkg syscall/zx/posix/socket, method (*NetworkSocketSendControlData) HasIpv6() bool
+pkg syscall/zx/posix/socket, method (*NetworkSocketSendControlData) HasSocket() bool
+pkg syscall/zx/posix/socket, method (*NetworkSocketSendControlData) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*NetworkSocketSendControlData) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*NetworkSocketSendControlData) SetIp(IpSendControlData)
+pkg syscall/zx/posix/socket, method (*NetworkSocketSendControlData) SetIpv6(Ipv6SendControlData)
+pkg syscall/zx/posix/socket, method (*NetworkSocketSendControlData) SetSocket(SocketSendControlData)
+pkg syscall/zx/posix/socket, method (*OptionalUint32) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*OptionalUint32) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*OptionalUint32) SetUnset(Empty)
+pkg syscall/zx/posix/socket, method (*OptionalUint32) SetValue(uint32)
+pkg syscall/zx/posix/socket, method (*OptionalUint32) Which() I_optionalUint32Tag
+pkg syscall/zx/posix/socket, method (*OptionalUint8) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*OptionalUint8) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*OptionalUint8) SetUnset(Empty)
+pkg syscall/zx/posix/socket, method (*OptionalUint8) SetValue(uint8)
+pkg syscall/zx/posix/socket, method (*OptionalUint8) Which() I_optionalUint8Tag
+pkg syscall/zx/posix/socket, method (*ProviderDatagramSocketDeprecatedResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*ProviderDatagramSocketDeprecatedResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*ProviderDatagramSocketDeprecatedResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*ProviderDatagramSocketDeprecatedResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*ProviderDatagramSocketDeprecatedResult) SetResponse(ProviderDatagramSocketDeprecatedResponse)
+pkg syscall/zx/posix/socket, method (*ProviderDatagramSocketDeprecatedResult) Which() I_providerDatagramSocketDeprecatedResultTag
+pkg syscall/zx/posix/socket, method (*ProviderDatagramSocketResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*ProviderDatagramSocketResponse) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*ProviderDatagramSocketResponse) SetDatagramSocket(DatagramSocketWithCtxInterface)
+pkg syscall/zx/posix/socket, method (*ProviderDatagramSocketResponse) SetSynchronousDatagramSocket(SynchronousDatagramSocketWithCtxInterface)
+pkg syscall/zx/posix/socket, method (*ProviderDatagramSocketResponse) Which() I_providerDatagramSocketResponseTag
+pkg syscall/zx/posix/socket, method (*ProviderDatagramSocketResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*ProviderDatagramSocketResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*ProviderDatagramSocketResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*ProviderDatagramSocketResult) SetResponse(ProviderDatagramSocketResponse)
+pkg syscall/zx/posix/socket, method (*ProviderDatagramSocketResult) Which() I_providerDatagramSocketResultTag
+pkg syscall/zx/posix/socket, method (*ProviderEventProxy) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*ProviderInterfaceIndexToNameResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*ProviderInterfaceIndexToNameResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*ProviderInterfaceIndexToNameResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*ProviderInterfaceIndexToNameResult) SetErr(int32)
+pkg syscall/zx/posix/socket, method (*ProviderInterfaceIndexToNameResult) SetResponse(ProviderInterfaceIndexToNameResponse)
+pkg syscall/zx/posix/socket, method (*ProviderInterfaceIndexToNameResult) Which() I_providerInterfaceIndexToNameResultTag
+pkg syscall/zx/posix/socket, method (*ProviderInterfaceNameToFlagsResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*ProviderInterfaceNameToFlagsResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*ProviderInterfaceNameToFlagsResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*ProviderInterfaceNameToFlagsResult) SetErr(int32)
+pkg syscall/zx/posix/socket, method (*ProviderInterfaceNameToFlagsResult) SetResponse(ProviderInterfaceNameToFlagsResponse)
+pkg syscall/zx/posix/socket, method (*ProviderInterfaceNameToFlagsResult) Which() I_providerInterfaceNameToFlagsResultTag
+pkg syscall/zx/posix/socket, method (*ProviderInterfaceNameToIndexResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*ProviderInterfaceNameToIndexResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*ProviderInterfaceNameToIndexResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*ProviderInterfaceNameToIndexResult) SetErr(int32)
+pkg syscall/zx/posix/socket, method (*ProviderInterfaceNameToIndexResult) SetResponse(ProviderInterfaceNameToIndexResponse)
+pkg syscall/zx/posix/socket, method (*ProviderInterfaceNameToIndexResult) Which() I_providerInterfaceNameToIndexResultTag
+pkg syscall/zx/posix/socket, method (*ProviderStreamSocketResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*ProviderStreamSocketResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*ProviderStreamSocketResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*ProviderStreamSocketResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*ProviderStreamSocketResult) SetResponse(ProviderStreamSocketResponse)
+pkg syscall/zx/posix/socket, method (*ProviderStreamSocketResult) Which() I_providerStreamSocketResultTag
+pkg syscall/zx/posix/socket, method (*ProviderWithCtxInterface) DatagramSocket(context.Context, Domain, DatagramSocketProtocol) (ProviderDatagramSocketResult, error)
+pkg syscall/zx/posix/socket, method (*ProviderWithCtxInterface) DatagramSocketDeprecated(context.Context, Domain, DatagramSocketProtocol) (ProviderDatagramSocketDeprecatedResult, error)
+pkg syscall/zx/posix/socket, method (*ProviderWithCtxInterface) GetInterfaceAddresses(context.Context) ([]InterfaceAddresses, error)
+pkg syscall/zx/posix/socket, method (*ProviderWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*ProviderWithCtxInterface) InterfaceIndexToName(context.Context, uint64) (ProviderInterfaceIndexToNameResult, error)
+pkg syscall/zx/posix/socket, method (*ProviderWithCtxInterface) InterfaceNameToFlags(context.Context, string) (ProviderInterfaceNameToFlagsResult, error)
+pkg syscall/zx/posix/socket, method (*ProviderWithCtxInterface) InterfaceNameToIndex(context.Context, string) (ProviderInterfaceNameToIndexResult, error)
+pkg syscall/zx/posix/socket, method (*ProviderWithCtxInterface) StreamSocket(context.Context, Domain, StreamSocketProtocol) (ProviderStreamSocketResult, error)
+pkg syscall/zx/posix/socket, method (*ProviderWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*ProviderWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/posix/socket, method (*RecvMsgMeta) ClearControl()
+pkg syscall/zx/posix/socket, method (*RecvMsgMeta) ClearFrom()
+pkg syscall/zx/posix/socket, method (*RecvMsgMeta) ClearPayloadLen()
+pkg syscall/zx/posix/socket, method (*RecvMsgMeta) GetControl() DatagramSocketRecvControlData
+pkg syscall/zx/posix/socket, method (*RecvMsgMeta) GetControlWithDefault(DatagramSocketRecvControlData) DatagramSocketRecvControlData
+pkg syscall/zx/posix/socket, method (*RecvMsgMeta) GetFrom() net.SocketAddress
+pkg syscall/zx/posix/socket, method (*RecvMsgMeta) GetFromWithDefault(net.SocketAddress) net.SocketAddress
+pkg syscall/zx/posix/socket, method (*RecvMsgMeta) GetPayloadLen() uint16
+pkg syscall/zx/posix/socket, method (*RecvMsgMeta) GetPayloadLenWithDefault(uint16) uint16
+pkg syscall/zx/posix/socket, method (*RecvMsgMeta) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*RecvMsgMeta) HasControl() bool
+pkg syscall/zx/posix/socket, method (*RecvMsgMeta) HasFrom() bool
+pkg syscall/zx/posix/socket, method (*RecvMsgMeta) HasPayloadLen() bool
+pkg syscall/zx/posix/socket, method (*RecvMsgMeta) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*RecvMsgMeta) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*RecvMsgMeta) SetControl(DatagramSocketRecvControlData)
+pkg syscall/zx/posix/socket, method (*RecvMsgMeta) SetFrom(net.SocketAddress)
+pkg syscall/zx/posix/socket, method (*RecvMsgMeta) SetPayloadLen(uint16)
+pkg syscall/zx/posix/socket, method (*SendMsgMeta) ClearControl()
+pkg syscall/zx/posix/socket, method (*SendMsgMeta) ClearTo()
+pkg syscall/zx/posix/socket, method (*SendMsgMeta) GetControl() DatagramSocketSendControlData
+pkg syscall/zx/posix/socket, method (*SendMsgMeta) GetControlWithDefault(DatagramSocketSendControlData) DatagramSocketSendControlData
+pkg syscall/zx/posix/socket, method (*SendMsgMeta) GetTo() net.SocketAddress
+pkg syscall/zx/posix/socket, method (*SendMsgMeta) GetToWithDefault(net.SocketAddress) net.SocketAddress
+pkg syscall/zx/posix/socket, method (*SendMsgMeta) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*SendMsgMeta) HasControl() bool
+pkg syscall/zx/posix/socket, method (*SendMsgMeta) HasTo() bool
+pkg syscall/zx/posix/socket, method (*SendMsgMeta) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*SendMsgMeta) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*SendMsgMeta) SetControl(DatagramSocketSendControlData)
+pkg syscall/zx/posix/socket, method (*SendMsgMeta) SetTo(net.SocketAddress)
+pkg syscall/zx/posix/socket, method (*SocketRecvControlData) ClearTimestamp()
+pkg syscall/zx/posix/socket, method (*SocketRecvControlData) ClearTimestampDeprecated()
+pkg syscall/zx/posix/socket, method (*SocketRecvControlData) ClearTimestampDeprecated2()
+pkg syscall/zx/posix/socket, method (*SocketRecvControlData) GetTimestamp() Timestamp
+pkg syscall/zx/posix/socket, method (*SocketRecvControlData) GetTimestampDeprecated() TimestampDeprecated
+pkg syscall/zx/posix/socket, method (*SocketRecvControlData) GetTimestampDeprecated2() TimestampDeprecated
+pkg syscall/zx/posix/socket, method (*SocketRecvControlData) GetTimestampDeprecated2WithDefault(TimestampDeprecated) TimestampDeprecated
+pkg syscall/zx/posix/socket, method (*SocketRecvControlData) GetTimestampDeprecatedWithDefault(TimestampDeprecated) TimestampDeprecated
+pkg syscall/zx/posix/socket, method (*SocketRecvControlData) GetTimestampWithDefault(Timestamp) Timestamp
+pkg syscall/zx/posix/socket, method (*SocketRecvControlData) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*SocketRecvControlData) HasTimestamp() bool
+pkg syscall/zx/posix/socket, method (*SocketRecvControlData) HasTimestampDeprecated() bool
+pkg syscall/zx/posix/socket, method (*SocketRecvControlData) HasTimestampDeprecated2() bool
+pkg syscall/zx/posix/socket, method (*SocketRecvControlData) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*SocketRecvControlData) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*SocketRecvControlData) SetTimestamp(Timestamp)
+pkg syscall/zx/posix/socket, method (*SocketRecvControlData) SetTimestampDeprecated(TimestampDeprecated)
+pkg syscall/zx/posix/socket, method (*SocketRecvControlData) SetTimestampDeprecated2(TimestampDeprecated)
+pkg syscall/zx/posix/socket, method (*SocketSendControlData) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*SocketSendControlData) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*SocketSendControlData) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketAcceptResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketAcceptResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketAcceptResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketAcceptResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketAcceptResult) SetResponse(StreamSocketAcceptResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketAcceptResult) Which() I_streamSocketAcceptResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketDescribe2Response) ClearSocket()
+pkg syscall/zx/posix/socket, method (*StreamSocketDescribe2Response) GetSocket() zx.Socket
+pkg syscall/zx/posix/socket, method (*StreamSocketDescribe2Response) GetSocketWithDefault(zx.Socket) zx.Socket
+pkg syscall/zx/posix/socket, method (*StreamSocketDescribe2Response) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*StreamSocketDescribe2Response) HasSocket() bool
+pkg syscall/zx/posix/socket, method (*StreamSocketDescribe2Response) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*StreamSocketDescribe2Response) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketDescribe2Response) SetSocket(zx.Socket)
+pkg syscall/zx/posix/socket, method (*StreamSocketEventProxy) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*StreamSocketEventProxy) OnOpen(int32, *io.NodeInfo) error
+pkg syscall/zx/posix/socket, method (*StreamSocketEventProxy) OnRepresentation(io.Representation) error
+pkg syscall/zx/posix/socket, method (*StreamSocketGetInfoResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetInfoResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetInfoResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketGetInfoResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetInfoResult) SetResponse(StreamSocketGetInfoResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetInfoResult) Which() I_streamSocketGetInfoResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpCongestionResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpCongestionResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpCongestionResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpCongestionResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpCongestionResult) SetResponse(StreamSocketGetTcpCongestionResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpCongestionResult) Which() I_streamSocketGetTcpCongestionResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpCorkResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpCorkResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpCorkResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpCorkResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpCorkResult) SetResponse(StreamSocketGetTcpCorkResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpCorkResult) Which() I_streamSocketGetTcpCorkResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpDeferAcceptResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpDeferAcceptResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpDeferAcceptResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpDeferAcceptResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpDeferAcceptResult) SetResponse(StreamSocketGetTcpDeferAcceptResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpDeferAcceptResult) Which() I_streamSocketGetTcpDeferAcceptResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpInfoResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpInfoResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpInfoResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpInfoResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpInfoResult) SetResponse(StreamSocketGetTcpInfoResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpInfoResult) Which() I_streamSocketGetTcpInfoResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpKeepAliveCountResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpKeepAliveCountResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpKeepAliveCountResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpKeepAliveCountResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpKeepAliveCountResult) SetResponse(StreamSocketGetTcpKeepAliveCountResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpKeepAliveCountResult) Which() I_streamSocketGetTcpKeepAliveCountResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpKeepAliveIdleResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpKeepAliveIdleResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpKeepAliveIdleResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpKeepAliveIdleResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpKeepAliveIdleResult) SetResponse(StreamSocketGetTcpKeepAliveIdleResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpKeepAliveIdleResult) Which() I_streamSocketGetTcpKeepAliveIdleResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpKeepAliveIntervalResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpKeepAliveIntervalResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpKeepAliveIntervalResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpKeepAliveIntervalResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpKeepAliveIntervalResult) SetResponse(StreamSocketGetTcpKeepAliveIntervalResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpKeepAliveIntervalResult) Which() I_streamSocketGetTcpKeepAliveIntervalResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpLingerResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpLingerResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpLingerResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpLingerResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpLingerResult) SetResponse(StreamSocketGetTcpLingerResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpLingerResult) Which() I_streamSocketGetTcpLingerResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpMaxSegmentResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpMaxSegmentResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpMaxSegmentResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpMaxSegmentResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpMaxSegmentResult) SetResponse(StreamSocketGetTcpMaxSegmentResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpMaxSegmentResult) Which() I_streamSocketGetTcpMaxSegmentResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpNoDelayResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpNoDelayResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpNoDelayResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpNoDelayResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpNoDelayResult) SetResponse(StreamSocketGetTcpNoDelayResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpNoDelayResult) Which() I_streamSocketGetTcpNoDelayResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpQuickAckResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpQuickAckResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpQuickAckResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpQuickAckResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpQuickAckResult) SetResponse(StreamSocketGetTcpQuickAckResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpQuickAckResult) Which() I_streamSocketGetTcpQuickAckResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpSynCountResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpSynCountResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpSynCountResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpSynCountResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpSynCountResult) SetResponse(StreamSocketGetTcpSynCountResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpSynCountResult) Which() I_streamSocketGetTcpSynCountResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpUserTimeoutResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpUserTimeoutResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpUserTimeoutResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpUserTimeoutResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpUserTimeoutResult) SetResponse(StreamSocketGetTcpUserTimeoutResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpUserTimeoutResult) Which() I_streamSocketGetTcpUserTimeoutResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpWindowClampResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpWindowClampResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpWindowClampResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpWindowClampResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpWindowClampResult) SetResponse(StreamSocketGetTcpWindowClampResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketGetTcpWindowClampResult) Which() I_streamSocketGetTcpWindowClampResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketListenResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketListenResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketListenResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketListenResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketListenResult) SetResponse(StreamSocketListenResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketListenResult) Which() I_streamSocketListenResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpCongestionResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpCongestionResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpCongestionResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpCongestionResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpCongestionResult) SetResponse(StreamSocketSetTcpCongestionResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpCongestionResult) Which() I_streamSocketSetTcpCongestionResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpCorkResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpCorkResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpCorkResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpCorkResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpCorkResult) SetResponse(StreamSocketSetTcpCorkResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpCorkResult) Which() I_streamSocketSetTcpCorkResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpDeferAcceptResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpDeferAcceptResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpDeferAcceptResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpDeferAcceptResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpDeferAcceptResult) SetResponse(StreamSocketSetTcpDeferAcceptResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpDeferAcceptResult) Which() I_streamSocketSetTcpDeferAcceptResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpKeepAliveCountResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpKeepAliveCountResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpKeepAliveCountResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpKeepAliveCountResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpKeepAliveCountResult) SetResponse(StreamSocketSetTcpKeepAliveCountResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpKeepAliveCountResult) Which() I_streamSocketSetTcpKeepAliveCountResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpKeepAliveIdleResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpKeepAliveIdleResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpKeepAliveIdleResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpKeepAliveIdleResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpKeepAliveIdleResult) SetResponse(StreamSocketSetTcpKeepAliveIdleResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpKeepAliveIdleResult) Which() I_streamSocketSetTcpKeepAliveIdleResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpKeepAliveIntervalResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpKeepAliveIntervalResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpKeepAliveIntervalResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpKeepAliveIntervalResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpKeepAliveIntervalResult) SetResponse(StreamSocketSetTcpKeepAliveIntervalResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpKeepAliveIntervalResult) Which() I_streamSocketSetTcpKeepAliveIntervalResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpLingerResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpLingerResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpLingerResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpLingerResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpLingerResult) SetResponse(StreamSocketSetTcpLingerResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpLingerResult) Which() I_streamSocketSetTcpLingerResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpMaxSegmentResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpMaxSegmentResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpMaxSegmentResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpMaxSegmentResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpMaxSegmentResult) SetResponse(StreamSocketSetTcpMaxSegmentResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpMaxSegmentResult) Which() I_streamSocketSetTcpMaxSegmentResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpNoDelayResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpNoDelayResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpNoDelayResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpNoDelayResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpNoDelayResult) SetResponse(StreamSocketSetTcpNoDelayResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpNoDelayResult) Which() I_streamSocketSetTcpNoDelayResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpQuickAckResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpQuickAckResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpQuickAckResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpQuickAckResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpQuickAckResult) SetResponse(StreamSocketSetTcpQuickAckResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpQuickAckResult) Which() I_streamSocketSetTcpQuickAckResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpSynCountResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpSynCountResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpSynCountResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpSynCountResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpSynCountResult) SetResponse(StreamSocketSetTcpSynCountResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpSynCountResult) Which() I_streamSocketSetTcpSynCountResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpUserTimeoutResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpUserTimeoutResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpUserTimeoutResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpUserTimeoutResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpUserTimeoutResult) SetResponse(StreamSocketSetTcpUserTimeoutResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpUserTimeoutResult) Which() I_streamSocketSetTcpUserTimeoutResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpWindowClampResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpWindowClampResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpWindowClampResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpWindowClampResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpWindowClampResult) SetResponse(StreamSocketSetTcpWindowClampResponse)
+pkg syscall/zx/posix/socket, method (*StreamSocketSetTcpWindowClampResult) Which() I_streamSocketSetTcpWindowClampResultTag
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) Accept(context.Context, bool) (StreamSocketAcceptResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) AddIpMembership(context.Context, IpMulticastMembership) (BaseNetworkSocketAddIpMembershipResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) AddIpv6Membership(context.Context, Ipv6MulticastMembership) (BaseNetworkSocketAddIpv6MembershipResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) Bind(context.Context, net.SocketAddress) (BaseNetworkSocketBindResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) Clone(context.Context, io.OpenFlags, io.NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) Clone2(context.Context, unknown.CloneableWithCtxInterfaceRequest) error
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) Connect(context.Context, net.SocketAddress) (BaseNetworkSocketConnectResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) Describe(context.Context) (io.NodeInfo, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) Describe2(context.Context) (StreamSocketDescribe2Response, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) Disconnect(context.Context) (BaseNetworkSocketDisconnectResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) DropIpMembership(context.Context, IpMulticastMembership) (BaseNetworkSocketDropIpMembershipResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) DropIpv6Membership(context.Context, Ipv6MulticastMembership) (BaseNetworkSocketDropIpv6MembershipResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) ExpectOnOpen(context.Context) (int32, *io.NodeInfo, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) ExpectOnRepresentation(context.Context) (io.Representation, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetAcceptConn(context.Context) (BaseSocketGetAcceptConnResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetAttr(context.Context) (int32, io.NodeAttributes, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetAttributes(context.Context, io.NodeAttributesQuery) (io.Node2GetAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetBindToDevice(context.Context) (BaseSocketGetBindToDeviceResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetBroadcast(context.Context) (BaseSocketGetBroadcastResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetConnectionInfo(context.Context) (io.ConnectionInfo, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetError(context.Context) (BaseSocketGetErrorResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetFlags(context.Context) (int32, io.OpenFlags, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetInfo(context.Context) (StreamSocketGetInfoResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetIpMulticastInterface(context.Context) (BaseNetworkSocketGetIpMulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetIpMulticastLoopback(context.Context) (BaseNetworkSocketGetIpMulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetIpMulticastTtl(context.Context) (BaseNetworkSocketGetIpMulticastTtlResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetIpPacketInfo(context.Context) (BaseNetworkSocketGetIpPacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetIpReceiveTtl(context.Context) (BaseNetworkSocketGetIpReceiveTtlResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetIpReceiveTypeOfService(context.Context) (BaseNetworkSocketGetIpReceiveTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetIpTtl(context.Context) (BaseNetworkSocketGetIpTtlResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetIpTypeOfService(context.Context) (BaseNetworkSocketGetIpTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetIpv6MulticastHops(context.Context) (BaseNetworkSocketGetIpv6MulticastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetIpv6MulticastInterface(context.Context) (BaseNetworkSocketGetIpv6MulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetIpv6MulticastLoopback(context.Context) (BaseNetworkSocketGetIpv6MulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetIpv6Only(context.Context) (BaseNetworkSocketGetIpv6OnlyResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetIpv6ReceiveHopLimit(context.Context) (BaseNetworkSocketGetIpv6ReceiveHopLimitResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetIpv6ReceivePacketInfo(context.Context) (BaseNetworkSocketGetIpv6ReceivePacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetIpv6ReceiveTrafficClass(context.Context) (BaseNetworkSocketGetIpv6ReceiveTrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetIpv6TrafficClass(context.Context) (BaseNetworkSocketGetIpv6TrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetIpv6UnicastHops(context.Context) (BaseNetworkSocketGetIpv6UnicastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetKeepAlive(context.Context) (BaseSocketGetKeepAliveResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetLinger(context.Context) (BaseSocketGetLingerResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetNoCheck(context.Context) (BaseSocketGetNoCheckResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetOutOfBandInline(context.Context) (BaseSocketGetOutOfBandInlineResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetPeerName(context.Context) (BaseNetworkSocketGetPeerNameResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetReceiveBuffer(context.Context) (BaseSocketGetReceiveBufferResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetReuseAddress(context.Context) (BaseSocketGetReuseAddressResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetReusePort(context.Context) (BaseSocketGetReusePortResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetSendBuffer(context.Context) (BaseSocketGetSendBufferResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetSockName(context.Context) (BaseNetworkSocketGetSockNameResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetTcpCongestion(context.Context) (StreamSocketGetTcpCongestionResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetTcpCork(context.Context) (StreamSocketGetTcpCorkResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetTcpDeferAccept(context.Context) (StreamSocketGetTcpDeferAcceptResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetTcpInfo(context.Context) (StreamSocketGetTcpInfoResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetTcpKeepAliveCount(context.Context) (StreamSocketGetTcpKeepAliveCountResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetTcpKeepAliveIdle(context.Context) (StreamSocketGetTcpKeepAliveIdleResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetTcpKeepAliveInterval(context.Context) (StreamSocketGetTcpKeepAliveIntervalResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetTcpLinger(context.Context) (StreamSocketGetTcpLingerResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetTcpMaxSegment(context.Context) (StreamSocketGetTcpMaxSegmentResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetTcpNoDelay(context.Context) (StreamSocketGetTcpNoDelayResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetTcpQuickAck(context.Context) (StreamSocketGetTcpQuickAckResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetTcpSynCount(context.Context) (StreamSocketGetTcpSynCountResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetTcpUserTimeout(context.Context) (StreamSocketGetTcpUserTimeoutResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetTcpWindowClamp(context.Context) (StreamSocketGetTcpWindowClampResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetTimestamp(context.Context) (BaseSocketGetTimestampResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) GetTimestampDeprecated(context.Context) (BaseSocketGetTimestampDeprecatedResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) Listen(context.Context, int16) (StreamSocketListenResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) Query(context.Context) (uint64, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) QueryFilesystem(context.Context) (int32, *io.FilesystemInfo, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) Reopen(context.Context, *io.RightsRequest, zx.Channel) error
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetAttr(context.Context, io.NodeAttributeFlags, io.NodeAttributes) (int32, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetBindToDevice(context.Context, string) (BaseSocketSetBindToDeviceResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetBroadcast(context.Context, bool) (BaseSocketSetBroadcastResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetFlags(context.Context, io.OpenFlags) (int32, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetIpMulticastInterface(context.Context, uint64, net.Ipv4Address) (BaseNetworkSocketSetIpMulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetIpMulticastLoopback(context.Context, bool) (BaseNetworkSocketSetIpMulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetIpMulticastTtl(context.Context, OptionalUint8) (BaseNetworkSocketSetIpMulticastTtlResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetIpPacketInfo(context.Context, bool) (BaseNetworkSocketSetIpPacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetIpReceiveTtl(context.Context, bool) (BaseNetworkSocketSetIpReceiveTtlResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetIpReceiveTypeOfService(context.Context, bool) (BaseNetworkSocketSetIpReceiveTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetIpTtl(context.Context, OptionalUint8) (BaseNetworkSocketSetIpTtlResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetIpTypeOfService(context.Context, uint8) (BaseNetworkSocketSetIpTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetIpv6MulticastHops(context.Context, OptionalUint8) (BaseNetworkSocketSetIpv6MulticastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetIpv6MulticastInterface(context.Context, uint64) (BaseNetworkSocketSetIpv6MulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetIpv6MulticastLoopback(context.Context, bool) (BaseNetworkSocketSetIpv6MulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetIpv6Only(context.Context, bool) (BaseNetworkSocketSetIpv6OnlyResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetIpv6ReceiveHopLimit(context.Context, bool) (BaseNetworkSocketSetIpv6ReceiveHopLimitResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetIpv6ReceivePacketInfo(context.Context, bool) (BaseNetworkSocketSetIpv6ReceivePacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetIpv6ReceiveTrafficClass(context.Context, bool) (BaseNetworkSocketSetIpv6ReceiveTrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetIpv6TrafficClass(context.Context, OptionalUint8) (BaseNetworkSocketSetIpv6TrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetIpv6UnicastHops(context.Context, OptionalUint8) (BaseNetworkSocketSetIpv6UnicastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetKeepAlive(context.Context, bool) (BaseSocketSetKeepAliveResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetLinger(context.Context, bool, uint32) (BaseSocketSetLingerResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetNoCheck(context.Context, bool) (BaseSocketSetNoCheckResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetOutOfBandInline(context.Context, bool) (BaseSocketSetOutOfBandInlineResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetReceiveBuffer(context.Context, uint64) (BaseSocketSetReceiveBufferResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetReuseAddress(context.Context, bool) (BaseSocketSetReuseAddressResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetReusePort(context.Context, bool) (BaseSocketSetReusePortResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetSendBuffer(context.Context, uint64) (BaseSocketSetSendBufferResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetTcpCongestion(context.Context, TcpCongestionControl) (StreamSocketSetTcpCongestionResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetTcpCork(context.Context, bool) (StreamSocketSetTcpCorkResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetTcpDeferAccept(context.Context, uint32) (StreamSocketSetTcpDeferAcceptResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetTcpKeepAliveCount(context.Context, uint32) (StreamSocketSetTcpKeepAliveCountResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetTcpKeepAliveIdle(context.Context, uint32) (StreamSocketSetTcpKeepAliveIdleResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetTcpKeepAliveInterval(context.Context, uint32) (StreamSocketSetTcpKeepAliveIntervalResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetTcpLinger(context.Context, OptionalUint32) (StreamSocketSetTcpLingerResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetTcpMaxSegment(context.Context, uint32) (StreamSocketSetTcpMaxSegmentResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetTcpNoDelay(context.Context, bool) (StreamSocketSetTcpNoDelayResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetTcpQuickAck(context.Context, bool) (StreamSocketSetTcpQuickAckResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetTcpSynCount(context.Context, uint32) (StreamSocketSetTcpSynCountResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetTcpUserTimeout(context.Context, uint32) (StreamSocketSetTcpUserTimeoutResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetTcpWindowClamp(context.Context, uint32) (StreamSocketSetTcpWindowClampResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetTimestamp(context.Context, TimestampOption) (BaseSocketSetTimestampResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) SetTimestampDeprecated(context.Context, TimestampOption) (BaseSocketSetTimestampDeprecatedResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) Shutdown(context.Context, ShutdownMode) (BaseNetworkSocketShutdownResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) Sync(context.Context) (io.Node2SyncResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterface) UpdateAttributes(context.Context, io.MutableNodeAttributes) (io.Node2UpdateAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxTransitionalBase) GetAttributes(context.Context, io.NodeAttributesQuery) (io.Node2GetAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxTransitionalBase) Query(context.Context) (uint64, error)
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxTransitionalBase) Reopen(context.Context, *io.RightsRequest, zx.Channel) error
+pkg syscall/zx/posix/socket, method (*StreamSocketWithCtxTransitionalBase) UpdateAttributes(context.Context, io.MutableNodeAttributes) (io.Node2UpdateAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketDescribe2Response) ClearEvent()
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketDescribe2Response) GetEvent() zx.Handle
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketDescribe2Response) GetEventWithDefault(zx.Handle) zx.Handle
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketDescribe2Response) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketDescribe2Response) HasEvent() bool
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketDescribe2Response) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketDescribe2Response) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketDescribe2Response) SetEvent(zx.Handle)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketEventProxy) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketEventProxy) OnOpen(int32, *io.NodeInfo) error
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketEventProxy) OnRepresentation(io.Representation) error
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketRecvMsgDeprecatedResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketRecvMsgDeprecatedResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketRecvMsgDeprecatedResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketRecvMsgDeprecatedResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketRecvMsgDeprecatedResult) SetResponse(SynchronousDatagramSocketRecvMsgDeprecatedResponse)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketRecvMsgDeprecatedResult) Which() I_synchronousDatagramSocketRecvMsgDeprecatedResultTag
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketRecvMsgResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketRecvMsgResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketRecvMsgResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketRecvMsgResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketRecvMsgResult) SetResponse(SynchronousDatagramSocketRecvMsgResponse)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketRecvMsgResult) Which() I_synchronousDatagramSocketRecvMsgResultTag
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketSendMsgDeprecatedResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketSendMsgDeprecatedResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketSendMsgDeprecatedResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketSendMsgDeprecatedResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketSendMsgDeprecatedResult) SetResponse(SynchronousDatagramSocketSendMsgDeprecatedResponse)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketSendMsgDeprecatedResult) Which() I_synchronousDatagramSocketSendMsgDeprecatedResultTag
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketSendMsgResponse) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketSendMsgResult) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketSendMsgResult) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketSendMsgResult) SetErr(posix.Errno)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketSendMsgResult) SetResponse(SynchronousDatagramSocketSendMsgResponse)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketSendMsgResult) Which() I_synchronousDatagramSocketSendMsgResultTag
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) AddIpMembership(context.Context, IpMulticastMembership) (BaseNetworkSocketAddIpMembershipResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) AddIpv6Membership(context.Context, Ipv6MulticastMembership) (BaseNetworkSocketAddIpv6MembershipResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) Bind(context.Context, net.SocketAddress) (BaseNetworkSocketBindResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) Clone(context.Context, io.OpenFlags, io.NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) Clone2(context.Context, unknown.CloneableWithCtxInterfaceRequest) error
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) Connect(context.Context, net.SocketAddress) (BaseNetworkSocketConnectResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) Describe(context.Context) (io.NodeInfo, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) Describe2(context.Context) (SynchronousDatagramSocketDescribe2Response, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) Disconnect(context.Context) (BaseNetworkSocketDisconnectResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) DropIpMembership(context.Context, IpMulticastMembership) (BaseNetworkSocketDropIpMembershipResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) DropIpv6Membership(context.Context, Ipv6MulticastMembership) (BaseNetworkSocketDropIpv6MembershipResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) ExpectOnOpen(context.Context) (int32, *io.NodeInfo, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) ExpectOnRepresentation(context.Context) (io.Representation, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetAcceptConn(context.Context) (BaseSocketGetAcceptConnResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetAttr(context.Context) (int32, io.NodeAttributes, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetAttributes(context.Context, io.NodeAttributesQuery) (io.Node2GetAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetBindToDevice(context.Context) (BaseSocketGetBindToDeviceResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetBroadcast(context.Context) (BaseSocketGetBroadcastResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetConnectionInfo(context.Context) (io.ConnectionInfo, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetError(context.Context) (BaseSocketGetErrorResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetFlags(context.Context) (int32, io.OpenFlags, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetInfo(context.Context) (BaseDatagramSocketGetInfoResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetInfoDeprecated(context.Context) (BaseDatagramSocketGetInfoDeprecatedResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetIpMulticastInterface(context.Context) (BaseNetworkSocketGetIpMulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetIpMulticastLoopback(context.Context) (BaseNetworkSocketGetIpMulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetIpMulticastTtl(context.Context) (BaseNetworkSocketGetIpMulticastTtlResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetIpPacketInfo(context.Context) (BaseNetworkSocketGetIpPacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetIpReceiveTtl(context.Context) (BaseNetworkSocketGetIpReceiveTtlResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetIpReceiveTypeOfService(context.Context) (BaseNetworkSocketGetIpReceiveTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetIpTtl(context.Context) (BaseNetworkSocketGetIpTtlResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetIpTypeOfService(context.Context) (BaseNetworkSocketGetIpTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetIpv6MulticastHops(context.Context) (BaseNetworkSocketGetIpv6MulticastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetIpv6MulticastInterface(context.Context) (BaseNetworkSocketGetIpv6MulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetIpv6MulticastLoopback(context.Context) (BaseNetworkSocketGetIpv6MulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetIpv6Only(context.Context) (BaseNetworkSocketGetIpv6OnlyResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetIpv6ReceiveHopLimit(context.Context) (BaseNetworkSocketGetIpv6ReceiveHopLimitResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetIpv6ReceivePacketInfo(context.Context) (BaseNetworkSocketGetIpv6ReceivePacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetIpv6ReceiveTrafficClass(context.Context) (BaseNetworkSocketGetIpv6ReceiveTrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetIpv6TrafficClass(context.Context) (BaseNetworkSocketGetIpv6TrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetIpv6UnicastHops(context.Context) (BaseNetworkSocketGetIpv6UnicastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetKeepAlive(context.Context) (BaseSocketGetKeepAliveResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetLinger(context.Context) (BaseSocketGetLingerResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetNoCheck(context.Context) (BaseSocketGetNoCheckResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetOutOfBandInline(context.Context) (BaseSocketGetOutOfBandInlineResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetPeerName(context.Context) (BaseNetworkSocketGetPeerNameResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetReceiveBuffer(context.Context) (BaseSocketGetReceiveBufferResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetReuseAddress(context.Context) (BaseSocketGetReuseAddressResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetReusePort(context.Context) (BaseSocketGetReusePortResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetSendBuffer(context.Context) (BaseSocketGetSendBufferResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetSockName(context.Context) (BaseNetworkSocketGetSockNameResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetTimestamp(context.Context) (BaseSocketGetTimestampResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) GetTimestampDeprecated(context.Context) (BaseSocketGetTimestampDeprecatedResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) Query(context.Context) (uint64, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) QueryFilesystem(context.Context) (int32, *io.FilesystemInfo, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) RecvMsg(context.Context, bool, uint32, bool, RecvMsgFlags) (SynchronousDatagramSocketRecvMsgResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) RecvMsgDeprecated(context.Context, bool, uint32, bool, RecvMsgFlags) (SynchronousDatagramSocketRecvMsgDeprecatedResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) Reopen(context.Context, *io.RightsRequest, zx.Channel) error
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SendMsg(context.Context, *net.SocketAddress, []uint8, DatagramSocketSendControlData, SendMsgFlags) (SynchronousDatagramSocketSendMsgResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SendMsgDeprecated(context.Context, *net.SocketAddress, []uint8, DatagramSocketSendControlData, SendMsgFlags) (SynchronousDatagramSocketSendMsgDeprecatedResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetAttr(context.Context, io.NodeAttributeFlags, io.NodeAttributes) (int32, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetBindToDevice(context.Context, string) (BaseSocketSetBindToDeviceResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetBroadcast(context.Context, bool) (BaseSocketSetBroadcastResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetFlags(context.Context, io.OpenFlags) (int32, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetIpMulticastInterface(context.Context, uint64, net.Ipv4Address) (BaseNetworkSocketSetIpMulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetIpMulticastLoopback(context.Context, bool) (BaseNetworkSocketSetIpMulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetIpMulticastTtl(context.Context, OptionalUint8) (BaseNetworkSocketSetIpMulticastTtlResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetIpPacketInfo(context.Context, bool) (BaseNetworkSocketSetIpPacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetIpReceiveTtl(context.Context, bool) (BaseNetworkSocketSetIpReceiveTtlResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetIpReceiveTypeOfService(context.Context, bool) (BaseNetworkSocketSetIpReceiveTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetIpTtl(context.Context, OptionalUint8) (BaseNetworkSocketSetIpTtlResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetIpTypeOfService(context.Context, uint8) (BaseNetworkSocketSetIpTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetIpv6MulticastHops(context.Context, OptionalUint8) (BaseNetworkSocketSetIpv6MulticastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetIpv6MulticastInterface(context.Context, uint64) (BaseNetworkSocketSetIpv6MulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetIpv6MulticastLoopback(context.Context, bool) (BaseNetworkSocketSetIpv6MulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetIpv6Only(context.Context, bool) (BaseNetworkSocketSetIpv6OnlyResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetIpv6ReceiveHopLimit(context.Context, bool) (BaseNetworkSocketSetIpv6ReceiveHopLimitResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetIpv6ReceivePacketInfo(context.Context, bool) (BaseNetworkSocketSetIpv6ReceivePacketInfoResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetIpv6ReceiveTrafficClass(context.Context, bool) (BaseNetworkSocketSetIpv6ReceiveTrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetIpv6TrafficClass(context.Context, OptionalUint8) (BaseNetworkSocketSetIpv6TrafficClassResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetIpv6UnicastHops(context.Context, OptionalUint8) (BaseNetworkSocketSetIpv6UnicastHopsResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetKeepAlive(context.Context, bool) (BaseSocketSetKeepAliveResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetLinger(context.Context, bool, uint32) (BaseSocketSetLingerResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetNoCheck(context.Context, bool) (BaseSocketSetNoCheckResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetOutOfBandInline(context.Context, bool) (BaseSocketSetOutOfBandInlineResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetReceiveBuffer(context.Context, uint64) (BaseSocketSetReceiveBufferResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetReuseAddress(context.Context, bool) (BaseSocketSetReuseAddressResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetReusePort(context.Context, bool) (BaseSocketSetReusePortResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetSendBuffer(context.Context, uint64) (BaseSocketSetSendBufferResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetTimestamp(context.Context, TimestampOption) (BaseSocketSetTimestampResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) SetTimestampDeprecated(context.Context, TimestampOption) (BaseSocketSetTimestampDeprecatedResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) Shutdown(context.Context, ShutdownMode) (BaseNetworkSocketShutdownResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) Sync(context.Context) (io.Node2SyncResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterface) UpdateAttributes(context.Context, io.MutableNodeAttributes) (io.Node2UpdateAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxInterfaceRequest) Handle() *zx.Handle
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxStub) Dispatch(fidl.DispatchArgs) (fidl.Message, bool, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxTransitionalBase) GetAttributes(context.Context, io.NodeAttributesQuery) (io.Node2GetAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxTransitionalBase) Query(context.Context) (uint64, error)
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxTransitionalBase) Reopen(context.Context, *io.RightsRequest, zx.Channel) error
+pkg syscall/zx/posix/socket, method (*SynchronousDatagramSocketWithCtxTransitionalBase) UpdateAttributes(context.Context, io.MutableNodeAttributes) (io.Node2UpdateAttributesResult, error)
+pkg syscall/zx/posix/socket, method (*TcpInfo) ClearCaState()
+pkg syscall/zx/posix/socket, method (*TcpInfo) ClearReorderSeen()
+pkg syscall/zx/posix/socket, method (*TcpInfo) ClearRtoUsec()
+pkg syscall/zx/posix/socket, method (*TcpInfo) ClearRttUsec()
+pkg syscall/zx/posix/socket, method (*TcpInfo) ClearRttVarUsec()
+pkg syscall/zx/posix/socket, method (*TcpInfo) ClearSndCwnd()
+pkg syscall/zx/posix/socket, method (*TcpInfo) ClearSndSsthresh()
+pkg syscall/zx/posix/socket, method (*TcpInfo) ClearState()
+pkg syscall/zx/posix/socket, method (*TcpInfo) GetCaState() TcpCongestionControlState
+pkg syscall/zx/posix/socket, method (*TcpInfo) GetCaStateWithDefault(TcpCongestionControlState) TcpCongestionControlState
+pkg syscall/zx/posix/socket, method (*TcpInfo) GetReorderSeen() bool
+pkg syscall/zx/posix/socket, method (*TcpInfo) GetReorderSeenWithDefault(bool) bool
+pkg syscall/zx/posix/socket, method (*TcpInfo) GetRtoUsec() uint32
+pkg syscall/zx/posix/socket, method (*TcpInfo) GetRtoUsecWithDefault(uint32) uint32
+pkg syscall/zx/posix/socket, method (*TcpInfo) GetRttUsec() uint32
+pkg syscall/zx/posix/socket, method (*TcpInfo) GetRttUsecWithDefault(uint32) uint32
+pkg syscall/zx/posix/socket, method (*TcpInfo) GetRttVarUsec() uint32
+pkg syscall/zx/posix/socket, method (*TcpInfo) GetRttVarUsecWithDefault(uint32) uint32
+pkg syscall/zx/posix/socket, method (*TcpInfo) GetSndCwnd() uint32
+pkg syscall/zx/posix/socket, method (*TcpInfo) GetSndCwndWithDefault(uint32) uint32
+pkg syscall/zx/posix/socket, method (*TcpInfo) GetSndSsthresh() uint32
+pkg syscall/zx/posix/socket, method (*TcpInfo) GetSndSsthreshWithDefault(uint32) uint32
+pkg syscall/zx/posix/socket, method (*TcpInfo) GetState() TcpState
+pkg syscall/zx/posix/socket, method (*TcpInfo) GetStateWithDefault(TcpState) TcpState
+pkg syscall/zx/posix/socket, method (*TcpInfo) GetUnknownData() map[uint64]fidl.UnknownData
+pkg syscall/zx/posix/socket, method (*TcpInfo) HasCaState() bool
+pkg syscall/zx/posix/socket, method (*TcpInfo) HasReorderSeen() bool
+pkg syscall/zx/posix/socket, method (*TcpInfo) HasRtoUsec() bool
+pkg syscall/zx/posix/socket, method (*TcpInfo) HasRttUsec() bool
+pkg syscall/zx/posix/socket, method (*TcpInfo) HasRttVarUsec() bool
+pkg syscall/zx/posix/socket, method (*TcpInfo) HasSndCwnd() bool
+pkg syscall/zx/posix/socket, method (*TcpInfo) HasSndSsthresh() bool
+pkg syscall/zx/posix/socket, method (*TcpInfo) HasState() bool
+pkg syscall/zx/posix/socket, method (*TcpInfo) HasUnknownData() bool
+pkg syscall/zx/posix/socket, method (*TcpInfo) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*TcpInfo) SetCaState(TcpCongestionControlState)
+pkg syscall/zx/posix/socket, method (*TcpInfo) SetReorderSeen(bool)
+pkg syscall/zx/posix/socket, method (*TcpInfo) SetRtoUsec(uint32)
+pkg syscall/zx/posix/socket, method (*TcpInfo) SetRttUsec(uint32)
+pkg syscall/zx/posix/socket, method (*TcpInfo) SetRttVarUsec(uint32)
+pkg syscall/zx/posix/socket, method (*TcpInfo) SetSndCwnd(uint32)
+pkg syscall/zx/posix/socket, method (*TcpInfo) SetSndSsthresh(uint32)
+pkg syscall/zx/posix/socket, method (*TcpInfo) SetState(TcpState)
+pkg syscall/zx/posix/socket, method (*Timestamp) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*TimestampDeprecated) Marshaler() fidl.Marshaler
+pkg syscall/zx/posix/socket, method (*TimestampDeprecated) Ordinal() uint64
+pkg syscall/zx/posix/socket, method (*TimestampDeprecated) SetMicroseconds(int64)
+pkg syscall/zx/posix/socket, method (*TimestampDeprecated) SetNanoseconds(int64)
+pkg syscall/zx/posix/socket, method (*TimestampDeprecated) Which() I_timestampDeprecatedTag
+pkg syscall/zx/posix/socket, method (CmsgRequests) ClearBits(CmsgRequests) CmsgRequests
+pkg syscall/zx/posix/socket, method (CmsgRequests) GetUnknownBits() uint64
+pkg syscall/zx/posix/socket, method (CmsgRequests) HasBits(CmsgRequests) bool
+pkg syscall/zx/posix/socket, method (CmsgRequests) HasUnknownBits() bool
+pkg syscall/zx/posix/socket, method (CmsgRequests) I_BitsIsStrict() bool
+pkg syscall/zx/posix/socket, method (CmsgRequests) I_BitsMask() CmsgRequests
+pkg syscall/zx/posix/socket, method (CmsgRequests) InvertBits() CmsgRequests
+pkg syscall/zx/posix/socket, method (CmsgRequests) String() string
+pkg syscall/zx/posix/socket, method (DatagramSocketProtocol) I_EnumIsStrict() bool
+pkg syscall/zx/posix/socket, method (DatagramSocketProtocol) I_EnumValues() []DatagramSocketProtocol
+pkg syscall/zx/posix/socket, method (DatagramSocketProtocol) IsUnknown() bool
+pkg syscall/zx/posix/socket, method (DatagramSocketProtocol) String() string
+pkg syscall/zx/posix/socket, method (Domain) I_EnumIsStrict() bool
+pkg syscall/zx/posix/socket, method (Domain) I_EnumValues() []Domain
+pkg syscall/zx/posix/socket, method (Domain) IsUnknown() bool
+pkg syscall/zx/posix/socket, method (Domain) String() string
+pkg syscall/zx/posix/socket, method (InterfaceFlags) ClearBits(InterfaceFlags) InterfaceFlags
+pkg syscall/zx/posix/socket, method (InterfaceFlags) GetUnknownBits() uint64
+pkg syscall/zx/posix/socket, method (InterfaceFlags) HasBits(InterfaceFlags) bool
+pkg syscall/zx/posix/socket, method (InterfaceFlags) HasUnknownBits() bool
+pkg syscall/zx/posix/socket, method (InterfaceFlags) I_BitsIsStrict() bool
+pkg syscall/zx/posix/socket, method (InterfaceFlags) I_BitsMask() InterfaceFlags
+pkg syscall/zx/posix/socket, method (InterfaceFlags) InvertBits() InterfaceFlags
+pkg syscall/zx/posix/socket, method (InterfaceFlags) String() string
+pkg syscall/zx/posix/socket, method (ProviderWithCtxInterfaceRequest) Name() string
+pkg syscall/zx/posix/socket, method (ProviderWithCtxInterfaceRequest) ToChannel() zx.Channel
+pkg syscall/zx/posix/socket, method (RecvMsgFlags) ClearBits(RecvMsgFlags) RecvMsgFlags
+pkg syscall/zx/posix/socket, method (RecvMsgFlags) GetUnknownBits() uint64
+pkg syscall/zx/posix/socket, method (RecvMsgFlags) HasBits(RecvMsgFlags) bool
+pkg syscall/zx/posix/socket, method (RecvMsgFlags) HasUnknownBits() bool
+pkg syscall/zx/posix/socket, method (RecvMsgFlags) I_BitsIsStrict() bool
+pkg syscall/zx/posix/socket, method (RecvMsgFlags) I_BitsMask() RecvMsgFlags
+pkg syscall/zx/posix/socket, method (RecvMsgFlags) InvertBits() RecvMsgFlags
+pkg syscall/zx/posix/socket, method (RecvMsgFlags) String() string
+pkg syscall/zx/posix/socket, method (SendMsgFlags) ClearBits(SendMsgFlags) SendMsgFlags
+pkg syscall/zx/posix/socket, method (SendMsgFlags) GetUnknownBits() uint64
+pkg syscall/zx/posix/socket, method (SendMsgFlags) HasBits(SendMsgFlags) bool
+pkg syscall/zx/posix/socket, method (SendMsgFlags) HasUnknownBits() bool
+pkg syscall/zx/posix/socket, method (SendMsgFlags) I_BitsIsStrict() bool
+pkg syscall/zx/posix/socket, method (SendMsgFlags) I_BitsMask() SendMsgFlags
+pkg syscall/zx/posix/socket, method (SendMsgFlags) InvertBits() SendMsgFlags
+pkg syscall/zx/posix/socket, method (SendMsgFlags) String() string
+pkg syscall/zx/posix/socket, method (ShutdownMode) ClearBits(ShutdownMode) ShutdownMode
+pkg syscall/zx/posix/socket, method (ShutdownMode) GetUnknownBits() uint64
+pkg syscall/zx/posix/socket, method (ShutdownMode) HasBits(ShutdownMode) bool
+pkg syscall/zx/posix/socket, method (ShutdownMode) HasUnknownBits() bool
+pkg syscall/zx/posix/socket, method (ShutdownMode) I_BitsIsStrict() bool
+pkg syscall/zx/posix/socket, method (ShutdownMode) I_BitsMask() ShutdownMode
+pkg syscall/zx/posix/socket, method (ShutdownMode) InvertBits() ShutdownMode
+pkg syscall/zx/posix/socket, method (ShutdownMode) String() string
+pkg syscall/zx/posix/socket, method (StreamSocketProtocol) I_EnumIsStrict() bool
+pkg syscall/zx/posix/socket, method (StreamSocketProtocol) I_EnumValues() []StreamSocketProtocol
+pkg syscall/zx/posix/socket, method (StreamSocketProtocol) IsUnknown() bool
+pkg syscall/zx/posix/socket, method (StreamSocketProtocol) String() string
+pkg syscall/zx/posix/socket, method (TcpCongestionControl) I_EnumIsStrict() bool
+pkg syscall/zx/posix/socket, method (TcpCongestionControl) I_EnumValues() []TcpCongestionControl
+pkg syscall/zx/posix/socket, method (TcpCongestionControl) IsUnknown() bool
+pkg syscall/zx/posix/socket, method (TcpCongestionControl) String() string
+pkg syscall/zx/posix/socket, method (TcpCongestionControlState) I_EnumIsStrict() bool
+pkg syscall/zx/posix/socket, method (TcpCongestionControlState) I_EnumValues() []TcpCongestionControlState
+pkg syscall/zx/posix/socket, method (TcpCongestionControlState) IsUnknown() bool
+pkg syscall/zx/posix/socket, method (TcpCongestionControlState) String() string
+pkg syscall/zx/posix/socket, method (TcpState) I_EnumIsStrict() bool
+pkg syscall/zx/posix/socket, method (TcpState) I_EnumValues() []TcpState
+pkg syscall/zx/posix/socket, method (TcpState) IsUnknown() bool
+pkg syscall/zx/posix/socket, method (TcpState) String() string
+pkg syscall/zx/posix/socket, method (TimestampOption) I_EnumIsStrict() bool
+pkg syscall/zx/posix/socket, method (TimestampOption) I_EnumValues() []TimestampOption
+pkg syscall/zx/posix/socket, method (TimestampOption) IsUnknown() bool
+pkg syscall/zx/posix/socket, method (TimestampOption) String() string
+pkg syscall/zx/posix/socket, type BaseDatagramSocketEventProxy struct
+pkg syscall/zx/posix/socket, type BaseDatagramSocketEventProxy struct, embedded zx.Channel
+pkg syscall/zx/posix/socket, type BaseDatagramSocketGetInfoDeprecatedResponse struct
+pkg syscall/zx/posix/socket, type BaseDatagramSocketGetInfoDeprecatedResponse struct, Domain Domain
+pkg syscall/zx/posix/socket, type BaseDatagramSocketGetInfoDeprecatedResponse struct, Proto DatagramSocketProtocol
+pkg syscall/zx/posix/socket, type BaseDatagramSocketGetInfoDeprecatedResult struct
+pkg syscall/zx/posix/socket, type BaseDatagramSocketGetInfoDeprecatedResult struct, Err posix.Errno
+pkg syscall/zx/posix/socket, type BaseDatagramSocketGetInfoDeprecatedResult struct, Response BaseDatagramSocketGetInfoDeprecatedResponse
+pkg syscall/zx/posix/socket, type BaseDatagramSocketGetInfoDeprecatedResult struct, embedded I_baseDatagramSocketGetInfoDeprecatedResultTag
+pkg syscall/zx/posix/socket, type BaseDatagramSocketGetInfoResponse struct
+pkg syscall/zx/posix/socket, type BaseDatagramSocketGetInfoResponse struct, Domain Domain
+pkg syscall/zx/posix/socket, type BaseDatagramSocketGetInfoResponse struct, Proto DatagramSocketProtocol
+pkg syscall/zx/posix/socket, type BaseDatagramSocketGetInfoResult struct
+pkg syscall/zx/posix/socket, type BaseDatagramSocketGetInfoResult struct, Err posix.Errno
+pkg syscall/zx/posix/socket, type BaseDatagramSocketGetInfoResult struct, Response BaseDatagramSocketGetInfoResponse
+pkg syscall/zx/posix/socket, type BaseDatagramSocketGetInfoResult struct, embedded I_baseDatagramSocketGetInfoResultTag
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface { AddIpMembership, AddIpv6Membership, Bind, Clone, Clone2, Close, Connect, Describe, Disconnect, DropIpMembership, DropIpv6Membership, GetAcceptConn, GetAttr, GetAttributes, GetBindToDevice, GetBroadcast, GetConnectionInfo, GetError, GetFlags, GetInfo, GetInfoDeprecated, GetIpMulticastInterface, GetIpMulticastLoopback, GetIpMulticastTtl, GetIpPacketInfo, GetIpReceiveTtl, GetIpReceiveTypeOfService, GetIpTtl, GetIpTypeOfService, GetIpv6MulticastHops, GetIpv6MulticastInterface, GetIpv6MulticastLoopback, GetIpv6Only, GetIpv6ReceiveHopLimit, GetIpv6ReceivePacketInfo, GetIpv6ReceiveTrafficClass, GetIpv6TrafficClass, GetIpv6UnicastHops, GetKeepAlive, GetLinger, GetNoCheck, GetOutOfBandInline, GetPeerName, GetReceiveBuffer, GetReuseAddress, GetReusePort, GetSendBuffer, GetSockName, GetTimestamp, GetTimestampDeprecated, Query, QueryFilesystem, Reopen, SetAttr, SetBindToDevice, SetBroadcast, SetFlags, SetIpMulticastInterface, SetIpMulticastLoopback, SetIpMulticastTtl, SetIpPacketInfo, SetIpReceiveTtl, SetIpReceiveTypeOfService, SetIpTtl, SetIpTypeOfService, SetIpv6MulticastHops, SetIpv6MulticastInterface, SetIpv6MulticastLoopback, SetIpv6Only, SetIpv6ReceiveHopLimit, SetIpv6ReceivePacketInfo, SetIpv6ReceiveTrafficClass, SetIpv6TrafficClass, SetIpv6UnicastHops, SetKeepAlive, SetLinger, SetNoCheck, SetOutOfBandInline, SetReceiveBuffer, SetReuseAddress, SetReusePort, SetSendBuffer, SetTimestamp, SetTimestampDeprecated, Shutdown, Sync, UpdateAttributes }
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, AddIpMembership(context.Context, IpMulticastMembership) (BaseNetworkSocketAddIpMembershipResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, AddIpv6Membership(context.Context, Ipv6MulticastMembership) (BaseNetworkSocketAddIpv6MembershipResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, Bind(context.Context, net.SocketAddress) (BaseNetworkSocketBindResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, Clone(context.Context, io.OpenFlags, io.NodeWithCtxInterfaceRequest) error
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, Clone2(context.Context, unknown.CloneableWithCtxInterfaceRequest) error
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, Close(context.Context) (unknown.CloseableCloseResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, Connect(context.Context, net.SocketAddress) (BaseNetworkSocketConnectResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, Describe(context.Context) (io.NodeInfo, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, Disconnect(context.Context) (BaseNetworkSocketDisconnectResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, DropIpMembership(context.Context, IpMulticastMembership) (BaseNetworkSocketDropIpMembershipResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, DropIpv6Membership(context.Context, Ipv6MulticastMembership) (BaseNetworkSocketDropIpv6MembershipResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetAcceptConn(context.Context) (BaseSocketGetAcceptConnResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetAttr(context.Context) (int32, io.NodeAttributes, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetAttributes(context.Context, io.NodeAttributesQuery) (io.Node2GetAttributesResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetBindToDevice(context.Context) (BaseSocketGetBindToDeviceResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetBroadcast(context.Context) (BaseSocketGetBroadcastResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetConnectionInfo(context.Context) (io.ConnectionInfo, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetError(context.Context) (BaseSocketGetErrorResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetFlags(context.Context) (int32, io.OpenFlags, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetInfo(context.Context) (BaseDatagramSocketGetInfoResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetInfoDeprecated(context.Context) (BaseDatagramSocketGetInfoDeprecatedResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetIpMulticastInterface(context.Context) (BaseNetworkSocketGetIpMulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetIpMulticastLoopback(context.Context) (BaseNetworkSocketGetIpMulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetIpMulticastTtl(context.Context) (BaseNetworkSocketGetIpMulticastTtlResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetIpPacketInfo(context.Context) (BaseNetworkSocketGetIpPacketInfoResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetIpReceiveTtl(context.Context) (BaseNetworkSocketGetIpReceiveTtlResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetIpReceiveTypeOfService(context.Context) (BaseNetworkSocketGetIpReceiveTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetIpTtl(context.Context) (BaseNetworkSocketGetIpTtlResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetIpTypeOfService(context.Context) (BaseNetworkSocketGetIpTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetIpv6MulticastHops(context.Context) (BaseNetworkSocketGetIpv6MulticastHopsResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetIpv6MulticastInterface(context.Context) (BaseNetworkSocketGetIpv6MulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetIpv6MulticastLoopback(context.Context) (BaseNetworkSocketGetIpv6MulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetIpv6Only(context.Context) (BaseNetworkSocketGetIpv6OnlyResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetIpv6ReceiveHopLimit(context.Context) (BaseNetworkSocketGetIpv6ReceiveHopLimitResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetIpv6ReceivePacketInfo(context.Context) (BaseNetworkSocketGetIpv6ReceivePacketInfoResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetIpv6ReceiveTrafficClass(context.Context) (BaseNetworkSocketGetIpv6ReceiveTrafficClassResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetIpv6TrafficClass(context.Context) (BaseNetworkSocketGetIpv6TrafficClassResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetIpv6UnicastHops(context.Context) (BaseNetworkSocketGetIpv6UnicastHopsResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetKeepAlive(context.Context) (BaseSocketGetKeepAliveResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetLinger(context.Context) (BaseSocketGetLingerResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetNoCheck(context.Context) (BaseSocketGetNoCheckResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetOutOfBandInline(context.Context) (BaseSocketGetOutOfBandInlineResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetPeerName(context.Context) (BaseNetworkSocketGetPeerNameResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetReceiveBuffer(context.Context) (BaseSocketGetReceiveBufferResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetReuseAddress(context.Context) (BaseSocketGetReuseAddressResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetReusePort(context.Context) (BaseSocketGetReusePortResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetSendBuffer(context.Context) (BaseSocketGetSendBufferResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetSockName(context.Context) (BaseNetworkSocketGetSockNameResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetTimestamp(context.Context) (BaseSocketGetTimestampResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, GetTimestampDeprecated(context.Context) (BaseSocketGetTimestampDeprecatedResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, Query(context.Context) (uint64, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, QueryFilesystem(context.Context) (int32, *io.FilesystemInfo, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, Reopen(context.Context, *io.RightsRequest, zx.Channel) error
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetAttr(context.Context, io.NodeAttributeFlags, io.NodeAttributes) (int32, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetBindToDevice(context.Context, string) (BaseSocketSetBindToDeviceResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetBroadcast(context.Context, bool) (BaseSocketSetBroadcastResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetFlags(context.Context, io.OpenFlags) (int32, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetIpMulticastInterface(context.Context, uint64, net.Ipv4Address) (BaseNetworkSocketSetIpMulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetIpMulticastLoopback(context.Context, bool) (BaseNetworkSocketSetIpMulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetIpMulticastTtl(context.Context, OptionalUint8) (BaseNetworkSocketSetIpMulticastTtlResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetIpPacketInfo(context.Context, bool) (BaseNetworkSocketSetIpPacketInfoResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetIpReceiveTtl(context.Context, bool) (BaseNetworkSocketSetIpReceiveTtlResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetIpReceiveTypeOfService(context.Context, bool) (BaseNetworkSocketSetIpReceiveTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetIpTtl(context.Context, OptionalUint8) (BaseNetworkSocketSetIpTtlResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetIpTypeOfService(context.Context, uint8) (BaseNetworkSocketSetIpTypeOfServiceResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetIpv6MulticastHops(context.Context, OptionalUint8) (BaseNetworkSocketSetIpv6MulticastHopsResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetIpv6MulticastInterface(context.Context, uint64) (BaseNetworkSocketSetIpv6MulticastInterfaceResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetIpv6MulticastLoopback(context.Context, bool) (BaseNetworkSocketSetIpv6MulticastLoopbackResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetIpv6Only(context.Context, bool) (BaseNetworkSocketSetIpv6OnlyResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetIpv6ReceiveHopLimit(context.Context, bool) (BaseNetworkSocketSetIpv6ReceiveHopLimitResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetIpv6ReceivePacketInfo(context.Context, bool) (BaseNetworkSocketSetIpv6ReceivePacketInfoResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetIpv6ReceiveTrafficClass(context.Context, bool) (BaseNetworkSocketSetIpv6ReceiveTrafficClassResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetIpv6TrafficClass(context.Context, OptionalUint8) (BaseNetworkSocketSetIpv6TrafficClassResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetIpv6UnicastHops(context.Context, OptionalUint8) (BaseNetworkSocketSetIpv6UnicastHopsResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetKeepAlive(context.Context, bool) (BaseSocketSetKeepAliveResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetLinger(context.Context, bool, uint32) (BaseSocketSetLingerResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetNoCheck(context.Context, bool) (BaseSocketSetNoCheckResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetOutOfBandInline(context.Context, bool) (BaseSocketSetOutOfBandInlineResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetReceiveBuffer(context.Context, uint64) (BaseSocketSetReceiveBufferResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetReuseAddress(context.Context, bool) (BaseSocketSetReuseAddressResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetReusePort(context.Context, bool) (BaseSocketSetReusePortResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetSendBuffer(context.Context, uint64) (BaseSocketSetSendBufferResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetTimestamp(context.Context, TimestampOption) (BaseSocketSetTimestampResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, SetTimestampDeprecated(context.Context, TimestampOption) (BaseSocketSetTimestampDeprecatedResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, Shutdown(context.Context, ShutdownMode) (BaseNetworkSocketShutdownResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, Sync(context.Context) (io.Node2SyncResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtx interface, UpdateAttributes(context.Context, io.MutableNodeAttributes) (io.Node2UpdateAttributesResult, error)
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtxInterface struct
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtxInterface struct, embedded zx.Channel
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtxInterfaceRequest struct
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtxInterfaceRequest struct, embedded zx.Channel
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtxStub struct
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtxStub struct, Impl BaseDatagramSocketWithCtx
+pkg syscall/zx/posix/socket, type BaseDatagramSocketWithCtxTransitionalBase struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketAddIpMembershipResponse struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketAddIpMembershipResult struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketAddIpMembershipResult struct, Err posix.Errno
+pkg syscall/zx/posix/socket, type BaseNetworkSocketAddIpMembershipResult struct, Response BaseNetworkSocketAddIpMembershipResponse
+pkg syscall/zx/posix/socket, type BaseNetworkSocketAddIpMembershipResult struct, embedded I_baseNetworkSocketAddIpMembershipResultTag
+pkg syscall/zx/posix/socket, type BaseNetworkSocketAddIpv6MembershipResponse struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketAddIpv6MembershipResult struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketAddIpv6MembershipResult struct, Err posix.Errno
+pkg syscall/zx/posix/socket, type BaseNetworkSocketAddIpv6MembershipResult struct, Response BaseNetworkSocketAddIpv6MembershipResponse
+pkg syscall/zx/posix/socket, type BaseNetworkSocketAddIpv6MembershipResult struct, embedded I_baseNetworkSocketAddIpv6MembershipResultTag
+pkg syscall/zx/posix/socket, type BaseNetworkSocketBindResponse struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketBindResult struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketBindResult struct, Err posix.Errno
+pkg syscall/zx/posix/socket, type BaseNetworkSocketBindResult struct, Response BaseNetworkSocketBindResponse
+pkg syscall/zx/posix/socket, type BaseNetworkSocketBindResult struct, embedded I_baseNetworkSocketBindResultTag
+pkg syscall/zx/posix/socket, type BaseNetworkSocketConnectResponse struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketConnectResult struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketConnectResult struct, Err posix.Errno
+pkg syscall/zx/posix/socket, type BaseNetworkSocketConnectResult struct, Response BaseNetworkSocketConnectResponse
+pkg syscall/zx/posix/socket, type BaseNetworkSocketConnectResult struct, embedded I_baseNetworkSocketConnectResultTag
+pkg syscall/zx/posix/socket, type BaseNetworkSocketDisconnectResponse struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketDisconnectResult struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketDisconnectResult struct, Err posix.Errno
+pkg syscall/zx/posix/socket, type BaseNetworkSocketDisconnectResult struct, Response BaseNetworkSocketDisconnectResponse
+pkg syscall/zx/posix/socket, type BaseNetworkSocketDisconnectResult struct, embedded I_baseNetworkSocketDisconnectResultTag
+pkg syscall/zx/posix/socket, type BaseNetworkSocketDropIpMembershipResponse struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketDropIpMembershipResult struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketDropIpMembershipResult struct, Err posix.Errno
+pkg syscall/zx/posix/socket, type BaseNetworkSocketDropIpMembershipResult struct, Response BaseNetworkSocketDropIpMembershipResponse
+pkg syscall/zx/posix/socket, type BaseNetworkSocketDropIpMembershipResult struct, embedded I_baseNetworkSocketDropIpMembershipResultTag
+pkg syscall/zx/posix/socket, type BaseNetworkSocketDropIpv6MembershipResponse struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketDropIpv6MembershipResult struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketDropIpv6MembershipResult struct, Err posix.Errno
+pkg syscall/zx/posix/socket, type BaseNetworkSocketDropIpv6MembershipResult struct, Response BaseNetworkSocketDropIpv6MembershipResponse
+pkg syscall/zx/posix/socket, type BaseNetworkSocketDropIpv6MembershipResult struct, embedded I_baseNetworkSocketDropIpv6MembershipResultTag
+pkg syscall/zx/posix/socket, type BaseNetworkSocketEventProxy struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketEventProxy struct, embedded zx.Channel
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpMulticastInterfaceResponse struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpMulticastInterfaceResponse struct, Value net.Ipv4Address
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpMulticastInterfaceResult struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpMulticastInterfaceResult struct, Err posix.Errno
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpMulticastInterfaceResult struct, Response BaseNetworkSocketGetIpMulticastInterfaceResponse
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpMulticastInterfaceResult struct, embedded I_baseNetworkSocketGetIpMulticastInterfaceResultTag
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpMulticastLoopbackResponse struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpMulticastLoopbackResponse struct, Value bool
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpMulticastLoopbackResult struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpMulticastLoopbackResult struct, Err posix.Errno
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpMulticastLoopbackResult struct, Response BaseNetworkSocketGetIpMulticastLoopbackResponse
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpMulticastLoopbackResult struct, embedded I_baseNetworkSocketGetIpMulticastLoopbackResultTag
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpMulticastTtlResponse struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpMulticastTtlResponse struct, Value uint8
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpMulticastTtlResult struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpMulticastTtlResult struct, Err posix.Errno
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpMulticastTtlResult struct, Response BaseNetworkSocketGetIpMulticastTtlResponse
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpMulticastTtlResult struct, embedded I_baseNetworkSocketGetIpMulticastTtlResultTag
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpPacketInfoResponse struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpPacketInfoResponse struct, Value bool
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpPacketInfoResult struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpPacketInfoResult struct, Err posix.Errno
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpPacketInfoResult struct, Response BaseNetworkSocketGetIpPacketInfoResponse
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpPacketInfoResult struct, embedded I_baseNetworkSocketGetIpPacketInfoResultTag
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpReceiveTtlResponse struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpReceiveTtlResponse struct, Value bool
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpReceiveTtlResult struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpReceiveTtlResult struct, Err posix.Errno
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpReceiveTtlResult struct, Response BaseNetworkSocketGetIpReceiveTtlResponse
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpReceiveTtlResult struct, embedded I_baseNetworkSocketGetIpReceiveTtlResultTag
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpReceiveTypeOfServiceResponse struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpReceiveTypeOfServiceResponse struct, Value bool
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpReceiveTypeOfServiceResult struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpReceiveTypeOfServiceResult struct, Err posix.Errno
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpReceiveTypeOfServiceResult struct, Response BaseNetworkSocketGetIpReceiveTypeOfServiceResponse
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpReceiveTypeOfServiceResult struct, embedded I_baseNetworkSocketGetIpReceiveTypeOfServiceResultTag
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpTtlResponse struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpTtlResponse struct, Value uint8
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpTtlResult struct
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpTtlResult struct, Err posix.Errno
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpTtlResult struct, Response BaseNetworkSocketGetIpTtlResponse
+pkg syscall/zx/posix/socket, type BaseNetworkSocketGetIpTtlResult struct, embedded I_baseNetworkSocketGetIpTtlResultTag
+pkg syscall/zx/posix/socket, type BaseNe