HomeSort by relevance Sort by last modified time
    Searched refs:GetBytes (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/lldb/include/lldb/Core/
DataBuffer.h 69 GetBytes () = 0;
79 GetBytes () const = 0;
DataBufferHeap.h 76 /// @copydoc DataBuffer::GetBytes()
79 GetBytes ();
82 /// @copydoc DataBuffer::GetBytes() const
85 GetBytes () const;
DataBufferMemoryMap.h 59 /// @copydoc DataBuffer::GetBytes()
62 GetBytes ();
65 /// @copydoc DataBuffer::GetBytes() const
68 GetBytes () const;
UUID.h 47 GetBytes() const;
  /external/llvm/include/llvm/Support/
DataStream.h 28 virtual size_t GetBytes(unsigned char *buf, size_t len) = 0;
  /external/chromium_org/net/base/
test_data_stream.h 22 void GetBytes(char* buffer, int length);
test_data_stream.cc 14 void TestDataStream::GetBytes(char* buffer, int length) {
  /external/lldb/source/Core/
UUID.cpp 64 UUID::GetBytes() const
76 const uint8_t *u = (const uint8_t *)GetBytes();
99 const uint8_t *u = (const uint8_t *)GetBytes();
248 return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), sizeof (lldb_private::UUID::ValueType)) == 0;
254 return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), sizeof (lldb_private::UUID::ValueType)) != 0;
260 return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), sizeof (lldb_private::UUID::ValueType)) < 0;
266 return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), sizeof (lldb_private::UUID::ValueType)) <= 0
    [all...]
DataBufferHeap.cpp 56 DataBufferHeap::GetBytes ()
68 DataBufferHeap::GetBytes () const
Value.cpp 67 m_value = (uintptr_t)m_data_buffer.GetBytes();
79 if ((uintptr_t)v.m_value.ULongLong(LLDB_INVALID_ADDRESS) == (uintptr_t)v.m_data_buffer.GetBytes())
81 m_data_buffer.CopyData(v.m_data_buffer.GetBytes(),
84 m_value = (uintptr_t)m_data_buffer.GetBytes();
99 if ((uintptr_t)rhs.m_value.ULongLong(LLDB_INVALID_ADDRESS) == (uintptr_t)rhs.m_data_buffer.GetBytes())
101 m_data_buffer.CopyData(rhs.m_data_buffer.GetBytes(),
104 m_value = (uintptr_t)m_data_buffer.GetBytes();
162 m_value = (uintptr_t)m_data_buffer.GetBytes();
308 data.SetData(m_data_buffer.GetBytes(), m_data_buffer.GetByteSize(), data.GetByteOrder());
651 if ((uintptr_t)addr != (uintptr_t)m_data_buffer.GetBytes())
    [all...]
DataBufferMemoryMap.cpp 53 DataBufferMemoryMap::GetBytes()
63 DataBufferMemoryMap::GetBytes() const
  /external/chromium_org/media/base/
bit_reader.cc 20 int BitReader::GetBytes(int max_nbytes, const uint8** out) {
bit_reader.h 46 virtual int GetBytes(int max_n, const uint8** out) OVERRIDE;
bit_reader_core.h 24 // Note: |*array| must be valid until the next call to GetBytes
26 virtual int GetBytes(int max_n, const uint8** array) = 0;
bit_reader_core.cc 85 byte_stream_provider_->GetBytes(nbytes, &byte_stream_window);
151 byte_stream_provider_->GetBytes(max_nbytes, &byte_stream_window);
  /external/llvm/lib/Support/
DataStream.cpp 62 size_t GetBytes(unsigned char *buf, size_t len) override {
  /external/opencv/otherlibs/highgui/
grfmt_bmp.cpp 129 m_strm.GetBytes( m_palette, (clrused == 0? 1<<m_bpp : clrused)*4 );
164 m_strm.GetBytes( buffer, clrused*3 );
229 m_strm.GetBytes( src, src_pitch );
243 m_strm.GetBytes( src, src_pitch );
287 m_strm.GetBytes( src, (((code + 1)>>1) + 1) & -2 );
331 m_strm.GetBytes( src, src_pitch );
376 m_strm.GetBytes( src, (code + 1) & -2 );
427 m_strm.GetBytes( src, src_pitch );
439 m_strm.GetBytes( src, src_pitch );
451 m_strm.GetBytes( color ? data : src, src_pitch )
    [all...]
grfmt_sunras.cpp 127 m_strm.GetBytes( buffer, m_maplength, &readed );
211 m_strm.GetBytes( src, src_pitch );
280 m_strm.GetBytes( src, src_pitch );
358 m_strm.GetBytes( color ? data : bgr, src_pitch );
379 m_strm.GetBytes( src + 3, src_pitch );
  /external/lldb/source/Expression/
Materializer.cpp 337 map.ReadMemory(data.GetBytes(), load_addr, m_size, err);
345 DataExtractor extractor (data.GetBytes(), data.GetByteSize(), map.GetByteOrder(), map.GetAddressByteSize());
347 extractor.DumpHexBytes(&dump_stream, data.GetBytes(), data.GetByteSize(), 16, load_addr);
368 map.ReadMemory(data.GetBytes(), target_address, m_persistent_variable_sp->GetByteSize(), err);
376 DataExtractor extractor (data.GetBytes(), data.GetByteSize(), map.GetByteOrder(), map.GetAddressByteSize());
378 extractor.DumpHexBytes(&dump_stream, data.GetBytes(), data.GetByteSize(), 16, target_address);
627 map.ReadMemory(data.GetBytes(), load_addr, m_size, err);
635 DataExtractor extractor (data.GetBytes(), data.GetByteSize(), map.GetByteOrder(), map.GetAddressByteSize());
637 extractor.DumpHexBytes(&dump_stream, data.GetBytes(), data.GetByteSize(), 16, load_addr);
664 map.ReadMemory(data.GetBytes(), m_temporary_allocation, m_temporary_allocation_size, err)
    [all...]
IRMemoryMap.cpp 223 memset(m_data.GetBytes(), 0, size);
229 memset(m_data.GetBytes(), 0, size);
464 ::memcpy (allocation.m_data.GetBytes() + offset, bytes, size);
473 ::memcpy (allocation.m_data.GetBytes() + offset, bytes, size);
594 ::memcpy (bytes, allocation.m_data.GetBytes() + offset, size);
612 ::memcpy (bytes, allocation.m_data.GetBytes() + offset, size);
645 ReadMemory(buf.GetBytes(), process_address, size, error);
650 DataExtractor extractor(buf.GetBytes(), buf.GetByteSize(), GetByteOrder(), GetAddressByteSize());
730 process_sp->ReadMemory(allocation.m_process_start, allocation.m_data.GetBytes(), allocation.m_data.GetByteSize(), error);
734 extractor = DataExtractor(allocation.m_data.GetBytes() + offset, size, GetByteOrder(), GetAddressByteSize())
    [all...]
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntimeV1.cpp 273 size_t count = process_sp->ReadCStringFromMemory(name_ptr, (char*)buffer_sp->GetBytes(), 1024, error);
282 m_name = ConstString((char*)buffer_sp->GetBytes());
392 if (process->ReadMemory(hash_table_ptr, buffer.GetBytes(), 20, error) == 20)
396 DataExtractor data (buffer.GetBytes(), buffer.GetByteSize(), byte_order, addr_size);
408 if (process->ReadMemory(buckets_ptr, buffer.GetBytes(), data_size, error) == data_size)
410 data.SetData(buffer.GetBytes(), buffer.GetByteSize(), byte_order);
AppleObjCRuntimeV2.cpp     [all...]
  /external/lldb/source/Host/linux/
Host.cpp 65 // GetBytes() directly off our returned DataBufferSP if we hit an error.
83 ssize_t status = read (fd, buf_ap->GetBytes() + bytes_read, avail);
118 const char *filename_end = strrchr ((const char *)buf_sp->GetBytes(), ')');
170 char *buf_uid = strstr ((char *)buf_sp->GetBytes(), uid_token);
180 char *buf_gid = strstr ((char *)buf_sp->GetBytes(), gid_token);
190 char *buf_tracerpid = strstr((char *)buf_sp->GetBytes(), tracerpid_token);
396 char *next_var = (char *)buf_sp->GetBytes();
408 char *cmd = (char *)buf_sp->GetBytes();
459 const char *comm_str = (const char *)buf_sp->GetBytes();
  /external/lldb/source/Plugins/Process/Utility/
RegisterContextMemory.cpp 142 if (process_sp->ReadMemory(m_reg_data_addr, data_sp->GetBytes(), data_sp->GetByteSize(), error) == data_sp->GetByteSize())
162 if (process_sp->WriteMemory(m_reg_data_addr, data_sp->GetBytes(), data_sp->GetByteSize(), error) == data_sp->GetByteSize())
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
ANTLRxxxxStreamFixture.cs 67 byte[] grammarStrBuffer = encoding.GetBytes(grammarStr);
86 byte[] grammarStrBuffer = encoding.GetBytes(grammarStr);
97 byte[] grammarStrBuffer = encoding.GetBytes(grammarStr);
120 byte[] grammarStrBuffer = encoding.GetBytes(grammarStr);
136 byte[] buffer = encoding.GetBytes("One\r\nTwo");
199 byte[] buffer = encoding.GetBytes("One\r\nTwo");
237 byte[] buffer = encoding.GetBytes("One\r\nTwo\r\nThree");
257 byte[] buffer = encoding.GetBytes("One\r\nTwo\r\nThree");

Completed in 559 milliseconds

1 2 3 4