Home
last modified time | relevance | path

Searched refs:result (Results 1 – 13 of 13) sorted by relevance

/nanopb-3.4.0/examples/network_server/
Dcommon.c20 int result; in read_callback() local
25 result = recv(fd, buf, count, MSG_WAITALL); in read_callback()
27 if (result == 0) in read_callback()
30 return result == count; in read_callback()
/nanopb-3.4.0/generator/
Dnanopb_generator.py430 result = ''
432 result = '%s\n' % leading_comment
434 result += 'typedef enum %s {' % Globals.naming_style.enum_name(self.names)
436 result += " " + trailing_comment
438 result += "\n"
459 result += '\n'.join(enum_values)
460 result += '\n}'
463 result += ' pb_packed'
465 result += ' %s;' % Globals.naming_style.type_name(self.names)
466 return result
[all …]
Dplatformio_generator.py139 result = env.Execute(action) variable
140 if result != 0:
/nanopb-3.4.0/tests/site_scons/
Dsite_init.py56 result = pipe.wait()
57 if result == 0:
60 print('\033[31m[FAIL]\033[0m Program ' + args[0] + ' returned ' + str(result))
61 return result
/nanopb-3.4.0/tests/regression/issue_395/
Dtest.proto34 Result result = 1; field
Dtest.c20 reply.result = request_result; in main()
/nanopb-3.4.0/tests/regression/GHSA-gcx3-7m76-287p/
DSConscript2 # "Out-of-memory condition on repeated field can result in invalid free()"
/nanopb-3.4.0/tests/fuzztest/
DSConscript108 result = process.wait()
112 result = process.wait()
116 if result != 0:
119 …print('\033[31m[FAIL]\033[0m Program ' + str(args) + ' returned ' + str(result) + ' with input '…
120 return result
/nanopb-3.4.0/tests/any_type/
Danytest.proto15 // This does result in unnecessarily copying the data around, so for larger
/nanopb-3.4.0/
Dpb_decode.c173 uint32_t result; in pb_decode_varint32_eof() local
191 result = byte; in pb_decode_varint32_eof()
197 result = byte & 0x7F; in pb_decode_varint32_eof()
209 ((result >> 31) != 0 && byte == sign_extension)); in pb_decode_varint32_eof()
222 result |= (uint32_t)(byte & 0x0F) << bitpos; in pb_decode_varint32_eof()
226 result |= (uint32_t)(byte & 0x7F) << bitpos; in pb_decode_varint32_eof()
232 *dest = result; in pb_decode_varint32_eof()
246 uint64_t result = 0; in pb_decode_varint() local
256 result |= (uint64_t)(byte & 0x7F) << bitpos; in pb_decode_varint()
260 *dest = result; in pb_decode_varint()
/nanopb-3.4.0/tests/generator_relative_paths/
DSConscript7 # should result in:
/nanopb-3.4.0/tests/
DSConstruct84 result = context.TryCompile("int main() {return 0;}", '.c')
87 context.Result(result)
88 return result
/nanopb-3.4.0/docs/
Dconcepts.md614 This can result from erroneous compiler include path.