Home
last modified time | relevance | path

Searched refs:mp_stream_read_exactly (Results 1 – 2 of 2) sorted by relevance

/dports/lang/micropython/micropython-1.17/py/
H A Dstream.h115 #define mp_stream_read_exactly(stream, buf, size, err) mp_stream_rw(stream, buf, size, err, MP_STRE… macro
H A Dstream.c129 mp_uint_t out_sz = mp_stream_read_exactly(args[0], p, more_bytes, &error); in stream_read_generic()
291 mp_uint_t out_sz = mp_stream_read_exactly(args[0], bufinfo.buf, len, &error); in stream_readinto()