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

12 3 4

  /external/lldb/source/Core/
Event.cpp 157 EventDataBytes::GetBytes() const
194 return e->GetBytes();
DataEncoder.cpp 134 const uint8_t * data_bytes = data->GetBytes();
200 m_start = data_sp->GetBytes() + data_offset;
SourceManager.cpp 479 const uint8_t *cstr = m_data_sp->GetBytes() + start_line_offset;
561 const char *start = (char *)m_data_sp->GetBytes();
623 buffer.assign((char *) m_data_sp->GetBytes() + start_offset, end_offset - start_offset);
RegisterValue.cpp 104 return data.SetData(GetBytes(), GetByteSize(), GetByteOrder()) > 0;
225 GetBytes(), // dst buffer
937 RegisterValue::GetBytes () const
958 RegisterValue::GetBytes ()
    [all...]
  /external/lldb/include/lldb/Core/
Event.h 83 GetBytes() const;
RegisterValue.h 361 GetBytes ();
364 GetBytes () const;
  /external/lldb/source/Interpreter/
OptionValueUUID.cpp 108 add_uuid = ::memcmp(module_uuid.GetBytes(), uuid_bytes, num_bytes_decoded) == 0;
  /external/llvm/include/llvm/Support/
StreamableMemoryObject.h 149 // at a time to avoid making too many potentially expensive GetBytes calls
154 size_t bytes = Streamer->GetBytes(&Bytes[BytesRead + BytesSkipped],
  /external/lldb/source/DataFormatters/
CXXFormatterFunctions.cpp 222 utf8_data_ptr = (UTF8*)utf8_data_buffer_sp->GetBytes();
225 utf8_data_ptr = (UTF8*)utf8_data_buffer_sp->GetBytes(); // needed because the ConvertFunction will change the value of the data_ptr
425 if (!buffer_sp->GetBytes())
429 char *buffer = reinterpret_cast<char *>(buffer_sp->GetBytes());
435 data_read = process_sp->ReadMemoryFromInferior(options.GetLocation(), (char*)buffer_sp->GetBytes(), bufferSPSize, error);
936 my_data_read = process_sp->ReadCStringFromMemory(location, (char*)buffer_sp->GetBytes(), size, my_error);
949 dest.Printf("%s",(char*)buffer_sp->GetBytes());
    [all...]
CF.cpp 159 num_bytes = process_sp->ReadMemory(data_ptr, buffer_sp->GetBytes(), num_bytes, error);
162 uint8_t *bytes = buffer_sp->GetBytes();
NSDictionary.cpp 392 uint64_t *data_ptr = (uint64_t *)buffer_sp->GetBytes();
398 uint32_t *data_ptr = (uint32_t *)buffer_sp->GetBytes();
556 uint64_t *data_ptr = (uint64_t *)buffer_sp->GetBytes();
562 uint32_t *data_ptr = (uint32_t *)buffer_sp->GetBytes();
  /external/chromium_org/third_party/decklink/mac/include/
DeckLinkAPIStreaming.h 316 virtual HRESULT GetBytes (/* out */ void** buffer) = 0;
332 virtual HRESULT GetBytes (/* out */ void** buffer) = 0;
346 virtual HRESULT GetBytes (/* out */ void** buffer) = 0;
DeckLinkAPI_v7_1.h 175 virtual HRESULT STDMETHODCALLTYPE GetBytes (void* *buffer) = 0;
190 virtual HRESULT STDMETHODCALLTYPE GetBytes (void* *buffer) = 0;
  /external/llvm/lib/Support/
Host.cpp 506 size_t CPUInfoSize = DS->GetBytes((unsigned char*) buffer, sizeof(buffer));
595 size_t CPUInfoSize = DS->GetBytes((unsigned char*) buffer, sizeof(buffer));
660 size_t CPUInfoSize = DS->GetBytes((unsigned char*) buffer, sizeof(buffer));
703 size_t CPUInfoSize = DS->GetBytes((unsigned char*) buffer, sizeof(buffer));
StreamableMemoryObject.cpp 138 BytesRead = streamer->GetBytes(&Bytes[0], kChunkSize);
  /external/opencv/otherlibs/highgui/
bitstrm.h 103 void GetBytes( void* buffer, int count, int* readed = 0 );
grfmt_pxm.cpp 255 m_strm.GetBytes( src, src_pitch );
285 m_strm.GetBytes( src, src_pitch );
  /external/lldb/source/Commands/
CommandObjectMemory.cpp 683 if (data_sp->GetBytes() == NULL)
691 bytes_read = target->ReadMemory(address, false, data_sp->GetBytes (), data_sp->GetByteSize(), error);
720 if (data_sp->GetBytes() == NULL)
726 uint8_t *data_ptr = data_sp->GetBytes();
754 data_sp.reset(new DataBufferHeap(data_sp->GetBytes(),bytes_read+1));
782 const size_t bytes_written = outfile_stream.Write (data_sp->GetBytes(), bytes_read);
    [all...]
  /external/lldb/source/Expression/
IRInterpreter.cpp 203 if (!cast_scalar.GetAsMemoryData(buf.GetBytes(), buf.GetByteSize(), m_byte_order, get_data_error))
208 m_memory_map.WriteMemory(process_address, buf.GetBytes(), buf.GetByteSize(), write_error);
369 m_memory_map.ReadMemory(buf.GetBytes(), addr, length, read_error);
379 ss.Printf("%02hhx - ", buf.GetBytes()[i]);
381 ss.Printf("%02hhx ", buf.GetBytes()[i]);
    [all...]
IRExecutionUnit.cpp 73 ReadMemory(my_buffer.GetBytes(), allocation_process_addr, size, err);
77 DataExtractor my_extractor(my_buffer.GetBytes(), my_buffer.GetByteSize(), lldb::eByteOrderBig, 8);
161 process->ReadMemory(func_remote_addr, buffer_sp->GetBytes(), buffer_sp->GetByteSize(), err);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugEventSocketProxy.cs 103 socket.Send(encoding.GetBytes("ANTLR " + DebugEventListenerConstants.ProtocolVersion + "\n"));
104 socket.Send(encoding.GetBytes("grammar \"" + grammarFileName + "\n"));
147 socket.Send(new System.Text.UTF8Encoding().GetBytes(@event + "\n"));
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventSocketProxy.cs 110 socket.Send( encoding.GetBytes( "ANTLR " + DebugEventListenerConstants.ProtocolVersion + "\n" ) );
111 socket.Send( encoding.GetBytes( "grammar \"" + grammarFileName + "\n" ) );
164 socket.Send( new System.Text.UTF8Encoding().GetBytes( @event + "\n" ) );
  /external/lldb/source/Target/
Memory.cpp 147 memcpy (dst_buf + dst_len - bytes_left, pos->second->GetBytes() + cache_offset, curr_read_size);
167 memcpy (dst_buf + dst_len - bytes_left, pos->second->GetBytes(), curr_read_size);
188 data_buffer_heap_ap->GetBytes(),
  /external/lldb/source/API/
SBModuleSpec.cpp 125 return (const uint8_t *)m_opaque_ap->GetUUID().GetBytes();
  /external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DynamicLoaderMacOSXDYLD.cpp     [all...]

Completed in 1214 milliseconds

12 3 4