mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-23 19:39:40 +00:00
14799fb2ef
Recently the fuchsia team decided to merge all their subrepos into one big git repo. This meant that the "zircon" repo doesn't exist anymore. Instead almost everything is under the fuchsia repo. This change updates all the reference I could find in the code that point to the zircon and docs repo to make them point to the new fuchsia repo.
52 lines
1.4 KiB
Plaintext
52 lines
1.4 KiB
Plaintext
# Copyright 2018 syzkaller project authors. All rights reserved.
|
|
# Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
|
|
|
|
# See https://fuchsia.googlesource.com/fuchsia/+/master/docs/development/languages/fidl/reference/wire-format/README.md
|
|
|
|
include <zircon/fidl.h>
|
|
|
|
type fidl_call_args[REQ_MESSAGE, REQ_HANDLES, RESP_MESSAGE, RESP_HANDLES] {
|
|
wr_bytes ptr[in, REQ_MESSAGE]
|
|
wr_handles ptr[in, REQ_HANDLES]
|
|
rd_bytes ptr[out, RESP_MESSAGE]
|
|
rd_handles ptr[out, RESP_HANDLES]
|
|
wr_num_bytes bytesize[wr_bytes, int32]
|
|
wr_num_handles bytesize4[wr_handles, int32]
|
|
rd_num_bytes bytesize[rd_bytes, int32]
|
|
rd_num_handles bytesize4[rd_handles, int32]
|
|
}
|
|
|
|
type fidl_union_member[TAG, TYPE] {
|
|
tag const[TAG, int32]
|
|
data TYPE
|
|
}
|
|
|
|
type fidl_message_header[METHOD_ORDINAL] {
|
|
txid const[0, int32]
|
|
reserved const[0, int32]
|
|
flags const[0, int32]
|
|
ordinal const[METHOD_ORDINAL, int32]
|
|
}
|
|
|
|
fidl_string {
|
|
size int64
|
|
data flags[fidl_alloc_presence, int64]
|
|
}
|
|
|
|
fidl_vector {
|
|
size int64
|
|
data flags[fidl_alloc_presence, int64]
|
|
}
|
|
|
|
type fidl_aligned[T] {
|
|
var T
|
|
} [align_8]
|
|
|
|
type parallel_array[A, B] {
|
|
a array[A]
|
|
b array[B]
|
|
} [packed]
|
|
|
|
fidl_alloc_presence = FIDL_ALLOC_ABSENT, FIDL_ALLOC_PRESENT, FIDL_ALLOC_PRESENT, FIDL_ALLOC_PRESENT, FIDL_ALLOC_PRESENT, FIDL_ALLOC_PRESENT
|
|
fidl_handle_presence = FIDL_HANDLE_ABSENT, FIDL_HANDLE_PRESENT, FIDL_HANDLE_PRESENT, FIDL_HANDLE_PRESENT, FIDL_HANDLE_PRESENT, FIDL_HANDLE_PRESENT
|