/third_party/protobuf/js/ |
H A D | proto3_test.js | 90 var msg = new proto.jspb.test.TestProto3(); 93 msg.setSingularString('optionalString'); 94 assertEquals(msg.getSingularString(), 'optionalString'); 97 msg.setSingularString(''); 98 assertEquals(msg.getSingularString(), ''); 101 assertTrue(jspb.Message.equals(msg, new proto.jspb.test.TestProto3())); 108 var msg = new proto.jspb.test.TestProto3(); 110 assertEquals(msg.getSingularInt32(), 0); 111 assertEquals(msg.getSingularInt64(), 0); 112 assertEquals(msg [all...] |
/third_party/lwip/src/netif/ppp/ |
H A D | pppapi.c | 62 struct pppapi_msg *msg = (struct pppapi_msg *)(void*)m; in pppapi_do_ppp_set_default() local 64 ppp_set_default(msg->msg.ppp); in pppapi_do_ppp_set_default() 76 PPPAPI_VAR_DECLARE(msg); in pppapi_set_default() 77 PPPAPI_VAR_ALLOC(msg); in pppapi_set_default() 79 PPPAPI_VAR_REF(msg).msg.ppp = pcb; in pppapi_set_default() 80 err = tcpip_api_call(pppapi_do_ppp_set_default, &PPPAPI_VAR_REF(msg).call); in pppapi_set_default() 81 PPPAPI_VAR_FREE(msg); in pppapi_set_default() 95 struct pppapi_msg *msg in pppapi_do_ppp_set_notify_phase_callback() local 130 struct pppapi_msg *msg = (struct pppapi_msg *)(void*)m; pppapi_do_pppos_create() local 171 struct pppapi_msg *msg = (struct pppapi_msg *)(void*)m; pppapi_do_pppoe_create() local 216 struct pppapi_msg *msg = (struct pppapi_msg *)(void*)m; pppapi_do_pppol2tp_create() local 275 struct pppapi_msg *msg = (struct pppapi_msg *)(void*)m; pppapi_do_ppp_connect() local 308 struct pppapi_msg *msg = (struct pppapi_msg *)(void*)m; pppapi_do_ppp_listen() local 340 struct pppapi_msg *msg = (struct pppapi_msg *)(void*)m; pppapi_do_ppp_close() local 372 struct pppapi_msg *msg = (struct pppapi_msg *)(void*)m; pppapi_do_ppp_free() local 403 struct pppapi_msg *msg = (struct pppapi_msg *)(void*)m; pppapi_do_ppp_ioctl() local [all...] |
/third_party/protobuf/js/compatibility_tests/v3.0.0/ |
H A D | proto3_test.js | 73 var msg = new proto.jspb.test.TestProto3(); 75 assertEquals(msg.getOptionalInt32(), 0); 76 assertEquals(msg.getOptionalInt64(), 0); 77 assertEquals(msg.getOptionalUint32(), 0); 78 assertEquals(msg.getOptionalUint64(), 0); 79 assertEquals(msg.getOptionalSint32(), 0); 80 assertEquals(msg.getOptionalSint64(), 0); 81 assertEquals(msg.getOptionalFixed32(), 0); 82 assertEquals(msg.getOptionalFixed64(), 0); 83 assertEquals(msg [all...] |
/third_party/protobuf/js/compatibility_tests/v3.1.0/ |
H A D | proto3_test.js | 73 var msg = new proto.jspb.test.TestProto3(); 75 assertEquals(msg.getOptionalInt32(), 0); 76 assertEquals(msg.getOptionalInt64(), 0); 77 assertEquals(msg.getOptionalUint32(), 0); 78 assertEquals(msg.getOptionalUint64(), 0); 79 assertEquals(msg.getOptionalSint32(), 0); 80 assertEquals(msg.getOptionalSint64(), 0); 81 assertEquals(msg.getOptionalFixed32(), 0); 82 assertEquals(msg.getOptionalFixed64(), 0); 83 assertEquals(msg [all...] |
/third_party/lwip/src/api/ |
H A D | tcpip.c | 71 static void tcpip_thread_handle_msg(struct tcpip_msg *msg); 75 #define TCPIP_MBOX_FETCH(mbox, msg) sys_mbox_fetch(mbox, msg) 78 #define TCPIP_MBOX_FETCH(mbox, msg) tcpip_timeouts_mbox_fetch(mbox, msg) 85 * @param msg the place to store the message 88 tcpip_timeouts_mbox_fetch(sys_mbox_t *mbox, void **msg) in tcpip_timeouts_mbox_fetch() argument 98 sys_arch_mbox_fetch(mbox, msg, 0); in tcpip_timeouts_mbox_fetch() 108 res = sys_arch_mbox_fetch(mbox, msg, sleeptime); in tcpip_timeouts_mbox_fetch() 134 struct tcpip_msg *msg; in tcpip_thread() local 161 tcpip_thread_handle_msg(struct tcpip_msg *msg) tcpip_thread_handle_msg() argument 232 struct tcpip_msg *msg = NULL; tcpip_send_msg_na() local 285 struct tcpip_msg *msg; tcpip_thread_poll_one() local 381 struct tcpip_msg *msg; tcpip_callback() local 417 struct tcpip_msg *msg; tcpip_try_callback() local 449 struct tcpip_msg *msg; tcpip_timeout() local 476 struct tcpip_msg *msg; tcpip_untimeout() local 609 struct tcpip_msg *msg = (struct tcpip_msg *)memp_malloc(MEMP_TCPIP_MSG_API); tcpip_callbackmsg_new() local 628 tcpip_callbackmsg_delete(struct tcpip_callback_msg *msg) tcpip_callbackmsg_delete() argument 643 tcpip_callbackmsg_trycallback(struct tcpip_callback_msg *msg) tcpip_callbackmsg_trycallback() argument 662 tcpip_callbackmsg_trycallback_fromisr(struct tcpip_callback_msg *msg) tcpip_callbackmsg_trycallback_fromisr() argument [all...] |
H A D | netifapi.c | 65 struct netifapi_msg *msg = (struct netifapi_msg *)(void *)m; in netifapi_do_netif_add() local 67 if (!netif_add( msg->netif, get_curr_process_net_group(), in netifapi_do_netif_add() 69 if (!netif_add( msg->netif, in netifapi_do_netif_add() 72 API_EXPR_REF(msg->msg.add.ipaddr), in netifapi_do_netif_add() 73 API_EXPR_REF(msg->msg.add.netmask), in netifapi_do_netif_add() 74 API_EXPR_REF(msg->msg.add.gw), in netifapi_do_netif_add() 76 msg in netifapi_do_netif_add() [all...] |
H A D | api_msg.c | 99 lwip_netconn_is_deallocated_msg(void *msg) in lwip_netconn_is_deallocated_msg() argument 101 if (msg == &netconn_deleted) { in lwip_netconn_is_deallocated_msg() 131 lwip_netconn_is_err_msg(void *msg, err_t *err) in lwip_netconn_is_err_msg() argument 135 if (msg == &netconn_aborted) { in lwip_netconn_is_err_msg() 138 } else if (msg == &netconn_reset) { in lwip_netconn_is_err_msg() 141 } else if (msg == &netconn_closed) { in lwip_netconn_is_err_msg() 297 void *msg; local 324 msg = p; 327 msg = LWIP_CONST_CAST(void *, &netconn_closed); 331 if (sys_mbox_trypost(&conn->recvmbox, msg) ! 639 pcb_new(struct api_msg *msg, struct net_group *group) global() argument 724 struct api_msg *msg = (struct api_msg *)m; global() local 944 void *msg = LWIP_CONST_CAST(void *, &netconn_deleted); global() local 1164 struct api_msg *msg = (struct api_msg *)m; global() local 1267 struct api_msg *msg = (struct api_msg *)m; global() local 1309 struct api_msg *msg = (struct api_msg *)m; global() local 1411 struct api_msg *msg = (struct api_msg *)m; global() local 1486 struct api_msg *msg = (struct api_msg *)m; global() local 1510 struct api_msg *msg = (struct api_msg *)m; global() local 1593 struct api_msg *msg = (struct api_msg *)m; global() local 1650 struct api_msg *msg = (struct api_msg *)m; global() local 1675 struct api_msg *msg = (struct api_msg *)m; global() local 1874 struct api_msg *msg = (struct api_msg *)m; global() local 1928 struct api_msg *msg = (struct api_msg *)m; global() local 1995 struct api_msg *msg = (struct api_msg *)m; global() local 2075 struct api_msg *msg = (struct api_msg *)m; global() local 2121 struct api_msg *msg = (struct api_msg *)m; global() local 2188 struct dns_api_msg *msg = (struct dns_api_msg *)arg; global() local 2214 struct dns_api_msg *msg = (struct dns_api_msg *)arg; global() local [all...] |
H A D | api_lib.c | 87 #define API_MSG_VAR_ALLOC_ACCEPT(msg) API_MSG_VAR_ALLOC(msg) 88 #define API_MSG_VAR_FREE_ACCEPT(msg) API_MSG_VAR_FREE(msg) 90 #define API_MSG_VAR_ALLOC_ACCEPT(msg) 91 #define API_MSG_VAR_FREE_ACCEPT(msg) 152 API_MSG_VAR_DECLARE(msg); in netconn_new_with_proto_and_callback() 153 API_MSG_VAR_ALLOC_RETURN_NULL(msg); in netconn_new_with_proto_and_callback() 159 API_MSG_VAR_REF(msg).msg in netconn_new_with_proto_and_callback() 677 netconn_tcp_recvd_msg(struct netconn *conn, size_t len, struct api_msg *msg) netconn_tcp_recvd_msg() argument [all...] |
/third_party/protobuf/php/ext/google/protobuf/ |
H A D | php-upb.h | 36 #define UPB_PTR_AT(msg, ofs, type) ((type*)((char*)(msg) + (ofs))) 38 #define UPB_READ_ONEOF(msg, fieldtype, offset, case_offset, case_val, default) \ 39 *UPB_PTR_AT(msg, case_offset, int) == case_val \ 40 ? *UPB_PTR_AT(msg, offset, fieldtype) \ 43 #define UPB_WRITE_ONEOF(msg, fieldtype, offset, value, case_offset, case_val) \ 44 *UPB_PTR_AT(msg, case_offset, int) = case_val; \ 45 *UPB_PTR_AT(msg, offset, fieldtype) = value; 250 char msg[UPB_STATUS_MAX_MESSAGE]; /* Error message; NULL-terminated. */ member 258 void upb_status_seterrmsg(upb_status *status, const char *msg); 1027 _upb_hasbit(const upb_msg *msg, size_t idx) _upb_hasbit() argument 1031 _upb_sethas(const upb_msg *msg, size_t idx) _upb_sethas() argument 1035 _upb_clearhas(const upb_msg *msg, size_t idx) _upb_clearhas() argument 1044 _upb_hasbit_field(const upb_msg *msg, const upb_msglayout_field *f) _upb_hasbit_field() argument 1049 _upb_sethas_field(const upb_msg *msg, const upb_msglayout_field *f) _upb_sethas_field() argument 1054 _upb_clearhas_field(const upb_msg *msg, const upb_msglayout_field *f) _upb_clearhas_field() argument 1061 _upb_oneofcase(upb_msg *msg, size_t case_ofs) _upb_oneofcase() argument 1065 _upb_getoneofcase(const void *msg, size_t case_ofs) _upb_getoneofcase() argument 1074 _upb_oneofcase_field(upb_msg *msg, const upb_msglayout_field *f) _upb_oneofcase_field() argument 1079 _upb_getoneofcase_field(const upb_msg *msg, const upb_msglayout_field *f) _upb_getoneofcase_field() argument 1084 _upb_has_submsg_nohasbit(const upb_msg *msg, size_t ofs) _upb_has_submsg_nohasbit() argument 1138 _upb_array_accessor(const void *msg, size_t ofs, size_t *size) _upb_array_accessor() argument 1150 _upb_array_mutable_accessor(void *msg, size_t ofs, size_t *size) _upb_array_mutable_accessor() argument 1162 _upb_array_resize_accessor(void *msg, size_t ofs, size_t size, upb_fieldtype_t type, upb_arena *arena) _upb_array_resize_accessor() argument 1175 _upb_array_append_accessor(void *msg, size_t ofs, size_t elem_size, upb_fieldtype_t type, const void *value, upb_arena *arena) _upb_array_append_accessor() argument 1319 _upb_msg_map_size(const upb_msg *msg, size_t ofs) _upb_msg_map_size() argument 1324 _upb_msg_map_get(const upb_msg *msg, size_t ofs, const void *key, size_t key_size, void *val, size_t val_size) _upb_msg_map_get() argument 1332 _upb_msg_map_next(const upb_msg *msg, size_t ofs, size_t *iter) _upb_msg_map_next() argument 1339 _upb_msg_map_set(upb_msg *msg, size_t ofs, const void *key, size_t key_size, void *val, size_t val_size, upb_arena *arena) _upb_msg_map_set() argument 1349 _upb_msg_map_delete(upb_msg *msg, size_t ofs, const void *key, size_t key_size) _upb_msg_map_delete() argument 1356 _upb_msg_map_clear(upb_msg *msg, size_t ofs) _upb_msg_map_clear() argument 1364 _upb_msg_map_key(const void* msg, void* key, size_t size) _upb_msg_map_key() argument 1373 _upb_msg_map_value(const void* msg, void* val, size_t size) _upb_msg_map_value() argument 1380 _upb_msg_map_set_value(void* msg, const void* val, size_t size) _upb_msg_map_set_value() argument 1594 google_protobuf_FileDescriptorSet_serialize(const google_protobuf_FileDescriptorSet *msg, upb_arena *arena, size_t *len) google_protobuf_FileDescriptorSet_serialize() argument 1598 google_protobuf_FileDescriptorSet_has_file(const google_protobuf_FileDescriptorSet *msg) google_protobuf_FileDescriptorSet_has_file() argument 1599 google_protobuf_FileDescriptorSet_file(const google_protobuf_FileDescriptorSet *msg, size_t *len) google_protobuf_FileDescriptorSet_file() argument 1601 google_protobuf_FileDescriptorSet_mutable_file(google_protobuf_FileDescriptorSet *msg, size_t *len) google_protobuf_FileDescriptorSet_mutable_file() argument 1604 google_protobuf_FileDescriptorSet_resize_file(google_protobuf_FileDescriptorSet *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorSet_resize_file() argument 1607 google_protobuf_FileDescriptorSet_add_file(google_protobuf_FileDescriptorSet *msg, upb_arena *arena) google_protobuf_FileDescriptorSet_add_file() argument 1625 google_protobuf_FileDescriptorProto_serialize(const google_protobuf_FileDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_FileDescriptorProto_serialize() argument 1629 google_protobuf_FileDescriptorProto_has_name(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_has_name() argument 1630 google_protobuf_FileDescriptorProto_name(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_name() argument 1631 google_protobuf_FileDescriptorProto_has_package(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_has_package() argument 1632 google_protobuf_FileDescriptorProto_package(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_package() argument 1633 google_protobuf_FileDescriptorProto_dependency(const google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_dependency() argument 1634 google_protobuf_FileDescriptorProto_has_message_type(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_has_message_type() argument 1635 google_protobuf_FileDescriptorProto_message_type(const google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_message_type() argument 1636 google_protobuf_FileDescriptorProto_has_enum_type(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_has_enum_type() argument 1637 google_protobuf_FileDescriptorProto_enum_type(const google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_enum_type() argument 1638 google_protobuf_FileDescriptorProto_has_service(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_has_service() argument 1639 google_protobuf_FileDescriptorProto_service(const google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_service() argument 1640 google_protobuf_FileDescriptorProto_has_extension(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_has_extension() argument 1641 google_protobuf_FileDescriptorProto_extension(const google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_extension() argument 1642 google_protobuf_FileDescriptorProto_has_options(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_has_options() argument 1643 google_protobuf_FileDescriptorProto_options(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_options() argument 1644 google_protobuf_FileDescriptorProto_has_source_code_info(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_has_source_code_info() argument 1645 google_protobuf_FileDescriptorProto_source_code_info(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_source_code_info() argument 1646 google_protobuf_FileDescriptorProto_public_dependency(const google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_public_dependency() argument 1647 google_protobuf_FileDescriptorProto_weak_dependency(const google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_weak_dependency() argument 1648 google_protobuf_FileDescriptorProto_has_syntax(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_has_syntax() argument 1649 google_protobuf_FileDescriptorProto_syntax(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_syntax() argument 1651 google_protobuf_FileDescriptorProto_set_name(google_protobuf_FileDescriptorProto *msg, upb_strview value) google_protobuf_FileDescriptorProto_set_name() argument 1655 google_protobuf_FileDescriptorProto_set_package(google_protobuf_FileDescriptorProto *msg, upb_strview value) google_protobuf_FileDescriptorProto_set_package() argument 1659 google_protobuf_FileDescriptorProto_mutable_dependency(google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_mutable_dependency() argument 1662 google_protobuf_FileDescriptorProto_resize_dependency(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_dependency() argument 1665 google_protobuf_FileDescriptorProto_add_dependency(google_protobuf_FileDescriptorProto *msg, upb_strview val, upb_arena *arena) google_protobuf_FileDescriptorProto_add_dependency() argument 1669 google_protobuf_FileDescriptorProto_mutable_message_type(google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_mutable_message_type() argument 1672 google_protobuf_FileDescriptorProto_resize_message_type(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_message_type() argument 1675 google_protobuf_FileDescriptorProto_add_message_type(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_add_message_type() argument 1682 google_protobuf_FileDescriptorProto_mutable_enum_type(google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_mutable_enum_type() argument 1685 google_protobuf_FileDescriptorProto_resize_enum_type(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_enum_type() argument 1688 google_protobuf_FileDescriptorProto_add_enum_type(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_add_enum_type() argument 1695 google_protobuf_FileDescriptorProto_mutable_service(google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_mutable_service() argument 1698 google_protobuf_FileDescriptorProto_resize_service(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_service() argument 1701 google_protobuf_FileDescriptorProto_add_service(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_add_service() argument 1708 google_protobuf_FileDescriptorProto_mutable_extension(google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_mutable_extension() argument 1711 google_protobuf_FileDescriptorProto_resize_extension(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_extension() argument 1714 google_protobuf_FileDescriptorProto_add_extension(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_add_extension() argument 1721 google_protobuf_FileDescriptorProto_set_options(google_protobuf_FileDescriptorProto *msg, google_protobuf_FileOptions* value) google_protobuf_FileDescriptorProto_set_options() argument 1725 google_protobuf_FileDescriptorProto_mutable_options(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_mutable_options() argument 1734 google_protobuf_FileDescriptorProto_set_source_code_info(google_protobuf_FileDescriptorProto *msg, google_protobuf_SourceCodeInfo* value) google_protobuf_FileDescriptorProto_set_source_code_info() argument 1738 google_protobuf_FileDescriptorProto_mutable_source_code_info(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_mutable_source_code_info() argument 1747 google_protobuf_FileDescriptorProto_mutable_public_dependency(google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_mutable_public_dependency() argument 1750 google_protobuf_FileDescriptorProto_resize_public_dependency(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_public_dependency() argument 1753 google_protobuf_FileDescriptorProto_add_public_dependency(google_protobuf_FileDescriptorProto *msg, int32_t val, upb_arena *arena) google_protobuf_FileDescriptorProto_add_public_dependency() argument 1757 google_protobuf_FileDescriptorProto_mutable_weak_dependency(google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_mutable_weak_dependency() argument 1760 google_protobuf_FileDescriptorProto_resize_weak_dependency(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_weak_dependency() argument 1763 google_protobuf_FileDescriptorProto_add_weak_dependency(google_protobuf_FileDescriptorProto *msg, int32_t val, upb_arena *arena) google_protobuf_FileDescriptorProto_add_weak_dependency() argument 1767 google_protobuf_FileDescriptorProto_set_syntax(google_protobuf_FileDescriptorProto *msg, upb_strview value) google_protobuf_FileDescriptorProto_set_syntax() argument 1782 google_protobuf_DescriptorProto_serialize(const google_protobuf_DescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_DescriptorProto_serialize() argument 1786 google_protobuf_DescriptorProto_has_name(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_has_name() argument 1787 google_protobuf_DescriptorProto_name(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_name() argument 1788 google_protobuf_DescriptorProto_has_field(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_has_field() argument 1789 google_protobuf_DescriptorProto_field(const google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_field() argument 1790 google_protobuf_DescriptorProto_has_nested_type(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_has_nested_type() argument 1791 google_protobuf_DescriptorProto_nested_type(const google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_nested_type() argument 1792 google_protobuf_DescriptorProto_has_enum_type(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_has_enum_type() argument 1793 google_protobuf_DescriptorProto_enum_type(const google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_enum_type() argument 1794 google_protobuf_DescriptorProto_has_extension_range(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_has_extension_range() argument 1795 google_protobuf_DescriptorProto_extension_range(const google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_extension_range() argument 1796 google_protobuf_DescriptorProto_has_extension(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_has_extension() argument 1797 google_protobuf_DescriptorProto_extension(const google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_extension() argument 1798 google_protobuf_DescriptorProto_has_options(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_has_options() argument 1799 google_protobuf_DescriptorProto_options(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_options() argument 1800 google_protobuf_DescriptorProto_has_oneof_decl(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_has_oneof_decl() argument 1801 google_protobuf_DescriptorProto_oneof_decl(const google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_oneof_decl() argument 1802 google_protobuf_DescriptorProto_has_reserved_range(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_has_reserved_range() argument 1803 google_protobuf_DescriptorProto_reserved_range(const google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_reserved_range() argument 1804 google_protobuf_DescriptorProto_reserved_name(const google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_reserved_name() argument 1806 google_protobuf_DescriptorProto_set_name(google_protobuf_DescriptorProto *msg, upb_strview value) google_protobuf_DescriptorProto_set_name() argument 1810 google_protobuf_DescriptorProto_mutable_field(google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_mutable_field() argument 1813 google_protobuf_DescriptorProto_resize_field(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_field() argument 1816 google_protobuf_DescriptorProto_add_field(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_field() argument 1823 google_protobuf_DescriptorProto_mutable_nested_type(google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_mutable_nested_type() argument 1826 google_protobuf_DescriptorProto_resize_nested_type(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_nested_type() argument 1829 google_protobuf_DescriptorProto_add_nested_type(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_nested_type() argument 1836 google_protobuf_DescriptorProto_mutable_enum_type(google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_mutable_enum_type() argument 1839 google_protobuf_DescriptorProto_resize_enum_type(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_enum_type() argument 1842 google_protobuf_DescriptorProto_add_enum_type(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_enum_type() argument 1849 google_protobuf_DescriptorProto_mutable_extension_range(google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_mutable_extension_range() argument 1852 google_protobuf_DescriptorProto_resize_extension_range(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_extension_range() argument 1855 google_protobuf_DescriptorProto_add_extension_range(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_extension_range() argument 1862 google_protobuf_DescriptorProto_mutable_extension(google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_mutable_extension() argument 1865 google_protobuf_DescriptorProto_resize_extension(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_extension() argument 1868 google_protobuf_DescriptorProto_add_extension(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_extension() argument 1875 google_protobuf_DescriptorProto_set_options(google_protobuf_DescriptorProto *msg, google_protobuf_MessageOptions* value) google_protobuf_DescriptorProto_set_options() argument 1879 google_protobuf_DescriptorProto_mutable_options(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_mutable_options() argument 1888 google_protobuf_DescriptorProto_mutable_oneof_decl(google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_mutable_oneof_decl() argument 1891 google_protobuf_DescriptorProto_resize_oneof_decl(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_oneof_decl() argument 1894 google_protobuf_DescriptorProto_add_oneof_decl(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_oneof_decl() argument 1901 google_protobuf_DescriptorProto_mutable_reserved_range(google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_mutable_reserved_range() argument 1904 google_protobuf_DescriptorProto_resize_reserved_range(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_reserved_range() argument 1907 google_protobuf_DescriptorProto_add_reserved_range(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_reserved_range() argument 1914 google_protobuf_DescriptorProto_mutable_reserved_name(google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_mutable_reserved_name() argument 1917 google_protobuf_DescriptorProto_resize_reserved_name(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_reserved_name() argument 1920 google_protobuf_DescriptorProto_add_reserved_name(google_protobuf_DescriptorProto *msg, upb_strview val, upb_arena *arena) google_protobuf_DescriptorProto_add_reserved_name() argument 1935 google_protobuf_DescriptorProto_ExtensionRange_serialize(const google_protobuf_DescriptorProto_ExtensionRange *msg, upb_arena *arena, size_t *len) google_protobuf_DescriptorProto_ExtensionRange_serialize() argument 1939 google_protobuf_DescriptorProto_ExtensionRange_has_start(const google_protobuf_DescriptorProto_ExtensionRange *msg) google_protobuf_DescriptorProto_ExtensionRange_has_start() argument 1940 google_protobuf_DescriptorProto_ExtensionRange_start(const google_protobuf_DescriptorProto_ExtensionRange *msg) google_protobuf_DescriptorProto_ExtensionRange_start() argument 1941 google_protobuf_DescriptorProto_ExtensionRange_has_end(const google_protobuf_DescriptorProto_ExtensionRange *msg) google_protobuf_DescriptorProto_ExtensionRange_has_end() argument 1942 google_protobuf_DescriptorProto_ExtensionRange_end(const google_protobuf_DescriptorProto_ExtensionRange *msg) google_protobuf_DescriptorProto_ExtensionRange_end() argument 1943 google_protobuf_DescriptorProto_ExtensionRange_has_options(const google_protobuf_DescriptorProto_ExtensionRange *msg) google_protobuf_DescriptorProto_ExtensionRange_has_options() argument 1944 google_protobuf_DescriptorProto_ExtensionRange_options(const google_protobuf_DescriptorProto_ExtensionRange *msg) google_protobuf_DescriptorProto_ExtensionRange_options() argument 1946 google_protobuf_DescriptorProto_ExtensionRange_set_start(google_protobuf_DescriptorProto_ExtensionRange *msg, int32_t value) google_protobuf_DescriptorProto_ExtensionRange_set_start() argument 1950 google_protobuf_DescriptorProto_ExtensionRange_set_end(google_protobuf_DescriptorProto_ExtensionRange *msg, int32_t value) google_protobuf_DescriptorProto_ExtensionRange_set_end() argument 1954 google_protobuf_DescriptorProto_ExtensionRange_set_options(google_protobuf_DescriptorProto_ExtensionRange *msg, google_protobuf_ExtensionRangeOptions* value) google_protobuf_DescriptorProto_ExtensionRange_set_options() argument 1958 google_protobuf_DescriptorProto_ExtensionRange_mutable_options(google_protobuf_DescriptorProto_ExtensionRange *msg, upb_arena *arena) google_protobuf_DescriptorProto_ExtensionRange_mutable_options() argument 1978 google_protobuf_DescriptorProto_ReservedRange_serialize(const google_protobuf_DescriptorProto_ReservedRange *msg, upb_arena *arena, size_t *len) google_protobuf_DescriptorProto_ReservedRange_serialize() argument 1982 google_protobuf_DescriptorProto_ReservedRange_has_start(const google_protobuf_DescriptorProto_ReservedRange *msg) google_protobuf_DescriptorProto_ReservedRange_has_start() argument 1983 google_protobuf_DescriptorProto_ReservedRange_start(const google_protobuf_DescriptorProto_ReservedRange *msg) google_protobuf_DescriptorProto_ReservedRange_start() argument 1984 google_protobuf_DescriptorProto_ReservedRange_has_end(const google_protobuf_DescriptorProto_ReservedRange *msg) google_protobuf_DescriptorProto_ReservedRange_has_end() argument 1985 google_protobuf_DescriptorProto_ReservedRange_end(const google_protobuf_DescriptorProto_ReservedRange *msg) google_protobuf_DescriptorProto_ReservedRange_end() argument 1987 google_protobuf_DescriptorProto_ReservedRange_set_start(google_protobuf_DescriptorProto_ReservedRange *msg, int32_t value) google_protobuf_DescriptorProto_ReservedRange_set_start() argument 1991 google_protobuf_DescriptorProto_ReservedRange_set_end(google_protobuf_DescriptorProto_ReservedRange *msg, int32_t value) google_protobuf_DescriptorProto_ReservedRange_set_end() argument 2006 google_protobuf_ExtensionRangeOptions_serialize(const google_protobuf_ExtensionRangeOptions *msg, upb_arena *arena, size_t *len) google_protobuf_ExtensionRangeOptions_serialize() argument 2010 google_protobuf_ExtensionRangeOptions_has_uninterpreted_option(const google_protobuf_ExtensionRangeOptions *msg) google_protobuf_ExtensionRangeOptions_has_uninterpreted_option() argument 2011 google_protobuf_ExtensionRangeOptions_uninterpreted_option(const google_protobuf_ExtensionRangeOptions *msg, size_t *len) google_protobuf_ExtensionRangeOptions_uninterpreted_option() argument 2013 google_protobuf_ExtensionRangeOptions_mutable_uninterpreted_option(google_protobuf_ExtensionRangeOptions *msg, size_t *len) google_protobuf_ExtensionRangeOptions_mutable_uninterpreted_option() argument 2016 google_protobuf_ExtensionRangeOptions_resize_uninterpreted_option(google_protobuf_ExtensionRangeOptions *msg, size_t len, upb_arena *arena) google_protobuf_ExtensionRangeOptions_resize_uninterpreted_option() argument 2019 google_protobuf_ExtensionRangeOptions_add_uninterpreted_option(google_protobuf_ExtensionRangeOptions *msg, upb_arena *arena) google_protobuf_ExtensionRangeOptions_add_uninterpreted_option() argument 2037 google_protobuf_FieldDescriptorProto_serialize(const google_protobuf_FieldDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_FieldDescriptorProto_serialize() argument 2041 google_protobuf_FieldDescriptorProto_has_name(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_name() argument 2042 google_protobuf_FieldDescriptorProto_name(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_name() argument 2043 google_protobuf_FieldDescriptorProto_has_extendee(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_extendee() argument 2044 google_protobuf_FieldDescriptorProto_extendee(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_extendee() argument 2045 google_protobuf_FieldDescriptorProto_has_number(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_number() argument 2046 google_protobuf_FieldDescriptorProto_number(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_number() argument 2047 google_protobuf_FieldDescriptorProto_has_label(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_label() argument 2048 google_protobuf_FieldDescriptorProto_label(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_label() argument 2049 google_protobuf_FieldDescriptorProto_has_type(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_type() argument 2050 google_protobuf_FieldDescriptorProto_type(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_type() argument 2051 google_protobuf_FieldDescriptorProto_has_type_name(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_type_name() argument 2052 google_protobuf_FieldDescriptorProto_type_name(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_type_name() argument 2053 google_protobuf_FieldDescriptorProto_has_default_value(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_default_value() argument 2054 google_protobuf_FieldDescriptorProto_default_value(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_default_value() argument 2055 google_protobuf_FieldDescriptorProto_has_options(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_options() argument 2056 google_protobuf_FieldDescriptorProto_options(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_options() argument 2057 google_protobuf_FieldDescriptorProto_has_oneof_index(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_oneof_index() argument 2058 google_protobuf_FieldDescriptorProto_oneof_index(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_oneof_index() argument 2059 google_protobuf_FieldDescriptorProto_has_json_name(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_json_name() argument 2060 google_protobuf_FieldDescriptorProto_json_name(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_json_name() argument 2061 google_protobuf_FieldDescriptorProto_has_proto3_optional(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_proto3_optional() argument 2062 google_protobuf_FieldDescriptorProto_proto3_optional(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_proto3_optional() argument 2064 google_protobuf_FieldDescriptorProto_set_name(google_protobuf_FieldDescriptorProto *msg, upb_strview value) google_protobuf_FieldDescriptorProto_set_name() argument 2068 google_protobuf_FieldDescriptorProto_set_extendee(google_protobuf_FieldDescriptorProto *msg, upb_strview value) google_protobuf_FieldDescriptorProto_set_extendee() argument 2072 google_protobuf_FieldDescriptorProto_set_number(google_protobuf_FieldDescriptorProto *msg, int32_t value) google_protobuf_FieldDescriptorProto_set_number() argument 2076 google_protobuf_FieldDescriptorProto_set_label(google_protobuf_FieldDescriptorProto *msg, int32_t value) google_protobuf_FieldDescriptorProto_set_label() argument 2080 google_protobuf_FieldDescriptorProto_set_type(google_protobuf_FieldDescriptorProto *msg, int32_t value) google_protobuf_FieldDescriptorProto_set_type() argument 2084 google_protobuf_FieldDescriptorProto_set_type_name(google_protobuf_FieldDescriptorProto *msg, upb_strview value) google_protobuf_FieldDescriptorProto_set_type_name() argument 2088 google_protobuf_FieldDescriptorProto_set_default_value(google_protobuf_FieldDescriptorProto *msg, upb_strview value) google_protobuf_FieldDescriptorProto_set_default_value() argument 2092 google_protobuf_FieldDescriptorProto_set_options(google_protobuf_FieldDescriptorProto *msg, google_protobuf_FieldOptions* value) google_protobuf_FieldDescriptorProto_set_options() argument 2096 google_protobuf_FieldDescriptorProto_mutable_options(google_protobuf_FieldDescriptorProto *msg, upb_arena *arena) google_protobuf_FieldDescriptorProto_mutable_options() argument 2105 google_protobuf_FieldDescriptorProto_set_oneof_index(google_protobuf_FieldDescriptorProto *msg, int32_t value) google_protobuf_FieldDescriptorProto_set_oneof_index() argument 2109 google_protobuf_FieldDescriptorProto_set_json_name(google_protobuf_FieldDescriptorProto *msg, upb_strview value) google_protobuf_FieldDescriptorProto_set_json_name() argument 2113 google_protobuf_FieldDescriptorProto_set_proto3_optional(google_protobuf_FieldDescriptorProto *msg, bool value) google_protobuf_FieldDescriptorProto_set_proto3_optional() argument 2128 google_protobuf_OneofDescriptorProto_serialize(const google_protobuf_OneofDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_OneofDescriptorProto_serialize() argument 2132 google_protobuf_OneofDescriptorProto_has_name(const google_protobuf_OneofDescriptorProto *msg) google_protobuf_OneofDescriptorProto_has_name() argument 2133 google_protobuf_OneofDescriptorProto_name(const google_protobuf_OneofDescriptorProto *msg) google_protobuf_OneofDescriptorProto_name() argument 2134 google_protobuf_OneofDescriptorProto_has_options(const google_protobuf_OneofDescriptorProto *msg) google_protobuf_OneofDescriptorProto_has_options() argument 2135 google_protobuf_OneofDescriptorProto_options(const google_protobuf_OneofDescriptorProto *msg) google_protobuf_OneofDescriptorProto_options() argument 2137 google_protobuf_OneofDescriptorProto_set_name(google_protobuf_OneofDescriptorProto *msg, upb_strview value) google_protobuf_OneofDescriptorProto_set_name() argument 2141 google_protobuf_OneofDescriptorProto_set_options(google_protobuf_OneofDescriptorProto *msg, google_protobuf_OneofOptions* value) google_protobuf_OneofDescriptorProto_set_options() argument 2145 google_protobuf_OneofDescriptorProto_mutable_options(google_protobuf_OneofDescriptorProto *msg, upb_arena *arena) google_protobuf_OneofDescriptorProto_mutable_options() argument 2165 google_protobuf_EnumDescriptorProto_serialize(const google_protobuf_EnumDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_EnumDescriptorProto_serialize() argument 2169 google_protobuf_EnumDescriptorProto_has_name(const google_protobuf_EnumDescriptorProto *msg) google_protobuf_EnumDescriptorProto_has_name() argument 2170 google_protobuf_EnumDescriptorProto_name(const google_protobuf_EnumDescriptorProto *msg) google_protobuf_EnumDescriptorProto_name() argument 2171 google_protobuf_EnumDescriptorProto_has_value(const google_protobuf_EnumDescriptorProto *msg) google_protobuf_EnumDescriptorProto_has_value() argument 2172 google_protobuf_EnumDescriptorProto_value(const google_protobuf_EnumDescriptorProto *msg, size_t *len) google_protobuf_EnumDescriptorProto_value() argument 2173 google_protobuf_EnumDescriptorProto_has_options(const google_protobuf_EnumDescriptorProto *msg) google_protobuf_EnumDescriptorProto_has_options() argument 2174 google_protobuf_EnumDescriptorProto_options(const google_protobuf_EnumDescriptorProto *msg) google_protobuf_EnumDescriptorProto_options() argument 2175 google_protobuf_EnumDescriptorProto_has_reserved_range(const google_protobuf_EnumDescriptorProto *msg) google_protobuf_EnumDescriptorProto_has_reserved_range() argument 2176 google_protobuf_EnumDescriptorProto_reserved_range(const google_protobuf_EnumDescriptorProto *msg, size_t *len) google_protobuf_EnumDescriptorProto_reserved_range() argument 2177 google_protobuf_EnumDescriptorProto_reserved_name(const google_protobuf_EnumDescriptorProto *msg, size_t *len) google_protobuf_EnumDescriptorProto_reserved_name() argument 2179 google_protobuf_EnumDescriptorProto_set_name(google_protobuf_EnumDescriptorProto *msg, upb_strview value) google_protobuf_EnumDescriptorProto_set_name() argument 2183 google_protobuf_EnumDescriptorProto_mutable_value(google_protobuf_EnumDescriptorProto *msg, size_t *len) google_protobuf_EnumDescriptorProto_mutable_value() argument 2186 google_protobuf_EnumDescriptorProto_resize_value(google_protobuf_EnumDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_EnumDescriptorProto_resize_value() argument 2189 google_protobuf_EnumDescriptorProto_add_value(google_protobuf_EnumDescriptorProto *msg, upb_arena *arena) google_protobuf_EnumDescriptorProto_add_value() argument 2196 google_protobuf_EnumDescriptorProto_set_options(google_protobuf_EnumDescriptorProto *msg, google_protobuf_EnumOptions* value) google_protobuf_EnumDescriptorProto_set_options() argument 2200 google_protobuf_EnumDescriptorProto_mutable_options(google_protobuf_EnumDescriptorProto *msg, upb_arena *arena) google_protobuf_EnumDescriptorProto_mutable_options() argument 2209 google_protobuf_EnumDescriptorProto_mutable_reserved_range(google_protobuf_EnumDescriptorProto *msg, size_t *len) google_protobuf_EnumDescriptorProto_mutable_reserved_range() argument 2212 google_protobuf_EnumDescriptorProto_resize_reserved_range(google_protobuf_EnumDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_EnumDescriptorProto_resize_reserved_range() argument 2215 google_protobuf_EnumDescriptorProto_add_reserved_range(google_protobuf_EnumDescriptorProto *msg, upb_arena *arena) google_protobuf_EnumDescriptorProto_add_reserved_range() argument 2222 google_protobuf_EnumDescriptorProto_mutable_reserved_name(google_protobuf_EnumDescriptorProto *msg, size_t *len) google_protobuf_EnumDescriptorProto_mutable_reserved_name() argument 2225 google_protobuf_EnumDescriptorProto_resize_reserved_name(google_protobuf_EnumDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_EnumDescriptorProto_resize_reserved_name() argument 2228 google_protobuf_EnumDescriptorProto_add_reserved_name(google_protobuf_EnumDescriptorProto *msg, upb_strview val, upb_arena *arena) google_protobuf_EnumDescriptorProto_add_reserved_name() argument 2243 google_protobuf_EnumDescriptorProto_EnumReservedRange_serialize(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, upb_arena *arena, size_t *len) google_protobuf_EnumDescriptorProto_EnumReservedRange_serialize() argument 2247 google_protobuf_EnumDescriptorProto_EnumReservedRange_has_start(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) google_protobuf_EnumDescriptorProto_EnumReservedRange_has_start() argument 2248 google_protobuf_EnumDescriptorProto_EnumReservedRange_start(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) google_protobuf_EnumDescriptorProto_EnumReservedRange_start() argument 2249 google_protobuf_EnumDescriptorProto_EnumReservedRange_has_end(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) google_protobuf_EnumDescriptorProto_EnumReservedRange_has_end() argument 2250 google_protobuf_EnumDescriptorProto_EnumReservedRange_end(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) google_protobuf_EnumDescriptorProto_EnumReservedRange_end() argument 2252 google_protobuf_EnumDescriptorProto_EnumReservedRange_set_start(google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, int32_t value) google_protobuf_EnumDescriptorProto_EnumReservedRange_set_start() argument 2256 google_protobuf_EnumDescriptorProto_EnumReservedRange_set_end(google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, int32_t value) google_protobuf_EnumDescriptorProto_EnumReservedRange_set_end() argument 2271 google_protobuf_EnumValueDescriptorProto_serialize(const google_protobuf_EnumValueDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_EnumValueDescriptorProto_serialize() argument 2275 google_protobuf_EnumValueDescriptorProto_has_name(const google_protobuf_EnumValueDescriptorProto *msg) google_protobuf_EnumValueDescriptorProto_has_name() argument 2276 google_protobuf_EnumValueDescriptorProto_name(const google_protobuf_EnumValueDescriptorProto *msg) google_protobuf_EnumValueDescriptorProto_name() argument 2277 google_protobuf_EnumValueDescriptorProto_has_number(const google_protobuf_EnumValueDescriptorProto *msg) google_protobuf_EnumValueDescriptorProto_has_number() argument 2278 google_protobuf_EnumValueDescriptorProto_number(const google_protobuf_EnumValueDescriptorProto *msg) google_protobuf_EnumValueDescriptorProto_number() argument 2279 google_protobuf_EnumValueDescriptorProto_has_options(const google_protobuf_EnumValueDescriptorProto *msg) google_protobuf_EnumValueDescriptorProto_has_options() argument 2280 google_protobuf_EnumValueDescriptorProto_options(const google_protobuf_EnumValueDescriptorProto *msg) google_protobuf_EnumValueDescriptorProto_options() argument 2282 google_protobuf_EnumValueDescriptorProto_set_name(google_protobuf_EnumValueDescriptorProto *msg, upb_strview value) google_protobuf_EnumValueDescriptorProto_set_name() argument 2286 google_protobuf_EnumValueDescriptorProto_set_number(google_protobuf_EnumValueDescriptorProto *msg, int32_t value) google_protobuf_EnumValueDescriptorProto_set_number() argument 2290 google_protobuf_EnumValueDescriptorProto_set_options(google_protobuf_EnumValueDescriptorProto *msg, google_protobuf_EnumValueOptions* value) google_protobuf_EnumValueDescriptorProto_set_options() argument 2294 google_protobuf_EnumValueDescriptorProto_mutable_options(google_protobuf_EnumValueDescriptorProto *msg, upb_arena *arena) google_protobuf_EnumValueDescriptorProto_mutable_options() argument 2314 google_protobuf_ServiceDescriptorProto_serialize(const google_protobuf_ServiceDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_ServiceDescriptorProto_serialize() argument 2318 google_protobuf_ServiceDescriptorProto_has_name(const google_protobuf_ServiceDescriptorProto *msg) google_protobuf_ServiceDescriptorProto_has_name() argument 2319 google_protobuf_ServiceDescriptorProto_name(const google_protobuf_ServiceDescriptorProto *msg) google_protobuf_ServiceDescriptorProto_name() argument 2320 google_protobuf_ServiceDescriptorProto_has_method(const google_protobuf_ServiceDescriptorProto *msg) google_protobuf_ServiceDescriptorProto_has_method() argument 2321 google_protobuf_ServiceDescriptorProto_method(const google_protobuf_ServiceDescriptorProto *msg, size_t *len) google_protobuf_ServiceDescriptorProto_method() argument 2322 google_protobuf_ServiceDescriptorProto_has_options(const google_protobuf_ServiceDescriptorProto *msg) google_protobuf_ServiceDescriptorProto_has_options() argument 2323 google_protobuf_ServiceDescriptorProto_options(const google_protobuf_ServiceDescriptorProto *msg) google_protobuf_ServiceDescriptorProto_options() argument 2325 google_protobuf_ServiceDescriptorProto_set_name(google_protobuf_ServiceDescriptorProto *msg, upb_strview value) google_protobuf_ServiceDescriptorProto_set_name() argument 2329 google_protobuf_ServiceDescriptorProto_mutable_method(google_protobuf_ServiceDescriptorProto *msg, size_t *len) google_protobuf_ServiceDescriptorProto_mutable_method() argument 2332 google_protobuf_ServiceDescriptorProto_resize_method(google_protobuf_ServiceDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_ServiceDescriptorProto_resize_method() argument 2335 google_protobuf_ServiceDescriptorProto_add_method(google_protobuf_ServiceDescriptorProto *msg, upb_arena *arena) google_protobuf_ServiceDescriptorProto_add_method() argument 2342 google_protobuf_ServiceDescriptorProto_set_options(google_protobuf_ServiceDescriptorProto *msg, google_protobuf_ServiceOptions* value) google_protobuf_ServiceDescriptorProto_set_options() argument 2346 google_protobuf_ServiceDescriptorProto_mutable_options(google_protobuf_ServiceDescriptorProto *msg, upb_arena *arena) google_protobuf_ServiceDescriptorProto_mutable_options() argument 2366 google_protobuf_MethodDescriptorProto_serialize(const google_protobuf_MethodDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_MethodDescriptorProto_serialize() argument 2370 google_protobuf_MethodDescriptorProto_has_name(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_has_name() argument 2371 google_protobuf_MethodDescriptorProto_name(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_name() argument 2372 google_protobuf_MethodDescriptorProto_has_input_type(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_has_input_type() argument 2373 google_protobuf_MethodDescriptorProto_input_type(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_input_type() argument 2374 google_protobuf_MethodDescriptorProto_has_output_type(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_has_output_type() argument 2375 google_protobuf_MethodDescriptorProto_output_type(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_output_type() argument 2376 google_protobuf_MethodDescriptorProto_has_options(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_has_options() argument 2377 google_protobuf_MethodDescriptorProto_options(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_options() argument 2378 google_protobuf_MethodDescriptorProto_has_client_streaming(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_has_client_streaming() argument 2379 google_protobuf_MethodDescriptorProto_client_streaming(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_client_streaming() argument 2380 google_protobuf_MethodDescriptorProto_has_server_streaming(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_has_server_streaming() argument 2381 google_protobuf_MethodDescriptorProto_server_streaming(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_server_streaming() argument 2383 google_protobuf_MethodDescriptorProto_set_name(google_protobuf_MethodDescriptorProto *msg, upb_strview value) google_protobuf_MethodDescriptorProto_set_name() argument 2387 google_protobuf_MethodDescriptorProto_set_input_type(google_protobuf_MethodDescriptorProto *msg, upb_strview value) google_protobuf_MethodDescriptorProto_set_input_type() argument 2391 google_protobuf_MethodDescriptorProto_set_output_type(google_protobuf_MethodDescriptorProto *msg, upb_strview value) google_protobuf_MethodDescriptorProto_set_output_type() argument 2395 google_protobuf_MethodDescriptorProto_set_options(google_protobuf_MethodDescriptorProto *msg, google_protobuf_MethodOptions* value) google_protobuf_MethodDescriptorProto_set_options() argument 2399 google_protobuf_MethodDescriptorProto_mutable_options(google_protobuf_MethodDescriptorProto *msg, upb_arena *arena) google_protobuf_MethodDescriptorProto_mutable_options() argument 2408 google_protobuf_MethodDescriptorProto_set_client_streaming(google_protobuf_MethodDescriptorProto *msg, bool value) google_protobuf_MethodDescriptorProto_set_client_streaming() argument 2412 google_protobuf_MethodDescriptorProto_set_server_streaming(google_protobuf_MethodDescriptorProto *msg, bool value) google_protobuf_MethodDescriptorProto_set_server_streaming() argument 2427 google_protobuf_FileOptions_serialize(const google_protobuf_FileOptions *msg, upb_arena *arena, size_t *len) google_protobuf_FileOptions_serialize() argument 2431 google_protobuf_FileOptions_has_java_package(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_java_package() argument 2432 google_protobuf_FileOptions_java_package(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_java_package() argument 2433 google_protobuf_FileOptions_has_java_outer_classname(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_java_outer_classname() argument 2434 google_protobuf_FileOptions_java_outer_classname(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_java_outer_classname() argument 2435 google_protobuf_FileOptions_has_optimize_for(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_optimize_for() argument 2436 google_protobuf_FileOptions_optimize_for(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_optimize_for() argument 2437 google_protobuf_FileOptions_has_java_multiple_files(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_java_multiple_files() argument 2438 google_protobuf_FileOptions_java_multiple_files(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_java_multiple_files() argument 2439 google_protobuf_FileOptions_has_go_package(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_go_package() argument 2440 google_protobuf_FileOptions_go_package(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_go_package() argument 2441 google_protobuf_FileOptions_has_cc_generic_services(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_cc_generic_services() argument 2442 google_protobuf_FileOptions_cc_generic_services(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_cc_generic_services() argument 2443 google_protobuf_FileOptions_has_java_generic_services(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_java_generic_services() argument 2444 google_protobuf_FileOptions_java_generic_services(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_java_generic_services() argument 2445 google_protobuf_FileOptions_has_py_generic_services(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_py_generic_services() argument 2446 google_protobuf_FileOptions_py_generic_services(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_py_generic_services() argument 2447 google_protobuf_FileOptions_has_java_generate_equals_and_hash(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_java_generate_equals_and_hash() argument 2448 google_protobuf_FileOptions_java_generate_equals_and_hash(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_java_generate_equals_and_hash() argument 2449 google_protobuf_FileOptions_has_deprecated(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_deprecated() argument 2450 google_protobuf_FileOptions_deprecated(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_deprecated() argument 2451 google_protobuf_FileOptions_has_java_string_check_utf8(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_java_string_check_utf8() argument 2452 google_protobuf_FileOptions_java_string_check_utf8(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_java_string_check_utf8() argument 2453 google_protobuf_FileOptions_has_cc_enable_arenas(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_cc_enable_arenas() argument 2454 google_protobuf_FileOptions_cc_enable_arenas(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_cc_enable_arenas() argument 2455 google_protobuf_FileOptions_has_objc_class_prefix(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_objc_class_prefix() argument 2456 google_protobuf_FileOptions_objc_class_prefix(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_objc_class_prefix() argument 2457 google_protobuf_FileOptions_has_csharp_namespace(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_csharp_namespace() argument 2458 google_protobuf_FileOptions_csharp_namespace(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_csharp_namespace() argument 2459 google_protobuf_FileOptions_has_swift_prefix(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_swift_prefix() argument 2460 google_protobuf_FileOptions_swift_prefix(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_swift_prefix() argument 2461 google_protobuf_FileOptions_has_php_class_prefix(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_php_class_prefix() argument 2462 google_protobuf_FileOptions_php_class_prefix(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_php_class_prefix() argument 2463 google_protobuf_FileOptions_has_php_namespace(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_php_namespace() argument 2464 google_protobuf_FileOptions_php_namespace(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_php_namespace() argument 2465 google_protobuf_FileOptions_has_php_generic_services(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_php_generic_services() argument 2466 google_protobuf_FileOptions_php_generic_services(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_php_generic_services() argument 2467 google_protobuf_FileOptions_has_php_metadata_namespace(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_php_metadata_namespace() argument 2468 google_protobuf_FileOptions_php_metadata_namespace(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_php_metadata_namespace() argument 2469 google_protobuf_FileOptions_has_ruby_package(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_ruby_package() argument 2470 google_protobuf_FileOptions_ruby_package(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_ruby_package() argument 2471 google_protobuf_FileOptions_has_uninterpreted_option(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_uninterpreted_option() argument 2472 google_protobuf_FileOptions_uninterpreted_option(const google_protobuf_FileOptions *msg, size_t *len) google_protobuf_FileOptions_uninterpreted_option() argument 2474 google_protobuf_FileOptions_set_java_package(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_java_package() argument 2478 google_protobuf_FileOptions_set_java_outer_classname(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_java_outer_classname() argument 2482 google_protobuf_FileOptions_set_optimize_for(google_protobuf_FileOptions *msg, int32_t value) google_protobuf_FileOptions_set_optimize_for() argument 2486 google_protobuf_FileOptions_set_java_multiple_files(google_protobuf_FileOptions *msg, bool value) google_protobuf_FileOptions_set_java_multiple_files() argument 2490 google_protobuf_FileOptions_set_go_package(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_go_package() argument 2494 google_protobuf_FileOptions_set_cc_generic_services(google_protobuf_FileOptions *msg, bool value) google_protobuf_FileOptions_set_cc_generic_services() argument 2498 google_protobuf_FileOptions_set_java_generic_services(google_protobuf_FileOptions *msg, bool value) google_protobuf_FileOptions_set_java_generic_services() argument 2502 google_protobuf_FileOptions_set_py_generic_services(google_protobuf_FileOptions *msg, bool value) google_protobuf_FileOptions_set_py_generic_services() argument 2506 google_protobuf_FileOptions_set_java_generate_equals_and_hash(google_protobuf_FileOptions *msg, bool value) google_protobuf_FileOptions_set_java_generate_equals_and_hash() argument 2510 google_protobuf_FileOptions_set_deprecated(google_protobuf_FileOptions *msg, bool value) google_protobuf_FileOptions_set_deprecated() argument 2514 google_protobuf_FileOptions_set_java_string_check_utf8(google_protobuf_FileOptions *msg, bool value) google_protobuf_FileOptions_set_java_string_check_utf8() argument 2518 google_protobuf_FileOptions_set_cc_enable_arenas(google_protobuf_FileOptions *msg, bool value) google_protobuf_FileOptions_set_cc_enable_arenas() argument 2522 google_protobuf_FileOptions_set_objc_class_prefix(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_objc_class_prefix() argument 2526 google_protobuf_FileOptions_set_csharp_namespace(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_csharp_namespace() argument 2530 google_protobuf_FileOptions_set_swift_prefix(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_swift_prefix() argument 2534 google_protobuf_FileOptions_set_php_class_prefix(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_php_class_prefix() argument 2538 google_protobuf_FileOptions_set_php_namespace(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_php_namespace() argument 2542 google_protobuf_FileOptions_set_php_generic_services(google_protobuf_FileOptions *msg, bool value) google_protobuf_FileOptions_set_php_generic_services() argument 2546 google_protobuf_FileOptions_set_php_metadata_namespace(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_php_metadata_namespace() argument 2550 google_protobuf_FileOptions_set_ruby_package(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_ruby_package() argument 2554 google_protobuf_FileOptions_mutable_uninterpreted_option(google_protobuf_FileOptions *msg, size_t *len) google_protobuf_FileOptions_mutable_uninterpreted_option() argument 2557 google_protobuf_FileOptions_resize_uninterpreted_option(google_protobuf_FileOptions *msg, size_t len, upb_arena *arena) google_protobuf_FileOptions_resize_uninterpreted_option() argument 2560 google_protobuf_FileOptions_add_uninterpreted_option(google_protobuf_FileOptions *msg, upb_arena *arena) google_protobuf_FileOptions_add_uninterpreted_option() argument 2578 google_protobuf_MessageOptions_serialize(const google_protobuf_MessageOptions *msg, upb_arena *arena, size_t *len) google_protobuf_MessageOptions_serialize() argument 2582 google_protobuf_MessageOptions_has_message_set_wire_format(const google_protobuf_MessageOptions *msg) google_protobuf_MessageOptions_has_message_set_wire_format() argument 2583 google_protobuf_MessageOptions_message_set_wire_format(const google_protobuf_MessageOptions *msg) google_protobuf_MessageOptions_message_set_wire_format() argument 2584 google_protobuf_MessageOptions_has_no_standard_descriptor_accessor(const google_protobuf_MessageOptions *msg) google_protobuf_MessageOptions_has_no_standard_descriptor_accessor() argument 2585 google_protobuf_MessageOptions_no_standard_descriptor_accessor(const google_protobuf_MessageOptions *msg) google_protobuf_MessageOptions_no_standard_descriptor_accessor() argument 2586 google_protobuf_MessageOptions_has_deprecated(const google_protobuf_MessageOptions *msg) google_protobuf_MessageOptions_has_deprecated() argument 2587 google_protobuf_MessageOptions_deprecated(const google_protobuf_MessageOptions *msg) google_protobuf_MessageOptions_deprecated() argument 2588 google_protobuf_MessageOptions_has_map_entry(const google_protobuf_MessageOptions *msg) google_protobuf_MessageOptions_has_map_entry() argument 2589 google_protobuf_MessageOptions_map_entry(const google_protobuf_MessageOptions *msg) google_protobuf_MessageOptions_map_entry() argument 2590 google_protobuf_MessageOptions_has_uninterpreted_option(const google_protobuf_MessageOptions *msg) google_protobuf_MessageOptions_has_uninterpreted_option() argument 2591 google_protobuf_MessageOptions_uninterpreted_option(const google_protobuf_MessageOptions *msg, size_t *len) google_protobuf_MessageOptions_uninterpreted_option() argument 2593 google_protobuf_MessageOptions_set_message_set_wire_format(google_protobuf_MessageOptions *msg, bool value) google_protobuf_MessageOptions_set_message_set_wire_format() argument 2597 google_protobuf_MessageOptions_set_no_standard_descriptor_accessor(google_protobuf_MessageOptions *msg, bool value) google_protobuf_MessageOptions_set_no_standard_descriptor_accessor() argument 2601 google_protobuf_MessageOptions_set_deprecated(google_protobuf_MessageOptions *msg, bool value) google_protobuf_MessageOptions_set_deprecated() argument 2605 google_protobuf_MessageOptions_set_map_entry(google_protobuf_MessageOptions *msg, bool value) google_protobuf_MessageOptions_set_map_entry() argument 2609 google_protobuf_MessageOptions_mutable_uninterpreted_option(google_protobuf_MessageOptions *msg, size_t *len) google_protobuf_MessageOptions_mutable_uninterpreted_option() argument 2612 google_protobuf_MessageOptions_resize_uninterpreted_option(google_protobuf_MessageOptions *msg, size_t len, upb_arena *arena) google_protobuf_MessageOptions_resize_uninterpreted_option() argument 2615 google_protobuf_MessageOptions_add_uninterpreted_option(google_protobuf_MessageOptions *msg, upb_arena *arena) google_protobuf_MessageOptions_add_uninterpreted_option() argument 2633 google_protobuf_FieldOptions_serialize(const google_protobuf_FieldOptions *msg, upb_arena *arena, size_t *len) google_protobuf_FieldOptions_serialize() argument 2637 google_protobuf_FieldOptions_has_ctype(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_has_ctype() argument 2638 google_protobuf_FieldOptions_ctype(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_ctype() argument 2639 google_protobuf_FieldOptions_has_packed(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_has_packed() argument 2640 google_protobuf_FieldOptions_packed(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_packed() argument 2641 google_protobuf_FieldOptions_has_deprecated(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_has_deprecated() argument 2642 google_protobuf_FieldOptions_deprecated(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_deprecated() argument 2643 google_protobuf_FieldOptions_has_lazy(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_has_lazy() argument 2644 google_protobuf_FieldOptions_lazy(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_lazy() argument 2645 google_protobuf_FieldOptions_has_jstype(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_has_jstype() argument 2646 google_protobuf_FieldOptions_jstype(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_jstype() argument 2647 google_protobuf_FieldOptions_has_weak(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_has_weak() argument 2648 google_protobuf_FieldOptions_weak(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_weak() argument 2649 google_protobuf_FieldOptions_has_uninterpreted_option(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_has_uninterpreted_option() argument 2650 google_protobuf_FieldOptions_uninterpreted_option(const google_protobuf_FieldOptions *msg, size_t *len) google_protobuf_FieldOptions_uninterpreted_option() argument 2652 google_protobuf_FieldOptions_set_ctype(google_protobuf_FieldOptions *msg, int32_t value) google_protobuf_FieldOptions_set_ctype() argument 2656 google_protobuf_FieldOptions_set_packed(google_protobuf_FieldOptions *msg, bool value) google_protobuf_FieldOptions_set_packed() argument 2660 google_protobuf_FieldOptions_set_deprecated(google_protobuf_FieldOptions *msg, bool value) google_protobuf_FieldOptions_set_deprecated() argument 2664 google_protobuf_FieldOptions_set_lazy(google_protobuf_FieldOptions *msg, bool value) google_protobuf_FieldOptions_set_lazy() argument 2668 google_protobuf_FieldOptions_set_jstype(google_protobuf_FieldOptions *msg, int32_t value) google_protobuf_FieldOptions_set_jstype() argument 2672 google_protobuf_FieldOptions_set_weak(google_protobuf_FieldOptions *msg, bool value) google_protobuf_FieldOptions_set_weak() argument 2676 google_protobuf_FieldOptions_mutable_uninterpreted_option(google_protobuf_FieldOptions *msg, size_t *len) google_protobuf_FieldOptions_mutable_uninterpreted_option() argument 2679 google_protobuf_FieldOptions_resize_uninterpreted_option(google_protobuf_FieldOptions *msg, size_t len, upb_arena *arena) google_protobuf_FieldOptions_resize_uninterpreted_option() argument 2682 google_protobuf_FieldOptions_add_uninterpreted_option(google_protobuf_FieldOptions *msg, upb_arena *arena) google_protobuf_FieldOptions_add_uninterpreted_option() argument 2700 google_protobuf_OneofOptions_serialize(const google_protobuf_OneofOptions *msg, upb_arena *arena, size_t *len) google_protobuf_OneofOptions_serialize() argument 2704 google_protobuf_OneofOptions_has_uninterpreted_option(const google_protobuf_OneofOptions *msg) google_protobuf_OneofOptions_has_uninterpreted_option() argument 2705 google_protobuf_OneofOptions_uninterpreted_option(const google_protobuf_OneofOptions *msg, size_t *len) google_protobuf_OneofOptions_uninterpreted_option() argument 2707 google_protobuf_OneofOptions_mutable_uninterpreted_option(google_protobuf_OneofOptions *msg, size_t *len) google_protobuf_OneofOptions_mutable_uninterpreted_option() argument 2710 google_protobuf_OneofOptions_resize_uninterpreted_option(google_protobuf_OneofOptions *msg, size_t len, upb_arena *arena) google_protobuf_OneofOptions_resize_uninterpreted_option() argument 2713 google_protobuf_OneofOptions_add_uninterpreted_option(google_protobuf_OneofOptions *msg, upb_arena *arena) google_protobuf_OneofOptions_add_uninterpreted_option() argument 2731 google_protobuf_EnumOptions_serialize(const google_protobuf_EnumOptions *msg, upb_arena *arena, size_t *len) google_protobuf_EnumOptions_serialize() argument 2735 google_protobuf_EnumOptions_has_allow_alias(const google_protobuf_EnumOptions *msg) google_protobuf_EnumOptions_has_allow_alias() argument 2736 google_protobuf_EnumOptions_allow_alias(const google_protobuf_EnumOptions *msg) google_protobuf_EnumOptions_allow_alias() argument 2737 google_protobuf_EnumOptions_has_deprecated(const google_protobuf_EnumOptions *msg) google_protobuf_EnumOptions_has_deprecated() argument 2738 google_protobuf_EnumOptions_deprecated(const google_protobuf_EnumOptions *msg) google_protobuf_EnumOptions_deprecated() argument 2739 google_protobuf_EnumOptions_has_uninterpreted_option(const google_protobuf_EnumOptions *msg) google_protobuf_EnumOptions_has_uninterpreted_option() argument 2740 google_protobuf_EnumOptions_uninterpreted_option(const google_protobuf_EnumOptions *msg, size_t *len) google_protobuf_EnumOptions_uninterpreted_option() argument 2742 google_protobuf_EnumOptions_set_allow_alias(google_protobuf_EnumOptions *msg, bool value) google_protobuf_EnumOptions_set_allow_alias() argument 2746 google_protobuf_EnumOptions_set_deprecated(google_protobuf_EnumOptions *msg, bool value) google_protobuf_EnumOptions_set_deprecated() argument 2750 google_protobuf_EnumOptions_mutable_uninterpreted_option(google_protobuf_EnumOptions *msg, size_t *len) google_protobuf_EnumOptions_mutable_uninterpreted_option() argument 2753 google_protobuf_EnumOptions_resize_uninterpreted_option(google_protobuf_EnumOptions *msg, size_t len, upb_arena *arena) google_protobuf_EnumOptions_resize_uninterpreted_option() argument 2756 google_protobuf_EnumOptions_add_uninterpreted_option(google_protobuf_EnumOptions *msg, upb_arena *arena) google_protobuf_EnumOptions_add_uninterpreted_option() argument 2774 google_protobuf_EnumValueOptions_serialize(const google_protobuf_EnumValueOptions *msg, upb_arena *arena, size_t *len) google_protobuf_EnumValueOptions_serialize() argument 2778 google_protobuf_EnumValueOptions_has_deprecated(const google_protobuf_EnumValueOptions *msg) google_protobuf_EnumValueOptions_has_deprecated() argument 2779 google_protobuf_EnumValueOptions_deprecated(const google_protobuf_EnumValueOptions *msg) google_protobuf_EnumValueOptions_deprecated() argument 2780 google_protobuf_EnumValueOptions_has_uninterpreted_option(const google_protobuf_EnumValueOptions *msg) google_protobuf_EnumValueOptions_has_uninterpreted_option() argument 2781 google_protobuf_EnumValueOptions_uninterpreted_option(const google_protobuf_EnumValueOptions *msg, size_t *len) google_protobuf_EnumValueOptions_uninterpreted_option() argument 2783 google_protobuf_EnumValueOptions_set_deprecated(google_protobuf_EnumValueOptions *msg, bool value) google_protobuf_EnumValueOptions_set_deprecated() argument 2787 google_protobuf_EnumValueOptions_mutable_uninterpreted_option(google_protobuf_EnumValueOptions *msg, size_t *len) google_protobuf_EnumValueOptions_mutable_uninterpreted_option() argument 2790 google_protobuf_EnumValueOptions_resize_uninterpreted_option(google_protobuf_EnumValueOptions *msg, size_t len, upb_arena *arena) google_protobuf_EnumValueOptions_resize_uninterpreted_option() argument 2793 google_protobuf_EnumValueOptions_add_uninterpreted_option(google_protobuf_EnumValueOptions *msg, upb_arena *arena) google_protobuf_EnumValueOptions_add_uninterpreted_option() argument 2811 google_protobuf_ServiceOptions_serialize(const google_protobuf_ServiceOptions *msg, upb_arena *arena, size_t *len) google_protobuf_ServiceOptions_serialize() argument 2815 google_protobuf_ServiceOptions_has_deprecated(const google_protobuf_ServiceOptions *msg) google_protobuf_ServiceOptions_has_deprecated() argument 2816 google_protobuf_ServiceOptions_deprecated(const google_protobuf_ServiceOptions *msg) google_protobuf_ServiceOptions_deprecated() argument 2817 google_protobuf_ServiceOptions_has_uninterpreted_option(const google_protobuf_ServiceOptions *msg) google_protobuf_ServiceOptions_has_uninterpreted_option() argument 2818 google_protobuf_ServiceOptions_uninterpreted_option(const google_protobuf_ServiceOptions *msg, size_t *len) google_protobuf_ServiceOptions_uninterpreted_option() argument 2820 google_protobuf_ServiceOptions_set_deprecated(google_protobuf_ServiceOptions *msg, bool value) google_protobuf_ServiceOptions_set_deprecated() argument 2824 google_protobuf_ServiceOptions_mutable_uninterpreted_option(google_protobuf_ServiceOptions *msg, size_t *len) google_protobuf_ServiceOptions_mutable_uninterpreted_option() argument 2827 google_protobuf_ServiceOptions_resize_uninterpreted_option(google_protobuf_ServiceOptions *msg, size_t len, upb_arena *arena) google_protobuf_ServiceOptions_resize_uninterpreted_option() argument 2830 google_protobuf_ServiceOptions_add_uninterpreted_option(google_protobuf_ServiceOptions *msg, upb_arena *arena) google_protobuf_ServiceOptions_add_uninterpreted_option() argument 2848 google_protobuf_MethodOptions_serialize(const google_protobuf_MethodOptions *msg, upb_arena *arena, size_t *len) google_protobuf_MethodOptions_serialize() argument 2852 google_protobuf_MethodOptions_has_deprecated(const google_protobuf_MethodOptions *msg) google_protobuf_MethodOptions_has_deprecated() argument 2853 google_protobuf_MethodOptions_deprecated(const google_protobuf_MethodOptions *msg) google_protobuf_MethodOptions_deprecated() argument 2854 google_protobuf_MethodOptions_has_idempotency_level(const google_protobuf_MethodOptions *msg) google_protobuf_MethodOptions_has_idempotency_level() argument 2855 google_protobuf_MethodOptions_idempotency_level(const google_protobuf_MethodOptions *msg) google_protobuf_MethodOptions_idempotency_level() argument 2856 google_protobuf_MethodOptions_has_uninterpreted_option(const google_protobuf_MethodOptions *msg) google_protobuf_MethodOptions_has_uninterpreted_option() argument 2857 google_protobuf_MethodOptions_uninterpreted_option(const google_protobuf_MethodOptions *msg, size_t *len) google_protobuf_MethodOptions_uninterpreted_option() argument 2859 google_protobuf_MethodOptions_set_deprecated(google_protobuf_MethodOptions *msg, bool value) google_protobuf_MethodOptions_set_deprecated() argument 2863 google_protobuf_MethodOptions_set_idempotency_level(google_protobuf_MethodOptions *msg, int32_t value) google_protobuf_MethodOptions_set_idempotency_level() argument 2867 google_protobuf_MethodOptions_mutable_uninterpreted_option(google_protobuf_MethodOptions *msg, size_t *len) google_protobuf_MethodOptions_mutable_uninterpreted_option() argument 2870 google_protobuf_MethodOptions_resize_uninterpreted_option(google_protobuf_MethodOptions *msg, size_t len, upb_arena *arena) google_protobuf_MethodOptions_resize_uninterpreted_option() argument 2873 google_protobuf_MethodOptions_add_uninterpreted_option(google_protobuf_MethodOptions *msg, upb_arena *arena) google_protobuf_MethodOptions_add_uninterpreted_option() argument 2891 google_protobuf_UninterpretedOption_serialize(const google_protobuf_UninterpretedOption *msg, upb_arena *arena, size_t *len) google_protobuf_UninterpretedOption_serialize() argument 2895 google_protobuf_UninterpretedOption_has_name(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_has_name() argument 2896 google_protobuf_UninterpretedOption_name(const google_protobuf_UninterpretedOption *msg, size_t *len) google_protobuf_UninterpretedOption_name() argument 2897 google_protobuf_UninterpretedOption_has_identifier_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_has_identifier_value() argument 2898 google_protobuf_UninterpretedOption_identifier_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_identifier_value() argument 2899 google_protobuf_UninterpretedOption_has_positive_int_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_has_positive_int_value() argument 2900 google_protobuf_UninterpretedOption_positive_int_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_positive_int_value() argument 2901 google_protobuf_UninterpretedOption_has_negative_int_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_has_negative_int_value() argument 2902 google_protobuf_UninterpretedOption_negative_int_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_negative_int_value() argument 2903 google_protobuf_UninterpretedOption_has_double_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_has_double_value() argument 2904 google_protobuf_UninterpretedOption_double_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_double_value() argument 2905 google_protobuf_UninterpretedOption_has_string_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_has_string_value() argument 2906 google_protobuf_UninterpretedOption_string_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_string_value() argument 2907 google_protobuf_UninterpretedOption_has_aggregate_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_has_aggregate_value() argument 2908 google_protobuf_UninterpretedOption_aggregate_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_aggregate_value() argument 2910 google_protobuf_UninterpretedOption_mutable_name(google_protobuf_UninterpretedOption *msg, size_t *len) google_protobuf_UninterpretedOption_mutable_name() argument 2913 google_protobuf_UninterpretedOption_resize_name(google_protobuf_UninterpretedOption *msg, size_t len, upb_arena *arena) google_protobuf_UninterpretedOption_resize_name() argument 2916 google_protobuf_UninterpretedOption_add_name(google_protobuf_UninterpretedOption *msg, upb_arena *arena) google_protobuf_UninterpretedOption_add_name() argument 2923 google_protobuf_UninterpretedOption_set_identifier_value(google_protobuf_UninterpretedOption *msg, upb_strview value) google_protobuf_UninterpretedOption_set_identifier_value() argument 2927 google_protobuf_UninterpretedOption_set_positive_int_value(google_protobuf_UninterpretedOption *msg, uint64_t value) google_protobuf_UninterpretedOption_set_positive_int_value() argument 2931 google_protobuf_UninterpretedOption_set_negative_int_value(google_protobuf_UninterpretedOption *msg, int64_t value) google_protobuf_UninterpretedOption_set_negative_int_value() argument 2935 google_protobuf_UninterpretedOption_set_double_value(google_protobuf_UninterpretedOption *msg, double value) google_protobuf_UninterpretedOption_set_double_value() argument 2939 google_protobuf_UninterpretedOption_set_string_value(google_protobuf_UninterpretedOption *msg, upb_strview value) google_protobuf_UninterpretedOption_set_string_value() argument 2943 google_protobuf_UninterpretedOption_set_aggregate_value(google_protobuf_UninterpretedOption *msg, upb_strview value) google_protobuf_UninterpretedOption_set_aggregate_value() argument 2958 google_protobuf_UninterpretedOption_NamePart_serialize(const google_protobuf_UninterpretedOption_NamePart *msg, upb_arena *arena, size_t *len) google_protobuf_UninterpretedOption_NamePart_serialize() argument 2962 google_protobuf_UninterpretedOption_NamePart_has_name_part(const google_protobuf_UninterpretedOption_NamePart *msg) google_protobuf_UninterpretedOption_NamePart_has_name_part() argument 2963 google_protobuf_UninterpretedOption_NamePart_name_part(const google_protobuf_UninterpretedOption_NamePart *msg) google_protobuf_UninterpretedOption_NamePart_name_part() argument 2964 google_protobuf_UninterpretedOption_NamePart_has_is_extension(const google_protobuf_UninterpretedOption_NamePart *msg) google_protobuf_UninterpretedOption_NamePart_has_is_extension() argument 2965 google_protobuf_UninterpretedOption_NamePart_is_extension(const google_protobuf_UninterpretedOption_NamePart *msg) google_protobuf_UninterpretedOption_NamePart_is_extension() argument 2967 google_protobuf_UninterpretedOption_NamePart_set_name_part(google_protobuf_UninterpretedOption_NamePart *msg, upb_strview value) google_protobuf_UninterpretedOption_NamePart_set_name_part() argument 2971 google_protobuf_UninterpretedOption_NamePart_set_is_extension(google_protobuf_UninterpretedOption_NamePart *msg, bool value) google_protobuf_UninterpretedOption_NamePart_set_is_extension() argument 2986 google_protobuf_SourceCodeInfo_serialize(const google_protobuf_SourceCodeInfo *msg, upb_arena *arena, size_t *len) google_protobuf_SourceCodeInfo_serialize() argument 2990 google_protobuf_SourceCodeInfo_has_location(const google_protobuf_SourceCodeInfo *msg) google_protobuf_SourceCodeInfo_has_location() argument 2991 google_protobuf_SourceCodeInfo_location(const google_protobuf_SourceCodeInfo *msg, size_t *len) google_protobuf_SourceCodeInfo_location() argument 2993 google_protobuf_SourceCodeInfo_mutable_location(google_protobuf_SourceCodeInfo *msg, size_t *len) google_protobuf_SourceCodeInfo_mutable_location() argument 2996 google_protobuf_SourceCodeInfo_resize_location(google_protobuf_SourceCodeInfo *msg, size_t len, upb_arena *arena) google_protobuf_SourceCodeInfo_resize_location() argument 2999 google_protobuf_SourceCodeInfo_add_location(google_protobuf_SourceCodeInfo *msg, upb_arena *arena) google_protobuf_SourceCodeInfo_add_location() argument 3017 google_protobuf_SourceCodeInfo_Location_serialize(const google_protobuf_SourceCodeInfo_Location *msg, upb_arena *arena, size_t *len) google_protobuf_SourceCodeInfo_Location_serialize() argument 3021 google_protobuf_SourceCodeInfo_Location_path(const google_protobuf_SourceCodeInfo_Location *msg, size_t *len) google_protobuf_SourceCodeInfo_Location_path() argument 3022 google_protobuf_SourceCodeInfo_Location_span(const google_protobuf_SourceCodeInfo_Location *msg, size_t *len) google_protobuf_SourceCodeInfo_Location_span() argument 3023 google_protobuf_SourceCodeInfo_Location_has_leading_comments(const google_protobuf_SourceCodeInfo_Location *msg) google_protobuf_SourceCodeInfo_Location_has_leading_comments() argument 3024 google_protobuf_SourceCodeInfo_Location_leading_comments(const google_protobuf_SourceCodeInfo_Location *msg) google_protobuf_SourceCodeInfo_Location_leading_comments() argument 3025 google_protobuf_SourceCodeInfo_Location_has_trailing_comments(const google_protobuf_SourceCodeInfo_Location *msg) google_protobuf_SourceCodeInfo_Location_has_trailing_comments() argument 3026 google_protobuf_SourceCodeInfo_Location_trailing_comments(const google_protobuf_SourceCodeInfo_Location *msg) google_protobuf_SourceCodeInfo_Location_trailing_comments() argument 3027 google_protobuf_SourceCodeInfo_Location_leading_detached_comments(const google_protobuf_SourceCodeInfo_Location *msg, size_t *len) google_protobuf_SourceCodeInfo_Location_leading_detached_comments() argument 3029 google_protobuf_SourceCodeInfo_Location_mutable_path(google_protobuf_SourceCodeInfo_Location *msg, size_t *len) google_protobuf_SourceCodeInfo_Location_mutable_path() argument 3032 google_protobuf_SourceCodeInfo_Location_resize_path(google_protobuf_SourceCodeInfo_Location *msg, size_t len, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_resize_path() argument 3035 google_protobuf_SourceCodeInfo_Location_add_path(google_protobuf_SourceCodeInfo_Location *msg, int32_t val, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_add_path() argument 3039 google_protobuf_SourceCodeInfo_Location_mutable_span(google_protobuf_SourceCodeInfo_Location *msg, size_t *len) google_protobuf_SourceCodeInfo_Location_mutable_span() argument 3042 google_protobuf_SourceCodeInfo_Location_resize_span(google_protobuf_SourceCodeInfo_Location *msg, size_t len, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_resize_span() argument 3045 google_protobuf_SourceCodeInfo_Location_add_span(google_protobuf_SourceCodeInfo_Location *msg, int32_t val, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_add_span() argument 3049 google_protobuf_SourceCodeInfo_Location_set_leading_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_strview value) google_protobuf_SourceCodeInfo_Location_set_leading_comments() argument 3053 google_protobuf_SourceCodeInfo_Location_set_trailing_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_strview value) google_protobuf_SourceCodeInfo_Location_set_trailing_comments() argument 3057 google_protobuf_SourceCodeInfo_Location_mutable_leading_detached_comments(google_protobuf_SourceCodeInfo_Location *msg, size_t *len) google_protobuf_SourceCodeInfo_Location_mutable_leading_detached_comments() argument 3060 google_protobuf_SourceCodeInfo_Location_resize_leading_detached_comments(google_protobuf_SourceCodeInfo_Location *msg, size_t len, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_resize_leading_detached_comments() argument 3063 google_protobuf_SourceCodeInfo_Location_add_leading_detached_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_strview val, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_add_leading_detached_comments() argument 3078 google_protobuf_GeneratedCodeInfo_serialize(const google_protobuf_GeneratedCodeInfo *msg, upb_arena *arena, size_t *len) google_protobuf_GeneratedCodeInfo_serialize() argument 3082 google_protobuf_GeneratedCodeInfo_has_annotation(const google_protobuf_GeneratedCodeInfo *msg) google_protobuf_GeneratedCodeInfo_has_annotation() argument 3083 google_protobuf_GeneratedCodeInfo_annotation(const google_protobuf_GeneratedCodeInfo *msg, size_t *len) google_protobuf_GeneratedCodeInfo_annotation() argument 3085 google_protobuf_GeneratedCodeInfo_mutable_annotation(google_protobuf_GeneratedCodeInfo *msg, size_t *len) google_protobuf_GeneratedCodeInfo_mutable_annotation() argument 3088 google_protobuf_GeneratedCodeInfo_resize_annotation(google_protobuf_GeneratedCodeInfo *msg, size_t len, upb_arena *arena) google_protobuf_GeneratedCodeInfo_resize_annotation() argument 3091 google_protobuf_GeneratedCodeInfo_add_annotation(google_protobuf_GeneratedCodeInfo *msg, upb_arena *arena) google_protobuf_GeneratedCodeInfo_add_annotation() argument 3109 google_protobuf_GeneratedCodeInfo_Annotation_serialize(const google_protobuf_GeneratedCodeInfo_Annotation *msg, upb_arena *arena, size_t *len) google_protobuf_GeneratedCodeInfo_Annotation_serialize() argument 3113 google_protobuf_GeneratedCodeInfo_Annotation_path(const google_protobuf_GeneratedCodeInfo_Annotation *msg, size_t *len) google_protobuf_GeneratedCodeInfo_Annotation_path() argument 3114 google_protobuf_GeneratedCodeInfo_Annotation_has_source_file(const google_protobuf_GeneratedCodeInfo_Annotation *msg) google_protobuf_GeneratedCodeInfo_Annotation_has_source_file() argument 3115 google_protobuf_GeneratedCodeInfo_Annotation_source_file(const google_protobuf_GeneratedCodeInfo_Annotation *msg) google_protobuf_GeneratedCodeInfo_Annotation_source_file() argument 3116 google_protobuf_GeneratedCodeInfo_Annotation_has_begin(const google_protobuf_GeneratedCodeInfo_Annotation *msg) google_protobuf_GeneratedCodeInfo_Annotation_has_begin() argument 3117 google_protobuf_GeneratedCodeInfo_Annotation_begin(const google_protobuf_GeneratedCodeInfo_Annotation *msg) google_protobuf_GeneratedCodeInfo_Annotation_begin() argument 3118 google_protobuf_GeneratedCodeInfo_Annotation_has_end(const google_protobuf_GeneratedCodeInfo_Annotation *msg) google_protobuf_GeneratedCodeInfo_Annotation_has_end() argument 3119 google_protobuf_GeneratedCodeInfo_Annotation_end(const google_protobuf_GeneratedCodeInfo_Annotation *msg) google_protobuf_GeneratedCodeInfo_Annotation_end() argument 3121 google_protobuf_GeneratedCodeInfo_Annotation_mutable_path(google_protobuf_GeneratedCodeInfo_Annotation *msg, size_t *len) google_protobuf_GeneratedCodeInfo_Annotation_mutable_path() argument 3124 google_protobuf_GeneratedCodeInfo_Annotation_resize_path(google_protobuf_GeneratedCodeInfo_Annotation *msg, size_t len, upb_arena *arena) google_protobuf_GeneratedCodeInfo_Annotation_resize_path() argument 3127 google_protobuf_GeneratedCodeInfo_Annotation_add_path(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t val, upb_arena *arena) google_protobuf_GeneratedCodeInfo_Annotation_add_path() argument 3131 google_protobuf_GeneratedCodeInfo_Annotation_set_source_file(google_protobuf_GeneratedCodeInfo_Annotation *msg, upb_strview value) google_protobuf_GeneratedCodeInfo_Annotation_set_source_file() argument 3135 google_protobuf_GeneratedCodeInfo_Annotation_set_begin(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) google_protobuf_GeneratedCodeInfo_Annotation_set_begin() argument 3139 google_protobuf_GeneratedCodeInfo_Annotation_set_end(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) google_protobuf_GeneratedCodeInfo_Annotation_set_end() argument 3657 upb_msg* msg; global() member [all...] |
/third_party/protobuf/js/binary/ |
H A D | proto_test.js | 104 * @param {proto.jspb.test.TestAllTypes} msg 106 function fillAllFields(msg) { 107 msg.setOptionalInt32(-42); 110 msg.setOptionalInt64(-0x7fffffff00000000); 111 msg.setOptionalUint32(0x80000000); 112 msg.setOptionalUint64(0xf000000000000000); 113 msg.setOptionalSint32(-100); 114 msg.setOptionalSint64(-0x8000000000000000); 115 msg.setOptionalFixed32(1234); 116 msg [all...] |
/third_party/protobuf/src/google/protobuf/ |
H A D | proto3_arena_unittest.cc | 201 protobuf_unittest::TestProto3Optional msg; in TEST() local 202 EXPECT_FALSE(msg.has_optional_int32()); in TEST() 203 msg.set_optional_int32(0); in TEST() 204 EXPECT_TRUE(msg.has_optional_int32()); in TEST() 207 msg.SerializeToString(&serialized); in TEST() 210 msg.clear_optional_int32(); in TEST() 211 EXPECT_FALSE(msg.has_optional_int32()); in TEST() 212 msg.SerializeToString(&serialized); in TEST() 234 protobuf_unittest::TestProto3Optional msg; in TEST() local 235 EXPECT_FALSE(msg in TEST() 254 protobuf_unittest::TestProto3Optional msg; TEST() local 296 SetAllFieldsZero(protobuf_unittest::TestProto3Optional* msg) SetAllFieldsZero() argument 318 SetAllFieldsNonZero(protobuf_unittest::TestProto3Optional* msg) SetAllFieldsNonZero() argument 339 TestAllFieldsZero(const protobuf_unittest::TestProto3Optional& msg) TestAllFieldsZero() argument 363 TestAllFieldsNonZero(const protobuf_unittest::TestProto3Optional& msg) TestAllFieldsNonZero() argument 383 TestAllFieldsSet(const protobuf_unittest::TestProto3Optional& msg, bool set) TestAllFieldsSet() argument 406 protobuf_unittest::TestProto3Optional msg; TEST() local 421 protobuf_unittest::TestProto3Optional msg; TEST() local 433 protobuf_unittest::TestProto3Optional msg; TEST() local 445 protobuf_unittest::TestProto3Optional msg; TEST() local 456 protobuf_unittest::TestProto3Optional msg; TEST() local 467 protobuf_unittest::TestProto3Optional msg; TEST() local [all...] |
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/ |
H A D | proto_test.js | 100 * @param {proto.jspb.test.TestAllTypes} msg 102 function fillAllFields(msg) { 103 msg.setOptionalInt32(-42); 106 msg.setOptionalInt64(-0x7fffffff00000000); 107 msg.setOptionalUint32(0x80000000); 108 msg.setOptionalUint64(0xf000000000000000); 109 msg.setOptionalSint32(-100); 110 msg.setOptionalSint64(-0x8000000000000000); 111 msg.setOptionalFixed32(1234); 112 msg [all...] |
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/ |
H A D | proto_test.js | 100 * @param {proto.jspb.test.TestAllTypes} msg 102 function fillAllFields(msg) { 103 msg.setOptionalInt32(-42); 106 msg.setOptionalInt64(-0x7fffffff00000000); 107 msg.setOptionalUint32(0x80000000); 108 msg.setOptionalUint64(0xf000000000000000); 109 msg.setOptionalSint32(-100); 110 msg.setOptionalSint64(-0x8000000000000000); 111 msg.setOptionalFixed32(1234); 112 msg [all...] |
/third_party/FreeBSD/sys/dev/usb/net/ |
H A D | if_urndis.c | 50 struct urndis_query_req *msg, uint16_t len, 53 struct urndis_set_req *msg, uint16_t len); 186 } msg; in urndis_attach() local 250 (void)memset_s(msg.ibuf.eaddr, sizeof(msg.ibuf.eaddr), 0, sizeof(msg.ibuf.eaddr)); in urndis_attach() 253 &msg.hdr.query, sizeof(msg.hdr.query) + sizeof(msg.ibuf.eaddr), in urndis_attach() 269 msg in urndis_attach() 504 const struct urndis_init_comp *msg; urndis_ctrl_handle_init() local 547 const struct urndis_query_comp *msg; urndis_ctrl_handle_query() local 595 const struct urndis_reset_comp *msg; urndis_ctrl_handle_reset() local 634 struct urndis_init_req msg; urndis_ctrl_init() local 672 struct urndis_halt_req msg; urndis_ctrl_halt() local 697 urndis_ctrl_query(struct urndis_softc *sc, uint32_t oid, struct urndis_query_req *msg, uint16_t len, const void **rbuf, uint16_t *rbufsz) urndis_ctrl_query() argument 744 urndis_ctrl_set(struct urndis_softc *sc, uint32_t oid, struct urndis_set_req *msg, uint16_t len) urndis_ctrl_set() argument 794 urndis_bulk_read(struct usb_xfer *xfer, struct urndis_packet_msg *msg, int offset) urndis_bulk_read() argument 840 struct urndis_packet_msg msg; urndis_bulk_read_callback() local 943 struct urndis_packet_msg msg; urndis_bulk_write_callback() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/ |
H A D | wps_attr_build.c | 21 int wps_build_public_key(struct wps_data *wps, struct wpabuf *msg) in wps_build_public_key() argument 81 wpabuf_put_be16(msg, ATTR_PUBLIC_KEY); in wps_build_public_key() 82 wpabuf_put_be16(msg, wpabuf_len(pubkey)); in wps_build_public_key() 83 wpabuf_put_buf(msg, pubkey); in wps_build_public_key() 97 int wps_build_req_type(struct wpabuf *msg, enum wps_request_type type) in wps_build_req_type() argument 100 wpabuf_put_be16(msg, ATTR_REQUEST_TYPE); in wps_build_req_type() 101 wpabuf_put_be16(msg, 1); in wps_build_req_type() 102 wpabuf_put_u8(msg, type); in wps_build_req_type() 107 int wps_build_resp_type(struct wpabuf *msg, enum wps_response_type type) in wps_build_resp_type() argument 110 wpabuf_put_be16(msg, ATTR_RESPONSE_TYP in wps_build_resp_type() 117 wps_build_config_methods(struct wpabuf *msg, u16 methods) wps_build_config_methods() argument 127 wps_build_uuid_e(struct wpabuf *msg, const u8 *uuid) wps_build_uuid_e() argument 139 wps_build_dev_password_id(struct wpabuf *msg, u16 id) wps_build_dev_password_id() argument 149 wps_build_config_error(struct wpabuf *msg, u16 err) wps_build_config_error() argument 159 wps_build_authenticator(struct wps_data *wps, struct wpabuf *msg) wps_build_authenticator() argument 189 wps_build_version(struct wpabuf *msg) wps_build_version() argument 206 wps_build_wfa_ext(struct wpabuf *msg, int req_to_enroll, const u8 *auth_macs, size_t auth_macs_count, u8 multi_ap_subelem) wps_build_wfa_ext() argument 274 wps_build_msg_type(struct wpabuf *msg, enum wps_msg_type msg_type) wps_build_msg_type() argument 284 wps_build_enrollee_nonce(struct wps_data *wps, struct wpabuf *msg) wps_build_enrollee_nonce() argument 294 wps_build_registrar_nonce(struct wps_data *wps, struct wpabuf *msg) wps_build_registrar_nonce() argument 304 wps_build_auth_type_flags(struct wps_data *wps, struct wpabuf *msg) wps_build_auth_type_flags() argument 328 wps_build_encr_type_flags(struct wps_data *wps, struct wpabuf *msg) wps_build_encr_type_flags() argument 349 wps_build_conn_type_flags(struct wps_data *wps, struct wpabuf *msg) wps_build_conn_type_flags() argument 359 wps_build_assoc_state(struct wps_data *wps, struct wpabuf *msg) wps_build_assoc_state() argument 369 wps_build_key_wrap_auth(struct wps_data *wps, struct wpabuf *msg) wps_build_key_wrap_auth() argument 384 wps_build_encr_settings(struct wps_data *wps, struct wpabuf *msg, struct wpabuf *plain) wps_build_encr_settings() argument 414 wps_build_oob_dev_pw(struct wpabuf *msg, u16 dev_pw_id, const struct wpabuf *pubkey, const u8 *dev_pw, size_t dev_pw_len) wps_build_oob_dev_pw() argument 486 wps_build_mac_addr(struct wpabuf *msg, const u8 *addr) wps_build_mac_addr() argument 497 wps_build_rf_bands_attr(struct wpabuf *msg, u8 rf_bands) wps_build_rf_bands_attr() argument 507 wps_build_ap_channel(struct wpabuf *msg, u16 ap_channel) wps_build_ap_channel() argument [all...] |
H A D | wps_dev_attr.c | 16 int wps_build_manufacturer(struct wps_device_data *dev, struct wpabuf *msg) in wps_build_manufacturer() argument 20 wpabuf_put_be16(msg, ATTR_MANUFACTURER); in wps_build_manufacturer() 29 wpabuf_put_be16(msg, 1); in wps_build_manufacturer() 30 wpabuf_put_u8(msg, ' '); in wps_build_manufacturer() 34 wpabuf_put_be16(msg, len); in wps_build_manufacturer() 35 wpabuf_put_data(msg, dev->manufacturer, len); in wps_build_manufacturer() 40 int wps_build_model_name(struct wps_device_data *dev, struct wpabuf *msg) in wps_build_model_name() argument 44 wpabuf_put_be16(msg, ATTR_MODEL_NAME); in wps_build_model_name() 53 wpabuf_put_be16(msg, 1); in wps_build_model_name() 54 wpabuf_put_u8(msg, ' '); in wps_build_model_name() 64 wps_build_model_number(struct wps_device_data *dev, struct wpabuf *msg) wps_build_model_number() argument 88 wps_build_serial_number(struct wps_device_data *dev, struct wpabuf *msg) wps_build_serial_number() argument 112 wps_build_primary_dev_type(struct wps_device_data *dev, struct wpabuf *msg) wps_build_primary_dev_type() argument 122 wps_build_secondary_dev_type(struct wps_device_data *dev, struct wpabuf *msg) wps_build_secondary_dev_type() argument 138 wps_build_req_dev_type(struct wps_device_data *dev, struct wpabuf *msg, unsigned int num_req_dev_types, const u8 *req_dev_types) wps_build_req_dev_type() argument 158 wps_build_dev_name(struct wps_device_data *dev, struct wpabuf *msg) wps_build_dev_name() argument 182 wps_build_device_attrs(struct wps_device_data *dev, struct wpabuf *msg) wps_build_device_attrs() argument 195 wps_build_os_version(struct wps_device_data *dev, struct wpabuf *msg) wps_build_os_version() argument 205 wps_build_vendor_ext_m1(struct wps_device_data *dev, struct wpabuf *msg) wps_build_vendor_ext_m1() argument 219 wps_build_rf_bands(struct wps_device_data *dev, struct wpabuf *msg, u8 rf_band) wps_build_rf_bands() argument 226 wps_build_vendor_ext(struct wps_device_data *dev, struct wpabuf *msg) wps_build_vendor_ext() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/ |
H A D | wps_attr_build.c | 21 int wps_build_public_key(struct wps_data *wps, struct wpabuf *msg) in wps_build_public_key() argument 81 wpabuf_put_be16(msg, ATTR_PUBLIC_KEY); in wps_build_public_key() 82 wpabuf_put_be16(msg, wpabuf_len(pubkey)); in wps_build_public_key() 83 wpabuf_put_buf(msg, pubkey); in wps_build_public_key() 97 int wps_build_req_type(struct wpabuf *msg, enum wps_request_type type) in wps_build_req_type() argument 100 wpabuf_put_be16(msg, ATTR_REQUEST_TYPE); in wps_build_req_type() 101 wpabuf_put_be16(msg, 1); in wps_build_req_type() 102 wpabuf_put_u8(msg, type); in wps_build_req_type() 107 int wps_build_resp_type(struct wpabuf *msg, enum wps_response_type type) in wps_build_resp_type() argument 110 wpabuf_put_be16(msg, ATTR_RESPONSE_TYP in wps_build_resp_type() 117 wps_build_config_methods(struct wpabuf *msg, u16 methods) wps_build_config_methods() argument 127 wps_build_uuid_e(struct wpabuf *msg, const u8 *uuid) wps_build_uuid_e() argument 139 wps_build_dev_password_id(struct wpabuf *msg, u16 id) wps_build_dev_password_id() argument 149 wps_build_config_error(struct wpabuf *msg, u16 err) wps_build_config_error() argument 159 wps_build_authenticator(struct wps_data *wps, struct wpabuf *msg) wps_build_authenticator() argument 191 wps_build_version(struct wpabuf *msg) wps_build_version() argument 208 wps_build_wfa_ext(struct wpabuf *msg, int req_to_enroll, const u8 *auth_macs, size_t auth_macs_count, u8 multi_ap_subelem) wps_build_wfa_ext() argument 276 wps_build_msg_type(struct wpabuf *msg, enum wps_msg_type msg_type) wps_build_msg_type() argument 286 wps_build_enrollee_nonce(struct wps_data *wps, struct wpabuf *msg) wps_build_enrollee_nonce() argument 296 wps_build_registrar_nonce(struct wps_data *wps, struct wpabuf *msg) wps_build_registrar_nonce() argument 306 wps_build_auth_type_flags(struct wps_data *wps, struct wpabuf *msg) wps_build_auth_type_flags() argument 333 wps_build_encr_type_flags(struct wps_data *wps, struct wpabuf *msg) wps_build_encr_type_flags() argument 357 wps_build_conn_type_flags(struct wps_data *wps, struct wpabuf *msg) wps_build_conn_type_flags() argument 367 wps_build_assoc_state(struct wps_data *wps, struct wpabuf *msg) wps_build_assoc_state() argument 377 wps_build_key_wrap_auth(struct wps_data *wps, struct wpabuf *msg) wps_build_key_wrap_auth() argument 393 wps_build_encr_settings(struct wps_data *wps, struct wpabuf *msg, struct wpabuf *plain) wps_build_encr_settings() argument 423 wps_build_oob_dev_pw(struct wpabuf *msg, u16 dev_pw_id, const struct wpabuf *pubkey, const u8 *dev_pw, size_t dev_pw_len) wps_build_oob_dev_pw() argument 495 wps_build_mac_addr(struct wpabuf *msg, const u8 *addr) wps_build_mac_addr() argument 506 wps_build_rf_bands_attr(struct wpabuf *msg, u8 rf_bands) wps_build_rf_bands_attr() argument 516 wps_build_ap_channel(struct wpabuf *msg, u16 ap_channel) wps_build_ap_channel() argument [all...] |
H A D | wps_dev_attr.c | 16 int wps_build_manufacturer(struct wps_device_data *dev, struct wpabuf *msg) in wps_build_manufacturer() argument 20 wpabuf_put_be16(msg, ATTR_MANUFACTURER); in wps_build_manufacturer() 29 wpabuf_put_be16(msg, 1); in wps_build_manufacturer() 30 wpabuf_put_u8(msg, ' '); in wps_build_manufacturer() 34 wpabuf_put_be16(msg, len); in wps_build_manufacturer() 35 wpabuf_put_data(msg, dev->manufacturer, len); in wps_build_manufacturer() 40 int wps_build_model_name(struct wps_device_data *dev, struct wpabuf *msg) in wps_build_model_name() argument 44 wpabuf_put_be16(msg, ATTR_MODEL_NAME); in wps_build_model_name() 53 wpabuf_put_be16(msg, 1); in wps_build_model_name() 54 wpabuf_put_u8(msg, ' '); in wps_build_model_name() 64 wps_build_model_number(struct wps_device_data *dev, struct wpabuf *msg) wps_build_model_number() argument 88 wps_build_serial_number(struct wps_device_data *dev, struct wpabuf *msg) wps_build_serial_number() argument 112 wps_build_primary_dev_type(struct wps_device_data *dev, struct wpabuf *msg) wps_build_primary_dev_type() argument 122 wps_build_secondary_dev_type(struct wps_device_data *dev, struct wpabuf *msg) wps_build_secondary_dev_type() argument 138 wps_build_req_dev_type(struct wps_device_data *dev, struct wpabuf *msg, unsigned int num_req_dev_types, const u8 *req_dev_types) wps_build_req_dev_type() argument 158 wps_build_dev_name(struct wps_device_data *dev, struct wpabuf *msg) wps_build_dev_name() argument 182 wps_build_device_attrs(struct wps_device_data *dev, struct wpabuf *msg) wps_build_device_attrs() argument 195 wps_build_os_version(struct wps_device_data *dev, struct wpabuf *msg) wps_build_os_version() argument 205 wps_build_vendor_ext_m1(struct wps_device_data *dev, struct wpabuf *msg) wps_build_vendor_ext_m1() argument 219 wps_build_rf_bands(struct wps_device_data *dev, struct wpabuf *msg, u8 rf_band) wps_build_rf_bands() argument 226 wps_build_vendor_ext(struct wps_device_data *dev, struct wpabuf *msg) wps_build_vendor_ext() argument 245 wps_build_application_ext(struct wps_device_data *dev, struct wpabuf *msg) wps_build_application_ext() argument [all...] |
/third_party/python/Lib/test/test_email/ |
H A D | test_email.py | 59 msg = self._msgobj('msg_20.txt') 60 eq(msg.get_all('cc'), ['ccc@zzz.org', 'ddd@zzz.org', 'eee@zzz.org']) 61 eq(msg.get_all('xx', 'n/a'), 'n/a') 65 msg = Message() 66 eq(msg.get_charset(), None) 68 msg.set_charset(charset) 69 eq(msg['mime-version'], '1.0') 70 eq(msg.get_content_type(), 'text/plain') 71 eq(msg['content-type'], 'text/plain; charset="iso-8859-1"') 72 eq(msg 3004 msg = email.message_from_file(fp, MyMessage) global() variable in TestMiscellaneous.test_message_from_file_with_class.MyMessage 3008 msg = email.message_from_file(fp, MyMessage) global() variable in TestMiscellaneous.test_message_from_file_with_class.MyMessage [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/p2p/ |
H A D | p2p_parse.c | 37 struct p2p_message *msg) in p2p_parse_attribute() 50 msg->capability = data; in p2p_parse_attribute() 61 msg->device_id = data; in p2p_parse_attribute() 63 MAC2STR(msg->device_id)); in p2p_parse_attribute() 71 msg->go_intent = data; in p2p_parse_attribute() 81 msg->status = data; in p2p_parse_attribute() 95 msg->listen_channel = data; in p2p_parse_attribute() 112 msg->operating_channel = data; in p2p_parse_attribute() 124 msg->channel_list = data; in p2p_parse_attribute() 125 msg in p2p_parse_attribute() 36 p2p_parse_attribute(u8 id, const u8 *data, u16 len, struct p2p_message *msg) p2p_parse_attribute() argument 420 p2p_parse_p2p_ie(const struct wpabuf *buf, struct p2p_message *msg) p2p_parse_p2p_ie() argument 456 p2p_parse_wps_ie(const struct wpabuf *buf, struct p2p_message *msg) p2p_parse_wps_ie() argument 525 p2p_parse_ies(const u8 *data, size_t len, struct p2p_message *msg) p2p_parse_ies() argument 579 p2p_parse(const u8 *data, size_t len, struct p2p_message *msg) p2p_parse() argument 594 p2p_parse_ies_separate(const u8 *wsc, size_t wsc_len, const u8 *p2p, size_t p2p_len, struct p2p_message *msg) p2p_parse_ies_separate() argument 625 p2p_parse_free(struct p2p_message *msg) p2p_parse_free() argument 785 struct p2p_message msg; p2p_attr_text() local 848 struct p2p_message msg; p2p_get_cross_connect_disallowed() local 863 struct p2p_message msg; p2p_get_group_capab() local 878 struct p2p_message msg; p2p_get_go_dev_addr() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/p2p/ |
H A D | p2p_parse.c | 37 struct p2p_message *msg) in p2p_parse_attribute() 50 msg->capability = data; in p2p_parse_attribute() 61 msg->device_id = data; in p2p_parse_attribute() 63 MAC2STR_SEC(msg->device_id)); in p2p_parse_attribute() 71 msg->go_intent = data; in p2p_parse_attribute() 81 msg->status = data; in p2p_parse_attribute() 95 msg->listen_channel = data; in p2p_parse_attribute() 112 msg->operating_channel = data; in p2p_parse_attribute() 123 msg->channel_list = data; in p2p_parse_attribute() 124 msg in p2p_parse_attribute() 36 p2p_parse_attribute(u8 id, const u8 *data, u16 len, struct p2p_message *msg) p2p_parse_attribute() argument 418 p2p_parse_p2p_ie(const struct wpabuf *buf, struct p2p_message *msg) p2p_parse_p2p_ie() argument 454 p2p_parse_wps_ie(const struct wpabuf *buf, struct p2p_message *msg) p2p_parse_wps_ie() argument 523 p2p_parse_ies(const u8 *data, size_t len, struct p2p_message *msg) p2p_parse_ies() argument 577 p2p_parse(const u8 *data, size_t len, struct p2p_message *msg) p2p_parse() argument 592 p2p_parse_ies_separate(const u8 *wsc, size_t wsc_len, const u8 *p2p, size_t p2p_len, struct p2p_message *msg) p2p_parse_ies_separate() argument 623 p2p_parse_free(struct p2p_message *msg) p2p_parse_free() argument 783 struct p2p_message msg; p2p_attr_text() local 846 struct p2p_message msg; p2p_get_cross_connect_disallowed() local 861 struct p2p_message msg; p2p_get_group_capab() local 876 struct p2p_message msg; p2p_get_go_dev_addr() local [all...] |
/third_party/mesa3d/src/freedreno/decode/ |
H A D | crashdec-hfi.c | 39 #define HFI_HEADER_ID(msg) ((msg) & 0xff) 41 #define HFI_HEADER_SIZE(msg) (((msg) >> 8) & 0xff) 42 #define HFI_HEADER_TYPE(msg) (((msg) >> 16) & 0xf) 43 #define HFI_HEADER_SEQNUM(msg) (((msg) >> 20) & 0xfff) 84 decode_F2H_MSG_ACK(struct a6xx_hfi_msg_response *msg) in decode_F2H_MSG_ACK() argument 86 unsigned msgid = HFI_HEADER_ID(msg in decode_F2H_MSG_ACK() 103 decode_F2H_MSG_ERROR(struct a6xx_hfi_msg_error *msg) decode_F2H_MSG_ERROR() argument 119 decode_H2F_MSG_INIT(struct a6xx_hfi_msg_gmu_init_cmd *msg) decode_H2F_MSG_INIT() argument 135 decode_H2F_MSG_FW_VERSION(struct a6xx_hfi_msg_fw_version *msg) decode_H2F_MSG_FW_VERSION() argument 175 struct a6xx_hfi_msg_perf_table_v1 *msg = _msg; decode_H2F_MSG_PERF_TABLE() local 203 struct a6xx_hfi_msg_perf_table *msg = _msg; decode_H2F_MSG_PERF_TABLE() local 251 decode_H2F_MSG_BW_TABLE(struct a6xx_hfi_msg_bw_table *msg) decode_H2F_MSG_BW_TABLE() argument 285 decode_H2F_MSG_TEST(struct a6xx_hfi_msg_test *msg) decode_H2F_MSG_TEST() argument 296 decode_H2F_MSG_START(struct a6xx_hfi_msg_start *msg) decode_H2F_MSG_START() argument 308 decode_H2F_MSG_CORE_FW_START(struct a6xx_hfi_msg_core_fw_start *msg) decode_H2F_MSG_CORE_FW_START() argument 323 decode_H2F_MSG_GX_BW_PERF_VOTE(struct a6xx_hfi_gx_bw_perf_vote_cmd *msg) decode_H2F_MSG_GX_BW_PERF_VOTE() argument 339 decode_H2F_MSG_PREPARE_SLUMBER(struct a6xx_hfi_prep_slumber_cmd *msg) decode_H2F_MSG_PREPARE_SLUMBER() argument [all...] |
/third_party/protobuf/ruby/ext/google/protobuf_c/ |
H A D | upb.h | 35 #define UPB_PTR_AT(msg, ofs, type) ((type*)((char*)(msg) + (ofs))) 37 #define UPB_READ_ONEOF(msg, fieldtype, offset, case_offset, case_val, default) \ 38 *UPB_PTR_AT(msg, case_offset, int) == case_val \ 39 ? *UPB_PTR_AT(msg, offset, fieldtype) \ 42 #define UPB_WRITE_ONEOF(msg, fieldtype, offset, value, case_offset, case_val) \ 43 *UPB_PTR_AT(msg, case_offset, int) = case_val; \ 44 *UPB_PTR_AT(msg, offset, fieldtype) = value; 237 char msg[UPB_STATUS_MAX_MESSAGE]; /* Error message; NULL-terminated. */ member 245 void upb_status_seterrmsg(upb_status *status, const char *msg); 1014 _upb_has_field(const void *msg, size_t idx) _upb_has_field() argument 1018 _upb_sethas(const void *msg, size_t idx) _upb_sethas() argument 1022 _upb_clearhas(const void *msg, size_t idx) _upb_clearhas() argument 1026 _upb_has_oneof_field(const void *msg, size_t case_ofs, int32_t num) _upb_has_oneof_field() argument 1030 _upb_has_submsg_nohasbit(const void *msg, size_t ofs) _upb_has_submsg_nohasbit() argument 1067 _upb_array_accessor(const void *msg, size_t ofs, size_t *size) _upb_array_accessor() argument 1079 _upb_array_mutable_accessor(void *msg, size_t ofs, size_t *size) _upb_array_mutable_accessor() argument 1091 _upb_array_resize_accessor(void *msg, size_t ofs, size_t size, upb_fieldtype_t type, upb_arena *arena) _upb_array_resize_accessor() argument 1104 _upb_array_append_accessor(void *msg, size_t ofs, size_t elem_size, upb_fieldtype_t type, const void *value, upb_arena *arena) _upb_array_append_accessor() argument 1248 _upb_msg_map_size(const upb_msg *msg, size_t ofs) _upb_msg_map_size() argument 1253 _upb_msg_map_get(const upb_msg *msg, size_t ofs, const void *key, size_t key_size, void *val, size_t val_size) _upb_msg_map_get() argument 1261 _upb_msg_map_next(const upb_msg *msg, size_t ofs, size_t *iter) _upb_msg_map_next() argument 1268 _upb_msg_map_set(upb_msg *msg, size_t ofs, const void *key, size_t key_size, void *val, size_t val_size, upb_arena *arena) _upb_msg_map_set() argument 1278 _upb_msg_map_delete(upb_msg *msg, size_t ofs, const void *key, size_t key_size) _upb_msg_map_delete() argument 1285 _upb_msg_map_clear(upb_msg *msg, size_t ofs) _upb_msg_map_clear() argument 1293 _upb_msg_map_key(const void* msg, void* key, size_t size) _upb_msg_map_key() argument 1302 _upb_msg_map_value(const void* msg, void* val, size_t size) _upb_msg_map_value() argument 1309 _upb_msg_map_set_value(void* msg, const void* val, size_t size) _upb_msg_map_set_value() argument 1523 google_protobuf_FileDescriptorSet_serialize(const google_protobuf_FileDescriptorSet *msg, upb_arena *arena, size_t *len) google_protobuf_FileDescriptorSet_serialize() argument 1527 google_protobuf_FileDescriptorSet_has_file(const google_protobuf_FileDescriptorSet *msg) google_protobuf_FileDescriptorSet_has_file() argument 1528 google_protobuf_FileDescriptorSet_file(const google_protobuf_FileDescriptorSet *msg, size_t *len) google_protobuf_FileDescriptorSet_file() argument 1530 google_protobuf_FileDescriptorSet_mutable_file(google_protobuf_FileDescriptorSet *msg, size_t *len) google_protobuf_FileDescriptorSet_mutable_file() argument 1533 google_protobuf_FileDescriptorSet_resize_file(google_protobuf_FileDescriptorSet *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorSet_resize_file() argument 1536 google_protobuf_FileDescriptorSet_add_file(google_protobuf_FileDescriptorSet *msg, upb_arena *arena) google_protobuf_FileDescriptorSet_add_file() argument 1554 google_protobuf_FileDescriptorProto_serialize(const google_protobuf_FileDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_FileDescriptorProto_serialize() argument 1558 google_protobuf_FileDescriptorProto_has_name(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_has_name() argument 1559 google_protobuf_FileDescriptorProto_name(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_name() argument 1560 google_protobuf_FileDescriptorProto_has_package(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_has_package() argument 1561 google_protobuf_FileDescriptorProto_package(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_package() argument 1562 google_protobuf_FileDescriptorProto_dependency(const google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_dependency() argument 1563 google_protobuf_FileDescriptorProto_has_message_type(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_has_message_type() argument 1564 google_protobuf_FileDescriptorProto_message_type(const google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_message_type() argument 1565 google_protobuf_FileDescriptorProto_has_enum_type(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_has_enum_type() argument 1566 google_protobuf_FileDescriptorProto_enum_type(const google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_enum_type() argument 1567 google_protobuf_FileDescriptorProto_has_service(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_has_service() argument 1568 google_protobuf_FileDescriptorProto_service(const google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_service() argument 1569 google_protobuf_FileDescriptorProto_has_extension(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_has_extension() argument 1570 google_protobuf_FileDescriptorProto_extension(const google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_extension() argument 1571 google_protobuf_FileDescriptorProto_has_options(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_has_options() argument 1572 google_protobuf_FileDescriptorProto_options(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_options() argument 1573 google_protobuf_FileDescriptorProto_has_source_code_info(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_has_source_code_info() argument 1574 google_protobuf_FileDescriptorProto_source_code_info(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_source_code_info() argument 1575 google_protobuf_FileDescriptorProto_public_dependency(const google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_public_dependency() argument 1576 google_protobuf_FileDescriptorProto_weak_dependency(const google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_weak_dependency() argument 1577 google_protobuf_FileDescriptorProto_has_syntax(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_has_syntax() argument 1578 google_protobuf_FileDescriptorProto_syntax(const google_protobuf_FileDescriptorProto *msg) google_protobuf_FileDescriptorProto_syntax() argument 1580 google_protobuf_FileDescriptorProto_set_name(google_protobuf_FileDescriptorProto *msg, upb_strview value) google_protobuf_FileDescriptorProto_set_name() argument 1584 google_protobuf_FileDescriptorProto_set_package(google_protobuf_FileDescriptorProto *msg, upb_strview value) google_protobuf_FileDescriptorProto_set_package() argument 1588 google_protobuf_FileDescriptorProto_mutable_dependency(google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_mutable_dependency() argument 1591 google_protobuf_FileDescriptorProto_resize_dependency(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_dependency() argument 1594 google_protobuf_FileDescriptorProto_add_dependency(google_protobuf_FileDescriptorProto *msg, upb_strview val, upb_arena *arena) google_protobuf_FileDescriptorProto_add_dependency() argument 1598 google_protobuf_FileDescriptorProto_mutable_message_type(google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_mutable_message_type() argument 1601 google_protobuf_FileDescriptorProto_resize_message_type(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_message_type() argument 1604 google_protobuf_FileDescriptorProto_add_message_type(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_add_message_type() argument 1611 google_protobuf_FileDescriptorProto_mutable_enum_type(google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_mutable_enum_type() argument 1614 google_protobuf_FileDescriptorProto_resize_enum_type(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_enum_type() argument 1617 google_protobuf_FileDescriptorProto_add_enum_type(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_add_enum_type() argument 1624 google_protobuf_FileDescriptorProto_mutable_service(google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_mutable_service() argument 1627 google_protobuf_FileDescriptorProto_resize_service(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_service() argument 1630 google_protobuf_FileDescriptorProto_add_service(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_add_service() argument 1637 google_protobuf_FileDescriptorProto_mutable_extension(google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_mutable_extension() argument 1640 google_protobuf_FileDescriptorProto_resize_extension(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_extension() argument 1643 google_protobuf_FileDescriptorProto_add_extension(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_add_extension() argument 1650 google_protobuf_FileDescriptorProto_set_options(google_protobuf_FileDescriptorProto *msg, google_protobuf_FileOptions* value) google_protobuf_FileDescriptorProto_set_options() argument 1654 google_protobuf_FileDescriptorProto_mutable_options(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_mutable_options() argument 1663 google_protobuf_FileDescriptorProto_set_source_code_info(google_protobuf_FileDescriptorProto *msg, google_protobuf_SourceCodeInfo* value) google_protobuf_FileDescriptorProto_set_source_code_info() argument 1667 google_protobuf_FileDescriptorProto_mutable_source_code_info(google_protobuf_FileDescriptorProto *msg, upb_arena *arena) google_protobuf_FileDescriptorProto_mutable_source_code_info() argument 1676 google_protobuf_FileDescriptorProto_mutable_public_dependency(google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_mutable_public_dependency() argument 1679 google_protobuf_FileDescriptorProto_resize_public_dependency(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_public_dependency() argument 1682 google_protobuf_FileDescriptorProto_add_public_dependency(google_protobuf_FileDescriptorProto *msg, int32_t val, upb_arena *arena) google_protobuf_FileDescriptorProto_add_public_dependency() argument 1686 google_protobuf_FileDescriptorProto_mutable_weak_dependency(google_protobuf_FileDescriptorProto *msg, size_t *len) google_protobuf_FileDescriptorProto_mutable_weak_dependency() argument 1689 google_protobuf_FileDescriptorProto_resize_weak_dependency(google_protobuf_FileDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_FileDescriptorProto_resize_weak_dependency() argument 1692 google_protobuf_FileDescriptorProto_add_weak_dependency(google_protobuf_FileDescriptorProto *msg, int32_t val, upb_arena *arena) google_protobuf_FileDescriptorProto_add_weak_dependency() argument 1696 google_protobuf_FileDescriptorProto_set_syntax(google_protobuf_FileDescriptorProto *msg, upb_strview value) google_protobuf_FileDescriptorProto_set_syntax() argument 1711 google_protobuf_DescriptorProto_serialize(const google_protobuf_DescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_DescriptorProto_serialize() argument 1715 google_protobuf_DescriptorProto_has_name(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_has_name() argument 1716 google_protobuf_DescriptorProto_name(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_name() argument 1717 google_protobuf_DescriptorProto_has_field(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_has_field() argument 1718 google_protobuf_DescriptorProto_field(const google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_field() argument 1719 google_protobuf_DescriptorProto_has_nested_type(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_has_nested_type() argument 1720 google_protobuf_DescriptorProto_nested_type(const google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_nested_type() argument 1721 google_protobuf_DescriptorProto_has_enum_type(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_has_enum_type() argument 1722 google_protobuf_DescriptorProto_enum_type(const google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_enum_type() argument 1723 google_protobuf_DescriptorProto_has_extension_range(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_has_extension_range() argument 1724 google_protobuf_DescriptorProto_extension_range(const google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_extension_range() argument 1725 google_protobuf_DescriptorProto_has_extension(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_has_extension() argument 1726 google_protobuf_DescriptorProto_extension(const google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_extension() argument 1727 google_protobuf_DescriptorProto_has_options(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_has_options() argument 1728 google_protobuf_DescriptorProto_options(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_options() argument 1729 google_protobuf_DescriptorProto_has_oneof_decl(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_has_oneof_decl() argument 1730 google_protobuf_DescriptorProto_oneof_decl(const google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_oneof_decl() argument 1731 google_protobuf_DescriptorProto_has_reserved_range(const google_protobuf_DescriptorProto *msg) google_protobuf_DescriptorProto_has_reserved_range() argument 1732 google_protobuf_DescriptorProto_reserved_range(const google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_reserved_range() argument 1733 google_protobuf_DescriptorProto_reserved_name(const google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_reserved_name() argument 1735 google_protobuf_DescriptorProto_set_name(google_protobuf_DescriptorProto *msg, upb_strview value) google_protobuf_DescriptorProto_set_name() argument 1739 google_protobuf_DescriptorProto_mutable_field(google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_mutable_field() argument 1742 google_protobuf_DescriptorProto_resize_field(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_field() argument 1745 google_protobuf_DescriptorProto_add_field(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_field() argument 1752 google_protobuf_DescriptorProto_mutable_nested_type(google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_mutable_nested_type() argument 1755 google_protobuf_DescriptorProto_resize_nested_type(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_nested_type() argument 1758 google_protobuf_DescriptorProto_add_nested_type(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_nested_type() argument 1765 google_protobuf_DescriptorProto_mutable_enum_type(google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_mutable_enum_type() argument 1768 google_protobuf_DescriptorProto_resize_enum_type(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_enum_type() argument 1771 google_protobuf_DescriptorProto_add_enum_type(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_enum_type() argument 1778 google_protobuf_DescriptorProto_mutable_extension_range(google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_mutable_extension_range() argument 1781 google_protobuf_DescriptorProto_resize_extension_range(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_extension_range() argument 1784 google_protobuf_DescriptorProto_add_extension_range(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_extension_range() argument 1791 google_protobuf_DescriptorProto_mutable_extension(google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_mutable_extension() argument 1794 google_protobuf_DescriptorProto_resize_extension(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_extension() argument 1797 google_protobuf_DescriptorProto_add_extension(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_extension() argument 1804 google_protobuf_DescriptorProto_set_options(google_protobuf_DescriptorProto *msg, google_protobuf_MessageOptions* value) google_protobuf_DescriptorProto_set_options() argument 1808 google_protobuf_DescriptorProto_mutable_options(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_mutable_options() argument 1817 google_protobuf_DescriptorProto_mutable_oneof_decl(google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_mutable_oneof_decl() argument 1820 google_protobuf_DescriptorProto_resize_oneof_decl(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_oneof_decl() argument 1823 google_protobuf_DescriptorProto_add_oneof_decl(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_oneof_decl() argument 1830 google_protobuf_DescriptorProto_mutable_reserved_range(google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_mutable_reserved_range() argument 1833 google_protobuf_DescriptorProto_resize_reserved_range(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_reserved_range() argument 1836 google_protobuf_DescriptorProto_add_reserved_range(google_protobuf_DescriptorProto *msg, upb_arena *arena) google_protobuf_DescriptorProto_add_reserved_range() argument 1843 google_protobuf_DescriptorProto_mutable_reserved_name(google_protobuf_DescriptorProto *msg, size_t *len) google_protobuf_DescriptorProto_mutable_reserved_name() argument 1846 google_protobuf_DescriptorProto_resize_reserved_name(google_protobuf_DescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_DescriptorProto_resize_reserved_name() argument 1849 google_protobuf_DescriptorProto_add_reserved_name(google_protobuf_DescriptorProto *msg, upb_strview val, upb_arena *arena) google_protobuf_DescriptorProto_add_reserved_name() argument 1864 google_protobuf_DescriptorProto_ExtensionRange_serialize(const google_protobuf_DescriptorProto_ExtensionRange *msg, upb_arena *arena, size_t *len) google_protobuf_DescriptorProto_ExtensionRange_serialize() argument 1868 google_protobuf_DescriptorProto_ExtensionRange_has_start(const google_protobuf_DescriptorProto_ExtensionRange *msg) google_protobuf_DescriptorProto_ExtensionRange_has_start() argument 1869 google_protobuf_DescriptorProto_ExtensionRange_start(const google_protobuf_DescriptorProto_ExtensionRange *msg) google_protobuf_DescriptorProto_ExtensionRange_start() argument 1870 google_protobuf_DescriptorProto_ExtensionRange_has_end(const google_protobuf_DescriptorProto_ExtensionRange *msg) google_protobuf_DescriptorProto_ExtensionRange_has_end() argument 1871 google_protobuf_DescriptorProto_ExtensionRange_end(const google_protobuf_DescriptorProto_ExtensionRange *msg) google_protobuf_DescriptorProto_ExtensionRange_end() argument 1872 google_protobuf_DescriptorProto_ExtensionRange_has_options(const google_protobuf_DescriptorProto_ExtensionRange *msg) google_protobuf_DescriptorProto_ExtensionRange_has_options() argument 1873 google_protobuf_DescriptorProto_ExtensionRange_options(const google_protobuf_DescriptorProto_ExtensionRange *msg) google_protobuf_DescriptorProto_ExtensionRange_options() argument 1875 google_protobuf_DescriptorProto_ExtensionRange_set_start(google_protobuf_DescriptorProto_ExtensionRange *msg, int32_t value) google_protobuf_DescriptorProto_ExtensionRange_set_start() argument 1879 google_protobuf_DescriptorProto_ExtensionRange_set_end(google_protobuf_DescriptorProto_ExtensionRange *msg, int32_t value) google_protobuf_DescriptorProto_ExtensionRange_set_end() argument 1883 google_protobuf_DescriptorProto_ExtensionRange_set_options(google_protobuf_DescriptorProto_ExtensionRange *msg, google_protobuf_ExtensionRangeOptions* value) google_protobuf_DescriptorProto_ExtensionRange_set_options() argument 1887 google_protobuf_DescriptorProto_ExtensionRange_mutable_options(google_protobuf_DescriptorProto_ExtensionRange *msg, upb_arena *arena) google_protobuf_DescriptorProto_ExtensionRange_mutable_options() argument 1907 google_protobuf_DescriptorProto_ReservedRange_serialize(const google_protobuf_DescriptorProto_ReservedRange *msg, upb_arena *arena, size_t *len) google_protobuf_DescriptorProto_ReservedRange_serialize() argument 1911 google_protobuf_DescriptorProto_ReservedRange_has_start(const google_protobuf_DescriptorProto_ReservedRange *msg) google_protobuf_DescriptorProto_ReservedRange_has_start() argument 1912 google_protobuf_DescriptorProto_ReservedRange_start(const google_protobuf_DescriptorProto_ReservedRange *msg) google_protobuf_DescriptorProto_ReservedRange_start() argument 1913 google_protobuf_DescriptorProto_ReservedRange_has_end(const google_protobuf_DescriptorProto_ReservedRange *msg) google_protobuf_DescriptorProto_ReservedRange_has_end() argument 1914 google_protobuf_DescriptorProto_ReservedRange_end(const google_protobuf_DescriptorProto_ReservedRange *msg) google_protobuf_DescriptorProto_ReservedRange_end() argument 1916 google_protobuf_DescriptorProto_ReservedRange_set_start(google_protobuf_DescriptorProto_ReservedRange *msg, int32_t value) google_protobuf_DescriptorProto_ReservedRange_set_start() argument 1920 google_protobuf_DescriptorProto_ReservedRange_set_end(google_protobuf_DescriptorProto_ReservedRange *msg, int32_t value) google_protobuf_DescriptorProto_ReservedRange_set_end() argument 1935 google_protobuf_ExtensionRangeOptions_serialize(const google_protobuf_ExtensionRangeOptions *msg, upb_arena *arena, size_t *len) google_protobuf_ExtensionRangeOptions_serialize() argument 1939 google_protobuf_ExtensionRangeOptions_has_uninterpreted_option(const google_protobuf_ExtensionRangeOptions *msg) google_protobuf_ExtensionRangeOptions_has_uninterpreted_option() argument 1940 google_protobuf_ExtensionRangeOptions_uninterpreted_option(const google_protobuf_ExtensionRangeOptions *msg, size_t *len) google_protobuf_ExtensionRangeOptions_uninterpreted_option() argument 1942 google_protobuf_ExtensionRangeOptions_mutable_uninterpreted_option(google_protobuf_ExtensionRangeOptions *msg, size_t *len) google_protobuf_ExtensionRangeOptions_mutable_uninterpreted_option() argument 1945 google_protobuf_ExtensionRangeOptions_resize_uninterpreted_option(google_protobuf_ExtensionRangeOptions *msg, size_t len, upb_arena *arena) google_protobuf_ExtensionRangeOptions_resize_uninterpreted_option() argument 1948 google_protobuf_ExtensionRangeOptions_add_uninterpreted_option(google_protobuf_ExtensionRangeOptions *msg, upb_arena *arena) google_protobuf_ExtensionRangeOptions_add_uninterpreted_option() argument 1966 google_protobuf_FieldDescriptorProto_serialize(const google_protobuf_FieldDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_FieldDescriptorProto_serialize() argument 1970 google_protobuf_FieldDescriptorProto_has_name(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_name() argument 1971 google_protobuf_FieldDescriptorProto_name(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_name() argument 1972 google_protobuf_FieldDescriptorProto_has_extendee(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_extendee() argument 1973 google_protobuf_FieldDescriptorProto_extendee(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_extendee() argument 1974 google_protobuf_FieldDescriptorProto_has_number(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_number() argument 1975 google_protobuf_FieldDescriptorProto_number(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_number() argument 1976 google_protobuf_FieldDescriptorProto_has_label(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_label() argument 1977 google_protobuf_FieldDescriptorProto_label(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_label() argument 1978 google_protobuf_FieldDescriptorProto_has_type(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_type() argument 1979 google_protobuf_FieldDescriptorProto_type(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_type() argument 1980 google_protobuf_FieldDescriptorProto_has_type_name(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_type_name() argument 1981 google_protobuf_FieldDescriptorProto_type_name(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_type_name() argument 1982 google_protobuf_FieldDescriptorProto_has_default_value(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_default_value() argument 1983 google_protobuf_FieldDescriptorProto_default_value(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_default_value() argument 1984 google_protobuf_FieldDescriptorProto_has_options(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_options() argument 1985 google_protobuf_FieldDescriptorProto_options(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_options() argument 1986 google_protobuf_FieldDescriptorProto_has_oneof_index(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_oneof_index() argument 1987 google_protobuf_FieldDescriptorProto_oneof_index(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_oneof_index() argument 1988 google_protobuf_FieldDescriptorProto_has_json_name(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_json_name() argument 1989 google_protobuf_FieldDescriptorProto_json_name(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_json_name() argument 1990 google_protobuf_FieldDescriptorProto_has_proto3_optional(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_has_proto3_optional() argument 1991 google_protobuf_FieldDescriptorProto_proto3_optional(const google_protobuf_FieldDescriptorProto *msg) google_protobuf_FieldDescriptorProto_proto3_optional() argument 1993 google_protobuf_FieldDescriptorProto_set_name(google_protobuf_FieldDescriptorProto *msg, upb_strview value) google_protobuf_FieldDescriptorProto_set_name() argument 1997 google_protobuf_FieldDescriptorProto_set_extendee(google_protobuf_FieldDescriptorProto *msg, upb_strview value) google_protobuf_FieldDescriptorProto_set_extendee() argument 2001 google_protobuf_FieldDescriptorProto_set_number(google_protobuf_FieldDescriptorProto *msg, int32_t value) google_protobuf_FieldDescriptorProto_set_number() argument 2005 google_protobuf_FieldDescriptorProto_set_label(google_protobuf_FieldDescriptorProto *msg, int32_t value) google_protobuf_FieldDescriptorProto_set_label() argument 2009 google_protobuf_FieldDescriptorProto_set_type(google_protobuf_FieldDescriptorProto *msg, int32_t value) google_protobuf_FieldDescriptorProto_set_type() argument 2013 google_protobuf_FieldDescriptorProto_set_type_name(google_protobuf_FieldDescriptorProto *msg, upb_strview value) google_protobuf_FieldDescriptorProto_set_type_name() argument 2017 google_protobuf_FieldDescriptorProto_set_default_value(google_protobuf_FieldDescriptorProto *msg, upb_strview value) google_protobuf_FieldDescriptorProto_set_default_value() argument 2021 google_protobuf_FieldDescriptorProto_set_options(google_protobuf_FieldDescriptorProto *msg, google_protobuf_FieldOptions* value) google_protobuf_FieldDescriptorProto_set_options() argument 2025 google_protobuf_FieldDescriptorProto_mutable_options(google_protobuf_FieldDescriptorProto *msg, upb_arena *arena) google_protobuf_FieldDescriptorProto_mutable_options() argument 2034 google_protobuf_FieldDescriptorProto_set_oneof_index(google_protobuf_FieldDescriptorProto *msg, int32_t value) google_protobuf_FieldDescriptorProto_set_oneof_index() argument 2038 google_protobuf_FieldDescriptorProto_set_json_name(google_protobuf_FieldDescriptorProto *msg, upb_strview value) google_protobuf_FieldDescriptorProto_set_json_name() argument 2042 google_protobuf_FieldDescriptorProto_set_proto3_optional(google_protobuf_FieldDescriptorProto *msg, bool value) google_protobuf_FieldDescriptorProto_set_proto3_optional() argument 2057 google_protobuf_OneofDescriptorProto_serialize(const google_protobuf_OneofDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_OneofDescriptorProto_serialize() argument 2061 google_protobuf_OneofDescriptorProto_has_name(const google_protobuf_OneofDescriptorProto *msg) google_protobuf_OneofDescriptorProto_has_name() argument 2062 google_protobuf_OneofDescriptorProto_name(const google_protobuf_OneofDescriptorProto *msg) google_protobuf_OneofDescriptorProto_name() argument 2063 google_protobuf_OneofDescriptorProto_has_options(const google_protobuf_OneofDescriptorProto *msg) google_protobuf_OneofDescriptorProto_has_options() argument 2064 google_protobuf_OneofDescriptorProto_options(const google_protobuf_OneofDescriptorProto *msg) google_protobuf_OneofDescriptorProto_options() argument 2066 google_protobuf_OneofDescriptorProto_set_name(google_protobuf_OneofDescriptorProto *msg, upb_strview value) google_protobuf_OneofDescriptorProto_set_name() argument 2070 google_protobuf_OneofDescriptorProto_set_options(google_protobuf_OneofDescriptorProto *msg, google_protobuf_OneofOptions* value) google_protobuf_OneofDescriptorProto_set_options() argument 2074 google_protobuf_OneofDescriptorProto_mutable_options(google_protobuf_OneofDescriptorProto *msg, upb_arena *arena) google_protobuf_OneofDescriptorProto_mutable_options() argument 2094 google_protobuf_EnumDescriptorProto_serialize(const google_protobuf_EnumDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_EnumDescriptorProto_serialize() argument 2098 google_protobuf_EnumDescriptorProto_has_name(const google_protobuf_EnumDescriptorProto *msg) google_protobuf_EnumDescriptorProto_has_name() argument 2099 google_protobuf_EnumDescriptorProto_name(const google_protobuf_EnumDescriptorProto *msg) google_protobuf_EnumDescriptorProto_name() argument 2100 google_protobuf_EnumDescriptorProto_has_value(const google_protobuf_EnumDescriptorProto *msg) google_protobuf_EnumDescriptorProto_has_value() argument 2101 google_protobuf_EnumDescriptorProto_value(const google_protobuf_EnumDescriptorProto *msg, size_t *len) google_protobuf_EnumDescriptorProto_value() argument 2102 google_protobuf_EnumDescriptorProto_has_options(const google_protobuf_EnumDescriptorProto *msg) google_protobuf_EnumDescriptorProto_has_options() argument 2103 google_protobuf_EnumDescriptorProto_options(const google_protobuf_EnumDescriptorProto *msg) google_protobuf_EnumDescriptorProto_options() argument 2104 google_protobuf_EnumDescriptorProto_has_reserved_range(const google_protobuf_EnumDescriptorProto *msg) google_protobuf_EnumDescriptorProto_has_reserved_range() argument 2105 google_protobuf_EnumDescriptorProto_reserved_range(const google_protobuf_EnumDescriptorProto *msg, size_t *len) google_protobuf_EnumDescriptorProto_reserved_range() argument 2106 google_protobuf_EnumDescriptorProto_reserved_name(const google_protobuf_EnumDescriptorProto *msg, size_t *len) google_protobuf_EnumDescriptorProto_reserved_name() argument 2108 google_protobuf_EnumDescriptorProto_set_name(google_protobuf_EnumDescriptorProto *msg, upb_strview value) google_protobuf_EnumDescriptorProto_set_name() argument 2112 google_protobuf_EnumDescriptorProto_mutable_value(google_protobuf_EnumDescriptorProto *msg, size_t *len) google_protobuf_EnumDescriptorProto_mutable_value() argument 2115 google_protobuf_EnumDescriptorProto_resize_value(google_protobuf_EnumDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_EnumDescriptorProto_resize_value() argument 2118 google_protobuf_EnumDescriptorProto_add_value(google_protobuf_EnumDescriptorProto *msg, upb_arena *arena) google_protobuf_EnumDescriptorProto_add_value() argument 2125 google_protobuf_EnumDescriptorProto_set_options(google_protobuf_EnumDescriptorProto *msg, google_protobuf_EnumOptions* value) google_protobuf_EnumDescriptorProto_set_options() argument 2129 google_protobuf_EnumDescriptorProto_mutable_options(google_protobuf_EnumDescriptorProto *msg, upb_arena *arena) google_protobuf_EnumDescriptorProto_mutable_options() argument 2138 google_protobuf_EnumDescriptorProto_mutable_reserved_range(google_protobuf_EnumDescriptorProto *msg, size_t *len) google_protobuf_EnumDescriptorProto_mutable_reserved_range() argument 2141 google_protobuf_EnumDescriptorProto_resize_reserved_range(google_protobuf_EnumDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_EnumDescriptorProto_resize_reserved_range() argument 2144 google_protobuf_EnumDescriptorProto_add_reserved_range(google_protobuf_EnumDescriptorProto *msg, upb_arena *arena) google_protobuf_EnumDescriptorProto_add_reserved_range() argument 2151 google_protobuf_EnumDescriptorProto_mutable_reserved_name(google_protobuf_EnumDescriptorProto *msg, size_t *len) google_protobuf_EnumDescriptorProto_mutable_reserved_name() argument 2154 google_protobuf_EnumDescriptorProto_resize_reserved_name(google_protobuf_EnumDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_EnumDescriptorProto_resize_reserved_name() argument 2157 google_protobuf_EnumDescriptorProto_add_reserved_name(google_protobuf_EnumDescriptorProto *msg, upb_strview val, upb_arena *arena) google_protobuf_EnumDescriptorProto_add_reserved_name() argument 2172 google_protobuf_EnumDescriptorProto_EnumReservedRange_serialize(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, upb_arena *arena, size_t *len) google_protobuf_EnumDescriptorProto_EnumReservedRange_serialize() argument 2176 google_protobuf_EnumDescriptorProto_EnumReservedRange_has_start(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) google_protobuf_EnumDescriptorProto_EnumReservedRange_has_start() argument 2177 google_protobuf_EnumDescriptorProto_EnumReservedRange_start(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) google_protobuf_EnumDescriptorProto_EnumReservedRange_start() argument 2178 google_protobuf_EnumDescriptorProto_EnumReservedRange_has_end(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) google_protobuf_EnumDescriptorProto_EnumReservedRange_has_end() argument 2179 google_protobuf_EnumDescriptorProto_EnumReservedRange_end(const google_protobuf_EnumDescriptorProto_EnumReservedRange *msg) google_protobuf_EnumDescriptorProto_EnumReservedRange_end() argument 2181 google_protobuf_EnumDescriptorProto_EnumReservedRange_set_start(google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, int32_t value) google_protobuf_EnumDescriptorProto_EnumReservedRange_set_start() argument 2185 google_protobuf_EnumDescriptorProto_EnumReservedRange_set_end(google_protobuf_EnumDescriptorProto_EnumReservedRange *msg, int32_t value) google_protobuf_EnumDescriptorProto_EnumReservedRange_set_end() argument 2200 google_protobuf_EnumValueDescriptorProto_serialize(const google_protobuf_EnumValueDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_EnumValueDescriptorProto_serialize() argument 2204 google_protobuf_EnumValueDescriptorProto_has_name(const google_protobuf_EnumValueDescriptorProto *msg) google_protobuf_EnumValueDescriptorProto_has_name() argument 2205 google_protobuf_EnumValueDescriptorProto_name(const google_protobuf_EnumValueDescriptorProto *msg) google_protobuf_EnumValueDescriptorProto_name() argument 2206 google_protobuf_EnumValueDescriptorProto_has_number(const google_protobuf_EnumValueDescriptorProto *msg) google_protobuf_EnumValueDescriptorProto_has_number() argument 2207 google_protobuf_EnumValueDescriptorProto_number(const google_protobuf_EnumValueDescriptorProto *msg) google_protobuf_EnumValueDescriptorProto_number() argument 2208 google_protobuf_EnumValueDescriptorProto_has_options(const google_protobuf_EnumValueDescriptorProto *msg) google_protobuf_EnumValueDescriptorProto_has_options() argument 2209 google_protobuf_EnumValueDescriptorProto_options(const google_protobuf_EnumValueDescriptorProto *msg) google_protobuf_EnumValueDescriptorProto_options() argument 2211 google_protobuf_EnumValueDescriptorProto_set_name(google_protobuf_EnumValueDescriptorProto *msg, upb_strview value) google_protobuf_EnumValueDescriptorProto_set_name() argument 2215 google_protobuf_EnumValueDescriptorProto_set_number(google_protobuf_EnumValueDescriptorProto *msg, int32_t value) google_protobuf_EnumValueDescriptorProto_set_number() argument 2219 google_protobuf_EnumValueDescriptorProto_set_options(google_protobuf_EnumValueDescriptorProto *msg, google_protobuf_EnumValueOptions* value) google_protobuf_EnumValueDescriptorProto_set_options() argument 2223 google_protobuf_EnumValueDescriptorProto_mutable_options(google_protobuf_EnumValueDescriptorProto *msg, upb_arena *arena) google_protobuf_EnumValueDescriptorProto_mutable_options() argument 2243 google_protobuf_ServiceDescriptorProto_serialize(const google_protobuf_ServiceDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_ServiceDescriptorProto_serialize() argument 2247 google_protobuf_ServiceDescriptorProto_has_name(const google_protobuf_ServiceDescriptorProto *msg) google_protobuf_ServiceDescriptorProto_has_name() argument 2248 google_protobuf_ServiceDescriptorProto_name(const google_protobuf_ServiceDescriptorProto *msg) google_protobuf_ServiceDescriptorProto_name() argument 2249 google_protobuf_ServiceDescriptorProto_has_method(const google_protobuf_ServiceDescriptorProto *msg) google_protobuf_ServiceDescriptorProto_has_method() argument 2250 google_protobuf_ServiceDescriptorProto_method(const google_protobuf_ServiceDescriptorProto *msg, size_t *len) google_protobuf_ServiceDescriptorProto_method() argument 2251 google_protobuf_ServiceDescriptorProto_has_options(const google_protobuf_ServiceDescriptorProto *msg) google_protobuf_ServiceDescriptorProto_has_options() argument 2252 google_protobuf_ServiceDescriptorProto_options(const google_protobuf_ServiceDescriptorProto *msg) google_protobuf_ServiceDescriptorProto_options() argument 2254 google_protobuf_ServiceDescriptorProto_set_name(google_protobuf_ServiceDescriptorProto *msg, upb_strview value) google_protobuf_ServiceDescriptorProto_set_name() argument 2258 google_protobuf_ServiceDescriptorProto_mutable_method(google_protobuf_ServiceDescriptorProto *msg, size_t *len) google_protobuf_ServiceDescriptorProto_mutable_method() argument 2261 google_protobuf_ServiceDescriptorProto_resize_method(google_protobuf_ServiceDescriptorProto *msg, size_t len, upb_arena *arena) google_protobuf_ServiceDescriptorProto_resize_method() argument 2264 google_protobuf_ServiceDescriptorProto_add_method(google_protobuf_ServiceDescriptorProto *msg, upb_arena *arena) google_protobuf_ServiceDescriptorProto_add_method() argument 2271 google_protobuf_ServiceDescriptorProto_set_options(google_protobuf_ServiceDescriptorProto *msg, google_protobuf_ServiceOptions* value) google_protobuf_ServiceDescriptorProto_set_options() argument 2275 google_protobuf_ServiceDescriptorProto_mutable_options(google_protobuf_ServiceDescriptorProto *msg, upb_arena *arena) google_protobuf_ServiceDescriptorProto_mutable_options() argument 2295 google_protobuf_MethodDescriptorProto_serialize(const google_protobuf_MethodDescriptorProto *msg, upb_arena *arena, size_t *len) google_protobuf_MethodDescriptorProto_serialize() argument 2299 google_protobuf_MethodDescriptorProto_has_name(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_has_name() argument 2300 google_protobuf_MethodDescriptorProto_name(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_name() argument 2301 google_protobuf_MethodDescriptorProto_has_input_type(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_has_input_type() argument 2302 google_protobuf_MethodDescriptorProto_input_type(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_input_type() argument 2303 google_protobuf_MethodDescriptorProto_has_output_type(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_has_output_type() argument 2304 google_protobuf_MethodDescriptorProto_output_type(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_output_type() argument 2305 google_protobuf_MethodDescriptorProto_has_options(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_has_options() argument 2306 google_protobuf_MethodDescriptorProto_options(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_options() argument 2307 google_protobuf_MethodDescriptorProto_has_client_streaming(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_has_client_streaming() argument 2308 google_protobuf_MethodDescriptorProto_client_streaming(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_client_streaming() argument 2309 google_protobuf_MethodDescriptorProto_has_server_streaming(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_has_server_streaming() argument 2310 google_protobuf_MethodDescriptorProto_server_streaming(const google_protobuf_MethodDescriptorProto *msg) google_protobuf_MethodDescriptorProto_server_streaming() argument 2312 google_protobuf_MethodDescriptorProto_set_name(google_protobuf_MethodDescriptorProto *msg, upb_strview value) google_protobuf_MethodDescriptorProto_set_name() argument 2316 google_protobuf_MethodDescriptorProto_set_input_type(google_protobuf_MethodDescriptorProto *msg, upb_strview value) google_protobuf_MethodDescriptorProto_set_input_type() argument 2320 google_protobuf_MethodDescriptorProto_set_output_type(google_protobuf_MethodDescriptorProto *msg, upb_strview value) google_protobuf_MethodDescriptorProto_set_output_type() argument 2324 google_protobuf_MethodDescriptorProto_set_options(google_protobuf_MethodDescriptorProto *msg, google_protobuf_MethodOptions* value) google_protobuf_MethodDescriptorProto_set_options() argument 2328 google_protobuf_MethodDescriptorProto_mutable_options(google_protobuf_MethodDescriptorProto *msg, upb_arena *arena) google_protobuf_MethodDescriptorProto_mutable_options() argument 2337 google_protobuf_MethodDescriptorProto_set_client_streaming(google_protobuf_MethodDescriptorProto *msg, bool value) google_protobuf_MethodDescriptorProto_set_client_streaming() argument 2341 google_protobuf_MethodDescriptorProto_set_server_streaming(google_protobuf_MethodDescriptorProto *msg, bool value) google_protobuf_MethodDescriptorProto_set_server_streaming() argument 2356 google_protobuf_FileOptions_serialize(const google_protobuf_FileOptions *msg, upb_arena *arena, size_t *len) google_protobuf_FileOptions_serialize() argument 2360 google_protobuf_FileOptions_has_java_package(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_java_package() argument 2361 google_protobuf_FileOptions_java_package(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_java_package() argument 2362 google_protobuf_FileOptions_has_java_outer_classname(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_java_outer_classname() argument 2363 google_protobuf_FileOptions_java_outer_classname(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_java_outer_classname() argument 2364 google_protobuf_FileOptions_has_optimize_for(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_optimize_for() argument 2365 google_protobuf_FileOptions_optimize_for(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_optimize_for() argument 2366 google_protobuf_FileOptions_has_java_multiple_files(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_java_multiple_files() argument 2367 google_protobuf_FileOptions_java_multiple_files(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_java_multiple_files() argument 2368 google_protobuf_FileOptions_has_go_package(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_go_package() argument 2369 google_protobuf_FileOptions_go_package(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_go_package() argument 2370 google_protobuf_FileOptions_has_cc_generic_services(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_cc_generic_services() argument 2371 google_protobuf_FileOptions_cc_generic_services(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_cc_generic_services() argument 2372 google_protobuf_FileOptions_has_java_generic_services(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_java_generic_services() argument 2373 google_protobuf_FileOptions_java_generic_services(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_java_generic_services() argument 2374 google_protobuf_FileOptions_has_py_generic_services(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_py_generic_services() argument 2375 google_protobuf_FileOptions_py_generic_services(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_py_generic_services() argument 2376 google_protobuf_FileOptions_has_java_generate_equals_and_hash(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_java_generate_equals_and_hash() argument 2377 google_protobuf_FileOptions_java_generate_equals_and_hash(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_java_generate_equals_and_hash() argument 2378 google_protobuf_FileOptions_has_deprecated(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_deprecated() argument 2379 google_protobuf_FileOptions_deprecated(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_deprecated() argument 2380 google_protobuf_FileOptions_has_java_string_check_utf8(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_java_string_check_utf8() argument 2381 google_protobuf_FileOptions_java_string_check_utf8(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_java_string_check_utf8() argument 2382 google_protobuf_FileOptions_has_cc_enable_arenas(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_cc_enable_arenas() argument 2383 google_protobuf_FileOptions_cc_enable_arenas(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_cc_enable_arenas() argument 2384 google_protobuf_FileOptions_has_objc_class_prefix(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_objc_class_prefix() argument 2385 google_protobuf_FileOptions_objc_class_prefix(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_objc_class_prefix() argument 2386 google_protobuf_FileOptions_has_csharp_namespace(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_csharp_namespace() argument 2387 google_protobuf_FileOptions_csharp_namespace(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_csharp_namespace() argument 2388 google_protobuf_FileOptions_has_swift_prefix(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_swift_prefix() argument 2389 google_protobuf_FileOptions_swift_prefix(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_swift_prefix() argument 2390 google_protobuf_FileOptions_has_php_class_prefix(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_php_class_prefix() argument 2391 google_protobuf_FileOptions_php_class_prefix(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_php_class_prefix() argument 2392 google_protobuf_FileOptions_has_php_namespace(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_php_namespace() argument 2393 google_protobuf_FileOptions_php_namespace(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_php_namespace() argument 2394 google_protobuf_FileOptions_has_php_generic_services(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_php_generic_services() argument 2395 google_protobuf_FileOptions_php_generic_services(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_php_generic_services() argument 2396 google_protobuf_FileOptions_has_php_metadata_namespace(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_php_metadata_namespace() argument 2397 google_protobuf_FileOptions_php_metadata_namespace(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_php_metadata_namespace() argument 2398 google_protobuf_FileOptions_has_ruby_package(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_ruby_package() argument 2399 google_protobuf_FileOptions_ruby_package(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_ruby_package() argument 2400 google_protobuf_FileOptions_has_uninterpreted_option(const google_protobuf_FileOptions *msg) google_protobuf_FileOptions_has_uninterpreted_option() argument 2401 google_protobuf_FileOptions_uninterpreted_option(const google_protobuf_FileOptions *msg, size_t *len) google_protobuf_FileOptions_uninterpreted_option() argument 2403 google_protobuf_FileOptions_set_java_package(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_java_package() argument 2407 google_protobuf_FileOptions_set_java_outer_classname(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_java_outer_classname() argument 2411 google_protobuf_FileOptions_set_optimize_for(google_protobuf_FileOptions *msg, int32_t value) google_protobuf_FileOptions_set_optimize_for() argument 2415 google_protobuf_FileOptions_set_java_multiple_files(google_protobuf_FileOptions *msg, bool value) google_protobuf_FileOptions_set_java_multiple_files() argument 2419 google_protobuf_FileOptions_set_go_package(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_go_package() argument 2423 google_protobuf_FileOptions_set_cc_generic_services(google_protobuf_FileOptions *msg, bool value) google_protobuf_FileOptions_set_cc_generic_services() argument 2427 google_protobuf_FileOptions_set_java_generic_services(google_protobuf_FileOptions *msg, bool value) google_protobuf_FileOptions_set_java_generic_services() argument 2431 google_protobuf_FileOptions_set_py_generic_services(google_protobuf_FileOptions *msg, bool value) google_protobuf_FileOptions_set_py_generic_services() argument 2435 google_protobuf_FileOptions_set_java_generate_equals_and_hash(google_protobuf_FileOptions *msg, bool value) google_protobuf_FileOptions_set_java_generate_equals_and_hash() argument 2439 google_protobuf_FileOptions_set_deprecated(google_protobuf_FileOptions *msg, bool value) google_protobuf_FileOptions_set_deprecated() argument 2443 google_protobuf_FileOptions_set_java_string_check_utf8(google_protobuf_FileOptions *msg, bool value) google_protobuf_FileOptions_set_java_string_check_utf8() argument 2447 google_protobuf_FileOptions_set_cc_enable_arenas(google_protobuf_FileOptions *msg, bool value) google_protobuf_FileOptions_set_cc_enable_arenas() argument 2451 google_protobuf_FileOptions_set_objc_class_prefix(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_objc_class_prefix() argument 2455 google_protobuf_FileOptions_set_csharp_namespace(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_csharp_namespace() argument 2459 google_protobuf_FileOptions_set_swift_prefix(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_swift_prefix() argument 2463 google_protobuf_FileOptions_set_php_class_prefix(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_php_class_prefix() argument 2467 google_protobuf_FileOptions_set_php_namespace(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_php_namespace() argument 2471 google_protobuf_FileOptions_set_php_generic_services(google_protobuf_FileOptions *msg, bool value) google_protobuf_FileOptions_set_php_generic_services() argument 2475 google_protobuf_FileOptions_set_php_metadata_namespace(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_php_metadata_namespace() argument 2479 google_protobuf_FileOptions_set_ruby_package(google_protobuf_FileOptions *msg, upb_strview value) google_protobuf_FileOptions_set_ruby_package() argument 2483 google_protobuf_FileOptions_mutable_uninterpreted_option(google_protobuf_FileOptions *msg, size_t *len) google_protobuf_FileOptions_mutable_uninterpreted_option() argument 2486 google_protobuf_FileOptions_resize_uninterpreted_option(google_protobuf_FileOptions *msg, size_t len, upb_arena *arena) google_protobuf_FileOptions_resize_uninterpreted_option() argument 2489 google_protobuf_FileOptions_add_uninterpreted_option(google_protobuf_FileOptions *msg, upb_arena *arena) google_protobuf_FileOptions_add_uninterpreted_option() argument 2507 google_protobuf_MessageOptions_serialize(const google_protobuf_MessageOptions *msg, upb_arena *arena, size_t *len) google_protobuf_MessageOptions_serialize() argument 2511 google_protobuf_MessageOptions_has_message_set_wire_format(const google_protobuf_MessageOptions *msg) google_protobuf_MessageOptions_has_message_set_wire_format() argument 2512 google_protobuf_MessageOptions_message_set_wire_format(const google_protobuf_MessageOptions *msg) google_protobuf_MessageOptions_message_set_wire_format() argument 2513 google_protobuf_MessageOptions_has_no_standard_descriptor_accessor(const google_protobuf_MessageOptions *msg) google_protobuf_MessageOptions_has_no_standard_descriptor_accessor() argument 2514 google_protobuf_MessageOptions_no_standard_descriptor_accessor(const google_protobuf_MessageOptions *msg) google_protobuf_MessageOptions_no_standard_descriptor_accessor() argument 2515 google_protobuf_MessageOptions_has_deprecated(const google_protobuf_MessageOptions *msg) google_protobuf_MessageOptions_has_deprecated() argument 2516 google_protobuf_MessageOptions_deprecated(const google_protobuf_MessageOptions *msg) google_protobuf_MessageOptions_deprecated() argument 2517 google_protobuf_MessageOptions_has_map_entry(const google_protobuf_MessageOptions *msg) google_protobuf_MessageOptions_has_map_entry() argument 2518 google_protobuf_MessageOptions_map_entry(const google_protobuf_MessageOptions *msg) google_protobuf_MessageOptions_map_entry() argument 2519 google_protobuf_MessageOptions_has_uninterpreted_option(const google_protobuf_MessageOptions *msg) google_protobuf_MessageOptions_has_uninterpreted_option() argument 2520 google_protobuf_MessageOptions_uninterpreted_option(const google_protobuf_MessageOptions *msg, size_t *len) google_protobuf_MessageOptions_uninterpreted_option() argument 2522 google_protobuf_MessageOptions_set_message_set_wire_format(google_protobuf_MessageOptions *msg, bool value) google_protobuf_MessageOptions_set_message_set_wire_format() argument 2526 google_protobuf_MessageOptions_set_no_standard_descriptor_accessor(google_protobuf_MessageOptions *msg, bool value) google_protobuf_MessageOptions_set_no_standard_descriptor_accessor() argument 2530 google_protobuf_MessageOptions_set_deprecated(google_protobuf_MessageOptions *msg, bool value) google_protobuf_MessageOptions_set_deprecated() argument 2534 google_protobuf_MessageOptions_set_map_entry(google_protobuf_MessageOptions *msg, bool value) google_protobuf_MessageOptions_set_map_entry() argument 2538 google_protobuf_MessageOptions_mutable_uninterpreted_option(google_protobuf_MessageOptions *msg, size_t *len) google_protobuf_MessageOptions_mutable_uninterpreted_option() argument 2541 google_protobuf_MessageOptions_resize_uninterpreted_option(google_protobuf_MessageOptions *msg, size_t len, upb_arena *arena) google_protobuf_MessageOptions_resize_uninterpreted_option() argument 2544 google_protobuf_MessageOptions_add_uninterpreted_option(google_protobuf_MessageOptions *msg, upb_arena *arena) google_protobuf_MessageOptions_add_uninterpreted_option() argument 2562 google_protobuf_FieldOptions_serialize(const google_protobuf_FieldOptions *msg, upb_arena *arena, size_t *len) google_protobuf_FieldOptions_serialize() argument 2566 google_protobuf_FieldOptions_has_ctype(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_has_ctype() argument 2567 google_protobuf_FieldOptions_ctype(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_ctype() argument 2568 google_protobuf_FieldOptions_has_packed(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_has_packed() argument 2569 google_protobuf_FieldOptions_packed(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_packed() argument 2570 google_protobuf_FieldOptions_has_deprecated(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_has_deprecated() argument 2571 google_protobuf_FieldOptions_deprecated(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_deprecated() argument 2572 google_protobuf_FieldOptions_has_lazy(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_has_lazy() argument 2573 google_protobuf_FieldOptions_lazy(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_lazy() argument 2574 google_protobuf_FieldOptions_has_jstype(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_has_jstype() argument 2575 google_protobuf_FieldOptions_jstype(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_jstype() argument 2576 google_protobuf_FieldOptions_has_weak(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_has_weak() argument 2577 google_protobuf_FieldOptions_weak(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_weak() argument 2578 google_protobuf_FieldOptions_has_uninterpreted_option(const google_protobuf_FieldOptions *msg) google_protobuf_FieldOptions_has_uninterpreted_option() argument 2579 google_protobuf_FieldOptions_uninterpreted_option(const google_protobuf_FieldOptions *msg, size_t *len) google_protobuf_FieldOptions_uninterpreted_option() argument 2581 google_protobuf_FieldOptions_set_ctype(google_protobuf_FieldOptions *msg, int32_t value) google_protobuf_FieldOptions_set_ctype() argument 2585 google_protobuf_FieldOptions_set_packed(google_protobuf_FieldOptions *msg, bool value) google_protobuf_FieldOptions_set_packed() argument 2589 google_protobuf_FieldOptions_set_deprecated(google_protobuf_FieldOptions *msg, bool value) google_protobuf_FieldOptions_set_deprecated() argument 2593 google_protobuf_FieldOptions_set_lazy(google_protobuf_FieldOptions *msg, bool value) google_protobuf_FieldOptions_set_lazy() argument 2597 google_protobuf_FieldOptions_set_jstype(google_protobuf_FieldOptions *msg, int32_t value) google_protobuf_FieldOptions_set_jstype() argument 2601 google_protobuf_FieldOptions_set_weak(google_protobuf_FieldOptions *msg, bool value) google_protobuf_FieldOptions_set_weak() argument 2605 google_protobuf_FieldOptions_mutable_uninterpreted_option(google_protobuf_FieldOptions *msg, size_t *len) google_protobuf_FieldOptions_mutable_uninterpreted_option() argument 2608 google_protobuf_FieldOptions_resize_uninterpreted_option(google_protobuf_FieldOptions *msg, size_t len, upb_arena *arena) google_protobuf_FieldOptions_resize_uninterpreted_option() argument 2611 google_protobuf_FieldOptions_add_uninterpreted_option(google_protobuf_FieldOptions *msg, upb_arena *arena) google_protobuf_FieldOptions_add_uninterpreted_option() argument 2629 google_protobuf_OneofOptions_serialize(const google_protobuf_OneofOptions *msg, upb_arena *arena, size_t *len) google_protobuf_OneofOptions_serialize() argument 2633 google_protobuf_OneofOptions_has_uninterpreted_option(const google_protobuf_OneofOptions *msg) google_protobuf_OneofOptions_has_uninterpreted_option() argument 2634 google_protobuf_OneofOptions_uninterpreted_option(const google_protobuf_OneofOptions *msg, size_t *len) google_protobuf_OneofOptions_uninterpreted_option() argument 2636 google_protobuf_OneofOptions_mutable_uninterpreted_option(google_protobuf_OneofOptions *msg, size_t *len) google_protobuf_OneofOptions_mutable_uninterpreted_option() argument 2639 google_protobuf_OneofOptions_resize_uninterpreted_option(google_protobuf_OneofOptions *msg, size_t len, upb_arena *arena) google_protobuf_OneofOptions_resize_uninterpreted_option() argument 2642 google_protobuf_OneofOptions_add_uninterpreted_option(google_protobuf_OneofOptions *msg, upb_arena *arena) google_protobuf_OneofOptions_add_uninterpreted_option() argument 2660 google_protobuf_EnumOptions_serialize(const google_protobuf_EnumOptions *msg, upb_arena *arena, size_t *len) google_protobuf_EnumOptions_serialize() argument 2664 google_protobuf_EnumOptions_has_allow_alias(const google_protobuf_EnumOptions *msg) google_protobuf_EnumOptions_has_allow_alias() argument 2665 google_protobuf_EnumOptions_allow_alias(const google_protobuf_EnumOptions *msg) google_protobuf_EnumOptions_allow_alias() argument 2666 google_protobuf_EnumOptions_has_deprecated(const google_protobuf_EnumOptions *msg) google_protobuf_EnumOptions_has_deprecated() argument 2667 google_protobuf_EnumOptions_deprecated(const google_protobuf_EnumOptions *msg) google_protobuf_EnumOptions_deprecated() argument 2668 google_protobuf_EnumOptions_has_uninterpreted_option(const google_protobuf_EnumOptions *msg) google_protobuf_EnumOptions_has_uninterpreted_option() argument 2669 google_protobuf_EnumOptions_uninterpreted_option(const google_protobuf_EnumOptions *msg, size_t *len) google_protobuf_EnumOptions_uninterpreted_option() argument 2671 google_protobuf_EnumOptions_set_allow_alias(google_protobuf_EnumOptions *msg, bool value) google_protobuf_EnumOptions_set_allow_alias() argument 2675 google_protobuf_EnumOptions_set_deprecated(google_protobuf_EnumOptions *msg, bool value) google_protobuf_EnumOptions_set_deprecated() argument 2679 google_protobuf_EnumOptions_mutable_uninterpreted_option(google_protobuf_EnumOptions *msg, size_t *len) google_protobuf_EnumOptions_mutable_uninterpreted_option() argument 2682 google_protobuf_EnumOptions_resize_uninterpreted_option(google_protobuf_EnumOptions *msg, size_t len, upb_arena *arena) google_protobuf_EnumOptions_resize_uninterpreted_option() argument 2685 google_protobuf_EnumOptions_add_uninterpreted_option(google_protobuf_EnumOptions *msg, upb_arena *arena) google_protobuf_EnumOptions_add_uninterpreted_option() argument 2703 google_protobuf_EnumValueOptions_serialize(const google_protobuf_EnumValueOptions *msg, upb_arena *arena, size_t *len) google_protobuf_EnumValueOptions_serialize() argument 2707 google_protobuf_EnumValueOptions_has_deprecated(const google_protobuf_EnumValueOptions *msg) google_protobuf_EnumValueOptions_has_deprecated() argument 2708 google_protobuf_EnumValueOptions_deprecated(const google_protobuf_EnumValueOptions *msg) google_protobuf_EnumValueOptions_deprecated() argument 2709 google_protobuf_EnumValueOptions_has_uninterpreted_option(const google_protobuf_EnumValueOptions *msg) google_protobuf_EnumValueOptions_has_uninterpreted_option() argument 2710 google_protobuf_EnumValueOptions_uninterpreted_option(const google_protobuf_EnumValueOptions *msg, size_t *len) google_protobuf_EnumValueOptions_uninterpreted_option() argument 2712 google_protobuf_EnumValueOptions_set_deprecated(google_protobuf_EnumValueOptions *msg, bool value) google_protobuf_EnumValueOptions_set_deprecated() argument 2716 google_protobuf_EnumValueOptions_mutable_uninterpreted_option(google_protobuf_EnumValueOptions *msg, size_t *len) google_protobuf_EnumValueOptions_mutable_uninterpreted_option() argument 2719 google_protobuf_EnumValueOptions_resize_uninterpreted_option(google_protobuf_EnumValueOptions *msg, size_t len, upb_arena *arena) google_protobuf_EnumValueOptions_resize_uninterpreted_option() argument 2722 google_protobuf_EnumValueOptions_add_uninterpreted_option(google_protobuf_EnumValueOptions *msg, upb_arena *arena) google_protobuf_EnumValueOptions_add_uninterpreted_option() argument 2740 google_protobuf_ServiceOptions_serialize(const google_protobuf_ServiceOptions *msg, upb_arena *arena, size_t *len) google_protobuf_ServiceOptions_serialize() argument 2744 google_protobuf_ServiceOptions_has_deprecated(const google_protobuf_ServiceOptions *msg) google_protobuf_ServiceOptions_has_deprecated() argument 2745 google_protobuf_ServiceOptions_deprecated(const google_protobuf_ServiceOptions *msg) google_protobuf_ServiceOptions_deprecated() argument 2746 google_protobuf_ServiceOptions_has_uninterpreted_option(const google_protobuf_ServiceOptions *msg) google_protobuf_ServiceOptions_has_uninterpreted_option() argument 2747 google_protobuf_ServiceOptions_uninterpreted_option(const google_protobuf_ServiceOptions *msg, size_t *len) google_protobuf_ServiceOptions_uninterpreted_option() argument 2749 google_protobuf_ServiceOptions_set_deprecated(google_protobuf_ServiceOptions *msg, bool value) google_protobuf_ServiceOptions_set_deprecated() argument 2753 google_protobuf_ServiceOptions_mutable_uninterpreted_option(google_protobuf_ServiceOptions *msg, size_t *len) google_protobuf_ServiceOptions_mutable_uninterpreted_option() argument 2756 google_protobuf_ServiceOptions_resize_uninterpreted_option(google_protobuf_ServiceOptions *msg, size_t len, upb_arena *arena) google_protobuf_ServiceOptions_resize_uninterpreted_option() argument 2759 google_protobuf_ServiceOptions_add_uninterpreted_option(google_protobuf_ServiceOptions *msg, upb_arena *arena) google_protobuf_ServiceOptions_add_uninterpreted_option() argument 2777 google_protobuf_MethodOptions_serialize(const google_protobuf_MethodOptions *msg, upb_arena *arena, size_t *len) google_protobuf_MethodOptions_serialize() argument 2781 google_protobuf_MethodOptions_has_deprecated(const google_protobuf_MethodOptions *msg) google_protobuf_MethodOptions_has_deprecated() argument 2782 google_protobuf_MethodOptions_deprecated(const google_protobuf_MethodOptions *msg) google_protobuf_MethodOptions_deprecated() argument 2783 google_protobuf_MethodOptions_has_idempotency_level(const google_protobuf_MethodOptions *msg) google_protobuf_MethodOptions_has_idempotency_level() argument 2784 google_protobuf_MethodOptions_idempotency_level(const google_protobuf_MethodOptions *msg) google_protobuf_MethodOptions_idempotency_level() argument 2785 google_protobuf_MethodOptions_has_uninterpreted_option(const google_protobuf_MethodOptions *msg) google_protobuf_MethodOptions_has_uninterpreted_option() argument 2786 google_protobuf_MethodOptions_uninterpreted_option(const google_protobuf_MethodOptions *msg, size_t *len) google_protobuf_MethodOptions_uninterpreted_option() argument 2788 google_protobuf_MethodOptions_set_deprecated(google_protobuf_MethodOptions *msg, bool value) google_protobuf_MethodOptions_set_deprecated() argument 2792 google_protobuf_MethodOptions_set_idempotency_level(google_protobuf_MethodOptions *msg, int32_t value) google_protobuf_MethodOptions_set_idempotency_level() argument 2796 google_protobuf_MethodOptions_mutable_uninterpreted_option(google_protobuf_MethodOptions *msg, size_t *len) google_protobuf_MethodOptions_mutable_uninterpreted_option() argument 2799 google_protobuf_MethodOptions_resize_uninterpreted_option(google_protobuf_MethodOptions *msg, size_t len, upb_arena *arena) google_protobuf_MethodOptions_resize_uninterpreted_option() argument 2802 google_protobuf_MethodOptions_add_uninterpreted_option(google_protobuf_MethodOptions *msg, upb_arena *arena) google_protobuf_MethodOptions_add_uninterpreted_option() argument 2820 google_protobuf_UninterpretedOption_serialize(const google_protobuf_UninterpretedOption *msg, upb_arena *arena, size_t *len) google_protobuf_UninterpretedOption_serialize() argument 2824 google_protobuf_UninterpretedOption_has_name(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_has_name() argument 2825 google_protobuf_UninterpretedOption_name(const google_protobuf_UninterpretedOption *msg, size_t *len) google_protobuf_UninterpretedOption_name() argument 2826 google_protobuf_UninterpretedOption_has_identifier_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_has_identifier_value() argument 2827 google_protobuf_UninterpretedOption_identifier_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_identifier_value() argument 2828 google_protobuf_UninterpretedOption_has_positive_int_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_has_positive_int_value() argument 2829 google_protobuf_UninterpretedOption_positive_int_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_positive_int_value() argument 2830 google_protobuf_UninterpretedOption_has_negative_int_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_has_negative_int_value() argument 2831 google_protobuf_UninterpretedOption_negative_int_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_negative_int_value() argument 2832 google_protobuf_UninterpretedOption_has_double_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_has_double_value() argument 2833 google_protobuf_UninterpretedOption_double_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_double_value() argument 2834 google_protobuf_UninterpretedOption_has_string_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_has_string_value() argument 2835 google_protobuf_UninterpretedOption_string_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_string_value() argument 2836 google_protobuf_UninterpretedOption_has_aggregate_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_has_aggregate_value() argument 2837 google_protobuf_UninterpretedOption_aggregate_value(const google_protobuf_UninterpretedOption *msg) google_protobuf_UninterpretedOption_aggregate_value() argument 2839 google_protobuf_UninterpretedOption_mutable_name(google_protobuf_UninterpretedOption *msg, size_t *len) google_protobuf_UninterpretedOption_mutable_name() argument 2842 google_protobuf_UninterpretedOption_resize_name(google_protobuf_UninterpretedOption *msg, size_t len, upb_arena *arena) google_protobuf_UninterpretedOption_resize_name() argument 2845 google_protobuf_UninterpretedOption_add_name(google_protobuf_UninterpretedOption *msg, upb_arena *arena) google_protobuf_UninterpretedOption_add_name() argument 2852 google_protobuf_UninterpretedOption_set_identifier_value(google_protobuf_UninterpretedOption *msg, upb_strview value) google_protobuf_UninterpretedOption_set_identifier_value() argument 2856 google_protobuf_UninterpretedOption_set_positive_int_value(google_protobuf_UninterpretedOption *msg, uint64_t value) google_protobuf_UninterpretedOption_set_positive_int_value() argument 2860 google_protobuf_UninterpretedOption_set_negative_int_value(google_protobuf_UninterpretedOption *msg, int64_t value) google_protobuf_UninterpretedOption_set_negative_int_value() argument 2864 google_protobuf_UninterpretedOption_set_double_value(google_protobuf_UninterpretedOption *msg, double value) google_protobuf_UninterpretedOption_set_double_value() argument 2868 google_protobuf_UninterpretedOption_set_string_value(google_protobuf_UninterpretedOption *msg, upb_strview value) google_protobuf_UninterpretedOption_set_string_value() argument 2872 google_protobuf_UninterpretedOption_set_aggregate_value(google_protobuf_UninterpretedOption *msg, upb_strview value) google_protobuf_UninterpretedOption_set_aggregate_value() argument 2887 google_protobuf_UninterpretedOption_NamePart_serialize(const google_protobuf_UninterpretedOption_NamePart *msg, upb_arena *arena, size_t *len) google_protobuf_UninterpretedOption_NamePart_serialize() argument 2891 google_protobuf_UninterpretedOption_NamePart_has_name_part(const google_protobuf_UninterpretedOption_NamePart *msg) google_protobuf_UninterpretedOption_NamePart_has_name_part() argument 2892 google_protobuf_UninterpretedOption_NamePart_name_part(const google_protobuf_UninterpretedOption_NamePart *msg) google_protobuf_UninterpretedOption_NamePart_name_part() argument 2893 google_protobuf_UninterpretedOption_NamePart_has_is_extension(const google_protobuf_UninterpretedOption_NamePart *msg) google_protobuf_UninterpretedOption_NamePart_has_is_extension() argument 2894 google_protobuf_UninterpretedOption_NamePart_is_extension(const google_protobuf_UninterpretedOption_NamePart *msg) google_protobuf_UninterpretedOption_NamePart_is_extension() argument 2896 google_protobuf_UninterpretedOption_NamePart_set_name_part(google_protobuf_UninterpretedOption_NamePart *msg, upb_strview value) google_protobuf_UninterpretedOption_NamePart_set_name_part() argument 2900 google_protobuf_UninterpretedOption_NamePart_set_is_extension(google_protobuf_UninterpretedOption_NamePart *msg, bool value) google_protobuf_UninterpretedOption_NamePart_set_is_extension() argument 2915 google_protobuf_SourceCodeInfo_serialize(const google_protobuf_SourceCodeInfo *msg, upb_arena *arena, size_t *len) google_protobuf_SourceCodeInfo_serialize() argument 2919 google_protobuf_SourceCodeInfo_has_location(const google_protobuf_SourceCodeInfo *msg) google_protobuf_SourceCodeInfo_has_location() argument 2920 google_protobuf_SourceCodeInfo_location(const google_protobuf_SourceCodeInfo *msg, size_t *len) google_protobuf_SourceCodeInfo_location() argument 2922 google_protobuf_SourceCodeInfo_mutable_location(google_protobuf_SourceCodeInfo *msg, size_t *len) google_protobuf_SourceCodeInfo_mutable_location() argument 2925 google_protobuf_SourceCodeInfo_resize_location(google_protobuf_SourceCodeInfo *msg, size_t len, upb_arena *arena) google_protobuf_SourceCodeInfo_resize_location() argument 2928 google_protobuf_SourceCodeInfo_add_location(google_protobuf_SourceCodeInfo *msg, upb_arena *arena) google_protobuf_SourceCodeInfo_add_location() argument 2946 google_protobuf_SourceCodeInfo_Location_serialize(const google_protobuf_SourceCodeInfo_Location *msg, upb_arena *arena, size_t *len) google_protobuf_SourceCodeInfo_Location_serialize() argument 2950 google_protobuf_SourceCodeInfo_Location_path(const google_protobuf_SourceCodeInfo_Location *msg, size_t *len) google_protobuf_SourceCodeInfo_Location_path() argument 2951 google_protobuf_SourceCodeInfo_Location_span(const google_protobuf_SourceCodeInfo_Location *msg, size_t *len) google_protobuf_SourceCodeInfo_Location_span() argument 2952 google_protobuf_SourceCodeInfo_Location_has_leading_comments(const google_protobuf_SourceCodeInfo_Location *msg) google_protobuf_SourceCodeInfo_Location_has_leading_comments() argument 2953 google_protobuf_SourceCodeInfo_Location_leading_comments(const google_protobuf_SourceCodeInfo_Location *msg) google_protobuf_SourceCodeInfo_Location_leading_comments() argument 2954 google_protobuf_SourceCodeInfo_Location_has_trailing_comments(const google_protobuf_SourceCodeInfo_Location *msg) google_protobuf_SourceCodeInfo_Location_has_trailing_comments() argument 2955 google_protobuf_SourceCodeInfo_Location_trailing_comments(const google_protobuf_SourceCodeInfo_Location *msg) google_protobuf_SourceCodeInfo_Location_trailing_comments() argument 2956 google_protobuf_SourceCodeInfo_Location_leading_detached_comments(const google_protobuf_SourceCodeInfo_Location *msg, size_t *len) google_protobuf_SourceCodeInfo_Location_leading_detached_comments() argument 2958 google_protobuf_SourceCodeInfo_Location_mutable_path(google_protobuf_SourceCodeInfo_Location *msg, size_t *len) google_protobuf_SourceCodeInfo_Location_mutable_path() argument 2961 google_protobuf_SourceCodeInfo_Location_resize_path(google_protobuf_SourceCodeInfo_Location *msg, size_t len, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_resize_path() argument 2964 google_protobuf_SourceCodeInfo_Location_add_path(google_protobuf_SourceCodeInfo_Location *msg, int32_t val, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_add_path() argument 2968 google_protobuf_SourceCodeInfo_Location_mutable_span(google_protobuf_SourceCodeInfo_Location *msg, size_t *len) google_protobuf_SourceCodeInfo_Location_mutable_span() argument 2971 google_protobuf_SourceCodeInfo_Location_resize_span(google_protobuf_SourceCodeInfo_Location *msg, size_t len, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_resize_span() argument 2974 google_protobuf_SourceCodeInfo_Location_add_span(google_protobuf_SourceCodeInfo_Location *msg, int32_t val, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_add_span() argument 2978 google_protobuf_SourceCodeInfo_Location_set_leading_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_strview value) google_protobuf_SourceCodeInfo_Location_set_leading_comments() argument 2982 google_protobuf_SourceCodeInfo_Location_set_trailing_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_strview value) google_protobuf_SourceCodeInfo_Location_set_trailing_comments() argument 2986 google_protobuf_SourceCodeInfo_Location_mutable_leading_detached_comments(google_protobuf_SourceCodeInfo_Location *msg, size_t *len) google_protobuf_SourceCodeInfo_Location_mutable_leading_detached_comments() argument 2989 google_protobuf_SourceCodeInfo_Location_resize_leading_detached_comments(google_protobuf_SourceCodeInfo_Location *msg, size_t len, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_resize_leading_detached_comments() argument 2992 google_protobuf_SourceCodeInfo_Location_add_leading_detached_comments(google_protobuf_SourceCodeInfo_Location *msg, upb_strview val, upb_arena *arena) google_protobuf_SourceCodeInfo_Location_add_leading_detached_comments() argument 3007 google_protobuf_GeneratedCodeInfo_serialize(const google_protobuf_GeneratedCodeInfo *msg, upb_arena *arena, size_t *len) google_protobuf_GeneratedCodeInfo_serialize() argument 3011 google_protobuf_GeneratedCodeInfo_has_annotation(const google_protobuf_GeneratedCodeInfo *msg) google_protobuf_GeneratedCodeInfo_has_annotation() argument 3012 google_protobuf_GeneratedCodeInfo_annotation(const google_protobuf_GeneratedCodeInfo *msg, size_t *len) google_protobuf_GeneratedCodeInfo_annotation() argument 3014 google_protobuf_GeneratedCodeInfo_mutable_annotation(google_protobuf_GeneratedCodeInfo *msg, size_t *len) google_protobuf_GeneratedCodeInfo_mutable_annotation() argument 3017 google_protobuf_GeneratedCodeInfo_resize_annotation(google_protobuf_GeneratedCodeInfo *msg, size_t len, upb_arena *arena) google_protobuf_GeneratedCodeInfo_resize_annotation() argument 3020 google_protobuf_GeneratedCodeInfo_add_annotation(google_protobuf_GeneratedCodeInfo *msg, upb_arena *arena) google_protobuf_GeneratedCodeInfo_add_annotation() argument 3038 google_protobuf_GeneratedCodeInfo_Annotation_serialize(const google_protobuf_GeneratedCodeInfo_Annotation *msg, upb_arena *arena, size_t *len) google_protobuf_GeneratedCodeInfo_Annotation_serialize() argument 3042 google_protobuf_GeneratedCodeInfo_Annotation_path(const google_protobuf_GeneratedCodeInfo_Annotation *msg, size_t *len) google_protobuf_GeneratedCodeInfo_Annotation_path() argument 3043 google_protobuf_GeneratedCodeInfo_Annotation_has_source_file(const google_protobuf_GeneratedCodeInfo_Annotation *msg) google_protobuf_GeneratedCodeInfo_Annotation_has_source_file() argument 3044 google_protobuf_GeneratedCodeInfo_Annotation_source_file(const google_protobuf_GeneratedCodeInfo_Annotation *msg) google_protobuf_GeneratedCodeInfo_Annotation_source_file() argument 3045 google_protobuf_GeneratedCodeInfo_Annotation_has_begin(const google_protobuf_GeneratedCodeInfo_Annotation *msg) google_protobuf_GeneratedCodeInfo_Annotation_has_begin() argument 3046 google_protobuf_GeneratedCodeInfo_Annotation_begin(const google_protobuf_GeneratedCodeInfo_Annotation *msg) google_protobuf_GeneratedCodeInfo_Annotation_begin() argument 3047 google_protobuf_GeneratedCodeInfo_Annotation_has_end(const google_protobuf_GeneratedCodeInfo_Annotation *msg) google_protobuf_GeneratedCodeInfo_Annotation_has_end() argument 3048 google_protobuf_GeneratedCodeInfo_Annotation_end(const google_protobuf_GeneratedCodeInfo_Annotation *msg) google_protobuf_GeneratedCodeInfo_Annotation_end() argument 3050 google_protobuf_GeneratedCodeInfo_Annotation_mutable_path(google_protobuf_GeneratedCodeInfo_Annotation *msg, size_t *len) google_protobuf_GeneratedCodeInfo_Annotation_mutable_path() argument 3053 google_protobuf_GeneratedCodeInfo_Annotation_resize_path(google_protobuf_GeneratedCodeInfo_Annotation *msg, size_t len, upb_arena *arena) google_protobuf_GeneratedCodeInfo_Annotation_resize_path() argument 3056 google_protobuf_GeneratedCodeInfo_Annotation_add_path(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t val, upb_arena *arena) google_protobuf_GeneratedCodeInfo_Annotation_add_path() argument 3060 google_protobuf_GeneratedCodeInfo_Annotation_set_source_file(google_protobuf_GeneratedCodeInfo_Annotation *msg, upb_strview value) google_protobuf_GeneratedCodeInfo_Annotation_set_source_file() argument 3064 google_protobuf_GeneratedCodeInfo_Annotation_set_begin(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) google_protobuf_GeneratedCodeInfo_Annotation_set_begin() argument 3068 google_protobuf_GeneratedCodeInfo_Annotation_set_end(google_protobuf_GeneratedCodeInfo_Annotation *msg, int32_t value) google_protobuf_GeneratedCodeInfo_Annotation_set_end() argument 3423 upb_msg* msg; global() member [all...] |
/third_party/node/deps/openssl/openssl/ssl/ |
H A D | t1_trce.c | 24 # define ssl_trace_list(bio, indent, msg, msglen, value, table) \ 25 do_ssl_trace_list(bio, indent, msg, msglen, value, \ 41 const unsigned char *msg, size_t msglen, in do_ssl_trace_list() 49 val = msg[0]; in do_ssl_trace_list() 51 val = (val << 8) | msg[1]; in do_ssl_trace_list() 54 msg += vlen; in do_ssl_trace_list() 615 const unsigned char *msg, size_t msglen) in ssl_print_hex() 622 BIO_printf(bio, "%02X", msg[i]); in ssl_print_hex() 900 const unsigned char *msg = *msgin; in ssl_print_extensions() local 909 extslen = (msg[ in ssl_print_extensions() 40 do_ssl_trace_list(BIO *bio, int indent, const unsigned char *msg, size_t msglen, size_t vlen, const ssl_trace_tbl *tbl, size_t ntbl) do_ssl_trace_list() argument 614 ssl_print_hex(BIO *bio, int indent, const char *name, const unsigned char *msg, size_t msglen) ssl_print_hex() argument 948 ssl_print_client_hello(BIO *bio, const SSL *ssl, int indent, const unsigned char *msg, size_t msglen) ssl_print_client_hello() argument 1005 dtls_print_hello_vfyrequest(BIO *bio, int indent, const unsigned char *msg, size_t msglen) dtls_print_hello_vfyrequest() argument 1015 ssl_print_server_hello(BIO *bio, int indent, const unsigned char *msg, size_t msglen) ssl_print_server_hello() argument 1099 ssl_print_client_keyex(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) ssl_print_client_keyex() argument 1151 ssl_print_server_keyex(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) ssl_print_server_keyex() argument 1254 ssl_print_certificates(BIO *bio, const SSL *ssl, int server, int indent, const unsigned char *msg, size_t msglen) ssl_print_certificates() argument 1284 ssl_print_cert_request(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) ssl_print_cert_request() argument 1373 ssl_print_ticket(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) ssl_print_ticket() argument 1422 ssl_print_handshake(BIO *bio, const SSL *ssl, int server, const unsigned char *msg, size_t msglen, int indent) ssl_print_handshake() argument 1534 const unsigned char *msg = buf; SSL_trace() local [all...] |
/third_party/openssl/ssl/ |
H A D | t1_trce.c | 24 # define ssl_trace_list(bio, indent, msg, msglen, value, table) \ 25 do_ssl_trace_list(bio, indent, msg, msglen, value, \ 41 const unsigned char *msg, size_t msglen, in do_ssl_trace_list() 49 val = msg[0]; in do_ssl_trace_list() 51 val = (val << 8) | msg[1]; in do_ssl_trace_list() 54 msg += vlen; in do_ssl_trace_list() 615 const unsigned char *msg, size_t msglen) in ssl_print_hex() 622 BIO_printf(bio, "%02X", msg[i]); in ssl_print_hex() 900 const unsigned char *msg = *msgin; in ssl_print_extensions() local 909 extslen = (msg[ in ssl_print_extensions() 40 do_ssl_trace_list(BIO *bio, int indent, const unsigned char *msg, size_t msglen, size_t vlen, const ssl_trace_tbl *tbl, size_t ntbl) do_ssl_trace_list() argument 614 ssl_print_hex(BIO *bio, int indent, const char *name, const unsigned char *msg, size_t msglen) ssl_print_hex() argument 948 ssl_print_client_hello(BIO *bio, const SSL *ssl, int indent, const unsigned char *msg, size_t msglen) ssl_print_client_hello() argument 1005 dtls_print_hello_vfyrequest(BIO *bio, int indent, const unsigned char *msg, size_t msglen) dtls_print_hello_vfyrequest() argument 1015 ssl_print_server_hello(BIO *bio, int indent, const unsigned char *msg, size_t msglen) ssl_print_server_hello() argument 1099 ssl_print_client_keyex(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) ssl_print_client_keyex() argument 1151 ssl_print_server_keyex(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) ssl_print_server_keyex() argument 1254 ssl_print_certificates(BIO *bio, const SSL *ssl, int server, int indent, const unsigned char *msg, size_t msglen) ssl_print_certificates() argument 1284 ssl_print_cert_request(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) ssl_print_cert_request() argument 1373 ssl_print_ticket(BIO *bio, int indent, const SSL *ssl, const unsigned char *msg, size_t msglen) ssl_print_ticket() argument 1422 ssl_print_handshake(BIO *bio, const SSL *ssl, int server, const unsigned char *msg, size_t msglen, int indent) ssl_print_handshake() argument 1534 const unsigned char *msg = buf; SSL_trace() local [all...] |