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

<<11121314151617181920>>

  /frameworks/base/media/libstagefright/rtsp/
AH263Assembler.cpp 72 sp<ABuffer> buffer = *queue->begin(); local
76 mNextExpectedSeqNo = (uint32_t)buffer->int32Data();
77 } else if ((uint32_t)buffer->int32Data() != mNextExpectedSeqNo) {
86 CHECK(buffer->meta()->findInt32("rtp-time", (int32_t *)&rtpTime));
93 // hexdump(buffer->data(), buffer->size());
95 if (buffer->size() < 2) {
102 unsigned payloadHeader = U16_AT(buffer->data());
110 buffer->data()[0] = 0x00;
111 buffer->data()[1] = 0x00
    [all...]
  /libcore/luni/src/main/java/java/io/
DataInputStream.java 55 * Reads bytes from this stream into the byte array {@code buffer}. Returns
58 * @param buffer
59 * the buffer to read bytes into.
68 public final int read(byte[] buffer) throws IOException {
69 return in.read(buffer, 0, buffer.length);
74 * the byte array {@code buffer} starting at {@code offset}. Returns the
78 * @param buffer
81 * the initial position in {@code buffer} to store the bytes
84 * the maximum number of bytes to store in {@code buffer}
    [all...]
PushbackInputStream.java 24 * during construction. If the buffer of pushed back bytes is empty, bytes are
29 * The buffer that contains pushed-back bytes.
36 * indicates that the buffer is full.
42 * stream as source. The size of the pushback buffer is set to the default
60 * input stream. The size of the pushback buffer is set to {@code size}.
69 * the size of the pushback buffer.
92 * and releases the pushback buffer.
122 * range from 0 to 255. If the pushback buffer does not contain any
149 * the byte array {@code buffer} starting at {@code offset}. Bytes are read
150 * from the pushback buffer first, then from the source stream if more byte
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
FixedLengthOutputStream.java 34 @Override public void write(byte[] buffer, int offset, int count) throws IOException {
36 checkBounds(buffer, offset, count);
40 socketOut.write(buffer, offset, count);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
lbxzlib.h 55 extern int ZlibStuffInput ( int fd, unsigned char *buffer, int buflen );
58 extern int ZlibWrite ( int fd, unsigned char *buffer, int buflen );
60 extern int ZlibRead ( int fd, unsigned char *buffer, int buflen );
  /external/apache-http/src/org/apache/http/impl/auth/
BasicScheme.java 173 CharArrayBuffer buffer = new CharArrayBuffer(32); local
175 buffer.append(AUTH.PROXY_AUTH_RESP);
177 buffer.append(AUTH.WWW_AUTH_RESP);
179 buffer.append(": Basic ");
180 buffer.append(base64password, 0, base64password.length);
182 return new BufferedHeader(buffer);
NTLMScheme.java 91 final CharArrayBuffer buffer, int pos, int len) throws MalformedChallengeException {
92 String challenge = buffer.substringTrimmed(pos, len);
134 CharArrayBuffer buffer = new CharArrayBuffer(32); local
136 buffer.append(AUTH.PROXY_AUTH_RESP);
138 buffer.append(AUTH.WWW_AUTH_RESP);
140 buffer.append(": NTLM ");
141 buffer.append(response);
142 return new BufferedHeader(buffer);
  /external/jpeg/
jdatadst.c 29 JOCTET * buffer; /* start of buffer */ member in struct:__anon4407
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 has been dumped
    [all...]
  /external/skia/src/effects/
Sk2DPathEffect.cpp 83 void Sk2DPathEffect::flatten(SkFlattenableWriteBuffer& buffer)
85 buffer.writeMul4(&fMatrix, sizeof(fMatrix));
88 Sk2DPathEffect::Sk2DPathEffect(SkFlattenableReadBuffer& buffer)
90 buffer.read(&fMatrix, sizeof(fMatrix));
99 SkFlattenable* Sk2DPathEffect::CreateProc(SkFlattenableReadBuffer& buffer)
101 return SkNEW_ARGS(Sk2DPathEffect, (buffer));
  /external/sonivox/arm-fm-22k/host_src/
eas_hostmm.c 86 EAS_U8 *buffer; member in struct:eas_hw_file_tag
220 if (file->buffer == NULL)
234 /* allocate a buffer */
235 file->buffer = EAS_HWMalloc(hwInstData, file->fileSize);
236 if (file->buffer == NULL)
243 temp = (int) fread(file->buffer, (size_t) file->fileSize, 1, ioFile);
280 if (file->buffer == NULL)
290 EAS_HWMemCpy(pBuffer, &file->buffer[file->filePos], count);
313 if (file->buffer == NULL)
323 /* get a character from the buffer */
    [all...]
  /external/sonivox/arm-hybrid-22k/host_src/
eas_hostmm.c 86 EAS_U8 *buffer; member in struct:eas_hw_file_tag
220 if (file->buffer == NULL)
234 /* allocate a buffer */
235 file->buffer = EAS_HWMalloc(hwInstData, file->fileSize);
236 if (file->buffer == NULL)
243 temp = (int) fread(file->buffer, (size_t) file->fileSize, 1, ioFile);
280 if (file->buffer == NULL)
290 EAS_HWMemCpy(pBuffer, &file->buffer[file->filePos], count);
313 if (file->buffer == NULL)
323 /* get a character from the buffer */
    [all...]
  /external/webkit/WebCore/plugins/gtk/
PluginPackageGtk.cpp 57 char* buffer = 0; local
58 NPError err = NPP_GetValue(0, NPPVpluginNameString, &buffer);
60 m_name = buffer;
62 buffer = 0;
63 err = NPP_GetValue(0, NPPVpluginDescriptionString, &buffer);
65 m_description = buffer;
  /frameworks/base/media/libstagefright/httplive/
LiveSource.cpp 80 sp<ABuffer> buffer; local
81 status_t err = fetchM3U(mMasterURL.c_str(), &buffer);
88 mMasterURL.c_str(), buffer->data(), buffer->size());
163 sp<ABuffer> buffer;
164 status_t err = fetchM3U(mURL.c_str(), &buffer);
170 mPlaylist = new M3UParser(mURL.c_str(), buffer->data(), buffer->size());
324 sp<ABuffer> buffer = new ABuffer(size); local
325 buffer->setRange(0, 0)
    [all...]
  /external/freetype/include/freetype/internal/
ftstream.h 152 /* Integer extraction macros -- the `buffer' parameter must ALWAYS be of */
224 #define FT_NEXT_CHAR( buffer ) \
225 ( (signed char)*buffer++ )
227 #define FT_NEXT_BYTE( buffer ) \
228 ( (unsigned char)*buffer++ )
230 #define FT_NEXT_SHORT( buffer ) \
231 ( (short)( buffer += 2, FT_PEEK_SHORT( buffer - 2 ) ) )
233 #define FT_NEXT_USHORT( buffer ) \
234 ( (unsigned short)( buffer += 2, FT_PEEK_USHORT( buffer - 2 ) )
    [all...]
  /hardware/ril/mock-ril/src/cpp/
requests.cpp 51 * Request has no data so create an empty Buffer
53 int ReqWithNoData(Buffer **pBuffer,
56 static Buffer *emptyBuffer = Buffer::New(0L);
69 int ReqEnterSimPin(Buffer **pBuffer,
72 Buffer *buffer; local
82 buffer = Buffer::New(req->ByteSize());
83 req->SerializeToArray(buffer->data(), buffer->length())
98 Buffer *buffer; local
157 Buffer *buffer; local
183 Buffer *buffer; local
211 Buffer *buffer; local
239 Buffer *buffer; local
347 Buffer *buffer = NULL; local
445 Buffer *buffer = NULL; local
470 char *buffer; local
475 Buffer *buffer = NULL; local
    [all...]
  /bionic/libc/kernel/common/linux/
xattr.h 37 int (*get)(struct inode *inode, const char *name, void *buffer,
39 int (*set)(struct inode *inode, const char *name, const void *buffer,
  /development/host/windows/usb/api/
adb_legacy_endpoint_object.h 60 @param[in,out] buffer Pointer to the buffer for read / write.
73 void* buffer,
82 @param[in,out] buffer Pointer to the buffer for read / write.
92 void* buffer,
  /development/host/windows/usb/winusb/
adb_winusb_endpoint_object.h 83 @param[in,out] buffer Pointer to the buffer for read / write.
96 void* buffer,
105 @param[in,out] buffer Pointer to the buffer for read / write.
115 void* buffer,
  /development/ndk/platforms/android-3/include/linux/
xattr.h 37 int (*get)(struct inode *inode, const char *name, void *buffer,
39 int (*set)(struct inode *inode, const char *name, const void *buffer,
  /external/chromium/base/
sync_socket.h 43 // buffer is a pointer to the data to send.
46 size_t Send(const void* buffer, size_t length);
49 // buffer is a pointer to the buffer to receive data.
52 size_t Receive(void* buffer, size_t length);
  /external/chromium/net/flip/
flip_io_buffer.h 22 // |buffer| is the actual data buffer.
23 // |size| is the size of the data buffer.
24 // |priority| is the priority of this buffer. Lower numbers are higher
26 // |stream| is a pointer to the stream which is managing this buffer.
27 FlipIOBuffer(IOBuffer* buffer, int size, int priority, FlipStream* stream);
32 DrainableIOBuffer* buffer() const { return buffer_; } function in class:net::FlipIOBuffer
  /external/chromium/third_party/icu/source/tools/genrb/
rle.h 40 byteArrayToRLEString(const uint8_t* src,int32_t srcLen, uint16_t* buffer,int32_t bufLen, UErrorCode* status);
57 usArrayToRLEString(const uint16_t* src,int32_t srcLen,uint16_t* buffer, int32_t bufLen,UErrorCode* status);
  /external/dbus/dbus/
dbus-sysdeps-unix.h 49 DBusString *buffer,
53 const DBusString *buffer,
  /external/easymock/src/org/easymock/internal/matchers/
CompareTo.java 42 public void appendTo(StringBuffer buffer) {
43 buffer.append(getName() + "(" + expected + ")");
EqualsWithDelta.java 43 public void appendTo(StringBuffer buffer) {
44 buffer.append("eq(" + expected + ", " + delta + ")");

Completed in 4690 milliseconds

<<11121314151617181920>>