Searched refs:sent_bytes (Results 1 – 6 of 6) sorted by relevance
/third_party/jerryscript/jerry-ext/debugger/ |
D | debugger-tcp.c | 170 ssize_t sent_bytes = send (tcp_p->tcp_socket, (char *)message_p, (int)message_length, 0); in jerryx_debugger_tcp_send() local 172 ssize_t sent_bytes = send (tcp_p->tcp_socket, message_p, message_length, 0); in jerryx_debugger_tcp_send() local 175 if (sent_bytes < 0) in jerryx_debugger_tcp_send() 189 message_p += sent_bytes; in jerryx_debugger_tcp_send() 190 message_length -= (size_t) sent_bytes; in jerryx_debugger_tcp_send()
|
D | debugger-serial.c | 266 ssize_t sent_bytes = write (serial_p->fd, message_p, message_length); in jerryx_debugger_serial_send() local 268 if (sent_bytes < 0) in jerryx_debugger_serial_send() 280 message_p += sent_bytes; in jerryx_debugger_serial_send() 281 message_length -= (size_t) sent_bytes; in jerryx_debugger_serial_send()
|
/third_party/ffmpeg/libavformat/ |
D | xa.c | 40 uint32_t sent_bytes; member 108 if (xa->sent_bytes >= xa->out_size) in xa_read_packet() 118 xa->sent_bytes += packet_size; in xa_read_packet()
|
/third_party/gstreamer/gstreamer/tools/ |
D | gst-stats.c | 111 guint64 recv_bytes, sent_bytes; member 397 stats->sent_bytes += size; in do_element_stats() 797 if (stats->sent_bytes) in print_element_stats() 798 g_print ("/%12" G_GUINT64_FORMAT, stats->sent_bytes); in print_element_stats()
|
/third_party/node/src/ |
D | node_http2.h | 457 uint64_t sent_bytes; member 992 sent_bytes_(stats.sent_bytes), in Http2StreamPerformanceEntry() 1000 uint64_t sent_bytes() const { return sent_bytes_; } in sent_bytes() function
|
D | node_http2.cc | 576 static_cast<double>(entry->sent_bytes()); in EmitStatistics() 2385 stream->statistics_.sent_bytes += amount; in OnRead()
|