Home
last modified time | relevance | path

Searched refs:PB_ATYPE (Results 1 – 8 of 8) sorted by relevance

/nanopb-3.4.0/
Dpb_common.c89 (PB_ATYPE(iter->type) == PB_ATYPE_STATIC || in load_descriptor_values()
90 PB_ATYPE(iter->type) == PB_ATYPE_POINTER)) in load_descriptor_values()
100 if (PB_ATYPE(iter->type) == PB_ATYPE_POINTER && iter->pField != NULL) in load_descriptor_values()
172 if (PB_ATYPE(word0 >> 8) == PB_ATYPE_POINTER) in pb_field_iter_begin_extension()
Dpb_encode.c140 if (PB_ATYPE(field->type) != PB_ATYPE_POINTER && count > field->array_size) in encode_array()
205 if (PB_ATYPE(field->type) == PB_ATYPE_POINTER && in encode_array()
247 if (PB_ATYPE(type) == PB_ATYPE_STATIC) in pb_check_proto3_default_value()
334 else if (PB_ATYPE(type) == PB_ATYPE_POINTER) in pb_check_proto3_default_value()
338 else if (PB_ATYPE(type) == PB_ATYPE_CALLBACK) in pb_check_proto3_default_value()
438 else if (PB_ATYPE(field->type) == PB_ATYPE_STATIC) in encode_field()
456 if (PB_ATYPE(field->type) == PB_ATYPE_CALLBACK) in encode_field()
867 if (PB_ATYPE(field->type) == PB_ATYPE_STATIC && in pb_enc_bytes()
882 if (PB_ATYPE(field->type) == PB_ATYPE_POINTER) in pb_enc_string()
Dpb_decode.c809 switch (PB_ATYPE(field->type)) in decode_field()
888 else if (PB_ATYPE(type) == PB_ATYPE_STATIC) in pb_field_set_to_default()
930 else if (PB_ATYPE(type) == PB_ATYPE_POINTER) in pb_field_set_to_default()
942 else if (PB_ATYPE(type) == PB_ATYPE_CALLBACK) in pb_field_set_to_default()
1217 if (PB_ATYPE(field->type) == PB_ATYPE_POINTER) in pb_release_union_field()
1256 else if (PB_LTYPE_IS_SUBMSG(type) && PB_ATYPE(type) != PB_ATYPE_CALLBACK) in pb_release_single_field()
1261 if (PB_ATYPE(type) == PB_ATYPE_POINTER) in pb_release_single_field()
1274 if (PB_ATYPE(type) == PB_ATYPE_STATIC && count > field->array_size) in pb_release_single_field()
1291 if (PB_ATYPE(type) == PB_ATYPE_POINTER) in pb_release_single_field()
1512 if (PB_ATYPE(field->type) == PB_ATYPE_POINTER) in pb_dec_bytes()
[all …]
Dpb.h283 #define PB_ATYPE(x) ((x) & PB_ATYPE_MASK) macro
DCHANGELOG.txt528 Separate PB_HTYPE to PB_ATYPE and PB_HTYPE
/nanopb-3.4.0/tests/fuzztest/
Dvalidation.c152 if (PB_ATYPE(iter.type) == PB_ATYPE_STATIC) in validate_message()
156 else if (PB_ATYPE(iter.type) == PB_ATYPE_POINTER) in validate_message()
/nanopb-3.4.0/spm_headers/nanopb/
Dpb.h283 #define PB_ATYPE(x) ((x) & PB_ATYPE_MASK) macro
/nanopb-3.4.0/docs/
Dmigration.md621 - Change `PB_HTYPE_CALLBACK` to `PB_ATYPE()` and `PB_ATYPE_CALLBACK`.