Home
last modified time | relevance | path

Searched refs:sendall (Results 1 – 10 of 10) sorted by relevance

/Zephyr-Core-3.7.0/samples/net/sockets/big_http_download/src/
Dbig_http_download.c101 ssize_t sendall(int sock, const void *buf, size_t len) in sendall() function
299 sendall(sock, "GET /", SSTRLEN("GET /")); in download()
300 sendall(sock, uri_path, strlen(uri_path)); in download()
301 sendall(sock, " HTTP/1.0\r\n", SSTRLEN(" HTTP/1.0\r\n")); in download()
302 sendall(sock, "Host: ", SSTRLEN("Host: ")); in download()
303 sendall(sock, host, strlen(host)); in download()
304 sendall(sock, "\r\n\r\n", SSTRLEN("\r\n\r\n")); in download()
/Zephyr-Core-3.7.0/soc/intel/intel_adsp/tools/
Dremote-fw-service.py110 self.request.sendall(cmd)
117 self.request.sendall("success".encode('utf-8'))
120 self.request.sendall("failed".encode('utf-8'))
135 self.request.sendall(cmd)
172 self.request.sendall(out)
192 self.request.sendall(b'\x00')
Dcavstool_client.py48 self.sock.sendall(cmd.encode("utf-8"))
/Zephyr-Core-3.7.0/samples/subsys/video/tcpserversink/src/
Dmain.c22 static ssize_t sendall(int sock, const void *buf, size_t len) in sendall() function
140 ret = sendall(client, vbuf->buffer, vbuf->bytesused); in main()
/Zephyr-Core-3.7.0/samples/net/sockets/http_server/src/
Dws.c76 static ssize_t sendall(int sock, const void *buf, size_t len) in sendall() function
155 ret = sendall(client, cfg->recv_buffer, offset); in ws_handler()
/Zephyr-Core-3.7.0/subsys/net/lib/zperf/
Dzperf_tcp_uploader.c23 static ssize_t sendall(int sock, const void *buf, size_t len) in sendall() function
69 ret = sendall(sock, sample_packet, packet_size); in tcp_upload()
/Zephyr-Core-3.7.0/samples/net/sockets/echo_client/src/
Dtcp.c35 static ssize_t sendall(int sock, const void *buf, size_t len) in sendall() function
60 ret = sendall(data->tcp.sock, lorem_ipsum, data->tcp.expecting); in send_tcp_data()
/Zephyr-Core-3.7.0/samples/net/sockets/dumb_http_server_mt/src/
Dmain.c135 static ssize_t sendall(int sock, const void *buf, size_t len) in sendall() function
244 (void)sendall(client, content, sizeof(content)); in client_conn_handler()
/Zephyr-Core-3.7.0/subsys/net/lib/http/
Dhttp_client.c32 static int sendall(int sock, const void *buf, size_t len, in sendall() function
102 ret = sendall(sock, send_buf, end_of_send, req_end_timepoint); in http_send_data()
148 ret = sendall(sock, send_buf, send_buf_len, req_end_timepoint); in http_flush_data()
718 ret = sendall(sock, req->payload, length, req_end_timepoint); in http_client_req()
/Zephyr-Core-3.7.0/samples/net/sockets/echo_server/src/
Dtcp.c52 static ssize_t sendall(int sock, const void *buf, size_t len) in sendall() function
182 ret = sendall(client, in handle_data()