Home
last modified time | relevance | path

Searched refs:mp_stream_write_exactly (Results 1 – 4 of 4) sorted by relevance

/dports/lang/micropython/micropython-1.17/py/
H A Dmodio.c154 mp_uint_t out_sz = mp_stream_write_exactly(self->stream, self->buf, self->alloc, errcode); in bufwriter_write()
173 mp_uint_t out_sz = mp_stream_write_exactly(self->stream, self->buf, self->len, &err); in bufwriter_flush()
H A Dstream.h114 #define mp_stream_write_exactly(stream, buf, size, err) mp_stream_rw(stream, (byte *)buf, size, err… macro
/dports/lang/micropython/micropython-1.17/extmod/
H A Dmoduwebsocket.c241 mp_uint_t out_sz = mp_stream_write_exactly(self->sock, header, hdr_sz, errcode); in websocket_write()
243 out_sz = mp_stream_write_exactly(self->sock, buf, size, errcode); in websocket_write()
H A Dmodwebrepl.c268 mp_uint_t res = mp_stream_write_exactly(self->cur_file, filebuf, buf_sz, &err); in _webrepl_read()