| /freebsd/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | Block.cpp | 392 VariableListSP Block::GetBlockVariableList(bool can_create) { in GetBlockVariableList() argument 394 if (m_variable_list_sp.get() == nullptr && can_create) { in GetBlockVariableList() 406 Block::AppendBlockVariables(bool can_create, bool get_child_block_variables, in AppendBlockVariables() argument 411 VariableList *block_var_list = GetBlockVariableList(can_create).get(); in AppendBlockVariables() 428 can_create, get_child_block_variables, in AppendBlockVariables() 436 uint32_t Block::AppendVariables(bool can_create, bool get_parent_variables, in AppendVariables() argument 441 VariableListSP variable_list_sp(GetBlockVariableList(can_create)); in AppendVariables() 461 can_create, get_parent_variables, stop_if_block_is_inlined_function, in AppendVariables()
|
| H A D | TypeSystem.cpp | 321 Module *module, bool can_create) { in GetTypeSystemForLanguage() argument 322 if (can_create) { in GetTypeSystemForLanguage() 333 Target *target, bool can_create) { in GetTypeSystemForLanguage() argument 334 if (can_create) { in GetTypeSystemForLanguage()
|
| H A D | SymbolFile.cpp | 155 Symtab *SymbolFileCommon::GetSymtab(bool can_create) { in GetSymtab() argument 158 auto *symtab = GetMainObjectFile()->GetSymtab(can_create); in GetSymtab()
|
| H A D | CompileUnit.cpp | 205 VariableListSP CompileUnit::GetVariableList(bool can_create) { in GetVariableList() argument 206 if (m_variables.get() == nullptr && can_create) { in GetVariableList()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | Block.h | 208 lldb::VariableListSP GetBlockVariableList(bool can_create); 227 uint32_t AppendBlockVariables(bool can_create, bool get_child_block_variables, 258 uint32_t AppendVariables(bool can_create, bool get_parent_variables,
|
| H A D | SymbolFileOnDemand.h | 189 Symtab *GetSymtab(bool can_create = true) override { 190 return m_sym_file_impl->GetSymtab(can_create);
|
| H A D | CompileUnit.h | 324 lldb::VariableListSP GetVariableList(bool can_create);
|
| H A D | SymbolFile.h | 147 virtual Symtab *GetSymtab(bool can_create = true) = 0; 547 Symtab *GetSymtab(bool can_create = true) override;
|
| /freebsd/contrib/llvm-project/lldb/source/ValueObject/ |
| H A D | ValueObjectConstResultCast.cpp | 37 uint32_t offset, const CompilerType &type, bool can_create, in GetSyntheticChildAtOffset() argument 39 return m_impl.GetSyntheticChildAtOffset(offset, type, can_create, in GetSyntheticChildAtOffset()
|
| H A D | ValueObjectConstResultChild.cpp | 43 uint32_t offset, const CompilerType &type, bool can_create, in GetSyntheticChildAtOffset() argument 45 return m_impl.GetSyntheticChildAtOffset(offset, type, can_create, in GetSyntheticChildAtOffset()
|
| H A D | ValueObjectSynthetic.cpp | 246 bool can_create) { in GetChildAtIndex() argument 267 if (can_create && m_synth_filter_up != nullptr) { in GetChildAtIndex() 302 GetName().AsCString(), idx, can_create ? "yes" : "no", in GetChildAtIndex() 319 bool can_create) { in GetChildMemberWithName() argument 329 return GetChildAtIndex(*index_or_err, can_create); in GetChildMemberWithName()
|
| H A D | ValueObjectConstResultImpl.cpp | 161 uint32_t offset, const CompilerType &type, bool can_create, in GetSyntheticChildAtOffset() argument 167 offset, type, can_create, name_const_str); in GetSyntheticChildAtOffset()
|
| H A D | ValueObjectConstResult.cpp | 258 uint32_t offset, const CompilerType &type, bool can_create, in GetSyntheticChildAtOffset() argument 260 return m_impl.GetSyntheticChildAtOffset(offset, type, can_create, in GetSyntheticChildAtOffset()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/ |
| H A D | ValueObject.h | 493 bool can_create = true); 499 bool can_create = true); 587 lldb::ValueObjectSP GetSyntheticArrayMember(size_t index, bool can_create); 590 bool can_create); 593 bool can_create); 597 bool can_create, 601 GetSyntheticBase(uint32_t offset, const CompilerType &type, bool can_create,
|
| H A D | ValueObjectSynthetic.h | 55 bool can_create = true) override; 58 bool can_create = true) override;
|
| H A D | ValueObjectConstResultImpl.h | 46 bool can_create,
|
| H A D | ValueObjectConstResultCast.h | 43 uint32_t offset, const CompilerType &type, bool can_create,
|
| H A D | ValueObjectConstResultChild.h | 46 uint32_t offset, const CompilerType &type, bool can_create,
|
| H A D | ValueObjectRegister.h | 53 bool can_create = true) override;
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
| H A D | FormatManager.h | 100 bool can_create = true) { 107 bool can_create = true);
|
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBBlock.cpp | 115 void SBBlock::AppendVariables(bool can_create, bool get_parent_variables, in AppendVariables() argument 119 m_opaque_ptr->AppendVariables(can_create, get_parent_variables, show_inline, in AppendVariables()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBBlock.h | 91 void AppendVariables(bool can_create, bool get_parent_variables,
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | StackFrameList.h | 34 uint32_t GetNumFrames(bool can_create = true);
|
| H A D | DynamicRegisterInfo.h | 74 bool can_create);
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | StackFrame.cpp | 439 const bool can_create = true; in GetVariableList() local 441 frame_block->AppendBlockVariables(can_create, get_child_variables, in GetVariableList() 490 const bool can_create = true; in GetInScopeVariableList() local 494 can_create, get_parent_variables, stop_if_block_is_inlined_function, in GetInScopeVariableList() 1581 const bool can_create = true; in GetValueForDereferincingOffset() local 1582 pointee = base->GetSyntheticArrayMember(index, can_create); in GetValueForDereferincingOffset() 1872 const bool can_create = true; in FindVariable() local 1877 can_create, get_parent_variables, stop_if_block_is_inlined_function, in FindVariable()
|