/llvm-project/lldb/source/Host/macosx/cfcpp/ |
H A D | CFCMutableDictionary.h | 30 bool AddValue(CFStringRef key, const void *value, bool can_create = false); 31 bool SetValue(CFStringRef key, const void *value, bool can_create = false); 32 bool AddValueSInt8(CFStringRef key, int8_t value, bool can_create = false); 33 bool SetValueSInt8(CFStringRef key, int8_t value, bool can_create = false); 34 bool AddValueSInt16(CFStringRef key, int16_t value, bool can_create = false); 35 bool SetValueSInt16(CFStringRef key, int16_t value, bool can_create = false); 36 bool AddValueSInt32(CFStringRef key, int32_t value, bool can_create = false); 37 bool SetValueSInt32(CFStringRef key, int32_t value, bool can_create = false); 38 bool AddValueSInt64(CFStringRef key, int64_t value, bool can_create = false); 39 bool SetValueSInt64(CFStringRef key, int64_t value, bool can_create = false); [all …]
|
H A D | CFCMutableDictionary.cpp | 80 CFMutableDictionaryRef CFCMutableDictionary::Dictionary(bool can_create) { in Dictionary() argument 82 if (can_create && dict == NULL) { in Dictionary() 92 bool can_create) { in AddValue() argument 93 CFMutableDictionaryRef dict = Dictionary(can_create); in AddValue() 103 bool can_create) { in SetValue() argument 104 CFMutableDictionaryRef dict = Dictionary(can_create); in SetValue() 114 bool can_create) { in AddValueSInt8() argument 115 CFMutableDictionaryRef dict = Dictionary(can_create); in AddValueSInt8() 129 bool can_create) { in SetValueSInt8() argument 130 CFMutableDictionaryRef dict = Dictionary(can_create); in SetValueSInt8() [all …]
|
H A D | CFCMutableArray.cpp | 78 bool CFCMutableArray::AppendValue(const void *value, bool can_create) { in AppendValue() argument 81 if (!can_create) in AppendValue() 96 bool can_create) { in AppendCStringAsCFString() argument 99 if (!can_create) in AppendCStringAsCFString() 114 const char *s, bool can_create) { in AppendFileSystemRepresentationAsCFString() argument 117 if (!can_create) in AppendFileSystemRepresentationAsCFString()
|
H A D | CFCMutableArray.h | 32 bool can_create = true); // Appends value and optionally 38 bool can_create = true); 40 bool can_create = true);
|
H A D | CFCMutableSet.cpp | 50 const void *CFCMutableSet::AddValue(const void *value, bool can_create) { in AddValue() argument 53 if (!can_create) in AddValue()
|
H A D | CFCMutableSet.h | 27 const void *AddValue(const void *value, bool can_create);
|
/llvm-project/lldb/source/Symbol/ |
H A D | Block.cpp | 405 VariableListSP Block::GetBlockVariableList(bool can_create) { in AddChild() 407 if (m_variable_list_sp.get() == nullptr && can_create) { 419 Block::AppendBlockVariables(bool can_create, bool get_child_block_variables, in GetBlockVariableList() 424 VariableList *block_var_list = GetBlockVariableList(can_create).get(); in GetBlockVariableList() 441 can_create, get_child_block_variables, in AppendBlockVariables() 449 uint32_t Block::AppendVariables(bool can_create, bool get_parent_variables, in AppendBlockVariables() 454 VariableListSP variable_list_sp(GetBlockVariableList(can_create)); in AppendBlockVariables() 474 can_create, get_parent_variables, stop_if_block_is_inlined_function, in AppendVariables() 415 GetBlockVariableList(bool can_create) GetBlockVariableList() argument 429 AppendBlockVariables(bool can_create,bool get_child_block_variables,bool stop_if_child_block_is_inlined_function,const std::function<bool (Variable *)> & filter,VariableList * variable_list) AppendBlockVariables() argument 459 AppendVariables(bool can_create,bool get_parent_variables,bool stop_if_block_is_inlined_function,const std::function<bool (Variable *)> & filter,VariableList * variable_list) AppendVariables() argument
|
H A D | TypeSystem.cpp | 321 Module *module, bool can_create) { in GetTypeSystemForLanguage() 322 if (can_create) { in GetTypeSystemForLanguage() 333 Target *target, bool can_create) { in GetTypeSystemForLanguage() 334 if (can_create) { in GetTypeSystemForLanguage() 317 GetTypeSystemForLanguage(lldb::LanguageType language,Module * module,bool can_create) GetTypeSystemForLanguage() argument 329 GetTypeSystemForLanguage(lldb::LanguageType language,Target * target,bool can_create) GetTypeSystemForLanguage() argument
|
/llvm-project/lldb/source/Core/ |
H A D | ValueObjectSyntheticFilter.cpp |
|
H A D | ValueObjectConstResultCast.cpp |
|
H A D | ValueObjectConstResultChild.cpp |
|
H A D | ValueObjectConstResultImpl.cpp |
|
H A D | ValueObjectConstResult.cpp |
|
/llvm-project/lldb/include/lldb/Symbol/ |
H A D | Block.h | 198 /// \param[in] can_create 206 lldb::VariableListSP GetBlockVariableList(bool can_create); 211 /// \param[in] can_create 225 uint32_t AppendBlockVariables(bool can_create, bool get_child_block_variables, 233 /// \param[in] can_create 256 uint32_t AppendVariables(bool can_create, bool get_parent_variables,
|
/llvm-project/lldb/include/lldb/Core/ |
H A D | ValueObject.h |
|
H A D | ValueObjectSyntheticFilter.h |
|
H A D | ValueObjectConstResultCast.h |
|
H A D | ValueObjectConstResultImpl.h |
|
H A D | ValueObjectConstResultChild.h |
|
/llvm-project/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
H A D | DynamicLoaderDarwin.cpp | 104 const ImageInfo &image_info, bool can_create, bool *did_create_ptr) { in FindTargetModuleForImageInfo() 135 if (module_sp || !can_create) in FindTargetModuleForImageInfo() 610 const bool can_create = true; in UpdateDYLDImageInfoFromNewImageInfo() 612 FindTargetModuleForImageInfo(image_info, can_create, nullptr); in SetDYLDModule() 91 FindTargetModuleForImageInfo(ImageInfo & image_info,bool can_create,bool * did_create_ptr) FindTargetModuleForImageInfo() argument 550 const bool can_create = true; UpdateSpecialBinariesFromNewImageInfos() local 584 const bool can_create = true; UpdateSpecialBinariesFromNewImageInfos() local 600 const bool can_create = true; UpdateDYLDImageInfoFromNewImageInfo() local
|
/llvm-project/lldb/include/lldb/DataFormatters/ |
H A D | FormatManager.h | 100 bool can_create = true) { 107 bool can_create = true);
|
/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()
|
/llvm-project/lldb/include/lldb/API/ |
H A D | SBBlock.h | 91 void AppendVariables(bool can_create, bool get_parent_variables,
|
/llvm-project/lldb/source/Target/ |
H A D | StackFrame.cpp | 436 const bool can_create = true; in GetVariableList() 438 frame_block->AppendBlockVariables(can_create, get_child_variables, in GetVariableList() 487 const bool can_create = true; in GetInScopeVariableList() 491 can_create, get_parent_variables, stop_if_block_is_inlined_function, in GetInScopeVariableList() 1535 const bool can_create = true; in DoGuessValueAt() 1536 pointee = base->GetSyntheticArrayMember(index, can_create); in DoGuessValueAt() 1829 const bool can_create = true; in Dump() 1834 can_create, get_parent_variables, stop_if_block_is_inlined_function, 435 const bool can_create = true; GetVariableList() local 486 const bool can_create = true; GetInScopeVariableList() local 1436 const bool can_create = true; GetValueForDereferincingOffset() local 1728 const bool can_create = true; FindVariable() local
|
/llvm-project/lldb/include/lldb/Target/ |
H A D | StackFrameList.h | 31 /// Get the number of visible frames. Frames may be created if \p can_create 34 uint32_t GetNumFrames(bool can_create = true);
|