/external/lldb/source/Host/macosx/cfcpp/ |
D | CFCMutableDictionary.h | 38 bool AddValue(CFStringRef key, const void *value, bool can_create = false); 39 bool SetValue(CFStringRef key, const void *value, bool can_create = false); 40 bool AddValueSInt8(CFStringRef key, int8_t value, bool can_create = false); 41 bool SetValueSInt8(CFStringRef key, int8_t value, bool can_create = false); 42 bool AddValueSInt16(CFStringRef key, int16_t value, bool can_create = false); 43 bool SetValueSInt16(CFStringRef key, int16_t value, bool can_create = false); 44 bool AddValueSInt32(CFStringRef key, int32_t value, bool can_create = false); 45 bool SetValueSInt32(CFStringRef key, int32_t value, bool can_create = false); 46 bool AddValueSInt64(CFStringRef key, int64_t value, bool can_create = false); 47 bool SetValueSInt64(CFStringRef key, int64_t value, bool can_create = false); [all …]
|
D | CFCMutableDictionary.cpp | 106 CFCMutableDictionary::Dictionary(bool can_create) in Dictionary() argument 109 if (can_create && dict == NULL) in Dictionary() 118 CFCMutableDictionary::AddValue(CFStringRef key, const void *value, bool can_create) in AddValue() argument 120 CFMutableDictionaryRef dict = Dictionary(can_create); in AddValue() 131 CFCMutableDictionary::SetValue(CFStringRef key, const void *value, bool can_create) in SetValue() argument 133 CFMutableDictionaryRef dict = Dictionary(can_create); in SetValue() 144 CFCMutableDictionary::AddValueSInt8(CFStringRef key, int8_t value, bool can_create) in AddValueSInt8() argument 146 CFMutableDictionaryRef dict = Dictionary(can_create); in AddValueSInt8() 161 CFCMutableDictionary::SetValueSInt8(CFStringRef key, int8_t value, bool can_create) in SetValueSInt8() argument 163 CFMutableDictionaryRef dict = Dictionary(can_create); in SetValueSInt8() [all …]
|
D | CFCMutableArray.cpp | 108 CFCMutableArray::AppendValue(const void *value, bool can_create) in AppendValue() argument 113 if (can_create == false) in AppendValue() 128 CFCMutableArray::AppendCStringAsCFString (const char *s, CFStringEncoding encoding, bool can_create) in AppendCStringAsCFString() argument 133 if (can_create == false) in AppendCStringAsCFString() 148 CFCMutableArray::AppendFileSystemRepresentationAsCFString (const char *s, bool can_create) in AppendFileSystemRepresentationAsCFString() argument 153 if (can_create == false) in AppendFileSystemRepresentationAsCFString()
|
D | CFCMutableArray.h | 31 …bool AppendValue(const void *value, bool can_create = true); // Appends value and optio… 34 bool can_create = true); 36 bool can_create = true);
|
D | CFCMutableSet.cpp | 81 CFCMutableSet::AddValue(const void *value, bool can_create) in AddValue() argument 86 if (can_create == false) in AddValue()
|
D | CFCMutableSet.h | 35 const void * AddValue(const void *value, bool can_create);
|
/external/lldb/source/Core/ |
D | ValueObjectSyntheticFilter.cpp | 195 ValueObjectSynthetic::GetChildAtIndex (size_t idx, bool can_create) in GetChildAtIndex() argument 203 if (can_create && m_synth_filter_ap.get() != NULL) in GetChildAtIndex() 219 ValueObjectSynthetic::GetChildMemberWithName (const ConstString &name, bool can_create) in GetChildMemberWithName() argument 228 return GetChildAtIndex(index, can_create); in GetChildMemberWithName()
|
D | ValueObjectConstResultImpl.cpp | 149 …tResultImpl::GetSyntheticChildAtOffset (uint32_t offset, const ClangASTType& type, bool can_create) in GetSyntheticChildAtOffset() argument 155 return m_impl_backend->ValueObject::GetSyntheticChildAtOffset(offset, type, can_create); in GetSyntheticChildAtOffset() 160 return DerefOnTarget()->GetSyntheticChildAtOffset(offset, type, can_create); in GetSyntheticChildAtOffset() 162 return m_impl_backend->ValueObject::GetSyntheticChildAtOffset(offset, type, can_create); in GetSyntheticChildAtOffset()
|
D | ValueObjectConstResultChild.cpp | 57 …tResultChild::GetSyntheticChildAtOffset(uint32_t offset, const ClangASTType& type, bool can_create) in GetSyntheticChildAtOffset() argument 59 return m_impl.GetSyntheticChildAtOffset(offset, type, can_create); in GetSyntheticChildAtOffset()
|
D | ValueObjectConstResult.cpp | 303 …tConstResult::GetSyntheticChildAtOffset(uint32_t offset, const ClangASTType& type, bool can_create) in GetSyntheticChildAtOffset() argument 305 return m_impl.GetSyntheticChildAtOffset(offset, type, can_create); in GetSyntheticChildAtOffset()
|
D | ValueObject.cpp | 495 ValueObject::GetChildAtIndex (size_t idx, bool can_create) in GetChildAtIndex() argument 504 if (can_create && !m_children.HasChildAtIndex(idx)) in GetChildAtIndex() 606 ValueObject::GetChildMemberWithName (const ConstString &name, bool can_create) in GetChildMemberWithName() argument 627 child_sp = GetChildAtIndex(*pos, can_create); in GetChildMemberWithName() 632 ValueObjectSP new_child_sp(child_sp->GetChildAtIndex (*pos, can_create)); in GetChildMemberWithName() 1995 ValueObject::GetSyntheticArrayMember (size_t index, bool can_create) in GetSyntheticArrayMember() argument 1999 return GetSyntheticArrayMemberFromArray(index, can_create); in GetSyntheticArrayMember() 2002 return GetSyntheticArrayMemberFromPointer(index, can_create); in GetSyntheticArrayMember() 2009 ValueObject::GetSyntheticArrayMemberFromPointer (size_t index, bool can_create) in GetSyntheticArrayMemberFromPointer() argument 2052 ValueObject::GetSyntheticArrayMemberFromArray (size_t index, bool can_create) in GetSyntheticArrayMemberFromArray() argument [all …]
|
/external/lldb/source/Symbol/ |
D | Block.cpp | 471 Block::GetBlockVariableList (bool can_create) in GetBlockVariableList() argument 475 if (m_variable_list_sp.get() == NULL && can_create) in GetBlockVariableList() 488 Block::AppendBlockVariables (bool can_create, in AppendBlockVariables() argument 494 VariableList *block_var_list = GetBlockVariableList (can_create).get(); in AppendBlockVariables() 510 num_variables_added += child_block->AppendBlockVariables (can_create, in AppendBlockVariables() 523 bool can_create, in AppendVariables() argument 530 VariableListSP variable_list_sp(GetBlockVariableList(can_create)); in AppendVariables() 546 …num_variables_added += parent_block->AppendVariables (can_create, get_parent_variables, stop_if_bl… in AppendVariables()
|
/external/lldb/include/lldb/Symbol/ |
D | Block.h | 278 GetBlockVariableList (bool can_create); 307 AppendBlockVariables (bool can_create, 341 AppendVariables (bool can_create,
|
/external/lldb/source/Utility/ |
D | KQueue.cpp | 21 KQueue::GetFD (bool can_create) in GetFD() argument 23 if (!IsValid () && can_create) in GetFD()
|
D | KQueue.h | 47 GetFD (bool can_create);
|
/external/lldb/include/lldb/Core/ |
D | ValueObject.h | 753 GetChildAtIndex (size_t idx, bool can_create); 773 GetChildMemberWithName (const ConstString &name, bool can_create); 851 GetSyntheticArrayMember (size_t index, bool can_create); 854 GetSyntheticArrayMemberFromPointer (size_t index, bool can_create); 857 GetSyntheticArrayMemberFromArray (size_t index, bool can_create); 860 GetSyntheticBitFieldChild (uint32_t from, uint32_t to, bool can_create); 863 GetSyntheticExpressionPathChild(const char* expression, bool can_create); 866 GetSyntheticChildAtOffset(uint32_t offset, const ClangASTType& type, bool can_create);
|
D | ValueObjectSyntheticFilter.h | 55 GetChildAtIndex (size_t idx, bool can_create); 58 GetChildMemberWithName (const ConstString &name, bool can_create);
|
D | ValueObjectConstResultChild.h | 54 GetSyntheticChildAtOffset(uint32_t offset, const ClangASTType& type, bool can_create);
|
D | ValueObjectConstResultImpl.h | 45 GetSyntheticChildAtOffset (uint32_t offset, const ClangASTType& type, bool can_create);
|
/external/lldb/include/lldb/DataFormatters/ |
D | FormatManager.h | 117 bool can_create = true) 126 bool can_create = true);
|
/external/libpcap/ |
D | pcap-can-linux.h | 35 pcap_t* can_create(const char *device, char *ebuf, int *is_ours);
|
/external/lldb/source/API/ |
D | SBBlock.cpp | 121 SBBlock::AppendVariables (bool can_create, bool get_parent_variables, lldb_private::VariableList *v… in AppendVariables() argument 126 m_opaque_ptr->AppendVariables (can_create, get_parent_variables, show_inline, var_list); in AppendVariables()
|
/external/lldb/source/Plugins/Process/Utility/ |
D | DynamicRegisterInfo.h | 60 GetRegisterSetIndexByName (lldb_private::ConstString &set_name, bool can_create);
|
/external/lldb/include/lldb/API/ |
D | SBBlock.h | 115 …AppendVariables (bool can_create, bool get_parent_variables, lldb_private::VariableList *var_list);
|
/external/lldb/include/lldb/Target/ |
D | StackFrameList.h | 37 GetNumFrames (bool can_create = true);
|