Searched refs:send_result (Results 1 - 7 of 7) sorted by relevance

/fuchsia/zircon/system/host/bootserver/
H A Dtftp.c105 ssize_t send_result; local
116 send_result = sendto(state->socket, data, len, 0, (struct sockaddr*)&state->target_addr,
119 send_result = send(state->socket, data, len, 0);
121 } while ((send_result < 0) &&
123 if (send_result < 0) {
H A Dbootserver.c239 ssize_t send_result = sendto(s, &msg, sizeof(msg), 0, (struct sockaddr*)&target_addr, local
241 if (send_result == sizeof(msg)) {
269 ssize_t send_result = sendto(s, &msg, sizeof(msg), 0, (struct sockaddr*)&target_addr, local
271 if (send_result == sizeof(msg)) {
/fuchsia/zircon/system/host/netprotocol/
H A Dnetcp.c105 ssize_t send_result; local
117 send_result = sendto(transport_info->socket, data, len, 0,
121 send_result = send(transport_info->socket, data, len, 0);
123 } while ((send_result < 0) &&
127 if (send_result < 0) {
/fuchsia/zircon/system/ulib/tftp/
H A Dtftp-example.c61 ssize_t send_result = sendto(connection->socket, data, len, 0, (struct sockaddr*)&connection->out_addr, local
63 if (send_result != len) {
237 tftp_status send_result = local
240 if (send_result == TFTP_NO_ERROR) {
/fuchsia/zircon/system/utest/fdio/
H A Dfdio_socketpair.c323 int send_result; member in struct:send_args
331 send_args->send_result = send(send_args->fd, send_args->buf, BUF_SIZE, 0u);
332 if (send_args->send_result < 0)
365 EXPECT_EQ(send_args.send_result, -1, "send should have returned -1");
397 EXPECT_EQ(send_args.send_result, -1, "send should have returned -1");
/fuchsia/zircon/system/core/netsvc/
H A Dtftp.c472 tftp_status send_result = transport_send(tftp_out_scratch, last_msg_size, local
474 if (send_result != TFTP_NO_ERROR) {
475 printf("netsvc: failed to send tftp timeout response (err = %d)\n", send_result);
/fuchsia/zircon/system/dev/ethernet/asix-88772b/
H A Dasix-88772b.c267 zx_status_t send_result = ax88772b_send(eth, request, netbuf); local
269 eth->ifc->complete_tx(eth->cookie, netbuf, send_result);

Completed in 95 milliseconds