Home | History | Annotate | Download | only in fuzztest

Lines Matching defs:msglen

19 static bool do_static_decode(uint8_t *buffer, size_t msglen, bool assert_success)
25 stream = pb_istream_from_buffer(buffer, msglen);
42 static bool do_pointer_decode(uint8_t *buffer, size_t msglen, bool assert_success)
50 stream = pb_istream_from_buffer(buffer, msglen);
67 static void do_static_roundtrip(uint8_t *buffer, size_t msglen)
79 pb_istream_t stream = pb_istream_from_buffer(buffer, msglen);
114 static void do_pointer_roundtrip(uint8_t *buffer, size_t msglen)
126 pb_istream_t stream = pb_istream_from_buffer(buffer, msglen);
165 size_t msglen;
168 msglen = fread(buffer, 1, BUFSIZE, stdin);
170 status = do_static_decode(buffer, msglen, false);
173 do_static_roundtrip(buffer, msglen);
175 status = do_pointer_decode(buffer, msglen, false);
178 do_pointer_roundtrip(buffer, msglen);