Searched refs:can_create (Results 1 - 25 of 53) sorted by relevance

123

/external/lldb/source/Host/macosx/cfcpp/
H A DCFCMutableDictionary.h38 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
[all...]
H A DCFCMutableArray.h31 bool AppendValue(const void *value, bool can_create = true); // Appends value and optionally creates a CFCMutableArray if this class doesn't contain one
34 bool can_create = true);
36 bool can_create = true);
H A DCFCMutableDictionary.cpp106 CFCMutableDictionary::Dictionary(bool can_create) argument
109 if (can_create && dict == NULL)
118 CFCMutableDictionary::AddValue(CFStringRef key, const void *value, bool can_create) argument
120 CFMutableDictionaryRef dict = Dictionary(can_create);
131 CFCMutableDictionary::SetValue(CFStringRef key, const void *value, bool can_create) argument
133 CFMutableDictionaryRef dict = Dictionary(can_create);
144 CFCMutableDictionary::AddValueSInt8(CFStringRef key, int8_t value, bool can_create) argument
146 CFMutableDictionaryRef dict = Dictionary(can_create);
161 CFCMutableDictionary::SetValueSInt8(CFStringRef key, int8_t value, bool can_create) argument
163 CFMutableDictionaryRef dict = Dictionary(can_create);
178 AddValueSInt16(CFStringRef key, int16_t value, bool can_create) argument
195 SetValueSInt16(CFStringRef key, int16_t value, bool can_create) argument
212 AddValueSInt32(CFStringRef key, int32_t value, bool can_create) argument
229 SetValueSInt32(CFStringRef key, int32_t value, bool can_create) argument
246 AddValueSInt64(CFStringRef key, int64_t value, bool can_create) argument
263 SetValueSInt64(CFStringRef key, int64_t value, bool can_create) argument
280 AddValueUInt8(CFStringRef key, uint8_t value, bool can_create) argument
299 SetValueUInt8(CFStringRef key, uint8_t value, bool can_create) argument
319 AddValueUInt16(CFStringRef key, uint16_t value, bool can_create) argument
338 SetValueUInt16(CFStringRef key, uint16_t value, bool can_create) argument
357 AddValueUInt32(CFStringRef key, uint32_t value, bool can_create) argument
376 SetValueUInt32(CFStringRef key, uint32_t value, bool can_create) argument
396 AddValueUInt64(CFStringRef key, uint64_t value, bool can_create) argument
416 SetValueUInt64(CFStringRef key, uint64_t value, bool can_create) argument
435 AddValueDouble(CFStringRef key, double value, bool can_create) argument
454 SetValueDouble(CFStringRef key, double value, bool can_create) argument
473 AddValueCString(CFStringRef key, const char *cstr, bool can_create) argument
490 SetValueCString(CFStringRef key, const char *cstr, bool can_create) argument
[all...]
H A DCFCMutableArray.cpp108 CFCMutableArray::AppendValue(const void *value, bool can_create) argument
113 if (can_create == false)
128 CFCMutableArray::AppendCStringAsCFString (const char *s, CFStringEncoding encoding, bool can_create) argument
133 if (can_create == false)
148 CFCMutableArray::AppendFileSystemRepresentationAsCFString (const char *s, bool can_create) argument
153 if (can_create == false)
H A DCFCMutableSet.h35 const void * AddValue(const void *value, bool can_create);
H A DCFCMutableSet.cpp81 CFCMutableSet::AddValue(const void *value, bool can_create) argument
86 if (can_create == false)
/external/libpcap/
H A Dpcap-can-linux.h35 pcap_t* can_create(const char *device, char *ebuf, int *is_ours);
/external/lldb/source/Utility/
H A DKQueue.h47 GetFD (bool can_create);
H A DKQueue.cpp21 KQueue::GetFD (bool can_create) argument
23 if (!IsValid () && can_create)
/external/lldb/source/Core/
H A DValueObjectConstResultChild.cpp57 ValueObjectConstResultChild::GetSyntheticChildAtOffset(uint32_t offset, const ClangASTType& type, bool can_create) argument
59 return m_impl.GetSyntheticChildAtOffset(offset, type, can_create);
H A DValueObjectConstResultImpl.cpp149 ValueObjectConstResultImpl::GetSyntheticChildAtOffset (uint32_t offset, const ClangASTType& type, bool can_create) argument
155 return m_impl_backend->ValueObject::GetSyntheticChildAtOffset(offset, type, can_create);
160 return DerefOnTarget()->GetSyntheticChildAtOffset(offset, type, can_create);
162 return m_impl_backend->ValueObject::GetSyntheticChildAtOffset(offset, type, can_create);
H A DValueObjectSyntheticFilter.cpp195 ValueObjectSynthetic::GetChildAtIndex (size_t idx, bool can_create) argument
203 if (can_create && m_synth_filter_ap.get() != NULL)
219 ValueObjectSynthetic::GetChildMemberWithName (const ConstString &name, bool can_create) argument
228 return GetChildAtIndex(index, can_create);
H A DValueObjectConstResult.cpp303 ValueObjectConstResult::GetSyntheticChildAtOffset(uint32_t offset, const ClangASTType& type, bool can_create) argument
305 return m_impl.GetSyntheticChildAtOffset(offset, type, can_create);
/external/lldb/include/lldb/Symbol/
H A DBlock.h268 /// @param[in] can_create
278 GetBlockVariableList (bool can_create);
289 /// @param[in] can_create
307 AppendBlockVariables (bool can_create,
316 /// @param[in] can_create
341 AppendVariables (bool can_create,
H A DCompileUnit.h281 /// @param[in] can_create
294 GetVariableList (bool can_create);
/external/lldb/include/lldb/Core/
H A DValueObjectSyntheticFilter.h55 GetChildAtIndex (size_t idx, bool can_create);
58 GetChildMemberWithName (const ConstString &name, bool can_create);
H A DValueObjectConstResultChild.h54 GetSyntheticChildAtOffset(uint32_t offset, const ClangASTType& type, bool can_create);
H A DValueObjectConstResultImpl.h45 GetSyntheticChildAtOffset (uint32_t offset, const ClangASTType& type, bool can_create);
H A DValueObject.h753 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);
/external/lldb/include/lldb/API/
H A DSBBlock.h115 AppendVariables (bool can_create, bool get_parent_variables, lldb_private::VariableList *var_list);
/external/lldb/source/Plugins/Process/Utility/
H A DDynamicRegisterInfo.h60 GetRegisterSetIndexByName (lldb_private::ConstString &set_name, bool can_create);
/external/lldb/include/lldb/DataFormatters/
H A DFormatManager.h117 bool can_create = true)
126 bool can_create = true);
/external/lldb/source/Symbol/
H A DBlock.cpp471 Block::GetBlockVariableList (bool can_create) argument
475 if (m_variable_list_sp.get() == NULL && can_create)
488 Block::AppendBlockVariables (bool can_create, argument
494 VariableList *block_var_list = GetBlockVariableList (can_create).get();
510 num_variables_added += child_block->AppendBlockVariables (can_create,
523 bool can_create,
530 VariableListSP variable_list_sp(GetBlockVariableList(can_create));
546 num_variables_added += parent_block->AppendVariables (can_create, get_parent_variables, stop_if_block_is_inlined_function, variable_list);
521 AppendVariables( bool can_create, bool get_parent_variables, bool stop_if_block_is_inlined_function, VariableList *variable_list ) argument
/external/lldb/include/lldb/Target/
H A DStackFrameList.h37 GetNumFrames (bool can_create = true);
/external/lldb/source/API/
H A DSBBlock.cpp121 SBBlock::AppendVariables (bool can_create, bool get_parent_variables, lldb_private::VariableList *var_list) argument
126 m_opaque_ptr->AppendVariables (can_create, get_parent_variables, show_inline, var_list);

Completed in 363 milliseconds

123