mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-23 19:39:40 +00:00
sys/fuchsia: fix fidlgen issues
* sys/fuchsia: fix fidlgen issues. This change modifies fidlgen removing fuchsia.mediacodec and renaming zircon-ethernet to fuchsia-hardware-ethernet. fuchsia.mediacodec has most of its functionality merged into fuchsia.media and it's not included in the default amd64 builds. zircon-ethernet has been renamed to fuchsia-hardware-ethernet recently: https://fuchsia-review.googlesource.com/c/zircon/+/237178 * docs/fuchsia: Add troubleshooting sections This commit adds a troubleshooting section in the fuchsia syzkaller docs that mentions how to solve fidlgen issues when fidl interfaces are removed or renamed. * sys/fuchsia: remove stale autogenerated files. * sys/fucsia run make extract && make generate.
This commit is contained in:
parent
d672172cce
commit
d25487bc2e
@ -113,3 +113,22 @@ Run `syz-ci` as:
|
||||
```
|
||||
SOURCEDIR=/bootstrap/fuchsia ./syz-ci -config ci.cfg
|
||||
```
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
While running the `make extract` step, it's possible that the fidl definitions
|
||||
are not up to date. It could happen that they have been removed or renamed.
|
||||
|
||||
If this is the case, you would see an error mentioning that the fidl.json file
|
||||
could not be found:
|
||||
|
||||
```
|
||||
go generate ./sys/fuchsia
|
||||
cannot find /path-to-fuchsia/out/x64/fidling/gen/zircon/public/fidl/zircon-ethernet/zircon-ethernet.fidl.json
|
||||
exit status 1
|
||||
```
|
||||
|
||||
You can search for the string in the fuchsia repos or in the code-review tool to
|
||||
see what happened to it. If the fidl interface was renamed or removed, you
|
||||
should update `sys/fuchsia/fidlgen/main.go` to reflect this change, and remove the
|
||||
stale autogenerated files.
|
||||
|
@ -35,7 +35,7 @@
|
||||
|
||||
#if GOARCH_amd64
|
||||
#define GOARCH "amd64"
|
||||
#define SYZ_REVISION "bd572b59fe6577d24e22a364873c5666c1c84b7e"
|
||||
#define SYZ_REVISION "9dc77f0d4b31e843dc99bab5336fdcada6f6c94d"
|
||||
#define SYZ_EXECUTOR_USES_FORK_SERVER 0
|
||||
#define SYZ_EXECUTOR_USES_SHMEM 0
|
||||
#define SYZ_PAGE_SIZE 4096
|
||||
@ -45,7 +45,7 @@
|
||||
|
||||
#if GOARCH_arm64
|
||||
#define GOARCH "arm64"
|
||||
#define SYZ_REVISION "43822deeef9cd6ecfb711378d529dca12ec20614"
|
||||
#define SYZ_REVISION "8be0f9990181eaecd327c539812d46d285db84cd"
|
||||
#define SYZ_EXECUTOR_USES_FORK_SERVER 0
|
||||
#define SYZ_EXECUTOR_USES_SHMEM 0
|
||||
#define SYZ_PAGE_SIZE 4096
|
||||
|
@ -695,16 +695,16 @@ const call_t syscalls[] = {
|
||||
{"fdio_service_connect$fuchsia_cobalt_SystemDataUpdater", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_devicesettings_DeviceSettingsManager", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_devicesettings_DeviceSettingsWatcher", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_hardware_ethernet_Device", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_io_Directory", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_io_DirectoryAdmin", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_io_DirectoryWatcher", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_io_File", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_io_Node", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_ldsvc_Loader", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_mediacodec_Codec", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_mediacodec_CodecFactory", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_net_Connectivity", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_net_LegacySocketProvider", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_net_SocketControl", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_net_SocketProvider", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_net_stack_Stack", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_power_PowerManager", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_power_PowerManagerWatcher", 0, (syscall_t)fdio_service_connect},
|
||||
@ -714,7 +714,6 @@ const call_t syscalls[] = {
|
||||
{"fdio_service_connect$fuchsia_timezone_TimeService", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_timezone_Timezone", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_timezone_TimezoneWatcher", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$zircon_ethernet_Device", 0, (syscall_t)fdio_service_connect},
|
||||
{"fstat", 0, (syscall_t)fstat},
|
||||
{"fsync", 0, (syscall_t)fsync},
|
||||
{"ftruncate", 0, (syscall_t)ftruncate},
|
||||
@ -780,7 +779,13 @@ const call_t syscalls[] = {
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerBaseStartTimer", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerEndTimer", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerFactoryCreateLogger", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerFactoryCreateLoggerFromProjectId", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerFactoryCreateLoggerFromProjectName", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerFactoryCreateLoggerSimple", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleFromProjectId", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleFromProjectName", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerLogCobaltEvent", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerLogCobaltEvents", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerLogCustomEvent", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerLogElapsedTime", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerLogEvent", 0, (syscall_t)zx_channel_call},
|
||||
@ -805,6 +810,21 @@ const call_t syscalls[] = {
|
||||
{"zx_channel_call$fuchsia_devicesettings_DeviceSettingsManagerSetInteger", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_devicesettings_DeviceSettingsManagerSetString", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_devicesettings_DeviceSettingsManagerWatch", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceConfigMulticastAddMac", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceConfigMulticastDeleteMac", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceConfigMulticastSetPromiscuousMode", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceConfigMulticastTestFilter", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceDumpRegisters", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceGetFifos", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceGetInfo", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceGetStatus", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceListenStart", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceListenStop", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceSetClientName", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceSetIOBuffer", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceSetPromiscuousMode", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceStart", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceStop", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_DirectoryAdminClose", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_DirectoryAdminDescribe", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_DirectoryAdminGetAttr", 0, (syscall_t)zx_channel_call},
|
||||
@ -840,8 +860,8 @@ const call_t syscalls[] = {
|
||||
{"zx_channel_call$fuchsia_io_FileClose", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_FileDescribe", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_FileGetAttr", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_FileGetBuffer", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_FileGetFlags", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_FileGetVmo", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_FileIoctl", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_FileRead", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_FileReadAt", 0, (syscall_t)zx_channel_call},
|
||||
@ -864,9 +884,18 @@ const call_t syscalls[] = {
|
||||
{"zx_channel_call$fuchsia_ldsvc_LoaderDebugPublishDataSink", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_ldsvc_LoaderLoadObject", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_ldsvc_LoaderLoadScriptInterpreter", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_mediacodec_CodecSync", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_LegacySocketProviderGetAddrInfo", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_LegacySocketProviderOpenSocket", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlAccept", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlBind", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlClose", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlConnect", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlGetPeerName", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlGetSockName", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlGetSockOpt", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlIoctl", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlListen", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlSetSockOpt", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketProviderGetAddrInfo", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketProviderSocket", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_stack_StackAddEthernetInterface", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_stack_StackAddForwardingEntry", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_stack_StackAddInterfaceAddress", 0, (syscall_t)zx_channel_call},
|
||||
@ -888,21 +917,6 @@ const call_t syscalls[] = {
|
||||
{"zx_channel_call$fuchsia_timezone_TimezoneGetTimezoneId", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_timezone_TimezoneGetTimezoneOffsetMinutes", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_timezone_TimezoneSetTimezone", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceConfigMulticastAddMac", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceConfigMulticastDeleteMac", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceConfigMulticastSetPromiscuousMode", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceConfigMulticastTestFilter", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceDumpRegisters", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceGetFifos", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceGetInfo", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceGetStatus", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceListenStart", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceListenStop", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceSetClientName", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceSetIOBuffer", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceSetPromiscuousMode", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceStart", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceStop", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_create", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_cobalt_Controller", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_cobalt_Logger", 0, (syscall_t)zx_channel_create},
|
||||
@ -912,16 +926,16 @@ const call_t syscalls[] = {
|
||||
{"zx_channel_create$fuchsia_cobalt_SystemDataUpdater", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_devicesettings_DeviceSettingsManager", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_devicesettings_DeviceSettingsWatcher", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_hardware_ethernet_Device", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_io_Directory", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_io_DirectoryAdmin", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_io_DirectoryWatcher", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_io_File", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_io_Node", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_ldsvc_Loader", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_mediacodec_Codec", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_mediacodec_CodecFactory", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_net_Connectivity", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_net_LegacySocketProvider", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_net_SocketControl", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_net_SocketProvider", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_net_stack_Stack", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_power_PowerManager", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_power_PowerManagerWatcher", 0, (syscall_t)zx_channel_create},
|
||||
@ -931,19 +945,11 @@ const call_t syscalls[] = {
|
||||
{"zx_channel_create$fuchsia_timezone_TimeService", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_timezone_Timezone", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_timezone_TimezoneWatcher", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$zircon_ethernet_Device", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_read", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_io_DirectoryAdminOnOpen", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_io_DirectoryOnOpen", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_io_FileOnOpen", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_io_NodeOnOpen", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_mediacodec_CodecFactoryOnCodecList", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_mediacodec_CodecOnFreeInputPacket", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_mediacodec_CodecOnInputConstraints", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_mediacodec_CodecOnOutputConfig", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_mediacodec_CodecOnOutputEndOfStream", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_mediacodec_CodecOnOutputPacket", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_mediacodec_CodecOnStreamFailed", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_net_ConnectivityOnNetworkReachable", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_net_stack_StackOnInterfaceAddressChange", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_net_stack_StackOnInterfaceStatusChange", 0, (syscall_t)zx_channel_read},
|
||||
@ -958,18 +964,6 @@ const call_t syscalls[] = {
|
||||
{"zx_channel_write$fuchsia_io_FileClone", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_io_NodeClone", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_ldsvc_LoaderDone", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecAddInputBuffer", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecAddOutputBuffer", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecCloseCurrentStream", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecEnableOnStreamFailed", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecFactoryCreateDecoder", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecFlushEndOfStreamAndCloseStream", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecQueueInputEndOfStream", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecQueueInputFormatDetails", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecQueueInputPacket", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecRecycleOutputPacket", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecSetInputBufferSettings", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecSetOutputBufferSettings", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_power_PowerManagerWatch", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_power_PowerManagerWatcherOnChangeBatteryStatus", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_process_LauncherAddArgs", 0, (syscall_t)zx_channel_write},
|
||||
@ -1113,16 +1107,16 @@ const call_t syscalls[] = {
|
||||
{"fdio_service_connect$fuchsia_cobalt_SystemDataUpdater", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_devicesettings_DeviceSettingsManager", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_devicesettings_DeviceSettingsWatcher", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_hardware_ethernet_Device", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_io_Directory", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_io_DirectoryAdmin", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_io_DirectoryWatcher", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_io_File", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_io_Node", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_ldsvc_Loader", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_mediacodec_Codec", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_mediacodec_CodecFactory", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_net_Connectivity", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_net_LegacySocketProvider", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_net_SocketControl", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_net_SocketProvider", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_net_stack_Stack", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_power_PowerManager", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_power_PowerManagerWatcher", 0, (syscall_t)fdio_service_connect},
|
||||
@ -1132,7 +1126,6 @@ const call_t syscalls[] = {
|
||||
{"fdio_service_connect$fuchsia_timezone_TimeService", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_timezone_Timezone", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$fuchsia_timezone_TimezoneWatcher", 0, (syscall_t)fdio_service_connect},
|
||||
{"fdio_service_connect$zircon_ethernet_Device", 0, (syscall_t)fdio_service_connect},
|
||||
{"fstat", 0, (syscall_t)fstat},
|
||||
{"fsync", 0, (syscall_t)fsync},
|
||||
{"ftruncate", 0, (syscall_t)ftruncate},
|
||||
@ -1198,7 +1191,13 @@ const call_t syscalls[] = {
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerBaseStartTimer", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerEndTimer", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerFactoryCreateLogger", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerFactoryCreateLoggerFromProjectId", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerFactoryCreateLoggerFromProjectName", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerFactoryCreateLoggerSimple", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleFromProjectId", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleFromProjectName", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerLogCobaltEvent", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerLogCobaltEvents", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerLogCustomEvent", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerLogElapsedTime", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_cobalt_LoggerLogEvent", 0, (syscall_t)zx_channel_call},
|
||||
@ -1223,6 +1222,21 @@ const call_t syscalls[] = {
|
||||
{"zx_channel_call$fuchsia_devicesettings_DeviceSettingsManagerSetInteger", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_devicesettings_DeviceSettingsManagerSetString", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_devicesettings_DeviceSettingsManagerWatch", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceConfigMulticastAddMac", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceConfigMulticastDeleteMac", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceConfigMulticastSetPromiscuousMode", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceConfigMulticastTestFilter", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceDumpRegisters", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceGetFifos", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceGetInfo", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceGetStatus", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceListenStart", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceListenStop", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceSetClientName", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceSetIOBuffer", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceSetPromiscuousMode", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceStart", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_hardware_ethernet_DeviceStop", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_DirectoryAdminClose", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_DirectoryAdminDescribe", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_DirectoryAdminGetAttr", 0, (syscall_t)zx_channel_call},
|
||||
@ -1258,8 +1272,8 @@ const call_t syscalls[] = {
|
||||
{"zx_channel_call$fuchsia_io_FileClose", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_FileDescribe", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_FileGetAttr", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_FileGetBuffer", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_FileGetFlags", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_FileGetVmo", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_FileIoctl", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_FileRead", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_io_FileReadAt", 0, (syscall_t)zx_channel_call},
|
||||
@ -1282,9 +1296,18 @@ const call_t syscalls[] = {
|
||||
{"zx_channel_call$fuchsia_ldsvc_LoaderDebugPublishDataSink", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_ldsvc_LoaderLoadObject", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_ldsvc_LoaderLoadScriptInterpreter", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_mediacodec_CodecSync", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_LegacySocketProviderGetAddrInfo", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_LegacySocketProviderOpenSocket", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlAccept", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlBind", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlClose", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlConnect", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlGetPeerName", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlGetSockName", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlGetSockOpt", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlIoctl", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlListen", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketControlSetSockOpt", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketProviderGetAddrInfo", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_SocketProviderSocket", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_stack_StackAddEthernetInterface", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_stack_StackAddForwardingEntry", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_net_stack_StackAddInterfaceAddress", 0, (syscall_t)zx_channel_call},
|
||||
@ -1306,21 +1329,6 @@ const call_t syscalls[] = {
|
||||
{"zx_channel_call$fuchsia_timezone_TimezoneGetTimezoneId", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_timezone_TimezoneGetTimezoneOffsetMinutes", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$fuchsia_timezone_TimezoneSetTimezone", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceConfigMulticastAddMac", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceConfigMulticastDeleteMac", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceConfigMulticastSetPromiscuousMode", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceConfigMulticastTestFilter", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceDumpRegisters", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceGetFifos", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceGetInfo", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceGetStatus", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceListenStart", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceListenStop", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceSetClientName", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceSetIOBuffer", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceSetPromiscuousMode", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceStart", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_call$zircon_ethernet_DeviceStop", 0, (syscall_t)zx_channel_call},
|
||||
{"zx_channel_create", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_cobalt_Controller", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_cobalt_Logger", 0, (syscall_t)zx_channel_create},
|
||||
@ -1330,16 +1338,16 @@ const call_t syscalls[] = {
|
||||
{"zx_channel_create$fuchsia_cobalt_SystemDataUpdater", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_devicesettings_DeviceSettingsManager", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_devicesettings_DeviceSettingsWatcher", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_hardware_ethernet_Device", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_io_Directory", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_io_DirectoryAdmin", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_io_DirectoryWatcher", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_io_File", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_io_Node", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_ldsvc_Loader", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_mediacodec_Codec", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_mediacodec_CodecFactory", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_net_Connectivity", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_net_LegacySocketProvider", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_net_SocketControl", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_net_SocketProvider", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_net_stack_Stack", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_power_PowerManager", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_power_PowerManagerWatcher", 0, (syscall_t)zx_channel_create},
|
||||
@ -1349,19 +1357,11 @@ const call_t syscalls[] = {
|
||||
{"zx_channel_create$fuchsia_timezone_TimeService", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_timezone_Timezone", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$fuchsia_timezone_TimezoneWatcher", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_create$zircon_ethernet_Device", 0, (syscall_t)zx_channel_create},
|
||||
{"zx_channel_read", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_io_DirectoryAdminOnOpen", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_io_DirectoryOnOpen", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_io_FileOnOpen", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_io_NodeOnOpen", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_mediacodec_CodecFactoryOnCodecList", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_mediacodec_CodecOnFreeInputPacket", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_mediacodec_CodecOnInputConstraints", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_mediacodec_CodecOnOutputConfig", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_mediacodec_CodecOnOutputEndOfStream", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_mediacodec_CodecOnOutputPacket", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_mediacodec_CodecOnStreamFailed", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_net_ConnectivityOnNetworkReachable", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_net_stack_StackOnInterfaceAddressChange", 0, (syscall_t)zx_channel_read},
|
||||
{"zx_channel_read$fuchsia_net_stack_StackOnInterfaceStatusChange", 0, (syscall_t)zx_channel_read},
|
||||
@ -1376,18 +1376,6 @@ const call_t syscalls[] = {
|
||||
{"zx_channel_write$fuchsia_io_FileClone", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_io_NodeClone", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_ldsvc_LoaderDone", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecAddInputBuffer", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecAddOutputBuffer", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecCloseCurrentStream", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecEnableOnStreamFailed", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecFactoryCreateDecoder", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecFlushEndOfStreamAndCloseStream", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecQueueInputEndOfStream", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecQueueInputFormatDetails", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecQueueInputPacket", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecRecycleOutputPacket", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecSetInputBufferSettings", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_mediacodec_CodecSetOutputBufferSettings", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_power_PowerManagerWatch", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_power_PowerManagerWatcherOnChangeBatteryStatus", 0, (syscall_t)zx_channel_write},
|
||||
{"zx_channel_write$fuchsia_process_LauncherAddArgs", 0, (syscall_t)zx_channel_write},
|
||||
|
@ -45,6 +45,27 @@ fuchsia_cobalt_HistogramBucketHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_CountEventInLine {
|
||||
period_duration_micros int64
|
||||
count int64
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_CobaltEventInLine {
|
||||
metric_id int32
|
||||
event_codesInLine fidl_vector
|
||||
componentInLine fidl_string
|
||||
payloadInLine fuchsia_cobalt_EventPayloadInLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_CobaltEventOutOfLine {
|
||||
event_codesOutOfLine array[int32]
|
||||
componentOutOfLine fidl_aligned[stringnoz]
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_CobaltEventHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_ExperimentInLine {
|
||||
experiment_id int64
|
||||
arm_id int32
|
||||
@ -65,8 +86,13 @@ fuchsia_cobalt_ValueInLine [
|
||||
index_value fidl_union_member[fuchsia_cobalt_ValueTag_index_value, int32]
|
||||
]
|
||||
|
||||
fuchsia_cobalt_EventPayloadInLine [
|
||||
event_countInLine fidl_union_member[fuchsia_cobalt_EventPayloadTag_event_count, fuchsia_cobalt_CountEventInLine]
|
||||
int_histogramInLine fidl_union_member[fuchsia_cobalt_EventPayloadTag_int_histogram, fidl_vector]
|
||||
]
|
||||
|
||||
fuchsia_cobalt_LoggerFactoryCreateLoggerRequest {
|
||||
hdr fidl_message_header[1]
|
||||
hdr fidl_message_header[1594393985]
|
||||
profileInLine fuchsia_cobalt_ProjectProfileInLine
|
||||
logger flags[fidl_handle_presence, int32]
|
||||
profileOutOfLine fuchsia_cobalt_ProjectProfileOutOfLine
|
||||
@ -82,7 +108,7 @@ fuchsia_cobalt_LoggerFactoryCreateLoggerResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleRequest {
|
||||
hdr fidl_message_header[2]
|
||||
hdr fidl_message_header[1594344351]
|
||||
profileInLine fuchsia_cobalt_ProjectProfileInLine
|
||||
logger flags[fidl_handle_presence, int32]
|
||||
profileOutOfLine fuchsia_cobalt_ProjectProfileOutOfLine
|
||||
@ -97,6 +123,68 @@ fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerFactoryCreateLoggerFromProjectNameRequest {
|
||||
hdr fidl_message_header[537166031]
|
||||
project_nameInLine fidl_string
|
||||
release_stage flags[fuchsia_cobalt_ReleaseStage, int32]
|
||||
logger flags[fidl_handle_presence, int32]
|
||||
project_nameOutOfLine fidl_aligned[stringnoz]
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerFactoryCreateLoggerFromProjectNameRequestHandles {
|
||||
logger zx_chan_fuchsia_cobalt_Logger_server
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerFactoryCreateLoggerFromProjectNameResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleFromProjectNameRequest {
|
||||
hdr fidl_message_header[930272946]
|
||||
project_nameInLine fidl_string
|
||||
release_stage flags[fuchsia_cobalt_ReleaseStage, int32]
|
||||
logger flags[fidl_handle_presence, int32]
|
||||
project_nameOutOfLine fidl_aligned[stringnoz]
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleFromProjectNameRequestHandles {
|
||||
logger zx_chan_fuchsia_cobalt_LoggerSimple_server
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleFromProjectNameResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerFactoryCreateLoggerFromProjectIdRequest {
|
||||
hdr fidl_message_header[721700981]
|
||||
project_id int32
|
||||
release_stage flags[fuchsia_cobalt_ReleaseStage, int32]
|
||||
logger flags[fidl_handle_presence, int32]
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerFactoryCreateLoggerFromProjectIdRequestHandles {
|
||||
logger zx_chan_fuchsia_cobalt_Logger_server
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerFactoryCreateLoggerFromProjectIdResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleFromProjectIdRequest {
|
||||
hdr fidl_message_header[294571825]
|
||||
project_id int32
|
||||
release_stage flags[fuchsia_cobalt_ReleaseStage, int32]
|
||||
logger flags[fidl_handle_presence, int32]
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleFromProjectIdRequestHandles {
|
||||
logger zx_chan_fuchsia_cobalt_LoggerSimple_server
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleFromProjectIdResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
resource zx_chan_fuchsia_cobalt_LoggerFactory_client[zx_chan]
|
||||
resource zx_chan_fuchsia_cobalt_LoggerFactory_server[zx_chan]
|
||||
|
||||
@ -104,11 +192,15 @@ zx_channel_create$fuchsia_cobalt_LoggerFactory(options const[0], out0 ptr[out, z
|
||||
fdio_service_connect$fuchsia_cobalt_LoggerFactory(path ptr[in, string["/svc/fuchsia.cobalt.LoggerFactory"]], handle zx_chan_fuchsia_cobalt_LoggerFactory_server)
|
||||
zx_channel_call$fuchsia_cobalt_LoggerFactoryCreateLogger(handle zx_chan_fuchsia_cobalt_LoggerFactory_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_cobalt_LoggerFactoryCreateLoggerRequest, fuchsia_cobalt_LoggerFactoryCreateLoggerRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_cobalt_LoggerFactoryCreateLoggerResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_cobalt_LoggerFactoryCreateLoggerSimple(handle zx_chan_fuchsia_cobalt_LoggerFactory_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleRequest, fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_cobalt_LoggerFactoryCreateLoggerFromProjectName(handle zx_chan_fuchsia_cobalt_LoggerFactory_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_cobalt_LoggerFactoryCreateLoggerFromProjectNameRequest, fuchsia_cobalt_LoggerFactoryCreateLoggerFromProjectNameRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_cobalt_LoggerFactoryCreateLoggerFromProjectNameResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleFromProjectName(handle zx_chan_fuchsia_cobalt_LoggerFactory_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleFromProjectNameRequest, fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleFromProjectNameRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleFromProjectNameResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_cobalt_LoggerFactoryCreateLoggerFromProjectId(handle zx_chan_fuchsia_cobalt_LoggerFactory_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_cobalt_LoggerFactoryCreateLoggerFromProjectIdRequest, fuchsia_cobalt_LoggerFactoryCreateLoggerFromProjectIdRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_cobalt_LoggerFactoryCreateLoggerFromProjectIdResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleFromProjectId(handle zx_chan_fuchsia_cobalt_LoggerFactory_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleFromProjectIdRequest, fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleFromProjectIdRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_cobalt_LoggerFactoryCreateLoggerSimpleFromProjectIdResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
|
||||
fuchsia_cobalt_LoggerBaseLogEventRequest {
|
||||
hdr fidl_message_header[1]
|
||||
hdr fidl_message_header[324887181]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerBaseLogEventRequestHandles {
|
||||
@ -120,9 +212,9 @@ fuchsia_cobalt_LoggerBaseLogEventResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerBaseLogEventCountRequest {
|
||||
hdr fidl_message_header[2]
|
||||
hdr fidl_message_header[1875801957]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
componentInLine fidl_string
|
||||
period_duration_micros int64
|
||||
count int64
|
||||
@ -138,9 +230,9 @@ fuchsia_cobalt_LoggerBaseLogEventCountResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerBaseLogElapsedTimeRequest {
|
||||
hdr fidl_message_header[3]
|
||||
hdr fidl_message_header[351572256]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
componentInLine fidl_string
|
||||
elapsed_micros int64
|
||||
componentOutOfLine fidl_aligned[stringnoz]
|
||||
@ -155,9 +247,9 @@ fuchsia_cobalt_LoggerBaseLogElapsedTimeResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerBaseLogFrameRateRequest {
|
||||
hdr fidl_message_header[4]
|
||||
hdr fidl_message_header[730276536]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
componentInLine fidl_string
|
||||
fps int32
|
||||
componentOutOfLine fidl_aligned[stringnoz]
|
||||
@ -172,9 +264,9 @@ fuchsia_cobalt_LoggerBaseLogFrameRateResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerBaseLogMemoryUsageRequest {
|
||||
hdr fidl_message_header[5]
|
||||
hdr fidl_message_header[1724292379]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
componentInLine fidl_string
|
||||
bytes int64
|
||||
componentOutOfLine fidl_aligned[stringnoz]
|
||||
@ -189,7 +281,7 @@ fuchsia_cobalt_LoggerBaseLogMemoryUsageResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerBaseLogStringRequest {
|
||||
hdr fidl_message_header[6]
|
||||
hdr fidl_message_header[1288241002]
|
||||
metric_id int32
|
||||
sInLine fidl_string
|
||||
sOutOfLine fidl_aligned[stringnoz]
|
||||
@ -204,9 +296,9 @@ fuchsia_cobalt_LoggerBaseLogStringResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerBaseStartTimerRequest {
|
||||
hdr fidl_message_header[7]
|
||||
hdr fidl_message_header[1247568160]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
componentInLine fidl_string
|
||||
timer_idInLine fidl_string
|
||||
timestamp int64
|
||||
@ -224,7 +316,7 @@ fuchsia_cobalt_LoggerBaseStartTimerResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerBaseEndTimerRequest {
|
||||
hdr fidl_message_header[8]
|
||||
hdr fidl_message_header[1708879426]
|
||||
timer_idInLine fidl_string
|
||||
timestamp int64
|
||||
timeout_s int32
|
||||
@ -254,9 +346,9 @@ zx_channel_call$fuchsia_cobalt_LoggerBaseStartTimer(handle zx_chan_fuchsia_cobal
|
||||
zx_channel_call$fuchsia_cobalt_LoggerBaseEndTimer(handle zx_chan_fuchsia_cobalt_LoggerBase_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_cobalt_LoggerBaseEndTimerRequest, fuchsia_cobalt_LoggerBaseEndTimerRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_cobalt_LoggerBaseEndTimerResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
|
||||
fuchsia_cobalt_LoggerLogEventRequest {
|
||||
hdr fidl_message_header[1]
|
||||
hdr fidl_message_header[324887181]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerLogEventRequestHandles {
|
||||
@ -268,9 +360,9 @@ fuchsia_cobalt_LoggerLogEventResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerLogEventCountRequest {
|
||||
hdr fidl_message_header[2]
|
||||
hdr fidl_message_header[1875801957]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
componentInLine fidl_string
|
||||
period_duration_micros int64
|
||||
count int64
|
||||
@ -286,9 +378,9 @@ fuchsia_cobalt_LoggerLogEventCountResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerLogElapsedTimeRequest {
|
||||
hdr fidl_message_header[3]
|
||||
hdr fidl_message_header[351572256]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
componentInLine fidl_string
|
||||
elapsed_micros int64
|
||||
componentOutOfLine fidl_aligned[stringnoz]
|
||||
@ -303,9 +395,9 @@ fuchsia_cobalt_LoggerLogElapsedTimeResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerLogFrameRateRequest {
|
||||
hdr fidl_message_header[4]
|
||||
hdr fidl_message_header[730276536]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
componentInLine fidl_string
|
||||
fps int32
|
||||
componentOutOfLine fidl_aligned[stringnoz]
|
||||
@ -320,9 +412,9 @@ fuchsia_cobalt_LoggerLogFrameRateResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerLogMemoryUsageRequest {
|
||||
hdr fidl_message_header[5]
|
||||
hdr fidl_message_header[1724292379]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
componentInLine fidl_string
|
||||
bytes int64
|
||||
componentOutOfLine fidl_aligned[stringnoz]
|
||||
@ -337,7 +429,7 @@ fuchsia_cobalt_LoggerLogMemoryUsageResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerLogStringRequest {
|
||||
hdr fidl_message_header[6]
|
||||
hdr fidl_message_header[1288241002]
|
||||
metric_id int32
|
||||
sInLine fidl_string
|
||||
sOutOfLine fidl_aligned[stringnoz]
|
||||
@ -352,9 +444,9 @@ fuchsia_cobalt_LoggerLogStringResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerStartTimerRequest {
|
||||
hdr fidl_message_header[7]
|
||||
hdr fidl_message_header[1247568160]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
componentInLine fidl_string
|
||||
timer_idInLine fidl_string
|
||||
timestamp int64
|
||||
@ -372,7 +464,7 @@ fuchsia_cobalt_LoggerStartTimerResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerEndTimerRequest {
|
||||
hdr fidl_message_header[8]
|
||||
hdr fidl_message_header[1708879426]
|
||||
timer_idInLine fidl_string
|
||||
timestamp int64
|
||||
timeout_s int32
|
||||
@ -388,9 +480,9 @@ fuchsia_cobalt_LoggerEndTimerResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerLogIntHistogramRequest {
|
||||
hdr fidl_message_header[100]
|
||||
hdr fidl_message_header[2063400240]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
componentInLine fidl_string
|
||||
histogramInLine fidl_vector
|
||||
componentOutOfLine fidl_aligned[stringnoz]
|
||||
@ -406,7 +498,7 @@ fuchsia_cobalt_LoggerLogIntHistogramResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerLogCustomEventRequest {
|
||||
hdr fidl_message_header[101]
|
||||
hdr fidl_message_header[1023246268]
|
||||
metric_id int32
|
||||
event_valuesInLine fidl_vector
|
||||
event_valuesOutOfLine parallel_array[fuchsia_cobalt_CustomEventValueInLine, fuchsia_cobalt_CustomEventValueOutOfLine]
|
||||
@ -420,6 +512,34 @@ fuchsia_cobalt_LoggerLogCustomEventResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerLogCobaltEventRequest {
|
||||
hdr fidl_message_header[1719478404]
|
||||
eventInLine fuchsia_cobalt_CobaltEventInLine
|
||||
eventOutOfLine fuchsia_cobalt_CobaltEventOutOfLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerLogCobaltEventRequestHandles {
|
||||
event fuchsia_cobalt_CobaltEventHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerLogCobaltEventResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerLogCobaltEventsRequest {
|
||||
hdr fidl_message_header[688248468]
|
||||
eventsInLine fidl_vector
|
||||
eventsOutOfLine parallel_array[fuchsia_cobalt_CobaltEventInLine, fuchsia_cobalt_CobaltEventOutOfLine]
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerLogCobaltEventsRequestHandles {
|
||||
events array[fuchsia_cobalt_CobaltEventHandles]
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerLogCobaltEventsResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
resource zx_chan_fuchsia_cobalt_Logger_client[zx_chan]
|
||||
resource zx_chan_fuchsia_cobalt_Logger_server[zx_chan]
|
||||
|
||||
@ -435,11 +555,13 @@ zx_channel_call$fuchsia_cobalt_LoggerStartTimer(handle zx_chan_fuchsia_cobalt_Lo
|
||||
zx_channel_call$fuchsia_cobalt_LoggerEndTimer(handle zx_chan_fuchsia_cobalt_Logger_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_cobalt_LoggerEndTimerRequest, fuchsia_cobalt_LoggerEndTimerRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_cobalt_LoggerEndTimerResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_cobalt_LoggerLogIntHistogram(handle zx_chan_fuchsia_cobalt_Logger_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_cobalt_LoggerLogIntHistogramRequest, fuchsia_cobalt_LoggerLogIntHistogramRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_cobalt_LoggerLogIntHistogramResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_cobalt_LoggerLogCustomEvent(handle zx_chan_fuchsia_cobalt_Logger_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_cobalt_LoggerLogCustomEventRequest, fuchsia_cobalt_LoggerLogCustomEventRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_cobalt_LoggerLogCustomEventResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_cobalt_LoggerLogCobaltEvent(handle zx_chan_fuchsia_cobalt_Logger_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_cobalt_LoggerLogCobaltEventRequest, fuchsia_cobalt_LoggerLogCobaltEventRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_cobalt_LoggerLogCobaltEventResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_cobalt_LoggerLogCobaltEvents(handle zx_chan_fuchsia_cobalt_Logger_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_cobalt_LoggerLogCobaltEventsRequest, fuchsia_cobalt_LoggerLogCobaltEventsRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_cobalt_LoggerLogCobaltEventsResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
|
||||
fuchsia_cobalt_LoggerSimpleLogEventRequest {
|
||||
hdr fidl_message_header[1]
|
||||
hdr fidl_message_header[324887181]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerSimpleLogEventRequestHandles {
|
||||
@ -451,9 +573,9 @@ fuchsia_cobalt_LoggerSimpleLogEventResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerSimpleLogEventCountRequest {
|
||||
hdr fidl_message_header[2]
|
||||
hdr fidl_message_header[1875801957]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
componentInLine fidl_string
|
||||
period_duration_micros int64
|
||||
count int64
|
||||
@ -469,9 +591,9 @@ fuchsia_cobalt_LoggerSimpleLogEventCountResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerSimpleLogElapsedTimeRequest {
|
||||
hdr fidl_message_header[3]
|
||||
hdr fidl_message_header[351572256]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
componentInLine fidl_string
|
||||
elapsed_micros int64
|
||||
componentOutOfLine fidl_aligned[stringnoz]
|
||||
@ -486,9 +608,9 @@ fuchsia_cobalt_LoggerSimpleLogElapsedTimeResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerSimpleLogFrameRateRequest {
|
||||
hdr fidl_message_header[4]
|
||||
hdr fidl_message_header[730276536]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
componentInLine fidl_string
|
||||
fps int32
|
||||
componentOutOfLine fidl_aligned[stringnoz]
|
||||
@ -503,9 +625,9 @@ fuchsia_cobalt_LoggerSimpleLogFrameRateResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerSimpleLogMemoryUsageRequest {
|
||||
hdr fidl_message_header[5]
|
||||
hdr fidl_message_header[1724292379]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
componentInLine fidl_string
|
||||
bytes int64
|
||||
componentOutOfLine fidl_aligned[stringnoz]
|
||||
@ -520,7 +642,7 @@ fuchsia_cobalt_LoggerSimpleLogMemoryUsageResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerSimpleLogStringRequest {
|
||||
hdr fidl_message_header[6]
|
||||
hdr fidl_message_header[1288241002]
|
||||
metric_id int32
|
||||
sInLine fidl_string
|
||||
sOutOfLine fidl_aligned[stringnoz]
|
||||
@ -535,9 +657,9 @@ fuchsia_cobalt_LoggerSimpleLogStringResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerSimpleStartTimerRequest {
|
||||
hdr fidl_message_header[7]
|
||||
hdr fidl_message_header[1247568160]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
componentInLine fidl_string
|
||||
timer_idInLine fidl_string
|
||||
timestamp int64
|
||||
@ -555,7 +677,7 @@ fuchsia_cobalt_LoggerSimpleStartTimerResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerSimpleEndTimerRequest {
|
||||
hdr fidl_message_header[8]
|
||||
hdr fidl_message_header[1708879426]
|
||||
timer_idInLine fidl_string
|
||||
timestamp int64
|
||||
timeout_s int32
|
||||
@ -571,9 +693,9 @@ fuchsia_cobalt_LoggerSimpleEndTimerResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_LoggerSimpleLogIntHistogramRequest {
|
||||
hdr fidl_message_header[100]
|
||||
hdr fidl_message_header[759190088]
|
||||
metric_id int32
|
||||
event_type_index int32
|
||||
event_code int32
|
||||
componentInLine fidl_string
|
||||
bucket_indicesInLine fidl_vector
|
||||
bucket_countsInLine fidl_vector
|
||||
@ -606,7 +728,7 @@ zx_channel_call$fuchsia_cobalt_LoggerSimpleEndTimer(handle zx_chan_fuchsia_cobal
|
||||
zx_channel_call$fuchsia_cobalt_LoggerSimpleLogIntHistogram(handle zx_chan_fuchsia_cobalt_LoggerSimple_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_cobalt_LoggerSimpleLogIntHistogramRequest, fuchsia_cobalt_LoggerSimpleLogIntHistogramRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_cobalt_LoggerSimpleLogIntHistogramResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
|
||||
fuchsia_cobalt_SystemDataUpdaterSetExperimentStateRequest {
|
||||
hdr fidl_message_header[1]
|
||||
hdr fidl_message_header[1903807121]
|
||||
experimentsInLine fidl_vector
|
||||
experimentsOutOfLine parallel_array[fuchsia_cobalt_ExperimentInLine, fuchsia_cobalt_ExperimentOutOfLine]
|
||||
} [packed]
|
||||
@ -627,7 +749,7 @@ fdio_service_connect$fuchsia_cobalt_SystemDataUpdater(path ptr[in, string["/svc/
|
||||
zx_channel_call$fuchsia_cobalt_SystemDataUpdaterSetExperimentState(handle zx_chan_fuchsia_cobalt_SystemDataUpdater_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_cobalt_SystemDataUpdaterSetExperimentStateRequest, fuchsia_cobalt_SystemDataUpdaterSetExperimentStateRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_cobalt_SystemDataUpdaterSetExperimentStateResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
|
||||
fuchsia_cobalt_ControllerRequestSendSoonRequest {
|
||||
hdr fidl_message_header[1]
|
||||
hdr fidl_message_header[148310311]
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_ControllerRequestSendSoonRequestHandles {
|
||||
@ -639,7 +761,7 @@ fuchsia_cobalt_ControllerRequestSendSoonResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_ControllerBlockUntilEmptyRequest {
|
||||
hdr fidl_message_header[2]
|
||||
hdr fidl_message_header[737508914]
|
||||
max_wait_seconds int32
|
||||
} [packed]
|
||||
|
||||
@ -652,7 +774,7 @@ fuchsia_cobalt_ControllerBlockUntilEmptyResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_ControllerGetNumSendAttemptsRequest {
|
||||
hdr fidl_message_header[3]
|
||||
hdr fidl_message_header[1476784191]
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_ControllerGetNumSendAttemptsRequestHandles {
|
||||
@ -664,7 +786,7 @@ fuchsia_cobalt_ControllerGetNumSendAttemptsResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_ControllerGetFailedSendAttemptsRequest {
|
||||
hdr fidl_message_header[4]
|
||||
hdr fidl_message_header[976719687]
|
||||
} [packed]
|
||||
|
||||
fuchsia_cobalt_ControllerGetFailedSendAttemptsRequestHandles {
|
||||
|
@ -1,5 +1,7 @@
|
||||
# AUTOGENERATED FILE
|
||||
ZX_CHANNEL_MAX_MSG_BYTES = 65536
|
||||
fuchsia_cobalt_EventPayloadTag_event_count = 0
|
||||
fuchsia_cobalt_EventPayloadTag_int_histogram = 1
|
||||
fuchsia_cobalt_ReleaseStage_DEBUG = 99
|
||||
fuchsia_cobalt_ReleaseStage_DOGFOOD = 10
|
||||
fuchsia_cobalt_ReleaseStage_FISHFOOD = 20
|
||||
|
@ -1,5 +1,7 @@
|
||||
# AUTOGENERATED FILE
|
||||
ZX_CHANNEL_MAX_MSG_BYTES = 65536
|
||||
fuchsia_cobalt_EventPayloadTag_event_count = 0
|
||||
fuchsia_cobalt_EventPayloadTag_int_histogram = 1
|
||||
fuchsia_cobalt_ReleaseStage_DEBUG = 99
|
||||
fuchsia_cobalt_ReleaseStage_DOGFOOD = 10
|
||||
fuchsia_cobalt_ReleaseStage_FISHFOOD = 20
|
||||
|
@ -7,7 +7,7 @@ include <fuchsia/devicesettings/c/fidl.h>
|
||||
fuchsia_devicesettings_ValueType = fuchsia_devicesettings_ValueType_number, fuchsia_devicesettings_ValueType_text
|
||||
|
||||
fuchsia_devicesettings_DeviceSettingsManagerGetIntegerRequest {
|
||||
hdr fidl_message_header[1]
|
||||
hdr fidl_message_header[1556999609]
|
||||
keyInLine fidl_string
|
||||
keyOutOfLine fidl_aligned[stringnoz]
|
||||
} [packed]
|
||||
@ -21,7 +21,7 @@ fuchsia_devicesettings_DeviceSettingsManagerGetIntegerResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_devicesettings_DeviceSettingsManagerGetStringRequest {
|
||||
hdr fidl_message_header[2]
|
||||
hdr fidl_message_header[1273992648]
|
||||
keyInLine fidl_string
|
||||
keyOutOfLine fidl_aligned[stringnoz]
|
||||
} [packed]
|
||||
@ -35,7 +35,7 @@ fuchsia_devicesettings_DeviceSettingsManagerGetStringResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_devicesettings_DeviceSettingsManagerSetIntegerRequest {
|
||||
hdr fidl_message_header[3]
|
||||
hdr fidl_message_header[959124463]
|
||||
keyInLine fidl_string
|
||||
val int64
|
||||
keyOutOfLine fidl_aligned[stringnoz]
|
||||
@ -50,7 +50,7 @@ fuchsia_devicesettings_DeviceSettingsManagerSetIntegerResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_devicesettings_DeviceSettingsManagerSetStringRequest {
|
||||
hdr fidl_message_header[4]
|
||||
hdr fidl_message_header[569579958]
|
||||
keyInLine fidl_string
|
||||
valInLine fidl_string
|
||||
keyOutOfLine fidl_aligned[stringnoz]
|
||||
@ -66,7 +66,7 @@ fuchsia_devicesettings_DeviceSettingsManagerSetStringResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_devicesettings_DeviceSettingsManagerWatchRequest {
|
||||
hdr fidl_message_header[5]
|
||||
hdr fidl_message_header[975255377]
|
||||
keyInLine fidl_string
|
||||
watcher flags[fidl_handle_presence, int32]
|
||||
keyOutOfLine fidl_aligned[stringnoz]
|
||||
@ -92,7 +92,7 @@ zx_channel_call$fuchsia_devicesettings_DeviceSettingsManagerSetString(handle zx_
|
||||
zx_channel_call$fuchsia_devicesettings_DeviceSettingsManagerWatch(handle zx_chan_fuchsia_devicesettings_DeviceSettingsManager_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_devicesettings_DeviceSettingsManagerWatchRequest, fuchsia_devicesettings_DeviceSettingsManagerWatchRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_devicesettings_DeviceSettingsManagerWatchResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
|
||||
fuchsia_devicesettings_DeviceSettingsWatcherOnChangeSettingsRequest {
|
||||
hdr fidl_message_header[1]
|
||||
hdr fidl_message_header[616225214]
|
||||
type_ flags[fuchsia_devicesettings_ValueType, int8]
|
||||
} [packed]
|
||||
|
||||
|
237
sys/fuchsia/fidl_hardware-ethernet.txt
Normal file
237
sys/fuchsia/fidl_hardware-ethernet.txt
Normal file
@ -0,0 +1,237 @@
|
||||
# Copyright 2018 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.
|
||||
#
|
||||
# WARNING: This file is machine generated by fidlgen.
|
||||
|
||||
include <fuchsia/hardware/ethernet/c/fidl.h>
|
||||
|
||||
fuchsia_hardware_ethernet_MacAddressInLine {
|
||||
octetsInLine array[int8, 6]
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_MacAddressOutOfLine {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_MacAddressHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_InfoHandles {
|
||||
mac fuchsia_hardware_ethernet_MacAddressHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_FifosHandles {
|
||||
rx zx_fifo
|
||||
tx zx_fifo
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceGetInfoRequest {
|
||||
hdr fidl_message_header[281534132]
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceGetInfoRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceGetInfoResponseHandles {
|
||||
info fuchsia_hardware_ethernet_InfoHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceGetFifosRequest {
|
||||
hdr fidl_message_header[568453368]
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceGetFifosRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceGetFifosResponseHandles {
|
||||
info fuchsia_hardware_ethernet_FifosHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceSetIOBufferRequest {
|
||||
hdr fidl_message_header[538834931]
|
||||
h flags[fidl_handle_presence, int32]
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceSetIOBufferRequestHandles {
|
||||
h zx_vmo
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceSetIOBufferResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceStartRequest {
|
||||
hdr fidl_message_header[601568857]
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceStartRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceStartResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceStopRequest {
|
||||
hdr fidl_message_header[1039990421]
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceStopRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceStopResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceListenStartRequest {
|
||||
hdr fidl_message_header[1529124283]
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceListenStartRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceListenStartResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceListenStopRequest {
|
||||
hdr fidl_message_header[594222167]
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceListenStopRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceListenStopResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceSetClientNameRequest {
|
||||
hdr fidl_message_header[1678545441]
|
||||
nameInLine fidl_string
|
||||
nameOutOfLine fidl_aligned[stringnoz]
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceSetClientNameRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceSetClientNameResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceGetStatusRequest {
|
||||
hdr fidl_message_header[1835250494]
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceGetStatusRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceGetStatusResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceSetPromiscuousModeRequest {
|
||||
hdr fidl_message_header[885102340]
|
||||
enabled int8
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceSetPromiscuousModeRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceSetPromiscuousModeResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceConfigMulticastAddMacRequest {
|
||||
hdr fidl_message_header[60804632]
|
||||
addrInLine fuchsia_hardware_ethernet_MacAddressInLine
|
||||
addrOutOfLine fuchsia_hardware_ethernet_MacAddressOutOfLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceConfigMulticastAddMacRequestHandles {
|
||||
addr fuchsia_hardware_ethernet_MacAddressHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceConfigMulticastAddMacResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceConfigMulticastDeleteMacRequest {
|
||||
hdr fidl_message_header[1373297565]
|
||||
addrInLine fuchsia_hardware_ethernet_MacAddressInLine
|
||||
addrOutOfLine fuchsia_hardware_ethernet_MacAddressOutOfLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceConfigMulticastDeleteMacRequestHandles {
|
||||
addr fuchsia_hardware_ethernet_MacAddressHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceConfigMulticastDeleteMacResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceConfigMulticastSetPromiscuousModeRequest {
|
||||
hdr fidl_message_header[716476410]
|
||||
enabled int8
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceConfigMulticastSetPromiscuousModeRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceConfigMulticastSetPromiscuousModeResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceConfigMulticastTestFilterRequest {
|
||||
hdr fidl_message_header[88826222]
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceConfigMulticastTestFilterRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceConfigMulticastTestFilterResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceDumpRegistersRequest {
|
||||
hdr fidl_message_header[1574160577]
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceDumpRegistersRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_hardware_ethernet_DeviceDumpRegistersResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
resource zx_chan_fuchsia_hardware_ethernet_Device_client[zx_chan]
|
||||
resource zx_chan_fuchsia_hardware_ethernet_Device_server[zx_chan]
|
||||
|
||||
zx_channel_create$fuchsia_hardware_ethernet_Device(options const[0], out0 ptr[out, zx_chan_fuchsia_hardware_ethernet_Device_client], out1 ptr[out, zx_chan_fuchsia_hardware_ethernet_Device_server])
|
||||
fdio_service_connect$fuchsia_hardware_ethernet_Device(path ptr[in, string["/svc/"]], handle zx_chan_fuchsia_hardware_ethernet_Device_server)
|
||||
zx_channel_call$fuchsia_hardware_ethernet_DeviceGetInfo(handle zx_chan_fuchsia_hardware_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_hardware_ethernet_DeviceGetInfoRequest, fuchsia_hardware_ethernet_DeviceGetInfoRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_hardware_ethernet_DeviceGetInfoResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_hardware_ethernet_DeviceGetFifos(handle zx_chan_fuchsia_hardware_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_hardware_ethernet_DeviceGetFifosRequest, fuchsia_hardware_ethernet_DeviceGetFifosRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_hardware_ethernet_DeviceGetFifosResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_hardware_ethernet_DeviceSetIOBuffer(handle zx_chan_fuchsia_hardware_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_hardware_ethernet_DeviceSetIOBufferRequest, fuchsia_hardware_ethernet_DeviceSetIOBufferRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_hardware_ethernet_DeviceSetIOBufferResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_hardware_ethernet_DeviceStart(handle zx_chan_fuchsia_hardware_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_hardware_ethernet_DeviceStartRequest, fuchsia_hardware_ethernet_DeviceStartRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_hardware_ethernet_DeviceStartResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_hardware_ethernet_DeviceStop(handle zx_chan_fuchsia_hardware_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_hardware_ethernet_DeviceStopRequest, fuchsia_hardware_ethernet_DeviceStopRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_hardware_ethernet_DeviceStopResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_hardware_ethernet_DeviceListenStart(handle zx_chan_fuchsia_hardware_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_hardware_ethernet_DeviceListenStartRequest, fuchsia_hardware_ethernet_DeviceListenStartRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_hardware_ethernet_DeviceListenStartResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_hardware_ethernet_DeviceListenStop(handle zx_chan_fuchsia_hardware_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_hardware_ethernet_DeviceListenStopRequest, fuchsia_hardware_ethernet_DeviceListenStopRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_hardware_ethernet_DeviceListenStopResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_hardware_ethernet_DeviceSetClientName(handle zx_chan_fuchsia_hardware_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_hardware_ethernet_DeviceSetClientNameRequest, fuchsia_hardware_ethernet_DeviceSetClientNameRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_hardware_ethernet_DeviceSetClientNameResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_hardware_ethernet_DeviceGetStatus(handle zx_chan_fuchsia_hardware_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_hardware_ethernet_DeviceGetStatusRequest, fuchsia_hardware_ethernet_DeviceGetStatusRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_hardware_ethernet_DeviceGetStatusResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_hardware_ethernet_DeviceSetPromiscuousMode(handle zx_chan_fuchsia_hardware_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_hardware_ethernet_DeviceSetPromiscuousModeRequest, fuchsia_hardware_ethernet_DeviceSetPromiscuousModeRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_hardware_ethernet_DeviceSetPromiscuousModeResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_hardware_ethernet_DeviceConfigMulticastAddMac(handle zx_chan_fuchsia_hardware_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_hardware_ethernet_DeviceConfigMulticastAddMacRequest, fuchsia_hardware_ethernet_DeviceConfigMulticastAddMacRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_hardware_ethernet_DeviceConfigMulticastAddMacResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_hardware_ethernet_DeviceConfigMulticastDeleteMac(handle zx_chan_fuchsia_hardware_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_hardware_ethernet_DeviceConfigMulticastDeleteMacRequest, fuchsia_hardware_ethernet_DeviceConfigMulticastDeleteMacRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_hardware_ethernet_DeviceConfigMulticastDeleteMacResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_hardware_ethernet_DeviceConfigMulticastSetPromiscuousMode(handle zx_chan_fuchsia_hardware_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_hardware_ethernet_DeviceConfigMulticastSetPromiscuousModeRequest, fuchsia_hardware_ethernet_DeviceConfigMulticastSetPromiscuousModeRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_hardware_ethernet_DeviceConfigMulticastSetPromiscuousModeResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_hardware_ethernet_DeviceConfigMulticastTestFilter(handle zx_chan_fuchsia_hardware_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_hardware_ethernet_DeviceConfigMulticastTestFilterRequest, fuchsia_hardware_ethernet_DeviceConfigMulticastTestFilterRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_hardware_ethernet_DeviceConfigMulticastTestFilterResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_hardware_ethernet_DeviceDumpRegisters(handle zx_chan_fuchsia_hardware_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_hardware_ethernet_DeviceDumpRegistersRequest, fuchsia_hardware_ethernet_DeviceDumpRegistersRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_hardware_ethernet_DeviceDumpRegistersResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
@ -62,7 +62,7 @@ fuchsia_io_NodeInfoHandles [
|
||||
] [varlen]
|
||||
|
||||
fuchsia_io_NodeCloneRequest {
|
||||
hdr fidl_message_header[2147483649]
|
||||
hdr fidl_message_header[402549324]
|
||||
flags_ int32
|
||||
object flags[fidl_handle_presence, int32]
|
||||
} [packed]
|
||||
@ -72,7 +72,7 @@ fuchsia_io_NodeCloneRequestHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_NodeCloseRequest {
|
||||
hdr fidl_message_header[2147483650]
|
||||
hdr fidl_message_header[1387878023]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_NodeCloseRequestHandles {
|
||||
@ -84,7 +84,7 @@ fuchsia_io_NodeCloseResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_NodeDescribeRequest {
|
||||
hdr fidl_message_header[2147483654]
|
||||
hdr fidl_message_header[526573406]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_NodeDescribeRequestHandles {
|
||||
@ -100,7 +100,7 @@ fuchsia_io_NodeOnOpenEventHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_NodeSyncRequest {
|
||||
hdr fidl_message_header[2164260865]
|
||||
hdr fidl_message_header[1648508842]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_NodeSyncRequestHandles {
|
||||
@ -112,7 +112,7 @@ fuchsia_io_NodeSyncResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_NodeGetAttrRequest {
|
||||
hdr fidl_message_header[2164260866]
|
||||
hdr fidl_message_header[1166403528]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_NodeGetAttrRequestHandles {
|
||||
@ -124,7 +124,7 @@ fuchsia_io_NodeGetAttrResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_NodeSetAttrRequest {
|
||||
hdr fidl_message_header[2164260867]
|
||||
hdr fidl_message_header[198530458]
|
||||
flags_ int32
|
||||
attributesInLine fuchsia_io_NodeAttributesInLine
|
||||
attributesOutOfLine fuchsia_io_NodeAttributesOutOfLine
|
||||
@ -139,7 +139,7 @@ fuchsia_io_NodeSetAttrResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_NodeIoctlRequest {
|
||||
hdr fidl_message_header[2164260868]
|
||||
hdr fidl_message_header[905161895]
|
||||
opcode int32
|
||||
max_out int64
|
||||
handlesInLine fidl_vector
|
||||
@ -171,7 +171,7 @@ zx_channel_call$fuchsia_io_NodeSetAttr(handle zx_chan_fuchsia_io_Node_client, op
|
||||
zx_channel_call$fuchsia_io_NodeIoctl(handle zx_chan_fuchsia_io_Node_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_io_NodeIoctlRequest, fuchsia_io_NodeIoctlRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_io_NodeIoctlResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
|
||||
fuchsia_io_FileCloneRequest {
|
||||
hdr fidl_message_header[2147483649]
|
||||
hdr fidl_message_header[402549324]
|
||||
flags_ int32
|
||||
object flags[fidl_handle_presence, int32]
|
||||
} [packed]
|
||||
@ -181,7 +181,7 @@ fuchsia_io_FileCloneRequestHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileCloseRequest {
|
||||
hdr fidl_message_header[2147483650]
|
||||
hdr fidl_message_header[1387878023]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileCloseRequestHandles {
|
||||
@ -193,7 +193,7 @@ fuchsia_io_FileCloseResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileDescribeRequest {
|
||||
hdr fidl_message_header[2147483654]
|
||||
hdr fidl_message_header[526573406]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileDescribeRequestHandles {
|
||||
@ -209,7 +209,7 @@ fuchsia_io_FileOnOpenEventHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileSyncRequest {
|
||||
hdr fidl_message_header[2164260865]
|
||||
hdr fidl_message_header[1648508842]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileSyncRequestHandles {
|
||||
@ -221,7 +221,7 @@ fuchsia_io_FileSyncResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileGetAttrRequest {
|
||||
hdr fidl_message_header[2164260866]
|
||||
hdr fidl_message_header[1166403528]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileGetAttrRequestHandles {
|
||||
@ -233,7 +233,7 @@ fuchsia_io_FileGetAttrResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileSetAttrRequest {
|
||||
hdr fidl_message_header[2164260867]
|
||||
hdr fidl_message_header[198530458]
|
||||
flags_ int32
|
||||
attributesInLine fuchsia_io_NodeAttributesInLine
|
||||
attributesOutOfLine fuchsia_io_NodeAttributesOutOfLine
|
||||
@ -248,7 +248,7 @@ fuchsia_io_FileSetAttrResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileIoctlRequest {
|
||||
hdr fidl_message_header[2164260868]
|
||||
hdr fidl_message_header[905161895]
|
||||
opcode int32
|
||||
max_out int64
|
||||
handlesInLine fidl_vector
|
||||
@ -266,7 +266,7 @@ fuchsia_io_FileIoctlResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileReadRequest {
|
||||
hdr fidl_message_header[2181038081]
|
||||
hdr fidl_message_header[636961156]
|
||||
count int64
|
||||
} [packed]
|
||||
|
||||
@ -279,7 +279,7 @@ fuchsia_io_FileReadResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileReadAtRequest {
|
||||
hdr fidl_message_header[2181038082]
|
||||
hdr fidl_message_header[2087865796]
|
||||
count int64
|
||||
offset int64
|
||||
} [packed]
|
||||
@ -293,7 +293,7 @@ fuchsia_io_FileReadAtResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileWriteRequest {
|
||||
hdr fidl_message_header[2181038083]
|
||||
hdr fidl_message_header[85125024]
|
||||
dataInLine fidl_vector
|
||||
dataOutOfLine array[int8]
|
||||
} [packed]
|
||||
@ -307,7 +307,7 @@ fuchsia_io_FileWriteResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileWriteAtRequest {
|
||||
hdr fidl_message_header[2181038084]
|
||||
hdr fidl_message_header[1045766885]
|
||||
dataInLine fidl_vector
|
||||
offset int64
|
||||
dataOutOfLine array[int8]
|
||||
@ -322,7 +322,7 @@ fuchsia_io_FileWriteAtResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileSeekRequest {
|
||||
hdr fidl_message_header[2181038085]
|
||||
hdr fidl_message_header[2016048965]
|
||||
offset int64
|
||||
start flags[fuchsia_io_SeekOrigin, int32]
|
||||
} [packed]
|
||||
@ -336,7 +336,7 @@ fuchsia_io_FileSeekResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileTruncateRequest {
|
||||
hdr fidl_message_header[2181038086]
|
||||
hdr fidl_message_header[1118517818]
|
||||
length int64
|
||||
} [packed]
|
||||
|
||||
@ -349,7 +349,7 @@ fuchsia_io_FileTruncateResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileGetFlagsRequest {
|
||||
hdr fidl_message_header[2181038087]
|
||||
hdr fidl_message_header[1679205366]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileGetFlagsRequestHandles {
|
||||
@ -361,7 +361,7 @@ fuchsia_io_FileGetFlagsResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileSetFlagsRequest {
|
||||
hdr fidl_message_header[2181038088]
|
||||
hdr fidl_message_header[1059310710]
|
||||
flags_ int32
|
||||
} [packed]
|
||||
|
||||
@ -373,17 +373,17 @@ fuchsia_io_FileSetFlagsResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileGetVmoRequest {
|
||||
hdr fidl_message_header[2181038089]
|
||||
fuchsia_io_FileGetBufferRequest {
|
||||
hdr fidl_message_header[1958938995]
|
||||
flags_ int32
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileGetVmoRequestHandles {
|
||||
fuchsia_io_FileGetBufferRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_FileGetVmoResponseHandles {
|
||||
vmo zx_vmo
|
||||
fuchsia_io_FileGetBufferResponseHandles {
|
||||
buffer_ fuchsia_mem_BufferHandles
|
||||
} [packed]
|
||||
|
||||
resource zx_chan_fuchsia_io_File_client[zx_chan]
|
||||
@ -407,10 +407,10 @@ zx_channel_call$fuchsia_io_FileSeek(handle zx_chan_fuchsia_io_File_client, optio
|
||||
zx_channel_call$fuchsia_io_FileTruncate(handle zx_chan_fuchsia_io_File_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_io_FileTruncateRequest, fuchsia_io_FileTruncateRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_io_FileTruncateResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_io_FileGetFlags(handle zx_chan_fuchsia_io_File_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_io_FileGetFlagsRequest, fuchsia_io_FileGetFlagsRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_io_FileGetFlagsResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_io_FileSetFlags(handle zx_chan_fuchsia_io_File_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_io_FileSetFlagsRequest, fuchsia_io_FileSetFlagsRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_io_FileSetFlagsResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_io_FileGetVmo(handle zx_chan_fuchsia_io_File_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_io_FileGetVmoRequest, fuchsia_io_FileGetVmoRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_io_FileGetVmoResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_io_FileGetBuffer(handle zx_chan_fuchsia_io_File_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_io_FileGetBufferRequest, fuchsia_io_FileGetBufferRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_io_FileGetBufferResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
|
||||
fuchsia_io_DirectoryWatcherOnEventRequest {
|
||||
hdr fidl_message_header[2214592513]
|
||||
hdr fidl_message_header[546032797]
|
||||
eventsInLine fidl_vector
|
||||
eventsOutOfLine array[int8]
|
||||
} [packed]
|
||||
@ -427,7 +427,7 @@ fdio_service_connect$fuchsia_io_DirectoryWatcher(path ptr[in, string["/svc/"]],
|
||||
zx_channel_write$fuchsia_io_DirectoryWatcherOnEvent(handle zx_chan_fuchsia_io_DirectoryWatcher_client, options const[0], bytes ptr[in, fuchsia_io_DirectoryWatcherOnEventRequest], num_bytes bytesize[bytes], handles ptr[in, fuchsia_io_DirectoryWatcherOnEventRequestHandles], num_handles bytesize[handles])
|
||||
|
||||
fuchsia_io_DirectoryCloneRequest {
|
||||
hdr fidl_message_header[2147483649]
|
||||
hdr fidl_message_header[402549324]
|
||||
flags_ int32
|
||||
object flags[fidl_handle_presence, int32]
|
||||
} [packed]
|
||||
@ -437,7 +437,7 @@ fuchsia_io_DirectoryCloneRequestHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryCloseRequest {
|
||||
hdr fidl_message_header[2147483650]
|
||||
hdr fidl_message_header[1387878023]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryCloseRequestHandles {
|
||||
@ -449,7 +449,7 @@ fuchsia_io_DirectoryCloseResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryDescribeRequest {
|
||||
hdr fidl_message_header[2147483654]
|
||||
hdr fidl_message_header[526573406]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryDescribeRequestHandles {
|
||||
@ -465,7 +465,7 @@ fuchsia_io_DirectoryOnOpenEventHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectorySyncRequest {
|
||||
hdr fidl_message_header[2164260865]
|
||||
hdr fidl_message_header[1648508842]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectorySyncRequestHandles {
|
||||
@ -477,7 +477,7 @@ fuchsia_io_DirectorySyncResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryGetAttrRequest {
|
||||
hdr fidl_message_header[2164260866]
|
||||
hdr fidl_message_header[1166403528]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryGetAttrRequestHandles {
|
||||
@ -489,7 +489,7 @@ fuchsia_io_DirectoryGetAttrResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectorySetAttrRequest {
|
||||
hdr fidl_message_header[2164260867]
|
||||
hdr fidl_message_header[198530458]
|
||||
flags_ int32
|
||||
attributesInLine fuchsia_io_NodeAttributesInLine
|
||||
attributesOutOfLine fuchsia_io_NodeAttributesOutOfLine
|
||||
@ -504,7 +504,7 @@ fuchsia_io_DirectorySetAttrResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryIoctlRequest {
|
||||
hdr fidl_message_header[2164260868]
|
||||
hdr fidl_message_header[905161895]
|
||||
opcode int32
|
||||
max_out int64
|
||||
handlesInLine fidl_vector
|
||||
@ -522,7 +522,7 @@ fuchsia_io_DirectoryIoctlResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryOpenRequest {
|
||||
hdr fidl_message_header[2197815297]
|
||||
hdr fidl_message_header[2011483371]
|
||||
flags_ int32
|
||||
mode int32
|
||||
pathInLine fidl_string
|
||||
@ -535,7 +535,7 @@ fuchsia_io_DirectoryOpenRequestHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryUnlinkRequest {
|
||||
hdr fidl_message_header[2197815298]
|
||||
hdr fidl_message_header[750443289]
|
||||
pathInLine fidl_string
|
||||
pathOutOfLine fidl_aligned[stringnoz]
|
||||
} [packed]
|
||||
@ -549,7 +549,7 @@ fuchsia_io_DirectoryUnlinkResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryReadDirentsRequest {
|
||||
hdr fidl_message_header[2197815299]
|
||||
hdr fidl_message_header[782580781]
|
||||
max_bytes int64
|
||||
} [packed]
|
||||
|
||||
@ -562,7 +562,7 @@ fuchsia_io_DirectoryReadDirentsResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryRewindRequest {
|
||||
hdr fidl_message_header[2197815300]
|
||||
hdr fidl_message_header[1886584199]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryRewindRequestHandles {
|
||||
@ -574,7 +574,7 @@ fuchsia_io_DirectoryRewindResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryGetTokenRequest {
|
||||
hdr fidl_message_header[2197815301]
|
||||
hdr fidl_message_header[840416493]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryGetTokenRequestHandles {
|
||||
@ -586,7 +586,7 @@ fuchsia_io_DirectoryGetTokenResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryRenameRequest {
|
||||
hdr fidl_message_header[2197815302]
|
||||
hdr fidl_message_header[1251258540]
|
||||
srcInLine fidl_string
|
||||
dst_parent_token flags[fidl_handle_presence, int32]
|
||||
dstInLine fidl_string
|
||||
@ -603,7 +603,7 @@ fuchsia_io_DirectoryRenameResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryLinkRequest {
|
||||
hdr fidl_message_header[2197815303]
|
||||
hdr fidl_message_header[462052964]
|
||||
srcInLine fidl_string
|
||||
dst_parent_token flags[fidl_handle_presence, int32]
|
||||
dstInLine fidl_string
|
||||
@ -620,7 +620,7 @@ fuchsia_io_DirectoryLinkResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryWatchRequest {
|
||||
hdr fidl_message_header[2197815304]
|
||||
hdr fidl_message_header[1522700084]
|
||||
mask int32
|
||||
options int32
|
||||
watcher flags[fidl_handle_presence, int32]
|
||||
@ -657,7 +657,7 @@ zx_channel_call$fuchsia_io_DirectoryLink(handle zx_chan_fuchsia_io_Directory_cli
|
||||
zx_channel_call$fuchsia_io_DirectoryWatch(handle zx_chan_fuchsia_io_Directory_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_io_DirectoryWatchRequest, fuchsia_io_DirectoryWatchRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_io_DirectoryWatchResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
|
||||
fuchsia_io_DirectoryAdminCloneRequest {
|
||||
hdr fidl_message_header[2147483649]
|
||||
hdr fidl_message_header[402549324]
|
||||
flags_ int32
|
||||
object flags[fidl_handle_presence, int32]
|
||||
} [packed]
|
||||
@ -667,7 +667,7 @@ fuchsia_io_DirectoryAdminCloneRequestHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminCloseRequest {
|
||||
hdr fidl_message_header[2147483650]
|
||||
hdr fidl_message_header[1387878023]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminCloseRequestHandles {
|
||||
@ -679,7 +679,7 @@ fuchsia_io_DirectoryAdminCloseResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminDescribeRequest {
|
||||
hdr fidl_message_header[2147483654]
|
||||
hdr fidl_message_header[526573406]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminDescribeRequestHandles {
|
||||
@ -695,7 +695,7 @@ fuchsia_io_DirectoryAdminOnOpenEventHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminSyncRequest {
|
||||
hdr fidl_message_header[2164260865]
|
||||
hdr fidl_message_header[1648508842]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminSyncRequestHandles {
|
||||
@ -707,7 +707,7 @@ fuchsia_io_DirectoryAdminSyncResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminGetAttrRequest {
|
||||
hdr fidl_message_header[2164260866]
|
||||
hdr fidl_message_header[1166403528]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminGetAttrRequestHandles {
|
||||
@ -719,7 +719,7 @@ fuchsia_io_DirectoryAdminGetAttrResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminSetAttrRequest {
|
||||
hdr fidl_message_header[2164260867]
|
||||
hdr fidl_message_header[198530458]
|
||||
flags_ int32
|
||||
attributesInLine fuchsia_io_NodeAttributesInLine
|
||||
attributesOutOfLine fuchsia_io_NodeAttributesOutOfLine
|
||||
@ -734,7 +734,7 @@ fuchsia_io_DirectoryAdminSetAttrResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminIoctlRequest {
|
||||
hdr fidl_message_header[2164260868]
|
||||
hdr fidl_message_header[905161895]
|
||||
opcode int32
|
||||
max_out int64
|
||||
handlesInLine fidl_vector
|
||||
@ -752,7 +752,7 @@ fuchsia_io_DirectoryAdminIoctlResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminOpenRequest {
|
||||
hdr fidl_message_header[2197815297]
|
||||
hdr fidl_message_header[2011483371]
|
||||
flags_ int32
|
||||
mode int32
|
||||
pathInLine fidl_string
|
||||
@ -765,7 +765,7 @@ fuchsia_io_DirectoryAdminOpenRequestHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminUnlinkRequest {
|
||||
hdr fidl_message_header[2197815298]
|
||||
hdr fidl_message_header[750443289]
|
||||
pathInLine fidl_string
|
||||
pathOutOfLine fidl_aligned[stringnoz]
|
||||
} [packed]
|
||||
@ -779,7 +779,7 @@ fuchsia_io_DirectoryAdminUnlinkResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminReadDirentsRequest {
|
||||
hdr fidl_message_header[2197815299]
|
||||
hdr fidl_message_header[782580781]
|
||||
max_bytes int64
|
||||
} [packed]
|
||||
|
||||
@ -792,7 +792,7 @@ fuchsia_io_DirectoryAdminReadDirentsResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminRewindRequest {
|
||||
hdr fidl_message_header[2197815300]
|
||||
hdr fidl_message_header[1886584199]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminRewindRequestHandles {
|
||||
@ -804,7 +804,7 @@ fuchsia_io_DirectoryAdminRewindResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminGetTokenRequest {
|
||||
hdr fidl_message_header[2197815301]
|
||||
hdr fidl_message_header[840416493]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminGetTokenRequestHandles {
|
||||
@ -816,7 +816,7 @@ fuchsia_io_DirectoryAdminGetTokenResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminRenameRequest {
|
||||
hdr fidl_message_header[2197815302]
|
||||
hdr fidl_message_header[1251258540]
|
||||
srcInLine fidl_string
|
||||
dst_parent_token flags[fidl_handle_presence, int32]
|
||||
dstInLine fidl_string
|
||||
@ -833,7 +833,7 @@ fuchsia_io_DirectoryAdminRenameResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminLinkRequest {
|
||||
hdr fidl_message_header[2197815303]
|
||||
hdr fidl_message_header[462052964]
|
||||
srcInLine fidl_string
|
||||
dst_parent_token flags[fidl_handle_presence, int32]
|
||||
dstInLine fidl_string
|
||||
@ -850,7 +850,7 @@ fuchsia_io_DirectoryAdminLinkResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminWatchRequest {
|
||||
hdr fidl_message_header[2197815304]
|
||||
hdr fidl_message_header[1522700084]
|
||||
mask int32
|
||||
options int32
|
||||
watcher flags[fidl_handle_presence, int32]
|
||||
@ -865,7 +865,7 @@ fuchsia_io_DirectoryAdminWatchResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminMountRequest {
|
||||
hdr fidl_message_header[2231369729]
|
||||
hdr fidl_message_header[2120159974]
|
||||
remote flags[fidl_handle_presence, int32]
|
||||
} [packed]
|
||||
|
||||
@ -878,7 +878,7 @@ fuchsia_io_DirectoryAdminMountResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminMountAndCreateRequest {
|
||||
hdr fidl_message_header[2231369730]
|
||||
hdr fidl_message_header[841348753]
|
||||
remote flags[fidl_handle_presence, int32]
|
||||
nameInLine fidl_string
|
||||
flags_ int32
|
||||
@ -894,7 +894,7 @@ fuchsia_io_DirectoryAdminMountAndCreateResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminUnmountRequest {
|
||||
hdr fidl_message_header[2231369731]
|
||||
hdr fidl_message_header[620898132]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminUnmountRequestHandles {
|
||||
@ -906,7 +906,7 @@ fuchsia_io_DirectoryAdminUnmountResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminUnmountNodeRequest {
|
||||
hdr fidl_message_header[2231369732]
|
||||
hdr fidl_message_header[383400103]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminUnmountNodeRequestHandles {
|
||||
@ -918,7 +918,7 @@ fuchsia_io_DirectoryAdminUnmountNodeResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminQueryFilesystemRequest {
|
||||
hdr fidl_message_header[2231369733]
|
||||
hdr fidl_message_header[1713999250]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminQueryFilesystemRequestHandles {
|
||||
@ -930,7 +930,7 @@ fuchsia_io_DirectoryAdminQueryFilesystemResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminGetDevicePathRequest {
|
||||
hdr fidl_message_header[2231369734]
|
||||
hdr fidl_message_header[787943096]
|
||||
} [packed]
|
||||
|
||||
fuchsia_io_DirectoryAdminGetDevicePathRequestHandles {
|
||||
|
@ -6,7 +6,7 @@
|
||||
include <fuchsia/ldsvc/c/fidl.h>
|
||||
|
||||
fuchsia_ldsvc_LoaderDoneRequest {
|
||||
hdr fidl_message_header[1]
|
||||
hdr fidl_message_header[1343632858]
|
||||
} [packed]
|
||||
|
||||
fuchsia_ldsvc_LoaderDoneRequestHandles {
|
||||
@ -14,7 +14,7 @@ fuchsia_ldsvc_LoaderDoneRequestHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_ldsvc_LoaderLoadObjectRequest {
|
||||
hdr fidl_message_header[2]
|
||||
hdr fidl_message_header[416505440]
|
||||
object_nameInLine fidl_string
|
||||
object_nameOutOfLine fidl_aligned[stringnoz]
|
||||
} [packed]
|
||||
@ -28,7 +28,7 @@ fuchsia_ldsvc_LoaderLoadObjectResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_ldsvc_LoaderLoadScriptInterpreterRequest {
|
||||
hdr fidl_message_header[3]
|
||||
hdr fidl_message_header[852262734]
|
||||
interpreter_nameInLine fidl_string
|
||||
interpreter_nameOutOfLine fidl_aligned[stringnoz]
|
||||
} [packed]
|
||||
@ -42,7 +42,7 @@ fuchsia_ldsvc_LoaderLoadScriptInterpreterResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_ldsvc_LoaderConfigRequest {
|
||||
hdr fidl_message_header[4]
|
||||
hdr fidl_message_header[450803597]
|
||||
configInLine fidl_string
|
||||
configOutOfLine fidl_aligned[stringnoz]
|
||||
} [packed]
|
||||
@ -56,7 +56,7 @@ fuchsia_ldsvc_LoaderConfigResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_ldsvc_LoaderCloneRequest {
|
||||
hdr fidl_message_header[5]
|
||||
hdr fidl_message_header[946011321]
|
||||
loader flags[fidl_handle_presence, int32]
|
||||
} [packed]
|
||||
|
||||
@ -69,7 +69,7 @@ fuchsia_ldsvc_LoaderCloneResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_ldsvc_LoaderDebugPublishDataSinkRequest {
|
||||
hdr fidl_message_header[7]
|
||||
hdr fidl_message_header[1332017729]
|
||||
data_sinkInLine fidl_string
|
||||
data flags[fidl_handle_presence, int32]
|
||||
data_sinkOutOfLine fidl_aligned[stringnoz]
|
||||
@ -84,7 +84,7 @@ fuchsia_ldsvc_LoaderDebugPublishDataSinkResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_ldsvc_LoaderDebugLoadConfigRequest {
|
||||
hdr fidl_message_header[8]
|
||||
hdr fidl_message_header[1915582394]
|
||||
config_nameInLine fidl_string
|
||||
config_nameOutOfLine fidl_aligned[stringnoz]
|
||||
} [packed]
|
||||
|
@ -1,414 +0,0 @@
|
||||
# Copyright 2018 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.
|
||||
#
|
||||
# WARNING: This file is machine generated by fidlgen.
|
||||
|
||||
include <fuchsia/mediacodec/c/fidl.h>
|
||||
fuchsia_mediacodec_AudioBitrateMode = fuchsia_mediacodec_AudioBitrateMode_UNSPECIFIED, fuchsia_mediacodec_AudioBitrateMode_CBR, fuchsia_mediacodec_AudioBitrateMode_VBR
|
||||
fuchsia_mediacodec_AudioPcmMode = fuchsia_mediacodec_AudioPcmMode_LINEAR, fuchsia_mediacodec_AudioPcmMode_ALAW, fuchsia_mediacodec_AudioPcmMode_MULAW
|
||||
|
||||
fuchsia_mediacodec_CodecBufferConstraintsHandles {
|
||||
default_settings fuchsia_mediacodec_CodecPortBufferSettingsHandles
|
||||
very_temp_kludge_bti_handle zx_handle
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecOutputConfigHandles {
|
||||
buffer_constraints fuchsia_mediacodec_CodecBufferConstraintsHandles
|
||||
format_details fuchsia_mediacodec_CodecFormatDetailsHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecPortBufferSettingsInLine {
|
||||
buffer_lifetime_ordinal int64
|
||||
buffer_constraints_version_ordinal int64
|
||||
packet_count_for_codec int32
|
||||
packet_count_for_client int32
|
||||
per_packet_buffer_bytes int32
|
||||
single_buffer_mode int8
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecPortBufferSettingsOutOfLine {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecPortBufferSettingsHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecBufferInLine {
|
||||
buffer_lifetime_ordinal int64
|
||||
buffer_index int32
|
||||
dataInLine fuchsia_mediacodec_CodecBufferDataInLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecBufferOutOfLine {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecBufferHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecBufferDataVmoInLine {
|
||||
vmo_handle flags[fidl_handle_presence, int32]
|
||||
vmo_usable_start int64
|
||||
vmo_usable_size int64
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecPacketHeaderInLine {
|
||||
buffer_lifetime_ordinal int64
|
||||
packet_index int32
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecPacketHeaderOutOfLine {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecPacketHeaderHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecPacketInLine {
|
||||
headerInLine fuchsia_mediacodec_CodecPacketHeaderInLine
|
||||
buffer_index int32
|
||||
stream_lifetime_ordinal int64
|
||||
start_offset int32
|
||||
valid_length_bytes int32
|
||||
has_timestamp_ish int8
|
||||
timestamp_ish int64
|
||||
start_access_unit int8
|
||||
known_end_access_unit int8
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecPacketOutOfLine {
|
||||
headerOutOfLine fuchsia_mediacodec_CodecPacketHeaderOutOfLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecPacketHandles {
|
||||
header fuchsia_mediacodec_CodecPacketHeaderHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_ParameterInLine {
|
||||
scopeInLine fidl_string
|
||||
nameInLine fidl_string
|
||||
valueInLine fuchsia_mediacodec_ValueInLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_ParameterOutOfLine {
|
||||
scopeOutOfLine fidl_aligned[stringnoz]
|
||||
nameOutOfLine fidl_aligned[stringnoz]
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_ParameterHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_AudioCompressedFormatAacEncoderInLine {
|
||||
bits_per_second int32
|
||||
bitrate_mode flags[fuchsia_mediacodec_AudioBitrateMode, int32]
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_PcmFormatInLine {
|
||||
pcm_mode flags[fuchsia_mediacodec_AudioPcmMode, int32]
|
||||
bits_per_sample int32
|
||||
frames_per_second int32
|
||||
channel_mapInLine fidl_vector
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_VideoUncompressedFormatInLine {
|
||||
fourcc int32
|
||||
primary_width_pixels int32
|
||||
primary_height_pixels int32
|
||||
secondary_width_pixels int32
|
||||
secondary_height_pixels int32
|
||||
planar int8
|
||||
swizzled int8
|
||||
primary_line_stride_bytes int32
|
||||
secondary_line_stride_bytes int32
|
||||
primary_start_offset int32
|
||||
secondary_start_offset int32
|
||||
tertiary_start_offset int32
|
||||
primary_pixel_stride int32
|
||||
secondary_pixel_stride int32
|
||||
primary_display_width_pixels int32
|
||||
primary_display_height_pixels int32
|
||||
has_pixel_aspect_ratio int8
|
||||
pixel_aspect_ratio_width int32
|
||||
pixel_aspect_ratio_height int32
|
||||
special_formatsInLine fuchsia_mediacodec_VideoUncompressedFormatSpecificDetailsInLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecFormatDetailsInLine {
|
||||
format_details_version_ordinal int64
|
||||
mime_typeInLine fidl_string
|
||||
codec_oob_bytesInLine fidl_vector
|
||||
domainInLine fuchsia_mediacodec_DomainFormatInLine
|
||||
pass_through_parametersInLine fidl_vector
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecFormatDetailsOutOfLine {
|
||||
mime_typeOutOfLine fidl_aligned[stringnoz]
|
||||
codec_oob_bytesOutOfLine array[int8]
|
||||
pass_through_parametersOutOfLine parallel_array[fuchsia_mediacodec_ParameterInLine, fuchsia_mediacodec_ParameterOutOfLine]
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecFormatDetailsHandles {
|
||||
pass_through_parameters array[fuchsia_mediacodec_ParameterHandles]
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CreateDecoder_ParamsInLine {
|
||||
input_detailsInLine fuchsia_mediacodec_CodecFormatDetailsInLine
|
||||
promise_separate_access_units_on_input int8
|
||||
require_can_stream_bytes_input int8
|
||||
require_can_find_start int8
|
||||
require_can_re_sync int8
|
||||
require_report_all_detected_errors int8
|
||||
require_hw int8
|
||||
permit_lack_of_split_header_handling int8
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CreateDecoder_ParamsOutOfLine {
|
||||
input_detailsOutOfLine fuchsia_mediacodec_CodecFormatDetailsOutOfLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CreateDecoder_ParamsHandles {
|
||||
input_details fuchsia_mediacodec_CodecFormatDetailsHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecDescriptionHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecBufferDataInLine [
|
||||
vmoInLine fidl_union_member[fuchsia_mediacodec_CodecBufferDataTag_vmo, fuchsia_mediacodec_CodecBufferDataVmoInLine]
|
||||
]
|
||||
|
||||
fuchsia_mediacodec_ValueInLine [
|
||||
bool_value fidl_union_member[fuchsia_mediacodec_ValueTag_bool_value, int8]
|
||||
uint64_value fidl_union_member[fuchsia_mediacodec_ValueTag_uint64_value, int64]
|
||||
int64_value fidl_union_member[fuchsia_mediacodec_ValueTag_int64_value, int64]
|
||||
string_valueInLine fidl_union_member[fuchsia_mediacodec_ValueTag_string_value, fidl_string]
|
||||
bytes_valueInLine fidl_union_member[fuchsia_mediacodec_ValueTag_bytes_value, fidl_vector]
|
||||
]
|
||||
|
||||
fuchsia_mediacodec_AudioCompressedFormatInLine [
|
||||
aacInLine fidl_union_member[fuchsia_mediacodec_AudioCompressedFormatTag_aac, fuchsia_mediacodec_AudioCompressedFormatAacEncoderInLine]
|
||||
]
|
||||
|
||||
fuchsia_mediacodec_AudioUncompressedFormatInLine [
|
||||
pcmInLine fidl_union_member[fuchsia_mediacodec_AudioUncompressedFormatTag_pcm, fuchsia_mediacodec_PcmFormatInLine]
|
||||
]
|
||||
|
||||
fuchsia_mediacodec_AudioFormatInLine [
|
||||
compressedInLine fidl_union_member[fuchsia_mediacodec_AudioFormatTag_compressed, fuchsia_mediacodec_AudioCompressedFormatInLine]
|
||||
uncompressedInLine fidl_union_member[fuchsia_mediacodec_AudioFormatTag_uncompressed, fuchsia_mediacodec_AudioUncompressedFormatInLine]
|
||||
]
|
||||
|
||||
fuchsia_mediacodec_VideoCompressedFormatInLine [
|
||||
temp_field_todo_remove fidl_union_member[fuchsia_mediacodec_VideoCompressedFormatTag_temp_field_todo_remove, int32]
|
||||
]
|
||||
|
||||
fuchsia_mediacodec_VideoUncompressedFormatSpecificDetailsInLine [
|
||||
temp_field_todo_remove fidl_union_member[fuchsia_mediacodec_VideoUncompressedFormatSpecificDetailsTag_temp_field_todo_remove, int32]
|
||||
]
|
||||
|
||||
fuchsia_mediacodec_VideoFormatInLine [
|
||||
compressedInLine fidl_union_member[fuchsia_mediacodec_VideoFormatTag_compressed, fuchsia_mediacodec_VideoCompressedFormatInLine]
|
||||
uncompressedInLine fidl_union_member[fuchsia_mediacodec_VideoFormatTag_uncompressed, fuchsia_mediacodec_VideoUncompressedFormatInLine]
|
||||
]
|
||||
|
||||
fuchsia_mediacodec_DomainFormatInLine [
|
||||
audioInLine fidl_union_member[fuchsia_mediacodec_DomainFormatTag_audio, fuchsia_mediacodec_AudioFormatInLine]
|
||||
videoInLine fidl_union_member[fuchsia_mediacodec_DomainFormatTag_video, fuchsia_mediacodec_VideoFormatInLine]
|
||||
]
|
||||
|
||||
fuchsia_mediacodec_CodecEnableOnStreamFailedRequest {
|
||||
hdr fidl_message_header[1]
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecEnableOnStreamFailedRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecOnStreamFailedEventHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecOnInputConstraintsEventHandles {
|
||||
input_constraints fuchsia_mediacodec_CodecBufferConstraintsHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecSetInputBufferSettingsRequest {
|
||||
hdr fidl_message_header[4]
|
||||
input_settingsInLine fuchsia_mediacodec_CodecPortBufferSettingsInLine
|
||||
input_settingsOutOfLine fuchsia_mediacodec_CodecPortBufferSettingsOutOfLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecSetInputBufferSettingsRequestHandles {
|
||||
input_settings fuchsia_mediacodec_CodecPortBufferSettingsHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecAddInputBufferRequest {
|
||||
hdr fidl_message_header[5]
|
||||
bufferInLine fuchsia_mediacodec_CodecBufferInLine
|
||||
bufferOutOfLine fuchsia_mediacodec_CodecBufferOutOfLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecAddInputBufferRequestHandles {
|
||||
buffer_ fuchsia_mediacodec_CodecBufferHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecOnOutputConfigEventHandles {
|
||||
output_config fuchsia_mediacodec_CodecOutputConfigHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecSetOutputBufferSettingsRequest {
|
||||
hdr fidl_message_header[7]
|
||||
output_settingsInLine fuchsia_mediacodec_CodecPortBufferSettingsInLine
|
||||
output_settingsOutOfLine fuchsia_mediacodec_CodecPortBufferSettingsOutOfLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecSetOutputBufferSettingsRequestHandles {
|
||||
output_settings fuchsia_mediacodec_CodecPortBufferSettingsHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecAddOutputBufferRequest {
|
||||
hdr fidl_message_header[8]
|
||||
bufferInLine fuchsia_mediacodec_CodecBufferInLine
|
||||
bufferOutOfLine fuchsia_mediacodec_CodecBufferOutOfLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecAddOutputBufferRequestHandles {
|
||||
buffer_ fuchsia_mediacodec_CodecBufferHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecFlushEndOfStreamAndCloseStreamRequest {
|
||||
hdr fidl_message_header[9]
|
||||
stream_lifetime_ordinal int64
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecFlushEndOfStreamAndCloseStreamRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecCloseCurrentStreamRequest {
|
||||
hdr fidl_message_header[10]
|
||||
stream_lifetime_ordinal int64
|
||||
release_input_buffers int8
|
||||
release_output_buffers int8
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecCloseCurrentStreamRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecSyncRequest {
|
||||
hdr fidl_message_header[11]
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecSyncRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecSyncResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecOnOutputPacketEventHandles {
|
||||
output_packet fuchsia_mediacodec_CodecPacketHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecRecycleOutputPacketRequest {
|
||||
hdr fidl_message_header[13]
|
||||
available_output_packetInLine fuchsia_mediacodec_CodecPacketHeaderInLine
|
||||
available_output_packetOutOfLine fuchsia_mediacodec_CodecPacketHeaderOutOfLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecRecycleOutputPacketRequestHandles {
|
||||
available_output_packet fuchsia_mediacodec_CodecPacketHeaderHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecOnOutputEndOfStreamEventHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecQueueInputFormatDetailsRequest {
|
||||
hdr fidl_message_header[15]
|
||||
stream_lifetime_ordinal int64
|
||||
format_detailsInLine fuchsia_mediacodec_CodecFormatDetailsInLine
|
||||
format_detailsOutOfLine fuchsia_mediacodec_CodecFormatDetailsOutOfLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecQueueInputFormatDetailsRequestHandles {
|
||||
format_details fuchsia_mediacodec_CodecFormatDetailsHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecQueueInputPacketRequest {
|
||||
hdr fidl_message_header[16]
|
||||
packetInLine fuchsia_mediacodec_CodecPacketInLine
|
||||
packetOutOfLine fuchsia_mediacodec_CodecPacketOutOfLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecQueueInputPacketRequestHandles {
|
||||
packet fuchsia_mediacodec_CodecPacketHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecOnFreeInputPacketEventHandles {
|
||||
free_input_packet fuchsia_mediacodec_CodecPacketHeaderHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecQueueInputEndOfStreamRequest {
|
||||
hdr fidl_message_header[18]
|
||||
stream_lifetime_ordinal int64
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecQueueInputEndOfStreamRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
resource zx_chan_fuchsia_mediacodec_Codec_client[zx_chan]
|
||||
resource zx_chan_fuchsia_mediacodec_Codec_server[zx_chan]
|
||||
|
||||
zx_channel_create$fuchsia_mediacodec_Codec(options const[0], out0 ptr[out, zx_chan_fuchsia_mediacodec_Codec_client], out1 ptr[out, zx_chan_fuchsia_mediacodec_Codec_server])
|
||||
fdio_service_connect$fuchsia_mediacodec_Codec(path ptr[in, string["/svc/"]], handle zx_chan_fuchsia_mediacodec_Codec_server)
|
||||
zx_channel_write$fuchsia_mediacodec_CodecEnableOnStreamFailed(handle zx_chan_fuchsia_mediacodec_Codec_client, options const[0], bytes ptr[in, fuchsia_mediacodec_CodecEnableOnStreamFailedRequest], num_bytes bytesize[bytes], handles ptr[in, fuchsia_mediacodec_CodecEnableOnStreamFailedRequestHandles], num_handles bytesize[handles])
|
||||
zx_channel_read$fuchsia_mediacodec_CodecOnStreamFailed(handle zx_chan_fuchsia_mediacodec_Codec_client, options const[0], bytes ptr[out, array[int8, ZX_CHANNEL_MAX_MSG_BYTES]], num_bytes bytesize[bytes], handles ptr[out, fuchsia_mediacodec_CodecOnStreamFailedEventHandles], num_handles bytesize[handles], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_read$fuchsia_mediacodec_CodecOnInputConstraints(handle zx_chan_fuchsia_mediacodec_Codec_client, options const[0], bytes ptr[out, array[int8, ZX_CHANNEL_MAX_MSG_BYTES]], num_bytes bytesize[bytes], handles ptr[out, fuchsia_mediacodec_CodecOnInputConstraintsEventHandles], num_handles bytesize[handles], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_write$fuchsia_mediacodec_CodecSetInputBufferSettings(handle zx_chan_fuchsia_mediacodec_Codec_client, options const[0], bytes ptr[in, fuchsia_mediacodec_CodecSetInputBufferSettingsRequest], num_bytes bytesize[bytes], handles ptr[in, fuchsia_mediacodec_CodecSetInputBufferSettingsRequestHandles], num_handles bytesize[handles])
|
||||
zx_channel_write$fuchsia_mediacodec_CodecAddInputBuffer(handle zx_chan_fuchsia_mediacodec_Codec_client, options const[0], bytes ptr[in, fuchsia_mediacodec_CodecAddInputBufferRequest], num_bytes bytesize[bytes], handles ptr[in, fuchsia_mediacodec_CodecAddInputBufferRequestHandles], num_handles bytesize[handles])
|
||||
zx_channel_read$fuchsia_mediacodec_CodecOnOutputConfig(handle zx_chan_fuchsia_mediacodec_Codec_client, options const[0], bytes ptr[out, array[int8, ZX_CHANNEL_MAX_MSG_BYTES]], num_bytes bytesize[bytes], handles ptr[out, fuchsia_mediacodec_CodecOnOutputConfigEventHandles], num_handles bytesize[handles], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_write$fuchsia_mediacodec_CodecSetOutputBufferSettings(handle zx_chan_fuchsia_mediacodec_Codec_client, options const[0], bytes ptr[in, fuchsia_mediacodec_CodecSetOutputBufferSettingsRequest], num_bytes bytesize[bytes], handles ptr[in, fuchsia_mediacodec_CodecSetOutputBufferSettingsRequestHandles], num_handles bytesize[handles])
|
||||
zx_channel_write$fuchsia_mediacodec_CodecAddOutputBuffer(handle zx_chan_fuchsia_mediacodec_Codec_client, options const[0], bytes ptr[in, fuchsia_mediacodec_CodecAddOutputBufferRequest], num_bytes bytesize[bytes], handles ptr[in, fuchsia_mediacodec_CodecAddOutputBufferRequestHandles], num_handles bytesize[handles])
|
||||
zx_channel_write$fuchsia_mediacodec_CodecFlushEndOfStreamAndCloseStream(handle zx_chan_fuchsia_mediacodec_Codec_client, options const[0], bytes ptr[in, fuchsia_mediacodec_CodecFlushEndOfStreamAndCloseStreamRequest], num_bytes bytesize[bytes], handles ptr[in, fuchsia_mediacodec_CodecFlushEndOfStreamAndCloseStreamRequestHandles], num_handles bytesize[handles])
|
||||
zx_channel_write$fuchsia_mediacodec_CodecCloseCurrentStream(handle zx_chan_fuchsia_mediacodec_Codec_client, options const[0], bytes ptr[in, fuchsia_mediacodec_CodecCloseCurrentStreamRequest], num_bytes bytesize[bytes], handles ptr[in, fuchsia_mediacodec_CodecCloseCurrentStreamRequestHandles], num_handles bytesize[handles])
|
||||
zx_channel_call$fuchsia_mediacodec_CodecSync(handle zx_chan_fuchsia_mediacodec_Codec_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_mediacodec_CodecSyncRequest, fuchsia_mediacodec_CodecSyncRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_mediacodec_CodecSyncResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_read$fuchsia_mediacodec_CodecOnOutputPacket(handle zx_chan_fuchsia_mediacodec_Codec_client, options const[0], bytes ptr[out, array[int8, ZX_CHANNEL_MAX_MSG_BYTES]], num_bytes bytesize[bytes], handles ptr[out, fuchsia_mediacodec_CodecOnOutputPacketEventHandles], num_handles bytesize[handles], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_write$fuchsia_mediacodec_CodecRecycleOutputPacket(handle zx_chan_fuchsia_mediacodec_Codec_client, options const[0], bytes ptr[in, fuchsia_mediacodec_CodecRecycleOutputPacketRequest], num_bytes bytesize[bytes], handles ptr[in, fuchsia_mediacodec_CodecRecycleOutputPacketRequestHandles], num_handles bytesize[handles])
|
||||
zx_channel_read$fuchsia_mediacodec_CodecOnOutputEndOfStream(handle zx_chan_fuchsia_mediacodec_Codec_client, options const[0], bytes ptr[out, array[int8, ZX_CHANNEL_MAX_MSG_BYTES]], num_bytes bytesize[bytes], handles ptr[out, fuchsia_mediacodec_CodecOnOutputEndOfStreamEventHandles], num_handles bytesize[handles], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_write$fuchsia_mediacodec_CodecQueueInputFormatDetails(handle zx_chan_fuchsia_mediacodec_Codec_client, options const[0], bytes ptr[in, fuchsia_mediacodec_CodecQueueInputFormatDetailsRequest], num_bytes bytesize[bytes], handles ptr[in, fuchsia_mediacodec_CodecQueueInputFormatDetailsRequestHandles], num_handles bytesize[handles])
|
||||
zx_channel_write$fuchsia_mediacodec_CodecQueueInputPacket(handle zx_chan_fuchsia_mediacodec_Codec_client, options const[0], bytes ptr[in, fuchsia_mediacodec_CodecQueueInputPacketRequest], num_bytes bytesize[bytes], handles ptr[in, fuchsia_mediacodec_CodecQueueInputPacketRequestHandles], num_handles bytesize[handles])
|
||||
zx_channel_read$fuchsia_mediacodec_CodecOnFreeInputPacket(handle zx_chan_fuchsia_mediacodec_Codec_client, options const[0], bytes ptr[out, array[int8, ZX_CHANNEL_MAX_MSG_BYTES]], num_bytes bytesize[bytes], handles ptr[out, fuchsia_mediacodec_CodecOnFreeInputPacketEventHandles], num_handles bytesize[handles], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_write$fuchsia_mediacodec_CodecQueueInputEndOfStream(handle zx_chan_fuchsia_mediacodec_Codec_client, options const[0], bytes ptr[in, fuchsia_mediacodec_CodecQueueInputEndOfStreamRequest], num_bytes bytesize[bytes], handles ptr[in, fuchsia_mediacodec_CodecQueueInputEndOfStreamRequestHandles], num_handles bytesize[handles])
|
||||
|
||||
fuchsia_mediacodec_CodecFactoryOnCodecListEventHandles {
|
||||
codecs array[fuchsia_mediacodec_CodecDescriptionHandles]
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecFactoryCreateDecoderRequest {
|
||||
hdr fidl_message_header[2]
|
||||
decoder_paramsInLine fuchsia_mediacodec_CreateDecoder_ParamsInLine
|
||||
decoder flags[fidl_handle_presence, int32]
|
||||
decoder_paramsOutOfLine fuchsia_mediacodec_CreateDecoder_ParamsOutOfLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_mediacodec_CodecFactoryCreateDecoderRequestHandles {
|
||||
decoder_params fuchsia_mediacodec_CreateDecoder_ParamsHandles
|
||||
decoder zx_chan_fuchsia_mediacodec_Codec_server
|
||||
} [packed]
|
||||
|
||||
resource zx_chan_fuchsia_mediacodec_CodecFactory_client[zx_chan]
|
||||
resource zx_chan_fuchsia_mediacodec_CodecFactory_server[zx_chan]
|
||||
|
||||
zx_channel_create$fuchsia_mediacodec_CodecFactory(options const[0], out0 ptr[out, zx_chan_fuchsia_mediacodec_CodecFactory_client], out1 ptr[out, zx_chan_fuchsia_mediacodec_CodecFactory_server])
|
||||
fdio_service_connect$fuchsia_mediacodec_CodecFactory(path ptr[in, string["/svc/fuchsia.mediacodec.CodecFactory"]], handle zx_chan_fuchsia_mediacodec_CodecFactory_server)
|
||||
zx_channel_read$fuchsia_mediacodec_CodecFactoryOnCodecList(handle zx_chan_fuchsia_mediacodec_CodecFactory_client, options const[0], bytes ptr[out, array[int8, ZX_CHANNEL_MAX_MSG_BYTES]], num_bytes bytesize[bytes], handles ptr[out, fuchsia_mediacodec_CodecFactoryOnCodecListEventHandles], num_handles bytesize[handles], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_write$fuchsia_mediacodec_CodecFactoryCreateDecoder(handle zx_chan_fuchsia_mediacodec_CodecFactory_client, options const[0], bytes ptr[in, fuchsia_mediacodec_CodecFactoryCreateDecoderRequest], num_bytes bytesize[bytes], handles ptr[in, fuchsia_mediacodec_CodecFactoryCreateDecoderRequestHandles], num_handles bytesize[handles])
|
@ -1,24 +0,0 @@
|
||||
# AUTOGENERATED FILE
|
||||
ZX_CHANNEL_MAX_MSG_BYTES = 65536
|
||||
fuchsia_mediacodec_AudioBitrateMode_CBR = 1
|
||||
fuchsia_mediacodec_AudioBitrateMode_UNSPECIFIED = 0
|
||||
fuchsia_mediacodec_AudioBitrateMode_VBR = 2
|
||||
fuchsia_mediacodec_AudioCompressedFormatTag_aac = 0
|
||||
fuchsia_mediacodec_AudioFormatTag_compressed = 0
|
||||
fuchsia_mediacodec_AudioFormatTag_uncompressed = 1
|
||||
fuchsia_mediacodec_AudioPcmMode_ALAW = 1
|
||||
fuchsia_mediacodec_AudioPcmMode_LINEAR = 0
|
||||
fuchsia_mediacodec_AudioPcmMode_MULAW = 2
|
||||
fuchsia_mediacodec_AudioUncompressedFormatTag_pcm = 0
|
||||
fuchsia_mediacodec_CodecBufferDataTag_vmo = 0
|
||||
fuchsia_mediacodec_DomainFormatTag_audio = 0
|
||||
fuchsia_mediacodec_DomainFormatTag_video = 1
|
||||
fuchsia_mediacodec_ValueTag_bool_value = 0
|
||||
fuchsia_mediacodec_ValueTag_bytes_value = 4
|
||||
fuchsia_mediacodec_ValueTag_int64_value = 2
|
||||
fuchsia_mediacodec_ValueTag_string_value = 3
|
||||
fuchsia_mediacodec_ValueTag_uint64_value = 1
|
||||
fuchsia_mediacodec_VideoCompressedFormatTag_temp_field_todo_remove = 0
|
||||
fuchsia_mediacodec_VideoFormatTag_compressed = 0
|
||||
fuchsia_mediacodec_VideoFormatTag_uncompressed = 1
|
||||
fuchsia_mediacodec_VideoUncompressedFormatSpecificDetailsTag_temp_field_todo_remove = 0
|
@ -1,24 +0,0 @@
|
||||
# AUTOGENERATED FILE
|
||||
ZX_CHANNEL_MAX_MSG_BYTES = 65536
|
||||
fuchsia_mediacodec_AudioBitrateMode_CBR = 1
|
||||
fuchsia_mediacodec_AudioBitrateMode_UNSPECIFIED = 0
|
||||
fuchsia_mediacodec_AudioBitrateMode_VBR = 2
|
||||
fuchsia_mediacodec_AudioCompressedFormatTag_aac = 0
|
||||
fuchsia_mediacodec_AudioFormatTag_compressed = 0
|
||||
fuchsia_mediacodec_AudioFormatTag_uncompressed = 1
|
||||
fuchsia_mediacodec_AudioPcmMode_ALAW = 1
|
||||
fuchsia_mediacodec_AudioPcmMode_LINEAR = 0
|
||||
fuchsia_mediacodec_AudioPcmMode_MULAW = 2
|
||||
fuchsia_mediacodec_AudioUncompressedFormatTag_pcm = 0
|
||||
fuchsia_mediacodec_CodecBufferDataTag_vmo = 0
|
||||
fuchsia_mediacodec_DomainFormatTag_audio = 0
|
||||
fuchsia_mediacodec_DomainFormatTag_video = 1
|
||||
fuchsia_mediacodec_ValueTag_bool_value = 0
|
||||
fuchsia_mediacodec_ValueTag_bytes_value = 4
|
||||
fuchsia_mediacodec_ValueTag_int64_value = 2
|
||||
fuchsia_mediacodec_ValueTag_string_value = 3
|
||||
fuchsia_mediacodec_ValueTag_uint64_value = 1
|
||||
fuchsia_mediacodec_VideoCompressedFormatTag_temp_field_todo_remove = 0
|
||||
fuchsia_mediacodec_VideoFormatTag_compressed = 0
|
||||
fuchsia_mediacodec_VideoFormatTag_uncompressed = 1
|
||||
fuchsia_mediacodec_VideoUncompressedFormatSpecificDetailsTag_temp_field_todo_remove = 0
|
@ -8,7 +8,6 @@ include <fuchsia/net/stack/c/fidl.h>
|
||||
fuchsia_net_stack_InterfaceAddressInLine {
|
||||
ip_addressInLine fuchsia_net_IpAddressInLine
|
||||
prefix_len int8
|
||||
peer_addressInLine fuchsia_net_IpAddressInLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_stack_InterfaceAddressOutOfLine {
|
||||
@ -20,7 +19,11 @@ fuchsia_net_stack_InterfaceAddressHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_stack_InterfaceInfoHandles {
|
||||
mac zircon_ethernet_MacAddressHandles
|
||||
properties fuchsia_net_stack_InterfacePropertiesHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_stack_InterfacePropertiesHandles {
|
||||
mac fuchsia_hardware_ethernet_MacAddressHandles
|
||||
addresses array[fuchsia_net_stack_InterfaceAddressHandles]
|
||||
} [packed]
|
||||
|
||||
@ -55,14 +58,14 @@ fuchsia_net_stack_ForwardingDestinationInLine [
|
||||
]
|
||||
|
||||
fuchsia_net_stack_StackAddEthernetInterfaceRequest {
|
||||
hdr fidl_message_header[1]
|
||||
hdr fidl_message_header[523329667]
|
||||
topological_pathInLine fidl_string
|
||||
device flags[fidl_handle_presence, int32]
|
||||
topological_pathOutOfLine fidl_aligned[stringnoz]
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_stack_StackAddEthernetInterfaceRequestHandles {
|
||||
device zx_chan_zircon_ethernet_Device_client
|
||||
device zx_chan_fuchsia_hardware_ethernet_Device_client
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_stack_StackAddEthernetInterfaceResponseHandles {
|
||||
@ -70,7 +73,7 @@ fuchsia_net_stack_StackAddEthernetInterfaceResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_stack_StackDelEthernetInterfaceRequest {
|
||||
hdr fidl_message_header[2]
|
||||
hdr fidl_message_header[164294732]
|
||||
id int64
|
||||
} [packed]
|
||||
|
||||
@ -83,7 +86,7 @@ fuchsia_net_stack_StackDelEthernetInterfaceResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_stack_StackListInterfacesRequest {
|
||||
hdr fidl_message_header[256]
|
||||
hdr fidl_message_header[1110617141]
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_stack_StackListInterfacesRequestHandles {
|
||||
@ -95,7 +98,7 @@ fuchsia_net_stack_StackListInterfacesResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_stack_StackGetInterfaceInfoRequest {
|
||||
hdr fidl_message_header[257]
|
||||
hdr fidl_message_header[1475819982]
|
||||
id int64
|
||||
} [packed]
|
||||
|
||||
@ -109,7 +112,7 @@ fuchsia_net_stack_StackGetInterfaceInfoResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_stack_StackEnableInterfaceRequest {
|
||||
hdr fidl_message_header[258]
|
||||
hdr fidl_message_header[338651837]
|
||||
id int64
|
||||
} [packed]
|
||||
|
||||
@ -122,7 +125,7 @@ fuchsia_net_stack_StackEnableInterfaceResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_stack_StackDisableInterfaceRequest {
|
||||
hdr fidl_message_header[259]
|
||||
hdr fidl_message_header[420106991]
|
||||
id int64
|
||||
} [packed]
|
||||
|
||||
@ -135,7 +138,7 @@ fuchsia_net_stack_StackDisableInterfaceResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_stack_StackAddInterfaceAddressRequest {
|
||||
hdr fidl_message_header[260]
|
||||
hdr fidl_message_header[503331302]
|
||||
id int64
|
||||
addrInLine fuchsia_net_stack_InterfaceAddressInLine
|
||||
addrOutOfLine fuchsia_net_stack_InterfaceAddressOutOfLine
|
||||
@ -150,7 +153,7 @@ fuchsia_net_stack_StackAddInterfaceAddressResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_stack_StackDelInterfaceAddressRequest {
|
||||
hdr fidl_message_header[261]
|
||||
hdr fidl_message_header[1221457197]
|
||||
id int64
|
||||
addrInLine fuchsia_net_IpAddressInLine
|
||||
} [packed]
|
||||
@ -164,7 +167,7 @@ fuchsia_net_stack_StackDelInterfaceAddressResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_stack_StackGetForwardingTableRequest {
|
||||
hdr fidl_message_header[512]
|
||||
hdr fidl_message_header[1689435905]
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_stack_StackGetForwardingTableRequestHandles {
|
||||
@ -176,7 +179,7 @@ fuchsia_net_stack_StackGetForwardingTableResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_stack_StackAddForwardingEntryRequest {
|
||||
hdr fidl_message_header[513]
|
||||
hdr fidl_message_header[707225626]
|
||||
entryInLine fuchsia_net_stack_ForwardingEntryInLine
|
||||
entryOutOfLine fuchsia_net_stack_ForwardingEntryOutOfLine
|
||||
} [packed]
|
||||
@ -190,7 +193,7 @@ fuchsia_net_stack_StackAddForwardingEntryResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_stack_StackDelForwardingEntryRequest {
|
||||
hdr fidl_message_header[514]
|
||||
hdr fidl_message_header[456510177]
|
||||
subnetInLine fuchsia_net_SubnetInLine
|
||||
subnetOutOfLine fuchsia_net_SubnetOutOfLine
|
||||
} [packed]
|
||||
|
@ -4,9 +4,6 @@
|
||||
# WARNING: This file is machine generated by fidlgen.
|
||||
|
||||
include <fuchsia/net/c/fidl.h>
|
||||
fuchsia_net_SocketDomain = fuchsia_net_SocketDomain_inet, fuchsia_net_SocketDomain_inet6
|
||||
fuchsia_net_SocketType = fuchsia_net_SocketType_stream, fuchsia_net_SocketType_dgram
|
||||
fuchsia_net_SocketProtocol = fuchsia_net_SocketProtocol_ip, fuchsia_net_SocketProtocol_icmp, fuchsia_net_SocketProtocol_tcp, fuchsia_net_SocketProtocol_udp, fuchsia_net_SocketProtocol_ipv6, fuchsia_net_SocketProtocol_icmpv6
|
||||
|
||||
fuchsia_net_IPv4AddressInLine {
|
||||
addrInLine array[int8, 4]
|
||||
@ -68,23 +65,23 @@ zx_channel_create$fuchsia_net_Connectivity(options const[0], out0 ptr[out, zx_ch
|
||||
fdio_service_connect$fuchsia_net_Connectivity(path ptr[in, string["/svc/fuchsia.net.Connectivity"]], handle zx_chan_fuchsia_net_Connectivity_server)
|
||||
zx_channel_read$fuchsia_net_ConnectivityOnNetworkReachable(handle zx_chan_fuchsia_net_Connectivity_client, options const[0], bytes ptr[out, array[int8, ZX_CHANNEL_MAX_MSG_BYTES]], num_bytes bytesize[bytes], handles ptr[out, fuchsia_net_ConnectivityOnNetworkReachableEventHandles], num_handles bytesize[handles], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
|
||||
fuchsia_net_LegacySocketProviderOpenSocketRequest {
|
||||
hdr fidl_message_header[1]
|
||||
domain flags[fuchsia_net_SocketDomain, int32]
|
||||
type_ flags[fuchsia_net_SocketType, int32]
|
||||
protocol flags[fuchsia_net_SocketProtocol, int32]
|
||||
fuchsia_net_SocketProviderSocketRequest {
|
||||
hdr fidl_message_header[316444173]
|
||||
domain int16
|
||||
type_ int16
|
||||
protocol int16
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_LegacySocketProviderOpenSocketRequestHandles {
|
||||
fuchsia_net_SocketProviderSocketRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_LegacySocketProviderOpenSocketResponseHandles {
|
||||
fuchsia_net_SocketProviderSocketResponseHandles {
|
||||
s zx_socket
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_LegacySocketProviderGetAddrInfoRequest {
|
||||
hdr fidl_message_header[2]
|
||||
fuchsia_net_SocketProviderGetAddrInfoRequest {
|
||||
hdr fidl_message_header[498796293]
|
||||
nodeInLine fidl_string
|
||||
serviceInLine fidl_string
|
||||
hintsInLine fuchsia_net_AddrInfoHintsInLine
|
||||
@ -93,18 +90,169 @@ fuchsia_net_LegacySocketProviderGetAddrInfoRequest {
|
||||
hintsOutOfLine fuchsia_net_AddrInfoHintsOutOfLine
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_LegacySocketProviderGetAddrInfoRequestHandles {
|
||||
fuchsia_net_SocketProviderGetAddrInfoRequestHandles {
|
||||
hints fuchsia_net_AddrInfoHintsHandles
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_LegacySocketProviderGetAddrInfoResponseHandles {
|
||||
fuchsia_net_SocketProviderGetAddrInfoResponseHandles {
|
||||
resHandles array[fuchsia_net_AddrInfoHandles, 4]
|
||||
} [packed]
|
||||
|
||||
resource zx_chan_fuchsia_net_LegacySocketProvider_client[zx_chan]
|
||||
resource zx_chan_fuchsia_net_LegacySocketProvider_server[zx_chan]
|
||||
resource zx_chan_fuchsia_net_SocketProvider_client[zx_chan]
|
||||
resource zx_chan_fuchsia_net_SocketProvider_server[zx_chan]
|
||||
|
||||
zx_channel_create$fuchsia_net_LegacySocketProvider(options const[0], out0 ptr[out, zx_chan_fuchsia_net_LegacySocketProvider_client], out1 ptr[out, zx_chan_fuchsia_net_LegacySocketProvider_server])
|
||||
fdio_service_connect$fuchsia_net_LegacySocketProvider(path ptr[in, string["/svc/fuchsia.net.LegacySocketProvider"]], handle zx_chan_fuchsia_net_LegacySocketProvider_server)
|
||||
zx_channel_call$fuchsia_net_LegacySocketProviderOpenSocket(handle zx_chan_fuchsia_net_LegacySocketProvider_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_net_LegacySocketProviderOpenSocketRequest, fuchsia_net_LegacySocketProviderOpenSocketRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_net_LegacySocketProviderOpenSocketResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_net_LegacySocketProviderGetAddrInfo(handle zx_chan_fuchsia_net_LegacySocketProvider_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_net_LegacySocketProviderGetAddrInfoRequest, fuchsia_net_LegacySocketProviderGetAddrInfoRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_net_LegacySocketProviderGetAddrInfoResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_create$fuchsia_net_SocketProvider(options const[0], out0 ptr[out, zx_chan_fuchsia_net_SocketProvider_client], out1 ptr[out, zx_chan_fuchsia_net_SocketProvider_server])
|
||||
fdio_service_connect$fuchsia_net_SocketProvider(path ptr[in, string["/svc/fuchsia.net.SocketProvider"]], handle zx_chan_fuchsia_net_SocketProvider_server)
|
||||
zx_channel_call$fuchsia_net_SocketProviderSocket(handle zx_chan_fuchsia_net_SocketProvider_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_net_SocketProviderSocketRequest, fuchsia_net_SocketProviderSocketRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_net_SocketProviderSocketResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_net_SocketProviderGetAddrInfo(handle zx_chan_fuchsia_net_SocketProvider_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_net_SocketProviderGetAddrInfoRequest, fuchsia_net_SocketProviderGetAddrInfoRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_net_SocketProviderGetAddrInfoResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
|
||||
fuchsia_net_SocketControlCloseRequest {
|
||||
hdr fidl_message_header[506040350]
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlCloseRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlCloseResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlIoctlRequest {
|
||||
hdr fidl_message_header[1157859964]
|
||||
req int16
|
||||
inInLine fidl_vector
|
||||
inOutOfLine array[int8]
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlIoctlRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlIoctlResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlConnectRequest {
|
||||
hdr fidl_message_header[345505709]
|
||||
addrInLine fidl_vector
|
||||
addrOutOfLine array[int8]
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlConnectRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlConnectResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlAcceptRequest {
|
||||
hdr fidl_message_header[796734679]
|
||||
flags_ int16
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlAcceptRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlAcceptResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlBindRequest {
|
||||
hdr fidl_message_header[2092731140]
|
||||
addrInLine fidl_vector
|
||||
addrOutOfLine array[int8]
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlBindRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlBindResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlListenRequest {
|
||||
hdr fidl_message_header[1117818704]
|
||||
backlog int16
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlListenRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlListenResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlGetSockNameRequest {
|
||||
hdr fidl_message_header[764939941]
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlGetSockNameRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlGetSockNameResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlGetPeerNameRequest {
|
||||
hdr fidl_message_header[472396488]
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlGetPeerNameRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlGetPeerNameResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlSetSockOptRequest {
|
||||
hdr fidl_message_header[1365685084]
|
||||
level int16
|
||||
optname int16
|
||||
optvalInLine fidl_vector
|
||||
optvalOutOfLine array[int8]
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlSetSockOptRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlSetSockOptResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlGetSockOptRequest {
|
||||
hdr fidl_message_header[2132650507]
|
||||
level int16
|
||||
optname int16
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlGetSockOptRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
fuchsia_net_SocketControlGetSockOptResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
resource zx_chan_fuchsia_net_SocketControl_client[zx_chan]
|
||||
resource zx_chan_fuchsia_net_SocketControl_server[zx_chan]
|
||||
|
||||
zx_channel_create$fuchsia_net_SocketControl(options const[0], out0 ptr[out, zx_chan_fuchsia_net_SocketControl_client], out1 ptr[out, zx_chan_fuchsia_net_SocketControl_server])
|
||||
fdio_service_connect$fuchsia_net_SocketControl(path ptr[in, string["/svc/"]], handle zx_chan_fuchsia_net_SocketControl_server)
|
||||
zx_channel_call$fuchsia_net_SocketControlClose(handle zx_chan_fuchsia_net_SocketControl_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_net_SocketControlCloseRequest, fuchsia_net_SocketControlCloseRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_net_SocketControlCloseResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_net_SocketControlIoctl(handle zx_chan_fuchsia_net_SocketControl_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_net_SocketControlIoctlRequest, fuchsia_net_SocketControlIoctlRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_net_SocketControlIoctlResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_net_SocketControlConnect(handle zx_chan_fuchsia_net_SocketControl_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_net_SocketControlConnectRequest, fuchsia_net_SocketControlConnectRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_net_SocketControlConnectResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_net_SocketControlAccept(handle zx_chan_fuchsia_net_SocketControl_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_net_SocketControlAcceptRequest, fuchsia_net_SocketControlAcceptRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_net_SocketControlAcceptResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_net_SocketControlBind(handle zx_chan_fuchsia_net_SocketControl_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_net_SocketControlBindRequest, fuchsia_net_SocketControlBindRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_net_SocketControlBindResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_net_SocketControlListen(handle zx_chan_fuchsia_net_SocketControl_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_net_SocketControlListenRequest, fuchsia_net_SocketControlListenRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_net_SocketControlListenResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_net_SocketControlGetSockName(handle zx_chan_fuchsia_net_SocketControl_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_net_SocketControlGetSockNameRequest, fuchsia_net_SocketControlGetSockNameRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_net_SocketControlGetSockNameResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_net_SocketControlGetPeerName(handle zx_chan_fuchsia_net_SocketControl_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_net_SocketControlGetPeerNameRequest, fuchsia_net_SocketControlGetPeerNameRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_net_SocketControlGetPeerNameResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_net_SocketControlSetSockOpt(handle zx_chan_fuchsia_net_SocketControl_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_net_SocketControlSetSockOptRequest, fuchsia_net_SocketControlSetSockOptRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_net_SocketControlSetSockOptResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$fuchsia_net_SocketControlGetSockOpt(handle zx_chan_fuchsia_net_SocketControl_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_net_SocketControlGetSockOptRequest, fuchsia_net_SocketControlGetSockOptRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_net_SocketControlGetSockOptResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
|
@ -2,13 +2,3 @@
|
||||
ZX_CHANNEL_MAX_MSG_BYTES = 65536
|
||||
fuchsia_net_IpAddressTag_ipv4 = 0
|
||||
fuchsia_net_IpAddressTag_ipv6 = 1
|
||||
fuchsia_net_SocketDomain_inet = 2
|
||||
fuchsia_net_SocketDomain_inet6 = 10
|
||||
fuchsia_net_SocketProtocol_icmp = 1
|
||||
fuchsia_net_SocketProtocol_icmpv6 = 58
|
||||
fuchsia_net_SocketProtocol_ip = 0
|
||||
fuchsia_net_SocketProtocol_ipv6 = 41
|
||||
fuchsia_net_SocketProtocol_tcp = 6
|
||||
fuchsia_net_SocketProtocol_udp = 17
|
||||
fuchsia_net_SocketType_dgram = 2
|
||||
fuchsia_net_SocketType_stream = 1
|
||||
|
@ -2,13 +2,3 @@
|
||||
ZX_CHANNEL_MAX_MSG_BYTES = 65536
|
||||
fuchsia_net_IpAddressTag_ipv4 = 0
|
||||
fuchsia_net_IpAddressTag_ipv6 = 1
|
||||
fuchsia_net_SocketDomain_inet = 2
|
||||
fuchsia_net_SocketDomain_inet6 = 10
|
||||
fuchsia_net_SocketProtocol_icmp = 1
|
||||
fuchsia_net_SocketProtocol_icmpv6 = 58
|
||||
fuchsia_net_SocketProtocol_ip = 0
|
||||
fuchsia_net_SocketProtocol_ipv6 = 41
|
||||
fuchsia_net_SocketProtocol_tcp = 6
|
||||
fuchsia_net_SocketProtocol_udp = 17
|
||||
fuchsia_net_SocketType_dgram = 2
|
||||
fuchsia_net_SocketType_stream = 1
|
||||
|
@ -27,7 +27,7 @@ fuchsia_power_BatteryStatusHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_power_PowerManagerGetBatteryStatusRequest {
|
||||
hdr fidl_message_header[1]
|
||||
hdr fidl_message_header[1245959964]
|
||||
} [packed]
|
||||
|
||||
fuchsia_power_PowerManagerGetBatteryStatusRequestHandles {
|
||||
@ -39,7 +39,7 @@ fuchsia_power_PowerManagerGetBatteryStatusResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_power_PowerManagerWatchRequest {
|
||||
hdr fidl_message_header[2]
|
||||
hdr fidl_message_header[1083615561]
|
||||
watcher flags[fidl_handle_presence, int32]
|
||||
} [packed]
|
||||
|
||||
@ -56,7 +56,7 @@ zx_channel_call$fuchsia_power_PowerManagerGetBatteryStatus(handle zx_chan_fuchsi
|
||||
zx_channel_write$fuchsia_power_PowerManagerWatch(handle zx_chan_fuchsia_power_PowerManager_client, options const[0], bytes ptr[in, fuchsia_power_PowerManagerWatchRequest], num_bytes bytesize[bytes], handles ptr[in, fuchsia_power_PowerManagerWatchRequestHandles], num_handles bytesize[handles])
|
||||
|
||||
fuchsia_power_PowerManagerWatcherOnChangeBatteryStatusRequest {
|
||||
hdr fidl_message_header[1]
|
||||
hdr fidl_message_header[1282068360]
|
||||
battery_statusInLine fuchsia_power_BatteryStatusInLine
|
||||
battery_statusOutOfLine fuchsia_power_BatteryStatusOutOfLine
|
||||
} [packed]
|
||||
|
@ -62,7 +62,7 @@ fuchsia_process_CreateWithoutStartingResultHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_process_LauncherLaunchRequest {
|
||||
hdr fidl_message_header[1]
|
||||
hdr fidl_message_header[646466973]
|
||||
infoInLine fuchsia_process_LaunchInfoInLine
|
||||
infoOutOfLine fuchsia_process_LaunchInfoOutOfLine
|
||||
} [packed]
|
||||
@ -76,7 +76,7 @@ fuchsia_process_LauncherLaunchResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_process_LauncherCreateWithoutStartingRequest {
|
||||
hdr fidl_message_header[2]
|
||||
hdr fidl_message_header[1339014161]
|
||||
infoInLine fuchsia_process_LaunchInfoInLine
|
||||
infoOutOfLine fuchsia_process_LaunchInfoOutOfLine
|
||||
} [packed]
|
||||
@ -90,7 +90,7 @@ fuchsia_process_LauncherCreateWithoutStartingResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_process_LauncherAddArgsRequest {
|
||||
hdr fidl_message_header[10]
|
||||
hdr fidl_message_header[343996832]
|
||||
argsInLine fidl_vector
|
||||
argsOutOfLine parallel_array[fidl_string, fidl_aligned[stringnoz]]
|
||||
} [packed]
|
||||
@ -100,7 +100,7 @@ fuchsia_process_LauncherAddArgsRequestHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_process_LauncherAddEnvironsRequest {
|
||||
hdr fidl_message_header[11]
|
||||
hdr fidl_message_header[1220947097]
|
||||
environInLine fidl_vector
|
||||
environOutOfLine parallel_array[fidl_string, fidl_aligned[stringnoz]]
|
||||
} [packed]
|
||||
@ -110,7 +110,7 @@ fuchsia_process_LauncherAddEnvironsRequestHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_process_LauncherAddNamesRequest {
|
||||
hdr fidl_message_header[12]
|
||||
hdr fidl_message_header[1409085196]
|
||||
namesInLine fidl_vector
|
||||
namesOutOfLine parallel_array[fuchsia_process_NameInfoInLine, fuchsia_process_NameInfoOutOfLine]
|
||||
} [packed]
|
||||
@ -120,7 +120,7 @@ fuchsia_process_LauncherAddNamesRequestHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_process_LauncherAddHandlesRequest {
|
||||
hdr fidl_message_header[13]
|
||||
hdr fidl_message_header[1557565451]
|
||||
handlesInLine fidl_vector
|
||||
handlesOutOfLine parallel_array[fuchsia_process_HandleInfoInLine, fuchsia_process_HandleInfoOutOfLine]
|
||||
} [packed]
|
||||
@ -142,7 +142,7 @@ zx_channel_write$fuchsia_process_LauncherAddNames(handle zx_chan_fuchsia_process
|
||||
zx_channel_write$fuchsia_process_LauncherAddHandles(handle zx_chan_fuchsia_process_Launcher_client, options const[0], bytes ptr[in, fuchsia_process_LauncherAddHandlesRequest], num_bytes bytesize[bytes], handles ptr[in, fuchsia_process_LauncherAddHandlesRequestHandles], num_handles bytesize[handles])
|
||||
|
||||
fuchsia_process_ResolverResolveRequest {
|
||||
hdr fidl_message_header[1]
|
||||
hdr fidl_message_header[546835073]
|
||||
nameInLine fidl_string
|
||||
nameOutOfLine fidl_aligned[stringnoz]
|
||||
} [packed]
|
||||
|
@ -14,7 +14,7 @@ fuchsia_scpi_SystemStatusHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_scpi_SystemControllerGetDvfsInfoRequest {
|
||||
hdr fidl_message_header[1]
|
||||
hdr fidl_message_header[1206135815]
|
||||
power_domain int32
|
||||
} [packed]
|
||||
|
||||
@ -27,7 +27,7 @@ fuchsia_scpi_SystemControllerGetDvfsInfoResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_scpi_SystemControllerGetSystemStatusRequest {
|
||||
hdr fidl_message_header[2]
|
||||
hdr fidl_message_header[1847022830]
|
||||
} [packed]
|
||||
|
||||
fuchsia_scpi_SystemControllerGetSystemStatusRequestHandles {
|
||||
|
@ -6,7 +6,7 @@
|
||||
include <fuchsia/timezone/c/fidl.h>
|
||||
|
||||
fuchsia_timezone_TimeServiceUpdateRequest {
|
||||
hdr fidl_message_header[1]
|
||||
hdr fidl_message_header[158808681]
|
||||
num_retries int8
|
||||
} [packed]
|
||||
|
||||
@ -26,7 +26,7 @@ fdio_service_connect$fuchsia_timezone_TimeService(path ptr[in, string["/svc/fuch
|
||||
zx_channel_call$fuchsia_timezone_TimeServiceUpdate(handle zx_chan_fuchsia_timezone_TimeService_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[fuchsia_timezone_TimeServiceUpdateRequest, fuchsia_timezone_TimeServiceUpdateRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], fuchsia_timezone_TimeServiceUpdateResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
|
||||
fuchsia_timezone_TimezoneGetTimezoneOffsetMinutesRequest {
|
||||
hdr fidl_message_header[1]
|
||||
hdr fidl_message_header[1814425986]
|
||||
milliseconds_since_epoch int64
|
||||
} [packed]
|
||||
|
||||
@ -39,7 +39,7 @@ fuchsia_timezone_TimezoneGetTimezoneOffsetMinutesResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_timezone_TimezoneSetTimezoneRequest {
|
||||
hdr fidl_message_header[2]
|
||||
hdr fidl_message_header[1904474588]
|
||||
timezone_idInLine fidl_string
|
||||
timezone_idOutOfLine fidl_aligned[stringnoz]
|
||||
} [packed]
|
||||
@ -53,7 +53,7 @@ fuchsia_timezone_TimezoneSetTimezoneResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_timezone_TimezoneGetTimezoneIdRequest {
|
||||
hdr fidl_message_header[3]
|
||||
hdr fidl_message_header[1119663833]
|
||||
} [packed]
|
||||
|
||||
fuchsia_timezone_TimezoneGetTimezoneIdRequestHandles {
|
||||
@ -65,7 +65,7 @@ fuchsia_timezone_TimezoneGetTimezoneIdResponseHandles {
|
||||
} [packed]
|
||||
|
||||
fuchsia_timezone_TimezoneWatchRequest {
|
||||
hdr fidl_message_header[4]
|
||||
hdr fidl_message_header[2067944433]
|
||||
watcher flags[fidl_handle_presence, int32]
|
||||
} [packed]
|
||||
|
||||
@ -84,7 +84,7 @@ zx_channel_call$fuchsia_timezone_TimezoneGetTimezoneId(handle zx_chan_fuchsia_ti
|
||||
zx_channel_write$fuchsia_timezone_TimezoneWatch(handle zx_chan_fuchsia_timezone_Timezone_client, options const[0], bytes ptr[in, fuchsia_timezone_TimezoneWatchRequest], num_bytes bytesize[bytes], handles ptr[in, fuchsia_timezone_TimezoneWatchRequestHandles], num_handles bytesize[handles])
|
||||
|
||||
fuchsia_timezone_TimezoneWatcherOnTimezoneOffsetChangeRequest {
|
||||
hdr fidl_message_header[1]
|
||||
hdr fidl_message_header[1964417497]
|
||||
timezone_idInLine fidl_string
|
||||
timezone_idOutOfLine fidl_aligned[stringnoz]
|
||||
} [packed]
|
||||
|
@ -25,11 +25,10 @@ var layerToLibs = map[string][]string{
|
||||
"fuchsia-io",
|
||||
"fuchsia-net",
|
||||
"fuchsia-net-stack",
|
||||
"zircon-ethernet",
|
||||
"fuchsia-hardware-ethernet",
|
||||
},
|
||||
"garnet": {
|
||||
"fuchsia.devicesettings",
|
||||
"fuchsia.mediacodec",
|
||||
"fuchsia.timezone",
|
||||
"fuchsia.power",
|
||||
"fuchsia.scpi",
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,2 @@
|
||||
# AUTOGENERATED FILE
|
||||
ZX_EXCEPTION_PORT_DEBUGGER = 1
|
||||
ZX_EXCEPTION_PORT_UNBIND_QUIETLY = 2
|
||||
ZX_RESUME_EXCEPTION = 1
|
||||
ZX_RESUME_TRY_NEXT = 2
|
||||
|
@ -1,5 +1,2 @@
|
||||
# AUTOGENERATED FILE
|
||||
ZX_EXCEPTION_PORT_DEBUGGER = 1
|
||||
ZX_EXCEPTION_PORT_UNBIND_QUIETLY = 2
|
||||
ZX_RESUME_EXCEPTION = 1
|
||||
ZX_RESUME_TRY_NEXT = 2
|
||||
|
@ -1,237 +0,0 @@
|
||||
# Copyright 2018 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.
|
||||
#
|
||||
# WARNING: This file is machine generated by fidlgen.
|
||||
|
||||
include <zircon/ethernet/c/fidl.h>
|
||||
|
||||
zircon_ethernet_MacAddressInLine {
|
||||
octetsInLine array[int8, 6]
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_MacAddressOutOfLine {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_MacAddressHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_InfoHandles {
|
||||
mac zircon_ethernet_MacAddressHandles
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_FifosHandles {
|
||||
rx zx_fifo
|
||||
tx zx_fifo
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceGetInfoRequest {
|
||||
hdr fidl_message_header[1]
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceGetInfoRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceGetInfoResponseHandles {
|
||||
info zircon_ethernet_InfoHandles
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceGetFifosRequest {
|
||||
hdr fidl_message_header[2]
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceGetFifosRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceGetFifosResponseHandles {
|
||||
info zircon_ethernet_FifosHandles
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceSetIOBufferRequest {
|
||||
hdr fidl_message_header[3]
|
||||
h flags[fidl_handle_presence, int32]
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceSetIOBufferRequestHandles {
|
||||
h zx_vmo
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceSetIOBufferResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceStartRequest {
|
||||
hdr fidl_message_header[4]
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceStartRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceStartResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceStopRequest {
|
||||
hdr fidl_message_header[5]
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceStopRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceStopResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceListenStartRequest {
|
||||
hdr fidl_message_header[6]
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceListenStartRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceListenStartResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceListenStopRequest {
|
||||
hdr fidl_message_header[7]
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceListenStopRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceListenStopResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceSetClientNameRequest {
|
||||
hdr fidl_message_header[8]
|
||||
nameInLine fidl_string
|
||||
nameOutOfLine fidl_aligned[stringnoz]
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceSetClientNameRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceSetClientNameResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceGetStatusRequest {
|
||||
hdr fidl_message_header[9]
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceGetStatusRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceGetStatusResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceSetPromiscuousModeRequest {
|
||||
hdr fidl_message_header[10]
|
||||
enabled int8
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceSetPromiscuousModeRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceSetPromiscuousModeResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceConfigMulticastAddMacRequest {
|
||||
hdr fidl_message_header[11]
|
||||
addrInLine zircon_ethernet_MacAddressInLine
|
||||
addrOutOfLine zircon_ethernet_MacAddressOutOfLine
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceConfigMulticastAddMacRequestHandles {
|
||||
addr zircon_ethernet_MacAddressHandles
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceConfigMulticastAddMacResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceConfigMulticastDeleteMacRequest {
|
||||
hdr fidl_message_header[12]
|
||||
addrInLine zircon_ethernet_MacAddressInLine
|
||||
addrOutOfLine zircon_ethernet_MacAddressOutOfLine
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceConfigMulticastDeleteMacRequestHandles {
|
||||
addr zircon_ethernet_MacAddressHandles
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceConfigMulticastDeleteMacResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceConfigMulticastSetPromiscuousModeRequest {
|
||||
hdr fidl_message_header[13]
|
||||
enabled int8
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceConfigMulticastSetPromiscuousModeRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceConfigMulticastSetPromiscuousModeResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceConfigMulticastTestFilterRequest {
|
||||
hdr fidl_message_header[14]
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceConfigMulticastTestFilterRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceConfigMulticastTestFilterResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceDumpRegistersRequest {
|
||||
hdr fidl_message_header[15]
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceDumpRegistersRequestHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
zircon_ethernet_DeviceDumpRegistersResponseHandles {
|
||||
void void
|
||||
} [packed]
|
||||
|
||||
resource zx_chan_zircon_ethernet_Device_client[zx_chan]
|
||||
resource zx_chan_zircon_ethernet_Device_server[zx_chan]
|
||||
|
||||
zx_channel_create$zircon_ethernet_Device(options const[0], out0 ptr[out, zx_chan_zircon_ethernet_Device_client], out1 ptr[out, zx_chan_zircon_ethernet_Device_server])
|
||||
fdio_service_connect$zircon_ethernet_Device(path ptr[in, string["/svc/"]], handle zx_chan_zircon_ethernet_Device_server)
|
||||
zx_channel_call$zircon_ethernet_DeviceGetInfo(handle zx_chan_zircon_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[zircon_ethernet_DeviceGetInfoRequest, zircon_ethernet_DeviceGetInfoRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], zircon_ethernet_DeviceGetInfoResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$zircon_ethernet_DeviceGetFifos(handle zx_chan_zircon_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[zircon_ethernet_DeviceGetFifosRequest, zircon_ethernet_DeviceGetFifosRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], zircon_ethernet_DeviceGetFifosResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$zircon_ethernet_DeviceSetIOBuffer(handle zx_chan_zircon_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[zircon_ethernet_DeviceSetIOBufferRequest, zircon_ethernet_DeviceSetIOBufferRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], zircon_ethernet_DeviceSetIOBufferResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$zircon_ethernet_DeviceStart(handle zx_chan_zircon_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[zircon_ethernet_DeviceStartRequest, zircon_ethernet_DeviceStartRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], zircon_ethernet_DeviceStartResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$zircon_ethernet_DeviceStop(handle zx_chan_zircon_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[zircon_ethernet_DeviceStopRequest, zircon_ethernet_DeviceStopRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], zircon_ethernet_DeviceStopResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$zircon_ethernet_DeviceListenStart(handle zx_chan_zircon_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[zircon_ethernet_DeviceListenStartRequest, zircon_ethernet_DeviceListenStartRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], zircon_ethernet_DeviceListenStartResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$zircon_ethernet_DeviceListenStop(handle zx_chan_zircon_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[zircon_ethernet_DeviceListenStopRequest, zircon_ethernet_DeviceListenStopRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], zircon_ethernet_DeviceListenStopResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$zircon_ethernet_DeviceSetClientName(handle zx_chan_zircon_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[zircon_ethernet_DeviceSetClientNameRequest, zircon_ethernet_DeviceSetClientNameRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], zircon_ethernet_DeviceSetClientNameResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$zircon_ethernet_DeviceGetStatus(handle zx_chan_zircon_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[zircon_ethernet_DeviceGetStatusRequest, zircon_ethernet_DeviceGetStatusRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], zircon_ethernet_DeviceGetStatusResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$zircon_ethernet_DeviceSetPromiscuousMode(handle zx_chan_zircon_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[zircon_ethernet_DeviceSetPromiscuousModeRequest, zircon_ethernet_DeviceSetPromiscuousModeRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], zircon_ethernet_DeviceSetPromiscuousModeResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$zircon_ethernet_DeviceConfigMulticastAddMac(handle zx_chan_zircon_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[zircon_ethernet_DeviceConfigMulticastAddMacRequest, zircon_ethernet_DeviceConfigMulticastAddMacRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], zircon_ethernet_DeviceConfigMulticastAddMacResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$zircon_ethernet_DeviceConfigMulticastDeleteMac(handle zx_chan_zircon_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[zircon_ethernet_DeviceConfigMulticastDeleteMacRequest, zircon_ethernet_DeviceConfigMulticastDeleteMacRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], zircon_ethernet_DeviceConfigMulticastDeleteMacResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$zircon_ethernet_DeviceConfigMulticastSetPromiscuousMode(handle zx_chan_zircon_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[zircon_ethernet_DeviceConfigMulticastSetPromiscuousModeRequest, zircon_ethernet_DeviceConfigMulticastSetPromiscuousModeRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], zircon_ethernet_DeviceConfigMulticastSetPromiscuousModeResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$zircon_ethernet_DeviceConfigMulticastTestFilter(handle zx_chan_zircon_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[zircon_ethernet_DeviceConfigMulticastTestFilterRequest, zircon_ethernet_DeviceConfigMulticastTestFilterRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], zircon_ethernet_DeviceConfigMulticastTestFilterResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
||||
zx_channel_call$zircon_ethernet_DeviceDumpRegisters(handle zx_chan_zircon_ethernet_Device_client, options const[0], deadline zx_time, args ptr[in, fidl_call_args[zircon_ethernet_DeviceDumpRegistersRequest, zircon_ethernet_DeviceDumpRegistersRequestHandles, array[int8, ZX_CHANNEL_MAX_MSG_BYTES], zircon_ethernet_DeviceDumpRegistersResponseHandles]], actual_bytes ptr[out, int32], actual_handles ptr[out, int32])
|
Loading…
Reference in New Issue
Block a user