OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:item_byte_size
(Results
1 - 3
of
3
) sorted by null
/external/lldb/source/Core/
DataExtractor.cpp
[
all
...]
/external/lldb/source/Commands/
CommandObjectMemory.cpp
612
size_t
item_byte_size
= m_format_options.GetByteSizeValue().GetCurrentValue();
local
617
total_byte_size = item_count *
item_byte_size
;
657
item_count = total_byte_size /
item_byte_size
;
714
item_byte_size
= m_format_options.GetByteSizeValue().GetCurrentValue();
716
item_byte_size
= target->GetMaximumSizeOfStringSummary();
719
data_sp.reset (new DataBufferHeap ((
item_byte_size
+1) * item_count, '\0')); // account for NULLs as necessary
722
result.AppendErrorWithFormat ("can't allocate 0x%" PRIx64 " bytes for the memory read buffer, specify a smaller size to read", (uint64_t)((
item_byte_size
+1) * item_count));
733
buffer.resize(
item_byte_size
+1,0);
735
size_t read = target->ReadCStringFromMemory(data_addr, &buffer[0],
item_byte_size
+1, error);
742
if (
item_byte_size
== read
1101
size_t
item_byte_size
= byte_size_value.GetCurrentValue();
local
[
all
...]
/external/lldb/include/lldb/Core/
DataExtractor.h
220
/// are \a
item_byte_size
bytes long starting at offset \a offset
239
/// @param[in]
item_byte_size
258
/// multiple times with identical \a offset and \a
item_byte_size
268
/// identical \a offset and \a
item_byte_size
values in order
280
size_t
item_byte_size
,
[
all
...]
Completed in 436 milliseconds