Searched defs:DataBuffer (Results 1 - 12 of 12) sorted by relevance

/external/lldb/include/lldb/Core/
H A DDataBuffer.h1 //===-- DataBuffer.h --------------------------------------------*- C++ -*-===//
20 /// @class DataBuffer DataBuffer.h "lldb/Core/DataBuffer.h"
23 /// DataBuffer is an abtract class that gets packaged into a shared pointer
44 class DataBuffer class in namespace:lldb_private
51 /// this class and be downcast to the DataBuffer pure virtual
57 ~DataBuffer()
/external/chromium_org/media/base/
H A Ddata_buffer.cc11 DataBuffer::DataBuffer(int buffer_size) function in class:media::DataBuffer
18 DataBuffer::DataBuffer(scoped_ptr<uint8[]> buffer, int buffer_size) function in class:media::DataBuffer
26 DataBuffer::DataBuffer(const uint8* data, int data_size) function in class:media::DataBuffer
39 DataBuffer::~DataBuffer() {}
42 scoped_refptr<DataBuffer> DataBuffer
[all...]
H A Ddata_buffer.h23 class MEDIA_EXPORT DataBuffer : public base::RefCountedThreadSafe<DataBuffer> { class in namespace:media
26 explicit DataBuffer(int buffer_size);
29 DataBuffer(scoped_ptr<uint8[]> buffer, int buffer_size);
31 // Create a DataBuffer whose |data_| is copied from |data|.
34 static scoped_refptr<DataBuffer> CopyFrom(const uint8* data, int size);
36 // Create a DataBuffer indicating we've reached end of stream.
40 static scoped_refptr<DataBuffer> CreateEOSBuffer();
90 friend class base::RefCountedThreadSafe<DataBuffer>;
96 DataBuffer(cons
[all...]
/external/chromium_org/mojo/bindings/js/
H A Ddrain_data.h51 typedef std::vector<char> DataBuffer; typedef in class:mojo::js::DrainData
58 ScopedVector<DataBuffer> data_buffers_;
/external/chromium_org/sandbox/win/tests/common/
H A Dtest_utils.cc30 UCHAR DataBuffer[1]; member in struct:_REPARSE_DATA_BUFFER::__anon10640::__anon10643
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Ddatachannelinterface.h68 struct DataBuffer { struct in namespace:webrtc
69 DataBuffer(const rtc::Buffer& data, bool binary) function in struct:webrtc::DataBuffer
74 explicit DataBuffer(const std::string& text) function in struct:webrtc::DataBuffer
92 virtual void OnMessage(const DataBuffer& buffer) = 0;
133 virtual bool Send(const DataBuffer& buffer) = 0;
/external/llvm/lib/ProfileData/
H A DInstrProfReader.cpp158 bool RawInstrProfReader<IntPtrT>::hasFormat(const MemoryBuffer &DataBuffer) { argument
159 if (DataBuffer.getBufferSize() < sizeof(uint64_t))
162 *reinterpret_cast<const uint64_t *>(DataBuffer.getBufferStart());
169 if (!hasFormat(*DataBuffer))
171 if (DataBuffer->getBufferSize() < sizeof(RawHeader))
174 reinterpret_cast<const RawHeader *>(DataBuffer->getBufferStart());
182 const char *End = DataBuffer->getBufferEnd();
225 if (Start + ProfileSize > DataBuffer->getBufferEnd())
254 RawName.data() + RawName.size() > DataBuffer->getBufferEnd() ||
286 bool IndexedInstrProfReader::hasFormat(const MemoryBuffer &DataBuffer) { argument
[all...]
/external/chromium_org/remoting/client/plugin/
H A Dmedia_source_video_renderer.cc22 typedef std::vector<uint8_t> DataBuffer; typedef in class:remoting::MediaSourceVideoRenderer::VideoWriter
38 scoped_ptr<DataBuffer> OnVideoFrame(const std::string& video_data,
45 scoped_ptr<DataBuffer> output_data_;
131 scoped_ptr<MediaSourceVideoRenderer::VideoWriter::DataBuffer>
137 output_data_.reset(new DataBuffer());
239 scoped_ptr<VideoWriter::DataBuffer> buffer =
/external/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h112 std::unique_ptr<MemoryBuffer> DataBuffer; member in class:llvm::TextInstrProfReader
123 : DataBuffer(std::move(DataBuffer_)), Line(*DataBuffer, '#') {}
142 std::unique_ptr<MemoryBuffer> DataBuffer; member in class:llvm::RawInstrProfReader
175 RawInstrProfReader(std::unique_ptr<MemoryBuffer> DataBuffer) argument
176 : DataBuffer(std::move(DataBuffer)) { }
178 static bool hasFormat(const MemoryBuffer &DataBuffer);
265 std::unique_ptr<MemoryBuffer> DataBuffer; member in class:llvm::IndexedInstrProf::IndexedInstrProfReader
277 IndexedInstrProfReader(std::unique_ptr<MemoryBuffer> DataBuffer) argument
[all...]
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.hpp386 class DataBuffer : public NamedObject class in namespace:sglr::rc
389 DataBuffer (deUint32 name) : NamedObject(name) {} function in class:sglr::rc::DataBuffer
390 ~DataBuffer (void) {}
428 rc::DataBuffer* bufferBinding;
435 rc::DataBuffer* m_elementArrayBufferBinding;
773 void deleteBuffer (rc::DataBuffer* buffer);
803 void setBufferBinding (deUint32 target, rc::DataBuffer* buffer);
804 rc::DataBuffer* getBufferBinding (deUint32 target) const;
877 rc::ObjectManager<rc::DataBuffer> m_buffers;
904 rc::DataBuffer* m_arrayBufferBindin
[all...]
/external/chromium_org/base/files/
H A Dfile_util_unittest.cc79 UCHAR DataBuffer[1]; member in struct:base::__anon2262::_REPARSE_DATA_BUFFER::__anon2263::__anon2266
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2.c486 /* DataBuffer is used to collect data into a buffer in piecemeal
499 typedef struct DataBuffer { struct
503 } DataBuffer; typedef in typeref:struct:DataBuffer
505 static void dataBufferInit(DataBuffer *pBuffer, int nCapacity){
511 static void dataBufferReset(DataBuffer *pBuffer){
514 static void dataBufferDestroy(DataBuffer *pBuffer){
518 static void dataBufferSwap(DataBuffer *pBuffer1, DataBuffer *pBuffer2){
519 DataBuffer tmp = *pBuffer1;
523 static void dataBufferExpand(DataBuffer *pBuffe
[all...]

Completed in 389 milliseconds