Home
last modified time | relevance | path

Searched refs:null_terminate (Results 1 – 6 of 6) sorted by relevance

/external/lldb/source/Interpreter/
DOptionValueFileSpec.cpp147 OptionValueFileSpec::GetFileContents(bool null_terminate) in GetFileContents() argument
151 if (null_terminate) in GetFileContents()
/external/lldb/source/Host/common/
DFileSpec.cpp838 const bool null_terminate = false; in ReadFileContents() local
839 error = file.Read (file_size, file_offset, null_terminate, data_sp); in ReadFileContents()
865 const bool null_terminate = true; in ReadFileContentsAsCString() local
866 error = file.Read (length, offset, null_terminate, data_sp); in ReadFileContentsAsCString()
DFile.cpp592 File::Read (size_t &num_bytes, off_t &offset, bool null_terminate, DataBufferSP &data_buffer_sp) in Read() argument
611 … data_heap_ap.reset(new DataBufferHeap(num_bytes + (null_terminate ? 1 : 0), '\0')); in Read()
/external/lldb/include/lldb/Interpreter/
DOptionValueFileSpec.h112 GetFileContents(bool null_terminate);
/external/lldb/include/lldb/Host/
DFile.h404 bool null_terminate,
/external/lldb/source/Target/
DTarget.cpp2727 const bool null_terminate = true; in GetExpressionPrefixContentsAsCString() local
2728 DataBufferSP data_sp(file->GetFileContents(null_terminate)); in GetExpressionPrefixContentsAsCString()