tree: af204c6f371c9db4809104831a3b887a54e7f7f2 [path history] [tgz]
  1. include/
  2. BUILD.gn
  3. builder.cpp
  4. decoding.cpp
  5. encoding.cpp
  6. epitaph.c
  7. formatting.cpp
  8. handle_closing.cpp
  9. internal.cpp
  10. linearizing.cpp
  11. llcpp_transaction.cpp
  12. message.cpp
  13. message_buffer.cpp
  14. message_builder.cpp
  15. OWNERS
  16. README.md
  17. transport.cpp
  18. validating.cpp
  19. walker.cpp
zircon/system/ulib/fidl/README.md

The C and C++ fidl library

This library provides the runtime for fidl C bindings. This primarily means the definitions of the message encoding and decoding functions. This also includes the definitions of fidl data types such as vectors and strings.

Dependencies

This library depends only on the C standard library, the Zircon kernel public API, and some header-only parts of the C++ standard library. In particular, this library does not depend on libfbl.a or libzx.a. It also does not link against the C++ standard library.

Some of the object files in this library require an implementation of the placement new operators from the standard library's header file. These are usually implemented as inlines in the header.