Searched refs:input (Results 1 – 11 of 11) sorted by relevance
/nanopb-2.7.6/examples/network_server/ |
D | client.c | 87 pb_istream_t input = pb_istream_from_socket(fd); in listdir() local 89 if (!pb_decode_delimited(&input, ListFilesResponse_fields, &response)) in listdir() 91 fprintf(stderr, "Decode failed: %s\n", PB_GET_ERROR(&input)); in listdir()
|
D | server.c | 75 pb_istream_t input = pb_istream_from_socket(connfd); in handle_connection() local 77 if (!pb_decode_delimited(&input, ListFilesRequest_fields, &request)) in handle_connection() 79 printf("Decode failed: %s\n", PB_GET_ERROR(&input)); in handle_connection()
|
/nanopb-2.7.6/tests/fixed_count/ |
D | fixed_count_unittests.c | 39 pb_byte_t input[] = {0x08, 0x00, 0x08, 0x01, 0x08, 0x02, 0x08, 0x03}; in main() local 45 stream = pb_istream_from_buffer(input, 6); in main() 49 stream = pb_istream_from_buffer(input, 8); in main() 53 stream = pb_istream_from_buffer(input, 4); in main()
|
/nanopb-2.7.6/tests/extra_fields/ |
D | SConscript | 1 # Test that the decoder properly handles unknown fields in the input.
|
/nanopb-2.7.6/examples/simple/ |
D | README.txt | 11 * pb_istream_from_buffer() to declare the input buffer that is to be used
|
/nanopb-2.7.6/tests/fuzztest/ |
D | SConscript | 107 stdout, stderr = process.communicate(input = data_in) 111 print("Warning: OSError 22 when running with input " + filename) 119 …AIL]\033[0m Program ' + str(args) + ' returned ' + str(result) + ' with input ' + filename + ' f…
|
/nanopb-2.7.6/tests/generator_relative_paths/ |
D | SConscript | 2 # when input files are part of a multi-level directory structure:
|
/nanopb-2.7.6/docs/ |
D | security.md | 84 3. If using stream input, a maximum size should be set in
|
D | reference.md | 164 Type used for storing byte-sized data, such as raw binary input and 713 Helper function for creating an input stream that reads data from a 722 | returns | An input stream ready to use. 726 Read data from input stream. Always use this function, don't try to 742 Read and decode all fields of a structure. Reads until EOF on input 907 This function reads 4 bytes from the input stream. On big endian 948 | stream | Original input stream to read the length and data from. 965 | stream | Original input stream to read data from.
|
D | concepts.md | 21 input file. If you do not have it available, you may receive an error 111 For input streams, there is one extra rule: 133 This function binds an input stream to stdin:
|
D | whats_new.md | 70 the actual path of input files. The second limitation has been
|