Lines Matching refs:decode
1 /* pb_decode.c -- decode a protobuf using minimal resources
29 void *dest_struct; /* Pointer to the destination structure to decode to */
314 /* Decode string length from stream and return a substream with limited length.
406 * Decode a single field *
566 /* Decode the array entry */
611 if (pCallback->funcs.decode == NULL)
623 if (!pCallback->funcs.decode(&substream, iter->pos, arg))
644 return pCallback->funcs.decode(&substream, iter->pos, arg);
688 /* Try to decode an unknown field as an extension field. Tries each extension
699 if (extension->type->decode)
700 status = extension->type->decode(stream, extension, tag, wire_type);
794 * Decode all fields *