Searched defs:buffer (Results 451 - 475 of 3822) sorted by relevance

<<11121314151617181920>>

/external/nanopb-c/tests/callbacks/
H A Ddecode_callbacks.c12 uint8_t buffer[1024] = {0}; local
14 /* We could read block-by-block to avoid the large buffer... */
15 if (stream->bytes_left > sizeof(buffer) - 1)
18 if (!pb_read(stream, buffer, stream->bytes_left))
24 printf((char*)*arg, buffer);
60 uint8_t buffer[1024]; local
70 length = fread(buffer, 1, 1024, stdin);
71 stream = pb_istream_from_buffer(buffer, length);
H A Dencode_callbacks.c65 uint8_t buffer[1024]; local
69 stream = pb_ostream_from_buffer(buffer, 1024);
88 if (fwrite(buffer, stream.bytes_written, 1, stdout) != 1)
/external/nanopb-c/tests/extensions/
H A Ddecode_extensions.c18 uint8_t buffer[1024]; local
30 count = fread(buffer, 1, sizeof(buffer), stdin);
31 stream = pb_istream_from_buffer(buffer, count);
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAcceptEncoding.java97 protected StringBuffer encodeBody(StringBuffer buffer) { argument
99 buffer.append(contentCoding);
102 buffer.append(SEMICOLON).append(parameters.encode());
104 return buffer;
H A DCallInfo.java67 protected StringBuffer encodeBody(StringBuffer buffer) { argument
68 buffer.append(LESS_THAN);
69 info.encode(buffer);
70 buffer.append(GREATER_THAN);
73 buffer.append(SEMICOLON);
74 parameters.encode(buffer);
77 return buffer;
H A DContentLength.java133 protected StringBuffer encodeBody(StringBuffer buffer) {
135 buffer.append("0");
137 buffer.append(contentLength.toString());
138 return buffer;
132 encodeBody(StringBuffer buffer) argument
H A DExpires.java70 protected StringBuffer encodeBody(StringBuffer buffer) { argument
71 return buffer.append(expires);
H A DMaxForwards.java91 protected StringBuffer encodeBody(StringBuffer buffer) { argument
92 return buffer.append(maxForwards);
H A DRoute.java90 protected StringBuffer encodeBody(StringBuffer buffer) { argument
93 buffer.append('<');
94 address.encode(buffer);
95 buffer.append('>');
97 address.encode(buffer);
100 buffer.append(SEMICOLON);
101 parameters.encode(buffer);
103 return buffer;
H A DSIPObject.java74 public StringBuffer encode(StringBuffer buffer) { argument
75 return buffer.append(encode());
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DLexer.java68 public Lexer(String lexerName, String buffer) { argument
69 super(lexerName, buffer);
H A DParametersParser.java47 protected ParametersParser(String buffer) { argument
48 super(buffer);
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/
H A DAddressHeaderParser.java52 protected AddressHeaderParser(String buffer) { argument
53 super(buffer);
/external/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jerror.c58 * The setjmp buffer can be made a private field within an expanded error
97 char buffer[JMSG_LENGTH_MAX]; local
100 (*cinfo->err->format_message) (cinfo, buffer);
104 MessageBox(GetActiveWindow(), buffer, "JPEG Library Error", local
109 FXSYS_fprintf(stderr, "%s\n", buffer);
150 * The message is stored into buffer, which should be at least JMSG_LENGTH_MAX
156 format_message (j_common_ptr cinfo, char * buffer) argument
191 /* Format the message into the passed buffer */
193 FXSYS_sprintf(buffer, msgtext, err->msg_parm.s);
195 FXSYS_sprintf(buffer, msgtex
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dmd5.h37 unsigned char buffer[64]; member in struct:__anon28786
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcf2stack.h65 CF2_StackNumber buffer[CF2_OPERAND_STACK_SIZE]; member in struct:CF2_StackRec_
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cid/
H A Dcidparse.c88 FT_Byte buffer[256 + 10]; local
90 FT_Byte* p = buffer;
115 for ( p = buffer; p < limit; p++ )
120 offset += (FT_ULong)( p - buffer + 10 );
125 offset += (FT_ULong)( p - buffer + 7 );
130 FT_MEM_MOVE( buffer, p, 10 );
132 p = buffer + 10;
/external/ppp/pppd/plugins/radius/
H A Dclientid.c36 char buffer[1024]; local
50 while (fgets(buffer, sizeof(buffer), mapfd) != NULL)
54 q = buffer;
/external/proguard/src/proguard/io/
H A DDataEntryCopier.java39 private final byte[] buffer = new byte[BUFFER_SIZE]; field in class:DataEntryCopier
101 int count = inputStream.read(buffer);
106 outputStream.write(buffer, 0, count);
/external/protobuf/gtest/xcode/Samples/FrameworkSample/
H A Dwidget.cc58 void Widget::GetCharPtrValue(char* buffer, size_t max_size) const { argument
59 // Copy the char* representation of name_ into buffer, up to max_size.
60 strncpy(buffer, name_.c_str(), max_size-1);
61 buffer[max_size-1] = '\0';
/external/qemu/distrib/ext4_utils/src/
H A Dsha1.h33 u_char buffer[64]; member in struct:__anon29267
/external/qemu/distrib/jpeg-6b/
H A Djdatadst.c29 JOCTET * buffer; /* start of buffer */ member in struct:__anon29286
47 /* Allocate the output buffer --- it will be released when done with image */
48 dest->buffer = (JOCTET *)
52 dest->pub.next_output_byte = dest->buffer;
58 * Empty the output buffer --- called whenever buffer fills up.
60 * In typical applications, this should write the entire output buffer
62 * reset the pointer & count to the start of the buffer, and return TRUE
63 * indicating that the buffer ha
[all...]
H A Djdatasrc.c29 JOCTET * buffer; /* start of buffer */ member in struct:__anon29287
49 * but we don't clear the input buffer.
57 * Fill the input buffer --- called whenever buffer is emptied.
59 * In typical applications, this should read fresh data into the buffer
61 * reset the pointer & count to the start of the buffer, and return TRUE
62 * indicating that the buffer has been reloaded. It is not necessary to
63 * fill the buffer entirely, only to obtain at least one more byte.
67 * the buffer
[all...]
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtesticonv.c32 char buffer[BUFSIZ]; local
48 while ( fgets(buffer, sizeof(buffer), file) ) {
51 ucs4 = SDL_iconv_string("UCS-4", "UTF-8", buffer, SDL_strlen(buffer)+1);
/external/qemu/qobject/
H A Djson-streamer.c108 const char *buffer, size_t size)
110 return json_lexer_feed(&parser->lexer, buffer, size);
107 json_message_parser_feed(JSONMessageParser *parser, const char *buffer, size_t size) argument

Completed in 909 milliseconds

<<11121314151617181920>>