/external/zlib/contrib/untgz/ |
untgz.c | 91 char buffer[BLOCKSIZE]; member in union:tar_buffer 134 static char buffer[1024]; local 137 strcpy(buffer,arcname); 138 origlen = strlen(buffer); 142 strcpy(buffer+origlen,TGZsuffix[i]); 143 if (access(buffer,F_OK) == 0) 144 return buffer; 330 char *buffer = strdup(newdir); local 332 int len = strlen(buffer); 335 free(buffer); 388 union tar_buffer buffer; local [all...] |
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/ |
DistributionPoint.java | 97 public void dumpValue(StringBuffer buffer, String prefix) { 98 buffer.append(prefix); 99 buffer.append("Distribution Point: [\n"); //$NON-NLS-1$ 101 distributionPoint.dumpValue(buffer, prefix + " "); //$NON-NLS-1$ 104 reasons.dumpValue(buffer, prefix + " "); //$NON-NLS-1$ 107 buffer.append(prefix); 108 buffer.append(" CRL Issuer: [\n"); //$NON-NLS-1$ 109 cRLIssuer.dumpValue(buffer, prefix + " "); //$NON-NLS-1$ 110 buffer.append(prefix); 111 buffer.append(" ]\n"); //$NON-NLS-1 [all...] |
/dalvik/vm/native/ |
SystemThread.c | 69 char buffer[256]; local 70 int size = read(thread->statFile, buffer, sizeof(buffer) - 1); 75 char* endOfName = (char*) memchr(buffer, ')', size); 81 if ((state - buffer) + 1 > size) { 85 thread->stateOffset = state - buffer; 94 char buffer[3]; local 101 int size = read(thread->statFile, buffer, sizeof(buffer)); 102 if (size < (int) sizeof(buffer)) { [all...] |
/development/tools/idegen/src/ |
Files.java | 29 char[] buffer = new char[0x1000]; // 4k local 33 while ((read = in.read(buffer)) > -1) { 34 builder.append(buffer, 0, read);
|
/external/apache-http/src/org/apache/http/entity/ |
BufferedHttpEntity.java | 47 * buffer once and provided from there as often as required. 57 private final byte[] buffer; field in class:BufferedHttpEntity 62 this.buffer = EntityUtils.toByteArray(entity); 64 this.buffer = null; 69 if (this.buffer != null) { 70 return this.buffer.length; 77 if (this.buffer != null) { 78 return new ByteArrayInputStream(this.buffer); 90 return (buffer == null) && wrappedEntity.isChunked(); 107 if (this.buffer != null) [all...] |
/external/apache-http/src/org/apache/http/impl/auth/ |
AuthSchemeBase.java | 84 CharArrayBuffer buffer; local 87 buffer = ((FormattedHeader) header).getBuffer(); 94 buffer = new CharArrayBuffer(s.length()); 95 buffer.append(s); 98 while (pos < buffer.length() && HTTP.isWhitespace(buffer.charAt(pos))) { 102 while (pos < buffer.length() && !HTTP.isWhitespace(buffer.charAt(pos))) { 106 String s = buffer.substring(beginIndex, endIndex); 111 parseChallenge(buffer, pos, buffer.length()) [all...] |
/external/icu4c/samples/csdet/ |
csdet.c | 18 static char buffer[BUFFER_SIZE]; local 47 inputLength = (int32_t) fread(buffer, 1, BUFFER_SIZE, file); 52 ucsdet_setText(csd, buffer, inputLength, &status);
|
/external/icu4c/test/perf/utfperf/ |
UtfPerf.pl | 45 #"UTF-8 small buffer", ["$p UTF_8_SB"], 47 #"SCSU small buffer", ["$p SCSU_SB"], 49 #"BOCU_1 small buffer", ["$p BOCU_1_SB"],
|
/external/icu4c/test/perf/utrie2perf/ |
utrie2perf.pl | 45 #"UTF-8 small buffer", ["$p UTF_8_SB"], 47 #"SCSU small buffer", ["$p SCSU_SB"], 49 #"BOCU_1 small buffer", ["$p BOCU_1_SB"],
|
/external/kernel-headers/original/linux/ |
vt_buffer.h | 2 * include/linux/vt_buffer.h -- Access to VT screen buffer 7 * console driver and related code to access the screen buffer. 8 * In most cases the console works with simple in-memory buffer,
|
/external/opencore/oscl/oscl/osclbase/src/ |
oscl_byte_order.h | 46 This function takes a buffer of data which is assumed to be in little endian order and 49 \param data A pointer to the input/output buffer 50 \param size The number of bytes in the buffer. 56 This function takes a buffer of data which is assumed to be in the host's native order and 58 \param data A pointer to the input/output buffer 59 \param size The number of bytes in the buffer. 65 This function takes a buffer of data which is assumed to be in big endian order and 68 \param data A pointer to the input/output buffer 69 \param size The number of bytes in the buffer. 75 This function takes a buffer of data which is assumed to be in native host order an [all...] |
/external/oprofile/libutil/ |
op_deviceio.h | 35 * @param buf buffer 36 * @param size size of buffer 38 * Read size bytes from a device into buffer buf.
|
/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/qemu/hw/ |
goldfish_battery.c | 89 // return current buffer status flags 206 char buffer[100]; local 209 sprintf(buffer, "AC: %s\r\n", (battery_state->ac_online ? "online" : "offline")); 210 callback(data, buffer); 229 sprintf(buffer, "status: %s\r\n", value); 230 callback(data, buffer); 252 sprintf(buffer, "health: %s\r\n", value); 253 callback(data, buffer); 255 sprintf(buffer, "present: %s\r\n", (battery_state->present ? "true" : "false")); 256 callback(data, buffer); [all...] |
/external/quake/quake/src/QW/client/ |
snd_android.c | 28 inside the recirculating dma buffer, so the mixing code will know 41 Send sound to device if buffer isn't really the dma buffer
|
/external/skia/include/effects/ |
SkColorMatrixFilter.h | 38 virtual void flatten(SkFlattenableWriteBuffer& buffer); 50 SkColorMatrixFilter(SkFlattenableReadBuffer& buffer); 53 static SkFlattenable* CreateProc(SkFlattenableReadBuffer& buffer);
|
/external/skia/src/core/ |
SkShader.cpp | 25 SkShader::SkShader(SkFlattenableReadBuffer& buffer) 26 : INHERITED(buffer), fLocalMatrix(NULL) { 27 if (buffer.readBool()) { 29 buffer.read(&matrix, sizeof(matrix)); 50 void SkShader::flatten(SkFlattenableWriteBuffer& buffer) { 51 this->INHERITED::flatten(buffer); 52 buffer.writeBool(fLocalMatrix != NULL); 54 buffer.writeMul4(fLocalMatrix, sizeof(SkMatrix)); 221 void SkColorShader::flatten(SkFlattenableWriteBuffer& buffer) { 222 this->INHERITED::flatten(buffer); [all...] |
/external/webkit/JavaScriptCore/wtf/ |
ByteArray.cpp | 33 unsigned char* buffer = new unsigned char[size + sizeof(ByteArray) - sizeof(size_t)]; local 34 ASSERT((reinterpret_cast<size_t>(buffer) & 3) == 0); 35 return adoptRef(new (buffer) ByteArray(size));
|
/external/webkit/WebCore/platform/graphics/ |
ImageSource.cpp | 125 RGBA32Buffer* buffer = m_decoder->frameBufferAtIndex(index); 126 if (!buffer || buffer->status() == RGBA32Buffer::FrameEmpty) 134 // Return the buffer contents as a native image. For some ports, the data 136 return buffer->asNewNativeImage(); 144 RGBA32Buffer* buffer = m_decoder->frameBufferAtIndex(index); 145 if (!buffer || buffer->status() == RGBA32Buffer::FrameEmpty) 153 const float duration = buffer->duration() / 1000.0f; 174 RGBA32Buffer* buffer = m_decoder->frameBufferAtIndex(index) [all...] |
/external/webkit/WebCore/platform/text/cf/ |
StringCF.cpp | 39 Vector<UChar, 1024> buffer(size); 40 CFStringGetCharacters(str, CFRangeMake(0, size), (UniChar*)buffer.data()); 41 m_impl = StringImpl::create(buffer.data(), size);
|
/external/webkit/WebCore/platform/text/mac/ |
StringMac.mm | 36 Vector<UChar, 1024> buffer(size); 37 CFStringGetCharacters(reinterpret_cast<CFStringRef>(str), CFRangeMake(0, size), buffer.data()); 38 m_impl = StringImpl::create(buffer.data(), size);
|
/frameworks/base/core/jni/ |
android_os_UEventObserver.cpp | 41 char *buffer = (char*)env->GetByteArrayElements(jbuffer, NULL); local 43 int length = uevent_next_event(buffer, buf_sz - 1); 45 env->ReleaseByteArrayElements(jbuffer, (jbyte*)buffer, 0);
|
/frameworks/base/include/utils/ |
Buffer.h | 26 class Buffer 48 Buffer() 55 ~Buffer()
|
/frameworks/base/libs/rs/ |
rsVertexArray.cpp | 52 buffer = a.buffer; 64 buffer = 0; 82 mAttribs[mCount].buffer = mActiveBuffer; 96 mAttribs[mCount].buffer = mActiveBuffer; 105 mAttribs[idx].buffer, 127 glBindBuffer(GL_ARRAY_BUFFER, mAttribs[ct].buffer); 138 glBindBuffer(GL_ARRAY_BUFFER, mAttribs[ct].buffer); 147 glBindBuffer(GL_ARRAY_BUFFER, mAttribs[ct].buffer); 157 glBindBuffer(GL_ARRAY_BUFFER, mAttribs[ct].buffer); [all...] |
/frameworks/base/media/tests/omxjpegdecoder/ |
SkOmxPixelRef.cpp | 24 SkOmxPixelRef::SkOmxPixelRef(SkColorTable* ctable, MediaBuffer* buffer, 26 mBuffer = buffer; 28 mSize = buffer->size();
|