Searched defs:null_terminate (Results 1 - 4 of 4) sorted by relevance

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

Completed in 144 milliseconds