/external/lldb/include/lldb/Core/ |
D | VMRange.h | 32 m_byte_size(0) in VMRange() 38 m_byte_size(end_addr > start_addr ? end_addr - start_addr : 0) in VMRange() 50 m_byte_size = 0; in Clear() 73 m_byte_size = end_addr - base_addr; in SetEndAddress() 75 m_byte_size = 0; in SetEndAddress() 81 return m_byte_size; in GetByteSize() 87 m_byte_size = byte_size; in SetByteSize() 99 return GetBaseAddress() + m_byte_size; in GetEndAddress() 105 return m_byte_size > 0; in IsValid() 169 lldb::addr_t m_byte_size; variable
|
D | AddressRange.h | 248 GetByteSize () const { return m_byte_size; } in GetByteSize() 270 SetByteSize (lldb::addr_t byte_size) { m_byte_size = byte_size; } in SetByteSize() 277 lldb::addr_t m_byte_size; ///< The size in bytes of this address range. variable
|
D | ValueObjectChild.h | 32 return m_byte_size; in GetByteSize() 92 uint64_t m_byte_size; variable
|
D | Section.h | 203 return m_byte_size; in GetByteSize() 209 m_byte_size = byte_size; in SetByteSize() 293 …lldb::addr_t m_byte_size; // Size in bytes that this section will occupy in memory at ru… variable
|
D | ValueObjectConstResult.h | 135 uint64_t m_byte_size; variable
|
/external/lldb/source/Interpreter/ |
D | OptionGroupFormat.cpp | 31 m_byte_size (default_byte_size, default_byte_size), in OptionGroupFormat() 54 if (m_byte_size.GetDefaultValue() < UINT64_MAX) in GetNumDefinitions() 98 if (m_byte_size.GetDefaultValue() == 0) in SetOptionValue() 104 error = m_byte_size.SetValueFromCString (option_arg); in SetOptionValue() 105 if (m_byte_size.GetCurrentValue() == 0) in SetOptionValue() 150 const bool byte_size_enabled = m_byte_size.GetDefaultValue() < UINT64_MAX; in SetOptionValue() 188 m_byte_size.SetCurrentValue (byte_size); in SetOptionValue() 189 m_byte_size.SetOptionWasSet (); in SetOptionValue() 246 m_byte_size.Clear(); in OptionParsingStarting()
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | UniqueDWARFASTType.h | 39 m_byte_size (-1) // Set to negative value to make sure we have a valid value in UniqueDWARFASTType() 54 m_byte_size (byte_size) in UniqueDWARFASTType() 64 m_byte_size (rhs.m_byte_size) in UniqueDWARFASTType() 82 m_byte_size = rhs.m_byte_size; 92 int32_t m_byte_size; variable
|
D | UniqueDWARFASTType.cpp | 38 if (pos->m_byte_size < 0 || byte_size < 0 || pos->m_byte_size == byte_size) in Find()
|
D | SymbolFileDWARF.cpp | 6192 unique_ast_entry.m_byte_size = byte_size; in ParseType()
|
/external/lldb/source/Core/ |
D | ValueObjectConstResult.cpp | 50 m_byte_size (0), in ValueObjectConstResult() 84 m_byte_size (0), in ValueObjectConstResult() 139 m_byte_size (0), in ValueObjectConstResult() 179 m_byte_size (0), in ValueObjectConstResult() 216 m_byte_size (0), in ValueObjectConstResult() 228 m_byte_size (0), in ValueObjectConstResult() 254 if (m_byte_size == 0) in GetByteSize() 255 m_byte_size = GetClangType().GetByteSize(); in GetByteSize() 256 return m_byte_size; in GetByteSize() 262 m_byte_size = size; in SetByteSize()
|
D | AddressRange.cpp | 21 m_byte_size(0) in AddressRange() 27 m_byte_size(byte_size) in AddressRange() 33 m_byte_size(byte_size) in AddressRange() 39 m_byte_size(byte_size) in AddressRange() 138 m_byte_size = 0; in Clear()
|
D | Section.cpp | 36 m_byte_size (byte_size), in Section() 67 m_byte_size (byte_size), in Section() 223 VMRange range(addr, addr + m_byte_size); in Dump()
|
D | ValueObjectChild.cpp | 42 m_byte_size (byte_size), in ValueObjectChild()
|
/external/lldb/include/lldb/Interpreter/ |
D | OptionGroupFormat.h | 79 return m_byte_size; in GetByteSizeValue() 85 return m_byte_size; in GetByteSizeValue() 110 m_byte_size.OptionWasSet() || in AnyOptionWasSet() 123 OptionValueUInt64 m_byte_size; variable
|
/external/lldb/source/Symbol/ |
D | Type.cpp | 97 m_byte_size (byte_size), in Type() 114 m_byte_size (0), in Type() 132 m_byte_size (rhs.m_byte_size), in Type() 171 s->Printf(", byte-size = %" PRIu64, m_byte_size); in GetDescription() 210 if (m_byte_size != 0) in Dump() 211 s->Printf(", size = %" PRIu64, m_byte_size); in Dump() 319 if (m_byte_size == 0) in GetByteSize() 334 m_byte_size = encoding_type->GetByteSize(); in GetByteSize() 335 if (m_byte_size == 0) in GetByteSize() 336 m_byte_size = GetClangLayoutType().GetByteSize(); in GetByteSize() [all …]
|
/external/lldb/include/lldb/Target/ |
D | Memory.h | 105 return m_byte_size; in GetByteSize() 123 return ((addr >= m_addr) && addr < (m_addr + m_byte_size)); in Contains() 129 return m_byte_size / m_chunk_size; in TotalChunks() 138 const uint32_t m_byte_size; // 4GB of chunk should be enough... variable
|
/external/lldb/tools/debugserver/source/ |
D | DNBBreakpoint.h | 32 nub_size_t ByteSize() const { return m_byte_size; } in ByteSize() 48 if (m_byte_size > 0) in IntersectsRange() 50 const nub_addr_t bp_end_addr = m_addr + m_byte_size; in IntersectsRange() 118 uint32_t m_byte_size; // Length in bytes of the breakpoint if set in memory variable
|
D | DNBBreakpoint.cpp | 25 m_byte_size (byte_size), in DNBBreakpoint() 56 (uint64_t)m_byte_size, in Dump()
|
/external/lldb/source/Breakpoint/ |
D | BreakpointSite.cpp | 130 m_byte_size = trap_opcode_size; in SetTrapOpcode() 134 m_byte_size = 0; in SetTrapOpcode() 199 if (m_byte_size > 0) in IntersectsRange() 201 const lldb::addr_t bp_end_addr = m_addr + m_byte_size; in IntersectsRange()
|
D | StoppointLocation.cpp | 28 m_byte_size(0), in StoppointLocation() 38 m_byte_size(byte_size), in StoppointLocation()
|
D | Watchpoint.cpp | 244 m_byte_size, in DumpWithLevel()
|
/external/lldb/include/lldb/Breakpoint/ |
D | StoppointLocation.h | 63 return m_byte_size; in GetByteSize() 125 …uint32_t m_byte_size; // The size in bytes of stop location. e.g. the length of the tra… variable
|
/external/lldb/source/Target/ |
D | Memory.cpp | 213 m_byte_size (byte_size), in AllocatedBlock() 230 if (size <= m_byte_size) in ReserveBlock() 268 … const uint32_t chunks_left = CalculateChunksNeededForSize (m_byte_size - last_offset); in ReserveBlock()
|
/external/lldb/include/lldb/Symbol/ |
D | Type.h | 291 uint64_t m_byte_size; variable
|