#include "upb.h"#include <math.h>#include <string.h>#include <errno.h>#include <stdarg.h>#include <stddef.h>#include <stdint.h>#include <stdio.h>#include <stdlib.h>#include <ctype.h>#include <inttypes.h>#include <float.h>#include <time.h>
Go to the source code of this file.
Classes | |
| struct | cleanup_ent |
| struct | compiler |
| struct | decl_counts |
| struct | EnumHandlerData |
| union | lookupkey_t |
| struct | mem_block |
| struct | str_t |
| struct | strpc |
| struct | symtab_addctx |
| struct | tag_t |
| struct | upb_arena |
| struct | upb_decframe |
| struct | upb_decstate |
| struct | upb_encstate |
| struct | upb_enumdef |
| struct | upb_fielddef |
| struct | upb_filedef |
| struct | upb_handlercache |
| struct | upb_handlers |
| struct | upb_json_codecache |
| struct | upb_json_parser |
| struct | upb_json_parsermethod |
| struct | upb_json_printer |
| struct | upb_json_printercache |
| struct | upb_jsonparser_any_frame |
| struct | upb_jsonparser_frame |
| struct | upb_msg_handlerdata |
| struct | upb_msg_internal |
| struct | upb_msg_internal_withext |
| struct | upb_msgdef |
| struct | upb_msgfactory |
| struct | upb_oneofdef |
| struct | upb_pb_encoder |
| struct | upb_pb_encoder_segment |
| struct | upb_stringsink |
| struct | upb_symtab |
| struct | upb_textprinter |
Macros | |
| #define | ARRAY_SIZE(x) ((sizeof(x)/sizeof(0[x])) / ((size_t)(!(sizeof(x) % sizeof(0[x]))))) |
| #define | CASE(capitaltype, smalltype, ctype, min, max) |
| #define | CASE(ctype, type, wire_type, encodeval) |
| #define | CHECK(x) if ((x) < 0) goto err; |
| #define | CHECK_RETURN_TOP(x) if (!(x)) goto error |
| #define | CHECK_SUSPEND(x) if (!(x)) return upb_pbdecoder_suspend(d); |
| #define | CHK(val) if (!(val)) return false; |
| #define | CHK(x) if (!(x)) { return 0; } |
| #define | CHK(x) do { if (!(x)) { return false; } } while(0) |
| #define | CHK(x) if (!(x)) { return false; } |
| #define | CHK_OOM(x) if (!(x)) { upb_status_setoom(ctx->status); return false; } |
| #define | CHKFMT(val) if ((val) == (size_t)-1) return false; |
| #define | CHKLENGTH(x) if (!(x)) return -1; |
| #define | EMPTYLABEL -1 |
| #define | EPOCH_YEAR 1970 |
| #define | LABEL_ENDMSG 4 /* To reach the OP_ENDMSG instr for this msg. */ |
| #define | LABEL_FIELD 3 /* Jump backward to find the most recent field. */ |
| #define | LABEL_LOOPBREAK 2 /* To jump out of a repeated loop */ |
| #define | LABEL_LOOPSTART 1 /* Top of a repeated field loop. */ |
| #define | MAXLABEL 5 |
| #define | MIX(h, k, m) { k *= m; k ^= k >> r; k *= m; h *= m; h ^= k; } |
| #define | MSG_WRITER(type, ctype) |
| #define | PARSER_CHECK_RETURN(x) if (!(x)) return false |
| #define | PRIMITIVE_OP(type, wt, name, convfunc, ctype) |
| #define | SETTER(name, handlerctype, handlertype) |
| #define | STRINGIFY_HELPER(x) #x |
| #define | STRINGIFY_MACROVAL(x) STRINGIFY_HELPER(x) |
| #define | SUBH(h, selector) (h->sub[selector]) |
| #define | SUBH_F(h, f) SUBH(h, upb_fielddef_index(f)) |
| #define | T(type, ctype, convert, encode) |
| #define | T(upper, lower, upbtype) |
| #define | TM_YEAR_BASE 1900 |
| #define | TYPE(name, ctype, fmt) |
| #define | TYPE(type, name, ctype) |
| #define | TYPE(u, l) |
| #define | TYPE_HANDLERS(type, fmt_func) |
| #define | TYPE_HANDLERS_MAPKEY(type, fmt_func) |
| #define | upb_alignof(type) offsetof (struct { char c; type member; }, member) |
| #define | UPB_ASSERT(expr) assert(expr) |
| #define | UPB_ASSERT_DEBUGVAR(expr) assert(expr) |
| #define | UPB_DURATION_MAX_JSON_LEN 23 |
| #define | UPB_DURATION_MAX_NANO_LEN 9 |
| #define | UPB_FIELD_AT(msg, fieldtype, offset) *(fieldtype*)((const char*)(msg) + offset) |
| #define | UPB_FORCEINLINE |
| #define | UPB_INFINITY (1.0 / 0.0) |
| #define | UPB_INLINE static |
| #define | UPB_JSON_MAX_DEPTH 64 |
| #define | UPB_LIKELY(x) (x) |
| #define | UPB_MAX(x, y) ((x) > (y) ? (x) : (y)) |
| #define | UPB_MAXARRSIZE 16 /* 64k. */ |
| #define | UPB_MIN(x, y) ((x) < (y) ? (x) : (y)) |
| #define | UPB_NOINLINE |
| #define | UPB_NORETURN |
| #define | UPB_PB_VARINT_MAX_LEN 10 |
| #define | UPB_READ_ONEOF(msg, fieldtype, offset, case_offset, case_val, default) |
| #define | UPB_SIZE(size32, size64) size64 |
| #define | UPB_STATIC_SELECTOR_COUNT 3 /* Warning: also in upb/handlers.h. */ |
| #define | UPB_TIMESTAMP_BEFORE_NANO_LEN 19 |
| #define | UPB_TIMESTAMP_MAX_JSON_LEN 31 |
| #define | UPB_TIMESTAMP_MAX_NANO_LEN 9 |
| #define | UPB_UNLIKELY(x) (x) |
| #define | UPB_UNREACHABLE() do { assert(0); } while(0) |
| #define | UPB_UNUSED(var) (void)var |
| #define | UPB_WRITE_ONEOF(msg, fieldtype, offset, value, case_offset, case_val) |
| #define | VARINT_CASE(ctype, decode) VARINT_CASE_EX(ctype, decode, decode) |
| #define | VARINT_CASE(ctype, encode) |
| #define | VARINT_CASE_EX(ctype, decode, dtype) |
| #define | VMCASE(op, code) case op: { code; if (consumes_input(op)) checkpoint(d); break; } |
| #define | VOIDPTR_AT(msg, ofs) (void*)((char*)msg + (int)ofs) |
| #define | WRAPPER(wellknowntype, name) |
| #define | WRAPPER_SETHANDLERS(wrapper, type, putmethod) |
| #define | WRITE(byte) |
Typedefs | |
| typedef struct cleanup_ent | cleanup_ent |
| typedef bool | eqlfunc_t(upb_tabkey k1, lookupkey_t k2) |
| typedef uint32_t | hashfunc_t(upb_tabkey key) |
| typedef struct mem_block | mem_block |
Enumerations | |
| enum | { VALUE_NULLVALUE = 0, VALUE_NUMBERVALUE = 1, VALUE_STRINGVALUE = 2, VALUE_BOOLVALUE = 3, VALUE_STRUCTVALUE = 4, VALUE_LISTVALUE = 5 } |
| enum | { MULTIPART_INACTIVE = 0, MULTIPART_ACCUMULATE = 1, MULTIPART_PUSHEAGERLY = 2 } |
| enum | upb_deftype_t { UPB_DEFTYPE_MSG = 0, UPB_DEFTYPE_ENUM = 1, UPB_DEFTYPE_FIELD = 2, UPB_DEFTYPE_ONEOF = 3, UPB_DEFTYPE_MSG = 0, UPB_DEFTYPE_ENUM = 1, UPB_DEFTYPE_FIELD = 2, UPB_DEFTYPE_ONEOF = 3, UPB_DEFTYPE_FIELD = 0, UPB_DEFTYPE_MSG = 1, UPB_DEFTYPE_ENUM = 2, UPB_DEFTYPE_ONEOF = 1, UPB_DEFTYPE_FIELD_JSONNAME = 2, UPB_DEFTYPE_FIELD = 0, UPB_DEFTYPE_MSG = 1, UPB_DEFTYPE_ENUM = 2, UPB_DEFTYPE_ONEOF = 1, UPB_DEFTYPE_FIELD_JSONNAME = 2, UPB_DEFTYPE_MASK = 7, UPB_DEFTYPE_EXT = 0, UPB_DEFTYPE_MSG = 1, UPB_DEFTYPE_ENUM = 2, UPB_DEFTYPE_ENUMVAL = 3, UPB_DEFTYPE_SERVICE = 4, UPB_DEFTYPE_FIELD = 0, UPB_DEFTYPE_ONEOF = 1, UPB_DEFTYPE_FIELD_JSONNAME = 2, UPB_DEFTYPE_FILE = 0, UPB_DEFTYPE_LAYOUT = 1 } |
Definition at line 1276 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define CASE | ( | ctype, | |
| type, | |||
| wire_type, | |||
| encodeval | |||
| ) |
Definition at line 8085 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 11037 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define CHECK_SUSPEND | ( | x | ) | if (!(x)) return upb_pbdecoder_suspend(d); |
Definition at line 6440 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12168 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12168 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12168 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12168 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 3738 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12167 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12092 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define EMPTYLABEL -1 |
Definition at line 5508 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define EPOCH_YEAR 1970 |
Definition at line 10158 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 6027 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 6026 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 6025 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 6024 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define MAXLABEL 5 |
Definition at line 5507 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define MIX | ( | h, | |
| k, | |||
| m | |||
| ) | { k *= m; k ^= k >> r; k *= m; h *= m; h ^= k; } |
Definition at line 2055 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define MSG_WRITER | ( | type, | |
| ctype | |||
| ) |
Definition at line 5389 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 8769 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define SETTER | ( | name, | |
| handlerctype, | |||
| handlertype | |||
| ) |
Definition at line 5111 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 8227 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define STRINGIFY_MACROVAL | ( | x | ) | STRINGIFY_HELPER(x) |
Definition at line 8228 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define SUBH | ( | h, | |
| selector | |||
| ) | (h->sub[selector]) |
Definition at line 4943 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define SUBH_F | ( | h, | |
| f | |||
| ) | SUBH(h, upb_fielddef_index(f)) |
Definition at line 4946 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define T | ( | type, | |
| ctype, | |||
| convert, | |||
| encode | |||
| ) |
Definition at line 7897 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define T | ( | upper, | |
| lower, | |||
| upbtype | |||
| ) |
Definition at line 7897 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define TM_YEAR_BASE 1900 |
Definition at line 10159 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 8202 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 8202 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define TYPE | ( | u, | |
| l | |||
| ) |
Definition at line 8202 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define TYPE_HANDLERS | ( | type, | |
| fmt_func | |||
| ) |
| #define TYPE_HANDLERS_MAPKEY | ( | type, | |
| fmt_func | |||
| ) |
Definition at line 2352 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_ASSERT | ( | expr | ) | assert(expr) |
Definition at line 135 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_ASSERT_DEBUGVAR | ( | expr | ) | assert(expr) |
Definition at line 140 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_DURATION_MAX_JSON_LEN 23 |
Definition at line 12769 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_DURATION_MAX_NANO_LEN 9 |
Definition at line 12770 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 35 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_FORCEINLINE |
Definition at line 77 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_INFINITY (1.0 / 0.0) |
Definition at line 153 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_INLINE static |
Definition at line 53 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_JSON_MAX_DEPTH 64 |
Definition at line 8506 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 61 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 125 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_MAXARRSIZE 16 /* 64k. */ |
Definition at line 1273 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 126 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_NOINLINE |
Definition at line 78 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_NORETURN |
Definition at line 79 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_PB_VARINT_MAX_LEN 10 |
Definition at line 763 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 38 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_SIZE | ( | size32, | |
| size64 | |||
| ) | size64 |
Definition at line 32 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_STATIC_SELECTOR_COUNT 3 /* Warning: also in upb/handlers.h. */ |
Definition at line 3121 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_TIMESTAMP_BEFORE_NANO_LEN 19 |
Definition at line 12839 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_TIMESTAMP_MAX_JSON_LEN 31 |
Definition at line 12838 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_TIMESTAMP_MAX_NANO_LEN 9 |
Definition at line 12840 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 62 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_UNREACHABLE | ( | ) | do { assert(0); } while(0) |
Definition at line 145 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define UPB_UNUSED | ( | var | ) | (void)var |
Definition at line 128 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 43 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define VARINT_CASE | ( | ctype, | |
| decode | |||
| ) | VARINT_CASE_EX(ctype, decode, decode) |
| #define VARINT_CASE | ( | ctype, | |
| encode | |||
| ) |
| #define VARINT_CASE_EX | ( | ctype, | |
| decode, | |||
| dtype | |||
| ) |
| #define VMCASE | ( | op, | |
| code | |||
| ) | case op: { code; if (consumes_input(op)) checkpoint(d); break; } |
Definition at line 1134 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define WRAPPER | ( | wellknowntype, | |
| name | |||
| ) |
Definition at line 13087 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| #define WRITE | ( | byte | ) |
| typedef struct cleanup_ent cleanup_ent |
| typedef bool eqlfunc_t(upb_tabkey k1, lookupkey_t k2) |
Definition at line 1346 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| typedef uint32_t hashfunc_t(upb_tabkey key) |
Definition at line 1345 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| anonymous enum |
| Enumerator | |
|---|---|
| VALUE_NULLVALUE | |
| VALUE_NUMBERVALUE | |
| VALUE_STRINGVALUE | |
| VALUE_BOOLVALUE | |
| VALUE_STRUCTVALUE | |
| VALUE_LISTVALUE | |
Definition at line 8509 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| anonymous enum |
| Enumerator | |
|---|---|
| MULTIPART_INACTIVE | |
| MULTIPART_ACCUMULATE | |
| MULTIPART_PUSHEAGERLY | |
Definition at line 9147 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| enum upb_deftype_t |
Definition at line 3025 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool _upb_symtab_loaddefinit | ( | upb_symtab * | s, |
| const upb_def_init * | init | ||
| ) |
Definition at line 4619 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7694 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9093 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9065 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9125 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9071 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6553 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6586 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4673 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2248 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6903 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6904 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9060 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3142 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3198 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| int32_t b64lookup | ( | unsigned char | ch | ) |
Definition at line 8952 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8958 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 1525 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 3518 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6538 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4343 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6490 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9216 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9222 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9254 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9235 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1715 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8869 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8894 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6592 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool checkstart | ( | upb_handlers * | h, |
| const upb_fielddef * | f, | ||
| upb_handlertype_t | type, | ||
| upb_status * | status | ||
| ) |
Definition at line 5066 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3422 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 3112 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7667 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6185 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6281 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6750 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 6460 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4256 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4237 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4104 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3983 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4168 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3839 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6532 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7827 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6882 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6889 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6862 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6839 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6938 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6907 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| size_t delim_remaining | ( | const upb_pbdecoder * | d | ) |
Definition at line 6548 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7034 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 5954 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4678 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11033 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11027 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11005 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10999 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11019 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11013 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4973 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const void* effective_closure_type | ( | upb_handlers * | h, |
| const upb_fielddef * | f, | ||
| upb_handlertype_t | type | ||
| ) |
Definition at line 5033 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1390 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7682 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 7872 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 7881 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7813 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7808 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7861 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7877 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7885 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7890 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7801 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 7866 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7818 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7660 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 11730 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10517 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10472 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10745 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9750 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10698 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9573 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10049 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7750 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9915 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10883 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10298 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10258 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12301 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9307 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10061 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10962 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10489 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10438 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10073 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10037 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9621 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9384 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9371 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10733 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10085 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9866 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9792 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10979 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10603 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10624 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9339 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10101 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10200 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10945 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10901 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10025 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8100 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12353 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7851 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12336 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12701 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 10172 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9283 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9267 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| uint32_t field_rank | ( | const upb_fielddef * | f | ) |
Definition at line 3103 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6251 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 5986 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1399 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1412 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7833 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12123 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12101 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12117 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12129 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12142 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12135 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12148 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 5595 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 5546 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 5512 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void freestrpc | ( | void * | ptr | ) |
Definition at line 11966 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6091 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6030 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6130 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 5909 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6783 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6760 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1395 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 5629 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 5933 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8856 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7021 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10392 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4961 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6011 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9292 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 6558 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6562 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8092 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1363 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8689 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1431 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 5602 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1931 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1926 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1688 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1686 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1339 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1696 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1706 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10864 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| UPB_INLINE bool is_json_escaped | ( | char | c | ) |
Definition at line 12027 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11009 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 1292 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4668 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10858 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11023 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10984 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10992 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10988 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 1355 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 10161 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const UPB_INLINE char* json_nice_escape | ( | char | c | ) |
Definition at line 12033 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8809 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8815 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8830 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8825 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8820 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8771 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8844 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8836 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8789 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11748 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 13284 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 5651 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 5675 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 1294 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1417 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10281 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3761 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12529 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12498 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12491 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12482 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12505 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12274 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6006 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 6312 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9203 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9170 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9162 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9177 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1692 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1351 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7790 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 5582 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| mgroup* newgroup | ( | void | ) |
Definition at line 5559 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 5517 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 2925 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| strpc* newstrpc | ( | upb_handlers * | h, |
| const upb_fielddef * | f, | ||
| bool | preserve_fieldnames | ||
| ) |
Definition at line 11977 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| strpc* newstrpc_str | ( | upb_handlers * | h, |
| const char * | str | ||
| ) |
Definition at line 11998 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 1516 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool nonbase64 | ( | unsigned char | ch | ) |
Definition at line 8956 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2187 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| uint64_t offset | ( | const upb_pbdecoder * | d | ) |
Definition at line 6543 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8309 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 5611 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_pbdecoder_frame* outer_frame | ( | upb_pbdecoder * | d | ) |
Definition at line 7087 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3037 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| size_t parse | ( | void * | closure, |
| const void * | hd, | ||
| const char * | buf, | ||
| size_t | size, | ||
| const upb_bufhandle * | handle | ||
| ) |
Definition at line 11319 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3860 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10322 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9531 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9410 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10004 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8864 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9553 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11772 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 5646 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6806 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6794 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12015 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12008 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12250 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12772 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12316 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12935 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12913 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12842 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void printer_sethandlers | ( | const void * | closure, |
| upb_handlers * | h | ||
| ) |
Definition at line 13144 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void printer_sethandlers_any | ( | const void * | closure, |
| upb_handlers * | h | ||
| ) |
Definition at line 12956 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void printer_sethandlers_duration | ( | const void * | closure, |
| upb_handlers * | h | ||
| ) |
Definition at line 13010 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void printer_sethandlers_fieldmask | ( | const void * | closure, |
| upb_handlers * | h | ||
| ) |
Definition at line 12991 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void printer_sethandlers_listvalue | ( | const void * | closure, |
| upb_handlers * | h | ||
| ) |
Definition at line 13110 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void printer_sethandlers_mapentry | ( | const void * | closure, |
| bool | preserve_fieldnames, | ||
| upb_handlers * | h | ||
| ) |
Definition at line 12561 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void printer_sethandlers_structvalue | ( | const void * | closure, |
| upb_handlers * | h | ||
| ) |
Definition at line 13127 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void printer_sethandlers_timestamp | ( | const void * | closure, |
| upb_handlers * | h | ||
| ) |
Definition at line 13030 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void printer_sethandlers_value | ( | const void * | closure, |
| upb_handlers * | h | ||
| ) |
Definition at line 13048 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12760 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12306 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12924 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12904 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12829 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6926 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 5693 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7619 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12371 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 5917 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8106 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool putf | ( | upb_textprinter * | p, |
| const char * | fmt, | ||
| ... | |||
| ) |
Definition at line 8153 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12157 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12655 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12751 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 5708 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 5972 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12647 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 5997 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12361 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12672 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12049 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 5943 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12520 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12475 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12263 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12458 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12708 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12288 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12468 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12718 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7630 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4274 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3793 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4968 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1477 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| size_t run_decoder_vm | ( | upb_pbdecoder * | d, |
| const mgroup * | group, | ||
| const upb_bufhandle * | handle | ||
| ) |
Definition at line 7097 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8900 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12512 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12451 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 12230 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12434 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12663 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12947 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12284 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12444 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6294 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3956 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6568 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12538 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8878 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6516 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 5637 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 3087 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 8087 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6606 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6485 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10512 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10739 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9653 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10642 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10045 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7706 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9911 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10869 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10262 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10254 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12295 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9288 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10057 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8749 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10950 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10315 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10069 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10033 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9343 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10727 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10081 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9658 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10967 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10522 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10579 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 9335 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10093 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10097 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10154 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10906 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10889 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 10021 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12344 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12742 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 7842 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12327 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12693 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12684 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1632 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1534 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1549 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 3753 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3757 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1543 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8580 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8588 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1332 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3749 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6717 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6579 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3778 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const void* symtab_resolve | ( | const symtab_addctx * | ctx, |
| const upb_fielddef * | f, | ||
| const char * | base, | ||
| upb_strview | sym, | ||
| upb_deftype_t | type | ||
| ) |
Definition at line 3825 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| T | ( | double | , |
| double | , | ||
| dbl2uint64 | , | ||
| encode_fixed64 | |||
| ) |
Definition at line 7906 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8192 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 8267 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 8297 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 8215 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 8240 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8275 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8368 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 8183 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8257 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8286 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 7624 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4948 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 1385 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3032 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 397 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 272 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 2286 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_arena_addcleanup | ( | upb_arena * | a, |
| void * | ud, | ||
| upb_cleanup_func * | func | ||
| ) |
Definition at line 2414 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 2300 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 2428 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2314 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_arena_free | ( | upb_arena * | a | ) |
Definition at line 2391 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 2354 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_array_add | ( | upb_array * | arr, |
| size_t | elements, | ||
| size_t | elem_size, | ||
| const void * | data, | ||
| upb_arena * | arena | ||
| ) |
Definition at line 351 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 320 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 1203 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 343 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_bufsrc_putbuf | ( | const char * | buf, |
| size_t | len, | ||
| upb_bytessink | sink | ||
| ) |
Definition at line 5477 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_byteshandler_setendstr | ( | upb_byteshandler * | h, |
| upb_endfield_handlerfunc * | func, | ||
| void * | d | ||
| ) |
Definition at line 5374 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_byteshandler_setstartstr | ( | upb_byteshandler * | h, |
| upb_startstr_handlerfunc * | func, | ||
| void * | d | ||
| ) |
Definition at line 5360 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_byteshandler_setstring | ( | upb_byteshandler * | h, |
| upb_string_handlerfunc * | func, | ||
| void * | d | ||
| ) |
Definition at line 5367 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4929 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 1279 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_decode | ( | const char * | buf, |
| size_t | size, | ||
| void * | msg, | ||
| const upb_msglayout * | l, | ||
| upb_arena * | arena | ||
| ) |
Definition at line 742 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 240 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 536 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 232 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 517 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 424 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 637 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 683 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 555 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 466 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 729 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 454 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 441 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 566 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 256 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 574 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 205 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 224 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 477 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| char* upb_encode | ( | const void * | msg, |
| const upb_msglayout * | m, | ||
| upb_arena * | arena, | ||
| size_t * | size | ||
| ) |
Definition at line 1105 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 890 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 795 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_encode_message | ( | upb_encstate * | e, |
| const char * | msg, | ||
| const upb_msglayout * | m, | ||
| size_t * | size | ||
| ) |
Definition at line 1063 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 814 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 988 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 766 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_enum_begin | ( | upb_enum_iter * | i, |
| const upb_enumdef * | e | ||
| ) |
Definition at line 3265 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_enum_done | ( | upb_enum_iter * | iter | ) |
Definition at line 3271 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char* upb_enum_iter_name | ( | upb_enum_iter * | iter | ) |
Definition at line 3289 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| int32_t upb_enum_iter_number | ( | upb_enum_iter * | iter | ) |
Definition at line 3293 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_enum_next | ( | upb_enum_iter * | iter | ) |
Definition at line 3270 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| int32_t upb_enumdef_default | ( | const upb_enumdef * | e | ) |
Definition at line 3256 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_filedef* upb_enumdef_file | ( | const upb_enumdef * | e | ) |
Definition at line 3252 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char* upb_enumdef_fullname | ( | const upb_enumdef * | e | ) |
Definition at line 3244 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char* upb_enumdef_iton | ( | const upb_enumdef * | def, |
| int32_t | num | ||
| ) |
Definition at line 3283 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char* upb_enumdef_name | ( | const upb_enumdef * | e | ) |
Definition at line 3248 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_enumdef_ntoi | ( | const upb_enumdef * | def, |
| const char * | name, | ||
| size_t | len, | ||
| int32_t * | num | ||
| ) |
Definition at line 3273 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| int upb_enumdef_numvals | ( | const upb_enumdef * | e | ) |
Definition at line 3261 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 3526 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 3524 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 3522 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 3523 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_oneofdef* upb_fielddef_containingoneof | ( | const upb_fielddef * | f | ) |
Definition at line 3418 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msgdef* upb_fielddef_containingtype | ( | const upb_fielddef * | f | ) |
Definition at line 3414 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_fielddef_defaultbool | ( | const upb_fielddef * | f | ) |
Definition at line 3447 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| double upb_fielddef_defaultdouble | ( | const upb_fielddef * | f | ) |
Definition at line 3457 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| float upb_fielddef_defaultfloat | ( | const upb_fielddef * | f | ) |
Definition at line 3452 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| int32_t upb_fielddef_defaultint32 | ( | const upb_fielddef * | f | ) |
Definition at line 3432 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| int64_t upb_fielddef_defaultint64 | ( | const upb_fielddef * | f | ) |
Definition at line 3427 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char* upb_fielddef_defaultstr | ( | const upb_fielddef * | f, |
| size_t * | len | ||
| ) |
Definition at line 3462 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| uint32_t upb_fielddef_defaultuint32 | ( | const upb_fielddef * | f | ) |
Definition at line 3442 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| uint64_t upb_fielddef_defaultuint64 | ( | const upb_fielddef * | f | ) |
Definition at line 3437 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_descriptortype_t upb_fielddef_descriptortype | ( | const upb_fielddef * | f | ) |
Definition at line 3339 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_enumdef* upb_fielddef_enumsubdef | ( | const upb_fielddef * | f | ) |
Definition at line 3481 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char* upb_fielddef_fullname | ( | const upb_fielddef * | f | ) |
Definition at line 3300 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| size_t upb_fielddef_getjsonname | ( | const upb_fielddef * | f, |
| char * | buf, | ||
| size_t | len | ||
| ) |
Definition at line 3375 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_fielddef_haspresence | ( | const upb_fielddef * | f | ) |
Definition at line 3512 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_fielddef_hassubdef | ( | const upb_fielddef * | f | ) |
Definition at line 3508 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| uint32_t upb_fielddef_index | ( | const upb_fielddef * | f | ) |
Definition at line 3343 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_fielddef_isextension | ( | const upb_fielddef * | f | ) |
Definition at line 3355 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_fielddef_ismap | ( | const upb_fielddef * | f | ) |
Definition at line 3503 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_fielddef_isprimitive | ( | const upb_fielddef * | f | ) |
Definition at line 3499 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_fielddef_isseq | ( | const upb_fielddef * | f | ) |
Definition at line 3495 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_fielddef_isstring | ( | const upb_fielddef * | f | ) |
Definition at line 3490 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_fielddef_issubmsg | ( | const upb_fielddef * | f | ) |
Definition at line 3486 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_label_t upb_fielddef_label | ( | const upb_fielddef * | f | ) |
Definition at line 3347 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_fielddef_lazy | ( | const upb_fielddef * | f | ) |
Definition at line 3359 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msgdef* upb_fielddef_msgsubdef | ( | const upb_fielddef * | f | ) |
Definition at line 3476 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char* upb_fielddef_name | ( | const upb_fielddef * | f | ) |
Definition at line 3367 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| uint32_t upb_fielddef_number | ( | const upb_fielddef * | f | ) |
Definition at line 3351 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_fielddef_packed | ( | const upb_fielddef * | f | ) |
Definition at line 3363 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| uint32_t upb_fielddef_selectorbase | ( | const upb_fielddef * | f | ) |
Definition at line 3371 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_fieldtype_t upb_fielddef_type | ( | const upb_fielddef * | f | ) |
Definition at line 3304 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_filedef* upb_filedef_dep | ( | const upb_filedef * | f, |
| int | i | ||
| ) |
Definition at line 4528 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| int upb_filedef_depcount | ( | const upb_filedef * | f | ) |
Definition at line 4520 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_enumdef* upb_filedef_enum | ( | const upb_filedef * | f, |
| int | i | ||
| ) |
Definition at line 4536 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| int upb_filedef_enumcount | ( | const upb_filedef * | f | ) |
Definition at line 4524 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msgdef* upb_filedef_msg | ( | const upb_filedef * | f, |
| int | i | ||
| ) |
Definition at line 4532 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| int upb_filedef_msgcount | ( | const upb_filedef * | f | ) |
Definition at line 4516 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char* upb_filedef_name | ( | const upb_filedef * | f | ) |
Definition at line 4496 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char* upb_filedef_package | ( | const upb_filedef * | f | ) |
Definition at line 4500 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char* upb_filedef_phpnamespace | ( | const upb_filedef * | f | ) |
Definition at line 4508 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char* upb_filedef_phpprefix | ( | const upb_filedef * | f | ) |
Definition at line 4504 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_syntax_t upb_filedef_syntax | ( | const upb_filedef * | f | ) |
Definition at line 4512 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 670 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 362 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 368 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 381 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2229 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_handlercache_addcleanup | ( | upb_handlercache * | c, |
| void * | p, | ||
| upb_handlerfree * | func | ||
| ) |
Definition at line 5353 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_handlercache_free | ( | upb_handlercache * | cache | ) |
Definition at line 5347 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_handlers* upb_handlercache_get | ( | upb_handlercache * | c, |
| const upb_msgdef * | md | ||
| ) |
Definition at line 5288 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_handlercache* upb_handlercache_new | ( | upb_handlers_callback * | callback, |
| const void * | closure | ||
| ) |
Definition at line 5327 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_handlers_addcleanup | ( | upb_handlers * | h, |
| void * | p, | ||
| upb_handlerfree * | func | ||
| ) |
Definition at line 5197 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_handlers_getattr | ( | const upb_handlers * | h, |
| upb_selector_t | sel, | ||
| upb_handlerattr * | attr | ||
| ) |
Definition at line 5181 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_func* upb_handlers_gethandler | ( | const upb_handlers * | h, |
| upb_selector_t | s, | ||
| const void ** | handler_data | ||
| ) |
Definition at line 5172 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_handlertype_t upb_handlers_getprimitivehandlertype | ( | const upb_fielddef * | f | ) |
Definition at line 5201 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_handlers_getselector | ( | const upb_fielddef * | f, |
| upb_handlertype_t | type, | ||
| upb_selector_t * | s | ||
| ) |
Definition at line 5215 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_handlers* upb_handlers_getsubhandlers | ( | const upb_handlers * | h, |
| const upb_fielddef * | f | ||
| ) |
Definition at line 5166 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_handlers* upb_handlers_getsubhandlers_sel | ( | const upb_handlers * | h, |
| upb_selector_t | sel | ||
| ) |
Definition at line 5189 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msgdef* upb_handlers_msgdef | ( | const upb_handlers * | h | ) |
Definition at line 5195 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 5084 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3123 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3127 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_handlers_setendmsg | ( | upb_handlers * | h, |
| upb_endmsg_handlerfunc * | func, | ||
| const upb_handlerattr * | attr | ||
| ) |
Definition at line 5148 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_handlers_setstartmsg | ( | upb_handlers * | h, |
| upb_startmsg_handlerfunc * | func, | ||
| const upb_handlerattr * | attr | ||
| ) |
Definition at line 5142 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_handlers_setsubhandlers | ( | upb_handlers * | h, |
| const upb_fielddef * | f, | ||
| const upb_handlers * | sub | ||
| ) |
Definition at line 5154 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_handlers_setunknown | ( | upb_handlers * | h, |
| upb_unknown_handlerfunc * | func, | ||
| const upb_handlerattr * | attr | ||
| ) |
Definition at line 5136 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_inttable_begin | ( | upb_inttable_iter * | i, |
| const upb_inttable * | t | ||
| ) |
Definition at line 1936 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_inttable_compact2 | ( | upb_inttable * | t, |
| upb_alloc * | a | ||
| ) |
Definition at line 1865 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| size_t upb_inttable_count | ( | const upb_inttable * | t | ) |
Definition at line 1711 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_inttable_done | ( | const upb_inttable_iter * | i | ) |
Definition at line 1958 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_inttable_init2 | ( | upb_inttable * | t, |
| upb_ctype_t | ctype, | ||
| upb_alloc * | a | ||
| ) |
Definition at line 1751 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_inttable_insert2 | ( | upb_inttable * | t, |
| uintptr_t | key, | ||
| upb_value | val, | ||
| upb_alloc * | a | ||
| ) |
Definition at line 1760 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_inttable_insertptr2 | ( | upb_inttable * | t, |
| const void * | key, | ||
| upb_value | val, | ||
| upb_alloc * | a | ||
| ) |
Definition at line 1850 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_inttable_iter_isequal | ( | const upb_inttable_iter * | i1, |
| const upb_inttable_iter * | i2 | ||
| ) |
Definition at line 1987 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| uintptr_t upb_inttable_iter_key | ( | const upb_inttable_iter * | i | ) |
Definition at line 1969 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_inttable_iter_setdone | ( | upb_inttable_iter * | i | ) |
Definition at line 1981 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_value upb_inttable_iter_value | ( | const upb_inttable_iter * | i | ) |
Definition at line 1974 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_inttable_lookup | ( | const upb_inttable * | t, |
| uintptr_t | key, | ||
| upb_value * | v | ||
| ) |
Definition at line 1803 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_inttable_lookupptr | ( | const upb_inttable * | t, |
| const void * | key, | ||
| upb_value * | v | ||
| ) |
Definition at line 1856 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_inttable_next | ( | upb_inttable_iter * | iter | ) |
Definition at line 1943 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_value upb_inttable_pop | ( | upb_inttable * | t | ) |
Definition at line 1843 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_inttable_push2 | ( | upb_inttable * | t, |
| upb_value | val, | ||
| upb_alloc * | a | ||
| ) |
Definition at line 1838 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_inttable_remove | ( | upb_inttable * | t, |
| uintptr_t | key, | ||
| upb_value * | val | ||
| ) |
Definition at line 1817 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_inttable_removeptr | ( | upb_inttable * | t, |
| const void * | key, | ||
| upb_value * | val | ||
| ) |
Definition at line 1861 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_inttable_replace | ( | upb_inttable * | t, |
| uintptr_t | key, | ||
| upb_value | val | ||
| ) |
Definition at line 1810 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_inttable_sizedinit | ( | upb_inttable * | t, |
| upb_ctype_t | ctype, | ||
| size_t | asize, | ||
| int | hsize_lg2, | ||
| upb_alloc * | a | ||
| ) |
Definition at line 1731 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_inttable_uninit2 | ( | upb_inttable * | t, |
| upb_alloc * | a | ||
| ) |
Definition at line 1755 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3051 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3043 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3055 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 3047 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_json_codecache_free | ( | upb_json_codecache * | c | ) |
Definition at line 11881 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_json_parsermethod* upb_json_codecache_get | ( | upb_json_codecache * | c, |
| const upb_msgdef * | md | ||
| ) |
Definition at line 11886 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_json_codecache* upb_json_codecache_new | ( | void | ) |
Definition at line 11867 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_json_parser* upb_json_parser_create | ( | upb_arena * | arena, |
| const upb_json_parsermethod * | method, | ||
| const upb_symtab * | symtab, | ||
| upb_sink | output, | ||
| upb_status * | status, | ||
| bool | ignore_json_unknown | ||
| ) |
Definition at line 11816 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_bytessink upb_json_parser_input | ( | upb_json_parser * | p | ) |
Definition at line 11858 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_byteshandler* upb_json_parsermethod_inputhandler | ( | const upb_json_parsermethod * | m | ) |
Definition at line 11862 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_json_printer* upb_json_printer_create | ( | upb_arena * | a, |
| const upb_handlers * | h, | ||
| upb_bytessink | output | ||
| ) |
Definition at line 13291 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_sink upb_json_printer_input | ( | upb_json_printer * | p | ) |
Definition at line 13312 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_handlercache* upb_json_printer_newcache | ( | bool | preserve_proto_fieldnames | ) |
Definition at line 13316 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 10185 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 1217 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_msg_field_begin | ( | upb_msg_field_iter * | iter, |
| const upb_msgdef * | m | ||
| ) |
Definition at line 3622 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_msg_field_done | ( | const upb_msg_field_iter * | iter | ) |
Definition at line 3628 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_msg_field_iter_isequal | ( | const upb_msg_field_iter * | iter1, |
| const upb_msg_field_iter * | iter2 | ||
| ) |
Definition at line 3640 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_msg_field_iter_setdone | ( | upb_msg_field_iter * | iter | ) |
Definition at line 3636 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_msg_field_next | ( | upb_msg_field_iter * | iter | ) |
Definition at line 3626 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4704 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1161 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1165 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1169 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_msg_getscalarhandlerdata | ( | const upb_handlers * | h, |
| upb_selector_t | s, | ||
| upb_fieldtype_t * | type, | ||
| size_t * | offset, | ||
| int32_t * | hasbit | ||
| ) |
Definition at line 5443 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 1231 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1153 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_fielddef* upb_msg_iter_field | ( | const upb_msg_field_iter * | iter | ) |
Definition at line 3632 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_oneofdef* upb_msg_iter_oneof | ( | const upb_msg_oneof_iter * | iter | ) |
Definition at line 3666 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_msg * upb_msg_new | ( | const upb_msglayout * | l, |
| upb_arena * | a | ||
| ) |
Definition at line 1175 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_msg_oneof_begin | ( | upb_msg_oneof_iter * | iter, |
| const upb_msgdef * | m | ||
| ) |
Definition at line 3645 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_msg_oneof_done | ( | const upb_msg_oneof_iter * | iter | ) |
Definition at line 3662 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_msg_oneof_iter_isequal | ( | const upb_msg_oneof_iter * | iter1, |
| const upb_msg_oneof_iter * | iter2 | ||
| ) |
Definition at line 3674 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_msg_oneof_iter_setdone | ( | upb_msg_oneof_iter * | iter | ) |
Definition at line 3670 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_msg_oneof_next | ( | upb_msg_oneof_iter * | iter | ) |
Definition at line 3654 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_msg_setscalarhandler | ( | upb_handlers * | h, |
| const upb_fielddef * | f, | ||
| size_t | offset, | ||
| int32_t | hasbit | ||
| ) |
Message handlers
Definition at line 5407 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1157 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_filedef* upb_msgdef_file | ( | const upb_msgdef * | m | ) |
Definition at line 3536 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char* upb_msgdef_fullname | ( | const upb_msgdef * | m | ) |
Definition at line 3532 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_msgdef_isnumberwrapper | ( | const upb_msgdef * | m | ) |
Definition at line 3616 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_fielddef* upb_msgdef_itof | ( | const upb_msgdef * | m, |
| uint32_t | i | ||
| ) |
Definition at line 3556 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_msgdef_lookupname | ( | const upb_msgdef * | m, |
| const char * | name, | ||
| size_t | len, | ||
| const upb_fielddef ** | f, | ||
| const upb_oneofdef ** | o | ||
| ) |
Definition at line 3584 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_msgdef_mapentry | ( | const upb_msgdef * | m | ) |
Definition at line 3608 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char* upb_msgdef_name | ( | const upb_msgdef * | m | ) |
Definition at line 3540 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_fielddef* upb_msgdef_ntof | ( | const upb_msgdef * | m, |
| const char * | name, | ||
| size_t | len | ||
| ) |
Definition at line 3562 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_oneofdef* upb_msgdef_ntoo | ( | const upb_msgdef * | m, |
| const char * | name, | ||
| size_t | len | ||
| ) |
Definition at line 3573 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| int upb_msgdef_numfields | ( | const upb_msgdef * | m | ) |
Definition at line 3598 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| int upb_msgdef_numoneofs | ( | const upb_msgdef * | m | ) |
Definition at line 3603 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| size_t upb_msgdef_selectorcount | ( | const upb_msgdef * | m | ) |
Definition at line 3548 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| uint32_t upb_msgdef_submsgfieldcount | ( | const upb_msgdef * | m | ) |
Definition at line 3552 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_syntax_t upb_msgdef_syntax | ( | const upb_msgdef * | m | ) |
Definition at line 3544 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_wellknowntype_t upb_msgdef_wellknowntype | ( | const upb_msgdef * | m | ) |
Definition at line 3612 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_msgfactory_free | ( | upb_msgfactory * | f | ) |
Definition at line 4874 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout* upb_msgfactory_getlayout | ( | upb_msgfactory * | f, |
| const upb_msgdef * | m | ||
| ) |
Definition at line 4890 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_msgfactory* upb_msgfactory_new | ( | const upb_symtab * | symtab | ) |
Definition at line 4865 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_symtab* upb_msgfactory_symtab | ( | const upb_msgfactory * | f | ) |
Definition at line 4886 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4715 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4728 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4719 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4682 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 2057 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_ok | ( | const upb_status * | status | ) |
Definition at line 2202 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_oneof_begin | ( | upb_oneof_iter * | iter, |
| const upb_oneofdef * | o | ||
| ) |
Definition at line 3710 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_oneof_done | ( | upb_oneof_iter * | iter | ) |
Definition at line 3718 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_fielddef* upb_oneof_iter_field | ( | const upb_oneof_iter * | iter | ) |
Definition at line 3722 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_oneof_iter_setdone | ( | upb_oneof_iter * | iter | ) |
Definition at line 3726 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_oneof_next | ( | upb_oneof_iter * | iter | ) |
Definition at line 3714 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msgdef* upb_oneofdef_containingtype | ( | const upb_oneofdef * | o | ) |
Definition at line 3685 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| uint32_t upb_oneofdef_index | ( | const upb_oneofdef * | o | ) |
Definition at line 3693 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_fielddef* upb_oneofdef_itof | ( | const upb_oneofdef * | o, |
| uint32_t | num | ||
| ) |
Definition at line 3704 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char* upb_oneofdef_name | ( | const upb_oneofdef * | o | ) |
Definition at line 3681 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_fielddef* upb_oneofdef_ntof | ( | const upb_oneofdef * | o, |
| const char * | name, | ||
| size_t | length | ||
| ) |
Definition at line 3697 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| int upb_oneofdef_numfields | ( | const upb_oneofdef * | o | ) |
Definition at line 3689 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_pb_encoder* upb_pb_encoder_create | ( | upb_arena * | arena, |
| const upb_handlers * | h, | ||
| upb_bytessink | output | ||
| ) |
Definition at line 8020 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_sink upb_pb_encoder_input | ( | upb_pb_encoder * | e | ) |
Definition at line 8059 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_handlercache* upb_pb_encoder_newcache | ( | void | ) |
Definition at line 8016 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_pb_encoder_reset | ( | upb_pb_encoder * | e | ) |
Definition at line 8007 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_pbcodecache_allowjit | ( | const upb_pbcodecache * | c | ) |
Definition at line 6386 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_pbcodecache_free | ( | upb_pbcodecache * | c | ) |
Definition at line 6371 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_pbdecodermethod* upb_pbcodecache_get | ( | upb_pbcodecache * | c, |
| const upb_msgdef * | md | ||
| ) |
Definition at line 6400 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_pbcodecache* upb_pbcodecache_new | ( | upb_handlercache * | dest | ) |
Definition at line 6356 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_pbcodecache_setallowjit | ( | upb_pbcodecache * | c, |
| bool | allow | ||
| ) |
Definition at line 6390 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| uint64_t upb_pbdecoder_bytesparsed | ( | const upb_pbdecoder * | d | ) |
Definition at line 7445 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| UPB_NOINLINE int32_t upb_pbdecoder_checktag_slow | ( | upb_pbdecoder * | d, |
| uint64_t | expected | ||
| ) |
Definition at line 6940 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_pbdecoder* upb_pbdecoder_create | ( | upb_arena * | a, |
| const upb_pbdecodermethod * | m, | ||
| upb_sink | sink, | ||
| upb_status * | status | ||
| ) |
Definition at line 7408 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| size_t upb_pbdecoder_decode | ( | void * | decoder, |
| const void * | group, | ||
| const char * | buf, | ||
| size_t | size, | ||
| const upb_bufhandle * | handle | ||
| ) |
Definition at line 7386 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| int32_t upb_pbdecoder_decode_f32 | ( | upb_pbdecoder * | d, |
| uint32_t * | u32 | ||
| ) |
Definition at line 6895 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| int32_t upb_pbdecoder_decode_f64 | ( | upb_pbdecoder * | d, |
| uint64_t * | u64 | ||
| ) |
Definition at line 6899 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| UPB_NOINLINE int32_t upb_pbdecoder_decode_varint_slow | ( | upb_pbdecoder * | d, |
| uint64_t * | u64 | ||
| ) |
Definition at line 6821 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 7329 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_bytessink upb_pbdecoder_input | ( | upb_pbdecoder * | d | ) |
Definition at line 7453 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| size_t upb_pbdecoder_maxnesting | ( | const upb_pbdecoder * | d | ) |
Definition at line 7457 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_pbdecodermethod* upb_pbdecoder_method | ( | const upb_pbdecoder * | d | ) |
Definition at line 7449 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_pbdecoder_reset | ( | upb_pbdecoder * | d | ) |
Definition at line 7399 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| int32_t upb_pbdecoder_resume | ( | upb_pbdecoder * | d, |
| void * | p, | ||
| const char * | buf, | ||
| size_t | size, | ||
| const upb_bufhandle * | handle | ||
| ) |
Definition at line 6630 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_pbdecoder_seterr | ( | upb_pbdecoder * | d, |
| const char * | msg | ||
| ) |
Definition at line 6520 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_pbdecoder_setmaxnesting | ( | upb_pbdecoder * | d, |
| size_t | max | ||
| ) |
Definition at line 7461 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| int32_t upb_pbdecoder_skipunknown | ( | upb_pbdecoder * | d, |
| int32_t | fieldnum, | ||
| uint8_t | wire_type | ||
| ) |
Definition at line 6957 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void* upb_pbdecoder_startbc | ( | void * | closure, |
| const void * | pc, | ||
| size_t | size_hint | ||
| ) |
Definition at line 7306 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void* upb_pbdecoder_startjit | ( | void * | closure, |
| const void * | hd, | ||
| size_t | size_hint | ||
| ) |
Definition at line 7318 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| size_t upb_pbdecoder_suspend | ( | upb_pbdecoder * | d | ) |
Definition at line 6695 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_handlers* upb_pbdecodermethod_desthandlers | ( | const upb_pbdecodermethod * | m | ) |
Definition at line 5529 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_byteshandler* upb_pbdecodermethod_inputhandler | ( | const upb_pbdecodermethod * | m | ) |
Definition at line 5534 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_pbdecodermethod_isnative | ( | const upb_pbdecodermethod * | m | ) |
Definition at line 5539 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_pbdecodermethodopts_setlazy | ( | upb_pbcodecache * | c, |
| bool | lazy | ||
| ) |
Definition at line 6395 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 823 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 850 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 834 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 829 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 881 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 857 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 877 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 839 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 864 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 871 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 787 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 268 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 411 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 418 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 279 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 308 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_status_clear | ( | upb_status * | status | ) |
Definition at line 2196 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char* upb_status_errmsg | ( | const upb_status * | status | ) |
Definition at line 2204 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_status_seterrf | ( | upb_status * | status, |
| const char * | fmt, | ||
| ... | |||
| ) |
Definition at line 2213 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_status_seterrmsg | ( | upb_status * | status, |
| const char * | msg | ||
| ) |
Definition at line 2206 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_status_vseterrf | ( | upb_status * | status, |
| const char * | fmt, | ||
| va_list | args | ||
| ) |
Definition at line 2220 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 1302 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 1306 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_stringsink_init | ( | upb_stringsink * | sink | ) |
Definition at line 8611 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_stringsink_uninit | ( | upb_stringsink * | sink | ) |
Definition at line 8623 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_strtable_begin | ( | upb_strtable_iter * | i, |
| const upb_strtable * | t | ||
| ) |
Definition at line 1636 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_strtable_done | ( | const upb_strtable_iter * | i | ) |
Definition at line 1645 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_strtable_init2 | ( | upb_strtable * | t, |
| upb_ctype_t | ctype, | ||
| upb_alloc * | a | ||
| ) |
Definition at line 1555 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_strtable_insert3 | ( | upb_strtable * | t, |
| const char * | k, | ||
| size_t | len, | ||
| upb_value | v, | ||
| upb_alloc * | a | ||
| ) |
Definition at line 1588 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_strtable_iter_isequal | ( | const upb_strtable_iter * | i1, |
| const upb_strtable_iter * | i2 | ||
| ) |
Definition at line 1673 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char* upb_strtable_iter_key | ( | const upb_strtable_iter * | i | ) |
Definition at line 1651 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| size_t upb_strtable_iter_keylength | ( | const upb_strtable_iter * | i | ) |
Definition at line 1656 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_strtable_iter_setdone | ( | upb_strtable_iter * | i | ) |
Definition at line 1668 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_value upb_strtable_iter_value | ( | const upb_strtable_iter * | i | ) |
Definition at line 1663 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_strtable_lookup2 | ( | const upb_strtable * | t, |
| const char * | key, | ||
| size_t | len, | ||
| upb_value * | v | ||
| ) |
Definition at line 1612 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_strtable_next | ( | upb_strtable_iter * | i | ) |
Definition at line 1641 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_strtable_remove3 | ( | upb_strtable * | t, |
| const char * | key, | ||
| size_t | len, | ||
| upb_value * | val, | ||
| upb_alloc * | alloc | ||
| ) |
Definition at line 1618 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| bool upb_strtable_resize | ( | upb_strtable * | t, |
| size_t | size_lg2, | ||
| upb_alloc * | a | ||
| ) |
Definition at line 1566 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_strtable_uninit2 | ( | upb_strtable * | t, |
| upb_alloc * | a | ||
| ) |
Definition at line 1559 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_filedef* upb_symtab_addfile | ( | upb_symtab * | s, |
| const google_protobuf_FileDescriptorProto * | file_proto, | ||
| upb_status * | status | ||
| ) |
Definition at line 4590 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 4474 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_symtab_free | ( | upb_symtab * | s | ) |
Definition at line 4540 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_enumdef* upb_symtab_lookupenum | ( | const upb_symtab * | s, |
| const char * | sym | ||
| ) |
Definition at line 4578 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_filedef* upb_symtab_lookupfile | ( | const upb_symtab * | s, |
| const char * | name | ||
| ) |
Definition at line 4584 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msgdef* upb_symtab_lookupmsg | ( | const upb_symtab * | s, |
| const char * | sym | ||
| ) |
Definition at line 4565 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msgdef* upb_symtab_lookupmsg2 | ( | const upb_symtab * | s, |
| const char * | sym, | ||
| size_t | len | ||
| ) |
Definition at line 4571 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_symtab* upb_symtab_new | ( | void | ) |
Definition at line 4545 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_textprinter* upb_textprinter_create | ( | upb_arena * | arena, |
| const upb_handlers * | h, | ||
| upb_bytessink | output | ||
| ) |
Definition at line 8376 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_sink upb_textprinter_input | ( | upb_textprinter * | p | ) |
Definition at line 8392 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_handlercache* upb_textprinter_newcache | ( | void | ) |
Definition at line 8388 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| void upb_textprinter_setsingleline | ( | upb_textprinter * | p, |
| bool | single_line | ||
| ) |
Definition at line 8394 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_decoderet upb_vdecode_max8_branch32 | ( | upb_decoderet | r | ) |
Definition at line 8426 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_decoderet upb_vdecode_max8_branch64 | ( | upb_decoderet | r | ) |
Definition at line 8450 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 248 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 252 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 779 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 780 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 10165 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11063 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11288 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11178 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11196 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11084 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11160 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11142 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11265 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11102 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 11242 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| char _upb_noclosure |
Definition at line 4939 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8914 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6457 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8569 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2496 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2519 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_DescriptorProto_ExtensionRange_msginit |
Definition at line 2525 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2515 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_DescriptorProto_msginit |
Definition at line 2509 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2531 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_DescriptorProto_ReservedRange_msginit |
Definition at line 2536 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2486 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
|
static |
Definition at line 2614 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_EnumDescriptorProto_EnumReservedRange_msginit |
Definition at line 2619 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_EnumDescriptorProto_msginit |
Definition at line 2608 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2594 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2767 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_EnumOptions_msginit |
Definition at line 2773 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2763 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2629 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_EnumValueDescriptorProto_msginit |
Definition at line 2635 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2625 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2783 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_EnumValueOptions_msginit |
Definition at line 2788 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2779 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2546 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_ExtensionRangeOptions_msginit |
Definition at line 2550 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2542 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2560 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_FieldDescriptorProto_msginit |
Definition at line 2573 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2556 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2733 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_FieldOptions_msginit |
Definition at line 2743 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2729 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2465 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_FileDescriptorProto_msginit |
Definition at line 2480 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2456 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2446 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_FileDescriptorSet_msginit |
bazel-out/k8-fastbuild/bin/external/com_google_protobuf/google/protobuf/descriptor.upbdefs.c
Definition at line 2450 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2442 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2681 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_FileOptions_msginit |
Definition at line 2705 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2677 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2888 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
| const upb_msglayout google_protobuf_GeneratedCodeInfo_Annotation_msginit |
Definition at line 2905 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_GeneratedCodeInfo_msginit |
Definition at line 2892 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2884 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
| const upb_msglayout google_protobuf_MessageOptions_msginit |
Definition at line 2723 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2711 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2662 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_MethodDescriptorProto_msginit |
Definition at line 2671 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2658 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2813 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_MethodOptions_msginit |
Definition at line 2819 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2809 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2583 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_OneofDescriptorProto_msginit |
Definition at line 2588 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2579 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2753 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_OneofOptions_msginit |
Definition at line 2757 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2749 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2646 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_ServiceDescriptorProto_msginit |
Definition at line 2652 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2641 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2798 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_ServiceOptions_msginit |
Definition at line 2803 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2794 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2860 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
| const upb_msglayout google_protobuf_SourceCodeInfo_Location_msginit |
Definition at line 2878 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_SourceCodeInfo_msginit |
Definition at line 2864 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2856 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2829 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_UninterpretedOption_msginit |
Definition at line 2839 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2845 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const upb_msglayout google_protobuf_UninterpretedOption_NamePart_msginit |
Definition at line 2850 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2825 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 6452 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char inf[] = "\"Infinity\"" |
Definition at line 12099 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 11310 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 11312 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 11314 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 11308 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 11309 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 11311 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 11313 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 11306 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 12025 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char* kPbDecoderStackOverflow = "Nesting too deep." |
Definition at line 6443 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char* kPbDecoderSubmessageTooLong |
Definition at line 6444 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 6448 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1285 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 2246 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 1290 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| const char neginf[] = "\"-Infinity\"" |
Definition at line 12098 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 5599 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
|
static |
Definition at line 8854 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
| upb_alloc upb_alloc_global = {&upb_global_allocfunc} |
Definition at line 2241 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 160 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.
Definition at line 8400 of file bloaty/third_party/protobuf/php/ext/google/protobuf/upb.c.