HomeSort by relevance Sort by last modified time
    Searched refs:buffer (Results 51 - 75 of 3205) sorted by null

1 23 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
ReasonCode.java 90 public void dumpValue(StringBuffer buffer, String prefix) {
91 buffer.append(prefix).append("Reason Code: [ ");
94 buffer.append("unspecified");
97 buffer.append("keyCompromise");
100 buffer.append("cACompromise");
103 buffer.append("affiliationChanged");
106 buffer.append("superseded");
109 buffer.append("cessationOfOperation");
112 buffer.append("certificateHold");
115 buffer.append("removeFromCRL")
    [all...]
  /external/chromium/third_party/icu/source/common/
ustrfmt.c 17 * @param buffer UChar buffer to receive result
18 * @param capacity capacity of buffer
28 uprv_itou (UChar * buffer, int32_t capacity,
38 buffer[length++]=(UChar)(digit<=9?(0x0030+digit):(0x0030+digit+7));
43 buffer[length++] = (UChar) 0x0030;/*zero padding */
45 /* null terminate the buffer */
47 buffer[length] = (UChar) 0x0000;
52 temp = buffer[(length-1) - j];
53 buffer[(length-1) - j] = buffer[j]
    [all...]
  /external/icu4c/common/
ustrfmt.c 17 * @param buffer UChar buffer to receive result
18 * @param capacity capacity of buffer
28 uprv_itou (UChar * buffer, int32_t capacity,
38 buffer[length++]=(UChar)(digit<=9?(0x0030+digit):(0x0030+digit+7));
43 buffer[length++] = (UChar) 0x0030;/*zero padding */
45 /* null terminate the buffer */
47 buffer[length] = (UChar) 0x0000;
52 temp = buffer[(length-1) - j];
53 buffer[(length-1) - j] = buffer[j]
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Route.java 90 protected StringBuffer encodeBody(StringBuffer buffer) {
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;
  /external/skia/include/core/
SkDrawLooper.h 58 SkDrawLooper(SkFlattenableReadBuffer& buffer) : INHERITED(buffer) {}
  /system/core/nexus/
DhcpState.h 34 static char *toString(int val, char *buffer, int max);
36 static int parseString(const char *buffer);
  /external/chromium/net/disk_cache/
file_block.h 20 virtual void* buffer() const = 0;
  /external/chromium/sdch/open-vcdiff/src/
checksum.h 31 inline VCDChecksum ComputeAdler32(const char* buffer,
34 reinterpret_cast<const Bytef*>(buffer),
39 const char* buffer,
42 reinterpret_cast<const Bytef*>(buffer),
  /external/easymock/src/org/easymock/
IArgumentMatcher.java 40 * Appends a string representation of this matcher to the given buffer. In case
44 * @param buffer the buffer to which the string representation is appended.
46 void appendTo(StringBuffer buffer);
  /external/easymock/src/org/easymock/internal/matchers/
Not.java 36 public void appendTo(StringBuffer buffer) {
37 buffer.append("not(");
38 first.appendTo(buffer);
39 buffer.append(")");
  /external/icu4c/samples/case/
ucase.c 29 UChar buffer[32]; local
48 /* result buffer = "ab?" latin small letter a, latin small letter b, latin
50 length = u_strToLower(buffer, sizeof(buffer)/sizeof(buffer[0]), upper,
52 if(U_FAILURE(errorCode) || buffer[length]!=0) {
57 u_fprintf(out, "u_strToLower(%S, turkish) -> %S\n", upper, buffer);
61 /* result buffer = "ABI" latin CAPITAL letter A, latin capital letter B,
63 length = u_strToUpper(buffer, sizeof(buffer)/sizeof(buffer[0]), upper,
    [all...]
  /external/protobuf/src/google/protobuf/io/
coded_stream_inl.h 47 inline bool CodedInputStream::InternalReadStringInline(string* buffer,
52 STLStringResizeUninitialized(buffer, size);
53 memcpy(string_as_array(buffer), buffer_, size);
58 return ReadStringFallback(buffer, size);
  /external/skia/src/ports/
SkDebug_android.cpp 33 char buffer[kBufferSize + 1]; local
34 vsnprintf(buffer, kBufferSize, format, args);
35 if (buffer[0] != 0)
36 __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, "%s", buffer);
SkDebug_stdio.cpp 26 char buffer[kBufferSize + 1]; local
29 vsnprintf(buffer, kBufferSize, format, args);
31 fprintf(stderr, "%s", buffer);
  /hardware/libhardware_legacy/uevent/
uevent_stub.c 25 int uevent_next_event(char* buffer, int buffer_length)
  /system/wlan/ti/sta_dk_4_0_4_32/pform/linux/inc/
debug_module_ioctl.h 42 unsigned char buffer_size; /* buffer max size */
43 void *buffer; /* output buffer address */ member in struct:__anon18358
44 unsigned char *return_size; /* how many bytes copied to the buffer */
  /external/qemu/distrib/sdl-1.2.12/src/audio/macosx/
SDL_coreaudio.h 35 void *buffer; member in struct:SDL_PrivateAudioData
42 #define buffer (this->hidden->buffer) macro
  /external/apache-http/src/org/apache/http/message/
BasicLineParser.java 120 CharArrayBuffer buffer = new CharArrayBuffer(value.length()); local
121 buffer.append(value);
123 return parser.parseProtocolVersion(buffer, cursor);
128 public ProtocolVersion parseProtocolVersion(final CharArrayBuffer buffer,
132 if (buffer == null) {
133 throw new IllegalArgumentException("Char array buffer may not be null");
145 skipWhitespace(buffer, cursor);
153 buffer.substring(indexFrom, indexTo));
159 ok = (buffer.charAt(i+j) == protoname.charAt(j));
162 ok = (buffer.charAt(i+protolength) == '/')
285 CharArrayBuffer buffer = new CharArrayBuffer(value.length()); local
385 CharArrayBuffer buffer = new CharArrayBuffer(value.length()); local
476 CharArrayBuffer buffer = new CharArrayBuffer(value.length()); local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1_MessageDigestImpl.java 35 private int[] buffer; // buffer has the following structure: field in class:SHA1_MessageDigestImpl
42 private byte[] oneByte; // one byte buffer needed to use in engineUpdate(byte)
43 // having buffer as private field is just optimization
54 buffer = new int[BYTES_OFFSET +6];
86 lastWord = (buffer[BYTES_OFFSET] + 3)>>2 ; // computing of # of full words by shifting
91 // - buffer[BYTES_OFFSET] == 0 - buffer frame is empty,
102 if ( buffer[BYTES_OFFSET] != 0 ) {
108 buffer[15] = 0; // last word in frame is set to "0
    [all...]
  /external/apache-http/src/org/apache/http/util/
CharArrayBuffer.java 47 private char[] buffer; field in class:CharArrayBuffer
53 throw new IllegalArgumentException("Buffer capacity may not be negative");
55 this.buffer = new char[capacity];
59 char newbuffer[] = new char[Math.max(this.buffer.length << 1, newlen)];
60 System.arraycopy(this.buffer, 0, newbuffer, 0, this.len);
61 this.buffer = newbuffer;
76 if (newlen > this.buffer.length) {
79 System.arraycopy(b, off, this.buffer, this.len, len);
89 if (newlen > this.buffer.length) {
92 str.getChars(0, strlen, this.buffer, this.len)
172 public char[] buffer() { method in class:CharArrayBuffer
    [all...]
  /external/e2fsprogs/ext2ed/
blockbitmap_com.c 43 char *ptr,buffer [80]; local
47 ptr=parse_word (command_line,buffer); /* Get the requested entry */
52 ptr=parse_word (ptr,buffer);
54 entry_num=atol (buffer);
66 strcpy (buffer,"show");dispatch (buffer); /* dispatch a show command */
79 char *ptr,buffer [80]; local
81 ptr=parse_word (command_line,buffer);
83 ptr=parse_word (ptr,buffer);
84 entry_offset=atol (buffer);
95 char *ptr,buffer [80]; local
119 char *ptr,buffer [80]; local
148 char *ptr,buffer [80]; local
    [all...]
inodebitmap_com.c 30 char *ptr,buffer [80]; local
32 ptr=parse_word (command_line,buffer);
36 ptr=parse_word (ptr,buffer);
38 entry_num=atol (buffer);
45 strcpy (buffer,"show");dispatch (buffer);
52 char *ptr,buffer [80]; local
54 ptr=parse_word (command_line,buffer);
56 ptr=parse_word (ptr,buffer);
57 entry_offset=atol (buffer);
68 char *ptr,buffer [80]; local
84 char *ptr,buffer [80]; local
110 char *ptr,buffer [80]; local
    [all...]
  /libcore/luni/src/main/java/java/io/
RandomAccessFile.java 294 * byte array {@code buffer}. The maximum number of bytes read corresponds
295 * to the size of {@code buffer}. Blocks until at least one byte has been
298 * @param buffer
305 public int read(byte[] buffer) throws IOException {
306 return read(buffer, 0, buffer.length);
311 * and stores them in the byte array {@code buffer} starting at {@code
315 * @param buffer
318 * the initial position in {@code buffer} to store the bytes read
321 * the maximum number of bytes to store in {@code buffer}
    [all...]
PipedReader.java 36 * The circular buffer through which data is passed. Data is read from the
38 * Data in the buffer is either sequential: <pre>
43 * ...or wrapped around the buffer's end: <pre>
48 * When the buffer is empty, {@code in == -1}. Reading when the buffer is
49 * empty will block until data is available. When the buffer is full,
50 * {@code in == out}. Writing when the buffer is full will block until free
53 private char[] buffer; field in class:PipedReader
56 * The index in {@code buffer} where the next character will be written.
61 * The index in {@code buffer} where the next character will be read
    [all...]
  /external/chromium/third_party/icu/source/tools/genrb/
rle.c 39 appendEncodedByte(uint16_t* buffer, uint16_t* buffLimit, uint8_t value, uint8_t state[],UErrorCode* status) {
45 if(buffer < buffLimit){
46 *buffer++ = c;
51 return buffer;
56 return buffer;
64 encodeRunByte(uint16_t* buffer,uint16_t* bufLimit, uint8_t value, int32_t length, uint8_t state[], UErrorCode* status) {
72 buffer = appendEncodedByte(buffer,bufLimit, ESCAPE_BYTE, state,status);
74 buffer = appendEncodedByte(buffer,bufLimit, value, state, status)
    [all...]

Completed in 1263 milliseconds

1 23 4 5 6 7 8 91011>>