HomeSort by relevance Sort by last modified time
    Searched defs:pb_read (Results 1 - 2 of 2) sorted by null

  /external/grpc-grpc/third_party/nanopb/
pb_decode.c 90 bool checkreturn pb_read(pb_istream_t *stream, pb_byte_t *buf, size_t count) function
99 if (!pb_read(stream, tmp, 16))
105 return pb_read(stream, tmp, count);
235 if (!pb_read(stream, &byte, 1))
247 return pb_read(stream, NULL, length);
281 case PB_WT_64BIT: return pb_read(stream, NULL, 8);
283 case PB_WT_32BIT: return pb_read(stream, NULL, 4);
302 if (!pb_read(stream, buf, 1)) return false;
308 return pb_read(stream, buf, 8);
312 return pb_read(stream, buf, 4)
    [all...]
  /external/nanopb-c/
pb_decode.c 100 bool checkreturn pb_read(pb_istream_t *stream, pb_byte_t *buf, size_t count) function
109 if (!pb_read(stream, tmp, 16))
115 return pb_read(stream, tmp, count);
278 if (!pb_read(stream, &byte, 1))
290 return pb_read(stream, NULL, length);
321 case PB_WT_64BIT: return pb_read(stream, NULL, 8);
323 case PB_WT_32BIT: return pb_read(stream, NULL, 4);
342 if (!pb_read(stream, buf, 1)) return false;
348 return pb_read(stream, buf, 8);
352 return pb_read(stream, buf, 4)
    [all...]

Completed in 436 milliseconds