Home
last modified time | relevance | path

Searched refs:list_for_each_entry (Results 1 – 18 of 18) sorted by relevance

/scripts/gdb/linux/
Dgenpd.py9 from linux.lists import list_for_each_entry
53 for link in list_for_each_entry(
65 for pm_data in list_for_each_entry(genpd['dev_list'],
78 for genpd in list_for_each_entry(
Ddevice.py9 from linux.lists import list_for_each_entry
31 return list_for_each_entry(kset['list'],
68 return list_for_each_entry(klist['k_list'],
Dmodules.py30 for module in lists.list_for_each_entry(modules, module_ptr_type, "list"):
92 for use in lists.list_for_each_entry(sources, t, "source_list"):
Dslab.py165 for slab in lists.list_for_each_entry(slab_list, slab_ptr_type, "slab_list"):
190 for cache in lists.list_for_each_entry(slab_caches, kmem_cache_ptr_type, 'list'):
285 for slab in lists.list_for_each_entry(slab, slab_ptr_type, 'slab_list'):
298 for cache in lists.list_for_each_entry(slab_caches, kmem_cache_ptr_type, 'list'):
Dvmalloc.py35 … for vmap_area in lists.list_for_each_entry(vn['busy']['head'], vmap_area_ptr_type, "list"):
Dtasks.py29 for thread in lists.list_for_each_entry(thread_head, task_ptr_type, 'thread_node'):
Dlists.py41 def list_for_each_entry(head, gdbtype, member): function
/scripts/coccinelle/iterators/
Dlist_entry_update.cocci2 /// list_for_each_entry uses its first argument to get from one element of
20 iterator name list_for_each_entry;
25 list_for_each_entry@p1(x,...) { <... x =@p2 E ...> }
35 list_for_each_entry@p1(x,...) S
47 list_for_each_entry@p1(x,...) S
Duse_after_iter.cocci2 /// If list_for_each_entry, etc complete a traversal of the list, the iterator
24 iterator name list_for_each_entry;
43 list_for_each_entry@p1(c,...,member) { ... when != break;
90 list_for_each_entry(c,...) S
/scripts/kconfig/
Dmnconf-common.c30 list_for_each_entry(pos, data->head, entries) { in handle_search_keys()
Dpreprocess.c74 list_for_each_entry(e, &env_list, node) { in env_expand()
247 list_for_each_entry(v, &variable_list, node) { in variable_lookup()
Dmenu.c711 list_for_each_entry(menu, &sym->menus, link) { in get_symbol_str()
718 list_for_each_entry(menu, &sym->menus, link) { in get_symbol_str()
Dsymbol.c89 list_for_each_entry(m, &sym->menus, link) in sym_get_choice_menu()
184 list_for_each_entry(menu, &sym->menus, link) in sym_set_changed()
290 list_for_each_entry(sym, &choice->choice_members, choice_link) { in sym_calc_choice()
Dmconf.c325 list_for_each_entry(sp, &trail, entries) { in set_subtitle()
/scripts/mod/
Dmodpost.c176 list_for_each_entry(mod, &modules, list) { in find_module()
306 list_for_each_entry(list, head, list) { in contains_namespace()
1701 list_for_each_entry(s, &mod->unresolved_symbols, list) { in check_exports()
1824 list_for_each_entry(sym, &mod->exported_symbols, list) { in add_exported_symbols()
1838 list_for_each_entry(sym, &mod->exported_symbols, list) { in add_exported_symbols()
1866 list_for_each_entry(s, &mod->unresolved_symbols, list) { in add_extended_versions()
1880 list_for_each_entry(s, &mod->unresolved_symbols, list) { in add_extended_versions()
1910 list_for_each_entry(s, &mod->unresolved_symbols, list) { in add_versions()
1941 list_for_each_entry(s, &mod->unresolved_symbols, list) { in add_depends()
1948 list_for_each_entry(s, &mod->unresolved_symbols, list) { in add_depends()
[all …]
/scripts/gendwarfksyms/
Dtypes.c60 list_for_each_entry(entry, list, list) { in type_list_write()
329 list_for_each_entry(entry, &type->expanded, list) { in __calculate_version()
365 list_for_each_entry(df, &cache->fragments, list) { in __type_expand()
Ddwarf.c810 list_for_each_entry(df, &cache->fragments, list) { in process_cached()
/scripts/include/
Dlist.h284 #define list_for_each_entry(pos, head, member) \ macro