Home
last modified time | relevance | path

Searched refs:to_add (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp1016 std::string to_add = completion.GetCompletion(); in TabCommand() local
1021 to_add.push_back(request.GetParsedArg().GetQuoteChar()); in TabCommand()
1023 to_add.push_back(' '); in TabCommand()
1025 el_insertstr(m_editline, to_add.c_str()); in TabCommand()
1027 if (to_add == " ") in TabCommand()
1032 std::string to_add = completion.GetCompletion(); in TabCommand() local
1033 to_add = to_add.substr(request.GetCursorArgumentPrefix().size()); in TabCommand()
1034 el_insertstr(m_editline, to_add.c_str()); in TabCommand()
1072 if (std::optional<std::string> to_add = m_suggestion_callback(line)) in ApplyAutosuggestCommand() local
1073 el_insertstr(m_editline, to_add->c_str()); in ApplyAutosuggestCommand()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp338 MemoryRegionInfos to_add; in BuildMemoryRegions() local
355 to_add.emplace_back(); in BuildMemoryRegions()
356 to_add.back().GetRange() = section_range; in BuildMemoryRegions()
357 to_add.back().SetLLDBPermissions(section_sp->GetPermissions()); in BuildMemoryRegions()
358 to_add.back().SetMapped(MemoryRegionInfo::eYes); in BuildMemoryRegions()
359 to_add.back().SetName(module_sp->GetFileSpec().GetPath().c_str()); in BuildMemoryRegions()
364 m_memory_regions->insert(m_memory_regions->end(), to_add.begin(), in BuildMemoryRegions()
365 to_add.end()); in BuildMemoryRegions()
/freebsd/sys/dev/ixl/
H A Dixl_pf_main.c580 f = ixl_new_filter(&ama->to_add, macaddr, IXL_VLAN_ANY); in ixl_add_maddr()
616 LIST_INIT(&cb_arg.to_add); in ixl_add_multi()
620 ixl_add_hw_filters(vsi, &cb_arg.to_add, mcnt); in ixl_add_multi()
1214 struct ixl_ftl_head to_add; in ixl_add_filter() local
1229 LIST_INIT(&to_add); in ixl_add_filter()
1230 f = ixl_new_filter(&to_add, macaddr, vlan); in ixl_add_filter()
1252 f = ixl_new_filter(&to_add, macaddr, 0); in ixl_add_filter()
1255 free(LIST_FIRST(&to_add), M_IXL); in ixl_add_filter()
1267 ixl_add_hw_filters(vsi, &to_add, to_add_cnt); in ixl_add_filter()
1283 struct ixl_ftl_head to_add; in ixl_add_vlan_filters() local
[all …]
H A Dixl.h471 struct ixl_ftl_head to_add; member