/system/core/toolbox/ |
log.c | 94 char buffer[4096]; local 130 buffer[0] = '\0'; 133 strncat(buffer, argv[i], sizeof(buffer)-1); 134 strncat(buffer, " ", sizeof(buffer)-1); 137 if(buffer[0] == 0) { 141 __android_log_print(priority, tag, "%s", buffer);
|
/external/elfutils/doc/ |
elfutils.sgml | 23 <refpurpose>Descriptor for Data Buffer</refpurpose> 36 a descriptor for a data buffer associated with a section. 37 Every data buffer is associated with a specific section (see 40 <simpara>A data buffer is created when reading a file. In 41 this case only a single buffer is present in the section. The 70 the pointer to the buffer with the actual data. When 72 data buffer of a section is allocated by the 74 not try to resize or free this buffer. When the user 75 adds a new data buffer to a section the associated 77 important that the buffer must have a lifetime at leas [all...] |
/dalvik/libcore/include/ |
LocalArray.h | 26 * construction time, a buffer will be allocated on the heap (and deallocated 37 * internal on-stack buffer will be used. Otherwise a heap buffer will 49 * Frees the heap-allocated buffer, if there was one.
|
/dalvik/libcore/luni/src/main/java/java/util/ |
IllegalFormatCodePointException.java | 61 StringBuilder buffer = new StringBuilder(); local 62 buffer.append("Code point is "); 65 buffer.append(chars[i]); 67 return buffer.toString();
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/ |
StringBufferPool.java | 37 * Get the first free instance of a string buffer, or create one 40 * @return A string buffer ready for use. 48 * Return a string buffer back to the pool. 50 * @param sb Must be a non-null reference to a string buffer.
|
/external/dropbear/ |
algo.h | 30 #include "buffer.h" 67 void buf_put_algolist(buffer * buf, algo_type localalgos[]); 69 algo_type * svr_buf_match_algo(buffer* buf, algo_type localalgos[], 71 algo_type * cli_buf_match_algo(buffer* buf, algo_type localalgos[],
|
/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/icu4c/i18n/ |
windtfmt.cpp | 239 UChar *buffer = stackBuffer; local 241 result = GetDateFormatW(fLCID, dfFlags[fDateStyle - kDateOffset], st, NULL, buffer, STACK_BUFFER_SIZE); 247 buffer = NEW_ARRAY(UChar, newLength); 248 GetDateFormatW(fLCID, dfFlags[fDateStyle - kDateOffset], st, NULL, buffer, newLength); 252 appendTo.append(buffer, (int32_t) wcslen(buffer)); 254 if (buffer != stackBuffer) { 255 DELETE_ARRAY(buffer); 265 UChar *buffer = stackBuffer; local 267 result = GetTimeFormatW(fLCID, tfFlags[fTimeStyle], st, NULL, buffer, STACK_BUFFER_SIZE) [all...] |
/external/icu4c/samples/props/ |
props.cpp | 27 char buffer[100]; local 32 u_charName(codePoint, U_UNICODE_CHAR_NAME, buffer, sizeof(buffer), &errorCode); 35 printf("U+%04lx\t%s\n", codePoint, buffer);
|
/external/icu4c/test/cintltst/ |
currtest.c | 160 UChar buffer[256]; local 170 unum_formatDouble(fmt, 123.456, buffer, sizeof(buffer)/sizeof(buffer[0]), NULL, &status); 172 if (u_strcmp(buffer, expectedBuf) != 0) { 177 unum_formatDouble(fmt, 123.456, buffer, sizeof(buffer)/sizeof(buffer[0]), NULL, &status); 179 if (u_strcmp(buffer, expectedBuf) != 0) { 184 unum_formatDouble(fmt, 123.456, buffer, sizeof(buffer)/sizeof(buffer[0]), NULL, &status) 197 UChar buffer[4]; local [all...] |
/external/icu4c/tools/genrb/ |
rbutil.h | 25 int32_t itostr(char * buffer, int32_t i, uint32_t radix, int32_t pad);
|
/external/jpeg/ |
wrppm.c | 58 * work the output buffer must be allocated in near data space, because we are 72 char *iobuffer; /* fwrite's I/O buffer */ 73 JSAMPROW pixrow; /* decompressor output buffer */ 74 size_t buffer_width; /* width of I/O buffer */ 86 * output buffer is physically the same as the fwrite buffer. 113 ptr = dest->pub.buffer[0]; 140 ptr = dest->pub.buffer[0]; 162 ptr = dest->pub.buffer[0]; 233 /* Create physical I/O buffer. Note we make this near on a PC. * [all...] |
/external/ppp/pppd/ |
md4.h | 23 unsigned int buffer[4]; /* Holds 4-word result of MD computation */ member in struct:__anon4062 49 ** Prints message digest buffer MD as 32 hexadecimal digits. 50 ** Order is from low-order byte of buffer[0] to high-order byte 51 ** of buffer[3].
|
sha1.h | 22 unsigned char buffer[64]; member in struct:__anon4066
|
/external/qemu/distrib/sdl-1.2.12/src/audio/ |
SDL_mixer_MMX.h | 6 Assumes buffer size in bytes is a multiple of 16
|
/external/qemu/distrib/sdl-1.2.12/src/video/riscos/ |
SDL_riscossprite.c | 42 /* Create sprite buffer for screen */ 48 unsigned char *buffer; local 75 buffer = SDL_malloc( (size_t) size + offsetToSpriteData ); 76 if (!buffer) return NULL; 80 *(unsigned int *)buffer = size + offsetToSpriteData; 81 *(unsigned int *)(buffer + 8) = 16; 84 regs.r[1] = (unsigned int)buffer; 88 regs.r[1] = (unsigned int)buffer; 109 int *sprite = (int *)(buffer + 16); 115 (*(int *)(buffer+12)) += 2048 [all...] |
/external/skia/src/images/ |
SkFDStream.cpp | 29 size_t SkFDStream::read(void* buffer, size_t size) { 31 if (buffer == NULL && size == 0) { // request total size 54 } else if (NULL == buffer) { // skip 72 ssize_t actual = ::read(fFD, buffer, size);
|
/external/webkit/WebCore/manual-tests/memory/ |
string-growth.html | 12 // now append to it repeatedly in a way that prevents buffer sharing
|
/external/webkit/WebCore/platform/graphics/wx/ |
GlyphMapWx.cpp | 38 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData) 46 UChar lead = buffer[i * 2]; 47 UChar trail = buffer[i * 2 + 1]; 50 character = buffer[i];
|
/frameworks/base/core/java/com/google/android/mms/pdu/ |
QuotedPrintable.java | 43 ByteArrayOutputStream buffer = new ByteArrayOutputStream(); local 58 buffer.write((char) ((u << 4) + l)); 63 buffer.write(b); 66 return buffer.toByteArray();
|
/frameworks/base/core/jni/android/graphics/ |
NIOBuffer.h | 9 NIOBuffer(JNIEnv* env, jobject buffer);
|
/frameworks/base/include/utils/ |
Flattenable.h | 36 // flattens the object into buffer. 41 virtual status_t flatten(void* buffer, size_t size, 44 // unflattens the object from buffer. 51 virtual status_t unflatten(void const* buffer, size_t size,
|
/frameworks/base/media/libstagefright/omx/ |
OMXComponentBase.h | 55 OMX_U8 *buffer) = 0; 65 OMX_BUFFERHEADERTYPE *buffer) = 0; 67 virtual OMX_ERRORTYPE emptyThisBuffer(OMX_BUFFERHEADERTYPE *buffer) = 0; 68 virtual OMX_ERRORTYPE fillThisBuffer(OMX_BUFFERHEADERTYPE *buffer) = 0;
|
/external/ppp/pppd/plugins/radius/ |
avpair.c | 146 * Purpose: takes attribute/value pairs from buffer and builds a 165 char buffer[512]; local 194 *buffer= '\0'; /* Initial length. */ 200 strcat (buffer, hex); 203 attribute, attrlen, buffer); 470 * Purpose: Copy a data field from the buffer. Advance the buffer 510 * Purpose: parses the buffer to extract the attribute-value pairs. 522 int rc_avpair_parse (char *buffer, VALUE_PAIR **first_pair) 535 while (*buffer != '\n' && *buffer != '\0' 695 char buffer[32]; local 776 char buffer[1024], *q; local [all...] |
/external/wpa_supplicant/ |
crypto.h | 35 * @mac: Buffer for the hash 44 * @mac: Buffer for the hash 53 * @mac: Buffer for the hash 62 * @x: Buffer for PRF output 77 * @mac: Buffer for the hash 102 * @crypt: Buffer for the encrypted data (16 bytes) 124 * @plain: Buffer for the decrypted data (16 bytes) 160 * @data: Data buffer to add 161 * @len: Length of the buffer 172 * @hash: Buffer for hash value or %NULL if caller is just freeing the has [all...] |