/scripts/gdb/linux/ |
A D | rbtree.py | 12 def rb_inorder_for_each(root): argument 19 yield from inorder(root['rb_node']) 22 for node in rb_inorder_for_each(root): 25 def rb_first(root): argument 31 node = root['rb_node'] 41 def rb_last(root): argument 47 node = root['rb_node'] 121 def invoke(self, root): argument 122 result = rb_first(root) 141 def invoke(self, root): argument [all …]
|
A D | radixtree.py | 33 def lookup(root, index): argument 34 if root.type == radix_tree_root_type.get_type().pointer(): 35 node = root.dereference() 36 elif root.type != radix_tree_root_type.get_type(): 38 .format(radix_tree_root_type.get_type(), root.type)) 40 node = root['xa_head'] 83 def invoke(self, root, index=0): argument 84 result = lookup(root, index)
|
A D | mapletree.py | 61 def root(self): member in Mas 75 root = self.root() 76 if xarray.xa_is_node(root): 79 self.node = mte_safe_root(root) 88 if root is None: 100 return root
|
A D | symbols.py | 133 for root, dirs, files in os.walk(path): 136 self.module_files.append(root + "/" + name)
|
A D | mm.py | 134 root = self.SECTION_NR_TO_ROOT(nr) 136 return mem_section[root][nr & self.SECTION_ROOT_MASK]
|
/scripts/lib/abi/ |
A D | system_symbols.py | 32 ref = self.root 48 if not root: 49 root = self.root 63 items = list(root.items()) 65 names = root.get("__name", []) 87 def _walk(self, root): argument 95 with os.scandir(root) as obj: 147 self.root = {} 216 def _ref_interactor(self, root): argument 219 for k, v in root.items(): [all …]
|
A D | abi_parser.py | 350 def _parse_abi(self, root=None): argument 353 if not root: 354 root = self.directory 356 with os.scandir(root) as obj: 358 name = os.path.join(root, entry.name) 379 def parse_abi(self, root=None): argument 382 self._parse_abi(root)
|
/scripts/kconfig/ |
A D | lkc.h | 75 struct menu *menu_next(struct menu *menu, struct menu *root); 76 #define menu_for_each_sub_entry(menu, root) \ argument 77 for (menu = menu_next(root, root); menu; menu = menu_next(menu, root))
|
A D | menu.c | 28 struct menu *menu_next(struct menu *menu, struct menu *root) in menu_next() argument 33 while (menu != root && !menu->next) in menu_next() 36 if (menu == root) in menu_next()
|
/scripts/package/ |
A D | kernel.spec | 162 %defattr (-, root, root) 166 %defattr (-, root, root) 171 %defattr (-, root, root)
|
/scripts/dtc/ |
A D | dtx_diff | 31 -S linux kernel source tree is at root of current git repo 52 If this script is not run from the root of the linux source tree, 306 If it does not exist, create it from the root of the Linux source tree: 309 If not at the root of the Linux kernel source tree -s SRCTREE or -S 317 this script from the root of the Linux kernel source tree is required.
|
A D | dt-extract-compatibles | 97 def glob_without_symlinks(root, glob): 98 for path, dirs, files in os.walk(root):
|
A D | checks.c | 489 struct node *root = dti->dt; in check_phandle_prop() local 507 if (node != get_node_by_ref(root, m->ref)) in check_phandle_prop() 536 struct node *root = dti->dt; in check_explicit_phandles() local 558 other = get_node_by_phandle(root, phandle); in check_explicit_phandles() 1392 struct node *root = dti->dt; in check_property_phandle_args() local 1435 provider_node = get_node_by_phandle(root, phandle); in check_property_phandle_args() 1602 struct node *root = dti->dt; in check_interrupt_map() local 1656 provider_node = get_node_by_phandle(root, phandle); in check_interrupt_map() 1690 struct node *root = dti->dt; in check_interrupts_property() local 1721 irq_node = get_node_by_phandle(root, phandle); in check_interrupts_property()
|
A D | dtc.h | 302 cell_t get_node_phandle(struct node *root, struct node *node);
|
A D | livetree.c | 636 cell_t get_node_phandle(struct node *root, struct node *node) in get_node_phandle() argument 643 while (get_node_by_phandle(root, phandle)) in get_node_phandle()
|
/scripts/ |
A D | checkpatch.pl | 49 my $root; 335 'root=s' => \$root, 468 if (defined $root) { 474 $root = '.'; 477 $root = $1; 481 if (!defined $root) { 1390 my ($root) = @_; 2520 if (-f "$root/$file") { 2883 -e "$root/$p1_prefix") { 3716 if (defined $root && [all …]
|
A D | Makefile.package | 174 … cmd_tar = cd $<; tar cf ../$@ $(compress-tar$(suffix $@)) --owner=root --group=root --sort=name *
|
A D | dev-needs.sh | 16 chain, so the last entry in the output is close to the root of the
|
A D | asn1_compiler.c | 1296 struct type *root; in render() local 1359 root = &type_list[0]; in render() 1360 render_element(NULL, root->element, NULL); in render() 1374 root = &type_list[0]; in render() 1375 render_element(out, root->element, NULL); in render()
|
/scripts/gcc-plugins/ |
A D | gcc-common.h | 86 void debug_dominance_tree(enum cdi_direction dir, basic_block root);
|