Home
last modified time | relevance | path

Searched refs:new_child (Results 1 – 15 of 15) sorted by relevance

/openbmc/openbmc/poky/bitbake/lib/bs4/
H A Delement.py406 def insert(self, position, new_child): argument
415 if new_child is None:
417 if new_child is self:
419 if (isinstance(new_child, str)
420 and not isinstance(new_child, NavigableString)):
421 new_child = NavigableString(new_child)
424 if isinstance(new_child, BeautifulSoup):
427 for subchild in list(new_child.contents):
432 if hasattr(new_child, 'parent') and new_child.parent is not None:
435 if new_child.parent is self:
[all …]
/openbmc/u-boot/scripts/dtc/
H A Dlivetree.c140 struct node *new_child, *old_child; in merge_nodes() local
187 new_child = new_node->children; in merge_nodes()
188 new_node->children = new_child->next_sibling; in merge_nodes()
189 new_child->parent = NULL; in merge_nodes()
190 new_child->next_sibling = NULL; in merge_nodes()
192 if (new_child->deleted) { in merge_nodes()
193 delete_node_by_name(old_node, new_child->name); in merge_nodes()
194 free(new_child); in merge_nodes()
200 if (streq(old_child->name, new_child->name)) { in merge_nodes()
201 merge_nodes(old_child, new_child); in merge_nodes()
[all …]
/openbmc/linux/scripts/dtc/
H A Dlivetree.c145 struct node *new_child, *old_child; in merge_nodes() local
194 new_child = new_node->children; in merge_nodes()
195 new_node->children = new_child->next_sibling; in merge_nodes()
196 new_child->parent = NULL; in merge_nodes()
197 new_child->next_sibling = NULL; in merge_nodes()
199 if (new_child->deleted) { in merge_nodes()
200 delete_node_by_name(old_node, new_child->name); in merge_nodes()
201 free(new_child); in merge_nodes()
207 if (streq(old_child->name, new_child->name)) { in merge_nodes()
208 merge_nodes(old_child, new_child); in merge_nodes()
[all …]
/openbmc/linux/drivers/md/persistent-data/
H A Ddm-btree-spine.c140 int ro_step(struct ro_spine *s, dm_block_t new_child) in ro_step() argument
150 r = bn_read_lock(s->info, new_child, s->nodes + s->count); in ro_step()
H A Ddm-btree-internal.h73 int ro_step(struct ro_spine *s, dm_block_t new_child);
/openbmc/openbmc-build-scripts/scripts/
H A Dunit-test.py56 new_child = DepTree(name)
57 self.children.append(new_child)
58 return new_child
352 new_child = dep_tree.AddChild(dep)
359 dep, dep_pkgdir, dep_added, head, branch, new_child
/openbmc/linux/arch/sparc/include/asm/
H A Dthread_info_64.h48 __u8 new_child; member
/openbmc/linux/arch/sparc/kernel/
H A Dkgdb_64.c72 if (t->new_child) in sleeping_thread_to_gdb_regs()
H A Dprocess_64.c584 t->new_child = 1; in copy_thread()
H A Dsmp_64.c127 current_thread_info()->new_child = 0; in smp_callin()
H A Dtraps_64.c2859 TI_NEW_CHILD != offsetof(struct thread_info, new_child) || in trap_init()
/openbmc/linux/drivers/clk/
H A Dclk.c76 struct clk_core *new_child; member
2081 if (new_parent->new_child == core) in clk_reparent()
2082 new_parent->new_child = NULL; in clk_reparent()
2249 core->new_child = NULL; in clk_calc_subtree()
2251 new_parent->new_child = core; in clk_calc_subtree()
2375 if (core->new_child) { in clk_propagate_rate_change()
2376 tmp_clk = clk_propagate_rate_change(core->new_child, event); in clk_propagate_rate_change()
2471 if (core->new_child) in clk_change_rate()
2472 clk_change_rate(core->new_child); in clk_change_rate()
/openbmc/qemu/
H A Dblock.c3073 BdrvChild *new_child; in bdrv_attach_child_common() local
3080 new_child = g_new(BdrvChild, 1); in bdrv_attach_child_common()
3081 *new_child = (BdrvChild) { in bdrv_attach_child_common()
3096 parent_ctx = bdrv_child_get_parent_aio_context(new_child); in bdrv_attach_child_common()
3107 g_hash_table_add(visited, new_child); in bdrv_attach_child_common()
3108 ret_child = child_class->change_aio_ctx(new_child, child_ctx, in bdrv_attach_child_common()
3121 bdrv_child_free(new_child); in bdrv_attach_child_common()
3144 bdrv_parent_drained_begin_single(new_child); in bdrv_attach_child_common()
3145 bdrv_replace_child_noperm(new_child, child_bs); in bdrv_attach_child_common()
3149 .child = new_child, in bdrv_attach_child_common()
[all …]
/openbmc/linux/kernel/
H A Dseccomp.c1871 static bool has_duplicate_listener(struct seccomp_filter *new_child) in has_duplicate_listener() argument
1878 if (!new_child->notif) in has_duplicate_listener()
/openbmc/linux/fs/xfs/libxfs/
H A Dxfs_da_btree.c42 xfs_da_state_blk_t *new_child);