Home
last modified time | relevance | path

Searched refs:last_child (Results 1 – 6 of 6) sorted by relevance

/external/cn-cbor/src/
Dcn-create.c84 if(cb_map->last_child) { in _append_kv()
85 cb_map->last_child->next = key; in _append_kv()
89 cb_map->last_child = val; in _append_kv()
170 if(cb_array->last_child) { in cn_cbor_array_append()
171 cb_array->last_child->next = cb_value; in cn_cbor_array_append()
175 cb_array->last_child = cb_value; in cn_cbor_array_append()
Dcn-cbor.c129 if (parent->last_child) { in decode_item()
130 parent->last_child->next = cb; in decode_item()
134 parent->last_child = cb; in decode_item()
/external/u-boot/cmd/
Dusb.c345 int has_child, last_child; local
375 last_child = device_is_last_sibling(dev->dev);
378 last_child = 1;
388 last_child = 0;
397 if (last_child && index)
/external/selinux/libsepol/cil/src/
Dcil_tree.h72 …nt (*first_child)(struct cil_tree_node *node, void *extra_args), int (*last_child)(struct cil_tree…
Dcil_tree.c263 int (*last_child)(struct cil_tree_node *node, void *extra_args), in cil_tree_walk_core()
284 rc = cil_tree_walk(node, process_node, first_child, last_child, extra_args); in cil_tree_walk_core()
299 int (*last_child)(struct cil_tree_node *node, void *extra_args), in cil_tree_walk()
316 rc = cil_tree_walk_core(node->cl_head, process_node, first_child, last_child, extra_args); in cil_tree_walk()
321 if (last_child != NULL) { in cil_tree_walk()
322 rc = (*last_child)(node->cl_tail, extra_args); in cil_tree_walk()
/external/cn-cbor/include/cn-cbor/
Dcn-cbor.h103 struct cn_cbor* last_child; member