Searched defs:Buffer (Results 1 - 14 of 14) sorted by relevance

/external/webkit/WebKit/chromium/public/
H A DWebClipboard.h50 enum Buffer { enum in class:WebKit::WebClipboard
57 virtual bool isFormatAvailable(Format, Buffer) = 0;
59 virtual WebString readPlainText(Buffer) = 0;
60 virtual WebString readHTML(Buffer, WebURL*) = 0;
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DPipeline.java35 * Input class for the pipelined parser. Buffer all bytes read from the socket
46 private Buffer currentBuffer;
86 class Buffer { class in class:Pipeline
93 public Buffer(byte[] bytes, int length) { method in class:Pipeline.Buffer
134 Buffer buff = new Buffer(bytes, length);
145 Buffer buff = new Buffer(bytes, bytes.length);
182 currentBuffer = (Buffer) this.buffList.removeFirst();
/external/webkit/WebCore/platform/graphics/chromium/
H A DVDMXParser.cpp39 // Buffer helper class
44 class Buffer { class
46 Buffer(const uint8_t* buffer, size_t length) function in class:Buffer
124 Buffer buf(vdmx, vdmxLength);
/external/libnfc-nxp/src/
H A DphFriNfc_MifStdFormat.c622 uint8_t Buffer[1] = {PH_FRINFC_MFSTD_FMT_NDEF_COMPL}, local
780 uint8_t Buffer[1] = {PH_FRINFC_MFSTD_FMT_NDEF_COMPL}, local
823 uint8_t Buffer[1] = {PH_FRINFC_MFSTD_FMT_NDEF_COMPL}, local
1036 uint8_t Buffer[1] = {PH_FRINFC_MFSTD_FMT_NDEF_COMPL}, local
1232 uint8_t Buffer[1] = {PH_FRINFC_MFSTD_FMT_NDEF_COMPL}, local
H A DphFriNfc_NdefRecord.c55 * \param[in] Buffer The data buffer holding the NDEF Message, as provided by the caller.
87 NFCSTATUS phFriNfc_NdefRecord_GetRecords( uint8_t *Buffer, argument
105 if (Buffer == NULL || BufferLength == 0 || NumberOfRawRecords == NULL)
135 if ((*Buffer & PH_FRINFC_NDEFRECORD_FLAGS_MB) !=
148 if ((*Buffer & PH_FRINFC_NDEFRECORD_TNFBYTE_MASK) ==
160 if ((*Buffer & PH_FRINFC_NDEFRECORD_FLAGS_MB) == PH_FRINFC_NDEFRECORD_FLAGS_MB &&
161 (*Buffer & PH_FRINFC_NDEFRECORD_TNF_UNCHANGED) == PH_FRINFC_NDEFRECORD_TNF_UNCHANGED)
171 if ( (*Buffer & PH_FRINFC_NDEFRECORD_FLAGS_MB) == PH_FRINFC_NDEFRECORD_FLAGS_MB &&
172 (*Buffer & PH_FRINFC_NDEFRECORD_TNFBYTE_MASK) != PH_FRINFC_NDEFRECORD_TNF_UNKNOWN &&
173 (*Buffer
548 phFriNfc_NdefRecord_Generate(phFriNfc_NdefRecord_t *Record, uint8_t *Buffer, uint32_t MaxBufferSize, uint32_t *BytesWritten) argument
[all...]
H A DphFriNfc_FelicaMap.c95 static void phFriNfc_Felica_HInitInternalBuf(uint8_t *Buffer);
208 * \brief Used in Read Opearation.Sets the Trx Buffer Len calls Transc Cmd.
249 /* Chk the Buffer size*/
261 * \brief Used in Read Opearation.Sets the Trx Buffer Len.
334 /* Internal Buffer has some old read bytes to cpy to user buffer*/
350 /* Store number of bytes copied frm internal buffer to User Buffer */
422 }/*End of Internal Buffer has some old read bytes to cpy to user buffer*/
511 Internal Buffer Ex: User has given only one byte buffer,needs to cpy one byte at a time*/
640 /* set status to Success : User Buffer is full and Curblk < nmaxb*/
684 /* bytes pending in internal buffer , No Space in User Buffer*/
3001 phFriNfc_Felica_HInitInternalBuf(uint8_t *Buffer) argument
[all...]
H A DphFriNfc_NdefMap.h237 * \name Buffer Size Definitions
306 /**< Buffer to store odd number of block data */
449 /** Buffer to store 16 bytes */
450 uint8_t Buffer[PH_FRINFC_NDEFMAP_MIFARESTD_RDWR_SIZE]; member in struct:phFriNfc_MifareStdCont
550 /** Buffer to store 4 bytes of data which is written to a block */
551 uint8_t Buffer[PH_FRINFC_NDEFMAP_MFUL_4BYTES_BUF]; member in struct:phFriNfc_MifareULCont
630 /** Buffer to store 4 bytes of data which is written to a block */
632 /** Buffer to store 4 bytes of data which is written to a next block */
738 /** Store the Buffer Index */
823 /**< \internal Index to the APDU Buffer
[all...]
/external/v8/src/
H A Dunicode.h106 class Buffer { class in namespace:unibrow
108 inline Buffer(Data data, unsigned length) : data_(data), length_(length) { } function in class:unibrow::Buffer
109 inline Buffer() : data_(0), length_(0) { } function in class:unibrow::Buffer
121 static const byte* ReadBlock(Buffer<const char*> str, byte* buffer,
204 class Utf8InputBuffer : public InputBuffer<Utf8, Buffer<const char*>, s> {
209 InputBuffer<Utf8, Buffer<const char*>, s>::Reset(
210 Buffer<const char*>(data, length));
/external/webkit/JavaScriptCore/wtf/
H A DDeque.h90 typedef VectorBuffer<T, 0> Buffer; typedef in class:WTF::Deque
104 Buffer m_buffer;
H A DVector.h468 typedef VectorBuffer<T, inlineCapacity> Buffer; typedef in class:WTF::Vector
598 Buffer m_buffer;
/external/e2fsprogs/lib/ext2fs/
H A Dnt_io.c88 OUT PVOID Buffer,
103 IN PVOID Buffer,
210 PCHAR Buffer; member in struct:_NT_PRIVATE_DATA
397 WCHAR Buffer[512]; local
406 UnicodeString.Buffer = &Buffer[0];
408 UnicodeString.MaximumLength = sizeof(Buffer); // in bytes!!!
503 CHAR Buffer[100]; local
505 sprintf(Buffer, "\\DosDevices\\%c:", Letter);
507 return _OpenNtName(Buffer, ReadOnl
890 _BlockIo( IN HANDLE Handle, IN LARGE_INTEGER Offset, IN ULONG Bytes, IN OUT PCHAR Buffer, IN BOOLEAN Read, OUT unsigned* Errno ) argument
945 _RawWrite( IN HANDLE Handle, IN LARGE_INTEGER Offset, IN ULONG Bytes, OUT const CHAR* Buffer, OUT unsigned* Errno ) argument
958 _RawRead( IN HANDLE Handle, IN LARGE_INTEGER Offset, IN ULONG Bytes, IN PCHAR Buffer, OUT unsigned* Errno ) argument
[all...]
/external/qemu/
H A Dvnc.h52 typedef struct Buffer struct
57 } Buffer; typedef in typeref:struct:Buffer
145 Buffer output;
146 Buffer input;
160 Buffer zlib;
161 Buffer zlib_tmp;
293 /* Buffer I/O functions */
306 /* Buffer management */
307 void buffer_reserve(Buffer *buffer, size_t len);
308 int buffer_empty(Buffer *buffe
[all...]
/external/jhead/
H A Dexif.c1085 char* Buffer,
1088 Put16u(Buffer+ (*DirIndex), tag); // Tag
1089 Put16u(Buffer+(*DirIndex) + 2, format); // Format
1094 Put32u(Buffer+(*DirIndex) + 4, components); // Components
1100 strcpy(Buffer+(*DirIndex) + 8, (char*)value);
1102 Put32u(Buffer+(*DirIndex) + 8, (*DataWriteIndex)-8); // Pointer
1104 strncpy(Buffer+(*DataWriteIndex), (char*)value, components);
1108 Put32u(Buffer+(*DirIndex) + 8, value); // Value
1110 Put32u(Buffer+(*DirIndex) + 8, (*DataWriteIndex)-8); // Pointer
1123 Put32u(Buffer
1080 writeExifTagAndData(int tag, int format, long components, long value, int valueInString, char* Buffer, int* DirIndex, int* DataWriteIndex) argument
1175 char Buffer[1024]; local
[all...]
/external/stlport/src/c_locale_win32/
H A Dc_locale_win32.c307 unsigned char Buffer[256]; local
332 for (i = 0; i < 256; ++i) Buffer[i] = (unsigned char)i;
338 for (i = *ptr; i <= *(ptr + 1); ++i) Buffer[i] = 0;
347 BufferSize = MultiByteToWideChar(ltype->cp, MB_PRECOMPOSED, (const char*)Buffer, 256, NULL, 0);
351 MultiByteToWideChar(ltype->cp, MB_PRECOMPOSED, (const char*)Buffer, 256, wbuffer, BufferSize);
360 GetStringTypeA(ltype->lc.id, CT_CTYPE1, (const char*)Buffer, 256, ctable);
363 BufferSize = MultiByteToWideChar(NativeCP, MB_PRECOMPOSED, (const char*)Buffer, 256, NULL, 0);
367 MultiByteToWideChar(NativeCP, MB_PRECOMPOSED, (const char*)Buffer, 256, wbuffer, BufferSize);
381 GetStringTypeA(ltype->lc.id, CT_CTYPE1, (const char*)Buffer, 256, ltype->ctable);
1660 wchar_t *Buffer; local
[all...]

Completed in 418 milliseconds