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.cpp1030 std::string to_add = completion.GetCompletion(); in TabCommand() local
1033 to_add.push_back(request.GetParsedArg().GetQuoteChar()); in TabCommand()
1034 to_add.push_back(' '); in TabCommand()
1036 el_insertstr(m_editline, to_add.c_str()); in TabCommand()
1038 if (to_add == " ") in TabCommand()
1043 std::string to_add = completion.GetCompletion(); in TabCommand() local
1044 to_add = to_add.substr(request.GetCursorArgumentPrefix().size()); in TabCommand()
1045 el_insertstr(m_editline, to_add.c_str()); in TabCommand()
1083 if (std::optional<std::string> to_add = m_suggestion_callback(line)) in ApplyAutosuggestCommand() local
1084 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.c630 LIST_INIT(&cb_arg.to_add); in ixl_add_multi()
1290 struct ixl_ftl_head to_add; in ixl_add_filter() local
1305 LIST_INIT(&to_add); in ixl_add_filter()
1331 free(LIST_FIRST(&to_add), M_IXL); in ixl_add_filter()
1359 struct ixl_ftl_head to_add; in ixl_add_vlan_filters() local
1368 LIST_INIT(&to_add); in ixl_add_vlan_filters()
1373 f = ixl_new_filter(&to_add, macaddr, 0); in ixl_add_vlan_filters()
1394 ixl_free_filters(&to_add); in ixl_add_vlan_filters()
1530 LIST_FOREACH(f, to_add, ftle) { in ixl_add_hw_filters()
1557 ixl_free_filters(to_add); in ixl_add_hw_filters()
[all …]
H A Dixl.h471 struct ixl_ftl_head to_add; member