Searched refs:conn (Results 1 - 5 of 5) sorted by relevance

/fuchsia/zircon/system/ulib/fidl/
H A Dbind.c25 fidl_connection_t* conn = (fidl_connection_t*)txn; local
26 if (conn->txid == 0u)
31 hdr->txid = conn->txid;
32 conn->txid = 0u;
33 return zx_channel_write(conn->channel, 0, msg->bytes, msg->num_bytes,
64 fidl_connection_t conn = { local
69 status = binding->dispatch(binding->ctx, &conn.txn, &msg, binding->ops);
/fuchsia/zircon/system/utest/fidl-simple/
H A Dldsvc_tests.c85 ldsvc_connection_t* conn = (ldsvc_connection_t*)txn; local
89 hdr->txid = conn->txid;
90 conn->txid = 0;
91 ++conn->reply_count;
92 return zx_channel_write(conn->channel, 0, msg->bytes, msg->num_bytes,
97 ldsvc_connection_t conn = { local
108 conn.channel, ZX_CHANNEL_READABLE | ZX_CHANNEL_PEER_CLOSED,
120 status = zx_channel_read(conn.channel, 0, bytes, handles,
127 conn.txid = hdr->txid;
128 conn
[all...]
H A Dserver_tests.c125 my_connection_t conn; local
126 conn.txn.reply = reply_handler;
127 conn.count = 0u;
129 zx_status_t status = fuchsia_crash_AnalyzerAnalyze_reply(&conn.txn);
131 EXPECT_EQ(1u, conn.count, "");
/fuchsia/zircon/system/ulib/xdc-host-utils/
H A Dclient.cpp15 #include <xdc-host-utils/conn.h>
/fuchsia/zircon/system/host/xdc-server/
H A Dxdc-server.cpp6 #include <xdc-host-utils/conn.h>
156 auto conn = std::make_unique<XdcServer>(ConstructorTag{}); local
157 if (!conn->Init()) {
160 return conn;

Completed in 88 milliseconds