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

12

/freebsd-10.3-release/contrib/libpcap/
H A Dpcap-can-linux.h35 pcap_t* can_create(const char *device, char *ebuf, int *is_ours);
/freebsd-10.3-release/contrib/llvm/tools/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)
/freebsd-10.3-release/contrib/llvm/tools/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);
H A DValueObject.cpp503 ValueObject::GetChildAtIndex (size_t idx, bool can_create) argument
512 if (can_create && !m_children.HasChildAtIndex(idx))
694 ValueObject::GetChildMemberWithName (const ConstString &name, bool can_create) argument
715 child_sp = GetChildAtIndex(*pos, can_create);
720 ValueObjectSP new_child_sp(child_sp->GetChildAtIndex (*pos, can_create));
2046 ValueObject::GetSyntheticArrayMember (size_t index, bool can_create) argument
2050 return GetSyntheticArrayMemberFromArray(index, can_create);
2053 return GetSyntheticArrayMemberFromPointer(index, can_create);
2060 ValueObject::GetSyntheticArrayMemberFromPointer (size_t index, bool can_create) argument
2103 ValueObject::GetSyntheticArrayMemberFromArray (size_t index, bool can_create) argument
2135 GetSyntheticBitFieldChild(uint32_t from, uint32_t to, bool can_create) argument
2175 GetSyntheticChildAtOffset(uint32_t offset, const ClangASTType& type, bool can_create) argument
2232 GetSyntheticExpressionPathChild(const char* expression, bool can_create) argument
[all...]
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DBlock.h269 /// @param[in] can_create
279 GetBlockVariableList (bool can_create);
290 /// @param[in] can_create
308 AppendBlockVariables (bool can_create,
317 /// @param[in] can_create
342 AppendVariables (bool can_create,
H A DCompileUnit.h281 /// @param[in] can_create
294 GetVariableList (bool can_create);
H A DFunction.h479 GetBlock (bool can_create);
/freebsd-10.3-release/contrib/llvm/tools/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.h540 GetChildAtIndex (size_t idx, bool can_create);
577 GetChildMemberWithName (const ConstString &name, bool can_create);
656 GetSyntheticArrayMember (size_t index, bool can_create);
659 GetSyntheticArrayMemberFromPointer (size_t index, bool can_create);
662 GetSyntheticArrayMemberFromArray (size_t index, bool can_create);
665 GetSyntheticBitFieldChild (uint32_t from, uint32_t to, bool can_create);
668 GetSyntheticExpressionPathChild(const char* expression, bool can_create);
671 GetSyntheticChildAtOffset(uint32_t offset, const ClangASTType& type, bool can_create);
H A DValueObjectConstResult.h96 GetSyntheticChildAtOffset(uint32_t offset, const ClangASTType& type, bool can_create);
H A DValueObjectRegister.h103 GetChildMemberWithName (const ConstString &name, bool can_create);
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBBlock.h115 AppendVariables (bool can_create, bool get_parent_variables, lldb_private::VariableList *var_list);
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/
H A DDynamicRegisterInfo.h63 GetRegisterSetIndexByName (lldb_private::ConstString &set_name, bool can_create);
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DFormatManager.h112 bool can_create = true)
121 bool can_create = true);
/freebsd-10.3-release/contrib/llvm/tools/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
H A DCompileUnit.cpp268 CompileUnit::GetVariableList(bool can_create) argument
270 if (m_variables.get() == NULL && can_create)
/freebsd-10.3-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DStackFrameList.h37 GetNumFrames (bool can_create = true);
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_fs/
H A Deditor.c284 can_create(svn_fs_root_t *txn_root, function
354 SVN_ERR(can_create(root, fspath, scratch_pool));
387 SVN_ERR(can_create(root, fspath, scratch_pool));
422 SVN_ERR(can_create(root, fspath, scratch_pool));
579 SVN_ERR(can_create(root, dst_fspath, scratch_pool));
618 SVN_ERR(can_create(root, dst_fspath, scratch_pool));
/freebsd-10.3-release/contrib/llvm/tools/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 218 milliseconds

12