Lines Matching refs:msg

71     void *msg = malloc_with_check(structsize);  in do_decode()  local
74 assert(msg); in do_decode()
76 memset(msg, 0, structsize); in do_decode()
83 ((alltypes_static_AllTypes*)msg)->extensions = &ext; in do_decode()
87 ((alltypes_pointer_AllTypes*)msg)->extensions = &ext; in do_decode()
91 status = pb_decode_ex(&stream, msgtype, msg, flags); in do_decode()
95 validate_message(msg, structsize, msgtype); in do_decode()
104 pb_release(msgtype, msg); in do_decode()
105 free_with_check(msg); in do_decode()
117 void *msg = malloc_with_check(structsize); in do_stream_decode() local
118 assert(msg); in do_stream_decode()
120 memset(msg, 0, structsize); in do_stream_decode()
122 status = pb_decode(&stream.stream, msgtype, msg); in do_stream_decode()
126 validate_message(msg, structsize, msgtype); in do_stream_decode()
135 pb_release(msgtype, msg); in do_stream_decode()
136 free_with_check(msg); in do_stream_decode()
165 alltypes_callback_AllTypes *msg = malloc_with_check(sizeof(alltypes_callback_AllTypes)); in do_callback_decode() local
166 assert(msg); in do_callback_decode()
168 memset(msg, 0, sizeof(alltypes_callback_AllTypes)); in do_callback_decode()
171 msg->rep_int32.funcs.decode = &field_callback; in do_callback_decode()
172 msg->rep_int32.arg = &g_sentinel; in do_callback_decode()
173 msg->rep_string.funcs.decode = &field_callback; in do_callback_decode()
174 msg->rep_string.arg = &g_sentinel; in do_callback_decode()
175 msg->rep_farray.funcs.decode = &field_callback; in do_callback_decode()
176 msg->rep_farray.arg = &g_sentinel; in do_callback_decode()
177 msg->req_limits.int64_min.funcs.decode = &field_callback; in do_callback_decode()
178 msg->req_limits.int64_min.arg = &g_sentinel; in do_callback_decode()
179 msg->cb_oneof.funcs.decode = &submsg_callback; in do_callback_decode()
180 msg->cb_oneof.arg = &g_sentinel; in do_callback_decode()
182 status = pb_decode(&stream, alltypes_callback_AllTypes_fields, msg); in do_callback_decode()
190 pb_release(alltypes_callback_AllTypes_fields, msg); in do_callback_decode()
191 free_with_check(msg); in do_callback_decode()
204 void *msg = malloc_with_check(structsize); in do_roundtrip() local
214 assert(buf2 && msg); in do_roundtrip()
218 ext_field = &((alltypes_static_AllTypes*)msg)->extensions; in do_roundtrip()
222 ext_field = &((alltypes_pointer_AllTypes*)msg)->extensions; in do_roundtrip()
230 memset(msg, 0, structsize); in do_roundtrip()
232 status = pb_decode(&stream, msgtype, msg); in do_roundtrip()
236 validate_message(msg, structsize, msgtype); in do_roundtrip()
241 status = pb_encode(&stream, msgtype, msg); in do_roundtrip()
255 pb_release(msgtype, msg); in do_roundtrip()
261 memset(msg, 0, structsize); in do_roundtrip()
263 status = pb_decode(&stream, msgtype, msg); in do_roundtrip()
267 validate_message(msg, structsize, msgtype); in do_roundtrip()
273 status = pb_encode(&stream, msgtype, msg); in do_roundtrip()
283 pb_release(msgtype, msg); in do_roundtrip()
284 free_with_check(msg); in do_roundtrip()
371 alltypes_static_AllTypes *msg = malloc_with_check(sizeof(alltypes_static_AllTypes)); in generate_base_message() local
372 memcpy(msg, &initval, sizeof(initval)); in generate_base_message()
376 rand_mess((uint8_t*)msg, sizeof(alltypes_static_AllTypes)); in generate_base_message()
378 msg->extensions = NULL; in generate_base_message()
381 status = pb_encode(&stream, alltypes_static_AllTypes_fields, msg); in generate_base_message()
386 pb_release(alltypes_static_AllTypes_fields, msg); in generate_base_message()
387 free_with_check(msg); in generate_base_message()