Home
last modified time | relevance | path

Searched refs:child (Results 1 – 25 of 30) sorted by relevance

12

/hal_espressif-3.4.0/tools/ci/
Dtest_autocomplete.py12 child = pexpect.spawn('fish -i')
14 child.logfile = output
15 child.sendline('. ./export.fish')
16 result = child.expect(
20 child.send('idf.py \t\t')
21 …result = child.expect(['all.*app.*app-flash.*bootloader.*', pexpect.EOF, pexpect.TIMEOUT], timeout…
26 child = pexpect.spawn('bash -i')
28 child.logfile = output
29 child.sendline('. ./export.sh')
30 child.send('idf.py \t\t')
[all …]
/hal_espressif-3.4.0/tools/kconfig/
Dconf.c239 struct menu *child; in conf_choice() local
274 for (child = menu->list; child; child = child->next) { in conf_choice()
275 if (!menu_is_visible(child)) in conf_choice()
277 if (!child->sym) { in conf_choice()
278 printf("%*c %s\n", indent, '*', _(menu_get_prompt(child))); in conf_choice()
282 if (child->sym == def_sym) { in conf_choice()
287 printf(" %d. %s", cnt, _(menu_get_prompt(child))); in conf_choice()
288 if (child->sym->name) in conf_choice()
289 printf(" (%s)", child->sym->name); in conf_choice()
290 if (!sym_has_value(child->sym)) in conf_choice()
[all …]
Dmconf.c470 struct menu *child; in build_conf() local
535 for (child = menu->list; child; child = child->next) { in build_conf()
536 if (menu_is_visible(child) && child->sym == def_sym) in build_conf()
537 def_menu = child; in build_conf()
640 for (child = menu->list; child; child = child->next) in build_conf()
641 build_conf(child); in build_conf()
803 struct menu *child; in conf_choice() local
813 for (child = menu->list; child; child = child->next) { in conf_choice()
814 if (!menu_is_visible(child)) in conf_choice()
816 if (child->sym) in conf_choice()
[all …]
Dnconf.c737 struct menu *child; in build_conf() local
798 for (child = menu->list; child; child = child->next) { in build_conf()
799 if (menu_is_visible(child) && child->sym == def_sym) in build_conf()
800 def_menu = child; in build_conf()
914 for (child = menu->list; child; child = child->next) in build_conf()
915 build_conf(child); in build_conf()
1235 struct menu *child = 0; in conf_choice() local
1251 for (i = 0, child = menu->list; child; child = child->next) { in conf_choice()
1252 if (!show_all_items && !menu_is_visible(child)) in conf_choice()
1255 if (child->sym == sym_get_choice_value(menu->sym)) in conf_choice()
[all …]
Dgconf.c1091 struct menu *child; in fill_row() local
1097 for (child = menu->list; child; child = child->next) { in fill_row()
1098 if (menu_is_visible(child) in fill_row()
1099 && child->sym == def_sym) in fill_row()
1100 def_menu = child; in fill_row()
1218 GtkTreeIter *child = &iter; in gtktree_iter_find_node() local
1222 valid = gtk_tree_model_iter_children(model2, child, parent); in gtktree_iter_find_node()
1226 gtk_tree_model_get(model2, child, 6, &menu, -1); in gtktree_iter_find_node()
1229 memcpy(&found, child, sizeof(GtkTreeIter)); in gtktree_iter_find_node()
1233 ret = gtktree_iter_find_node(child, tofind); in gtktree_iter_find_node()
[all …]
Dqconf.cc580 struct menu* child; in updateMenuList() local
598 for (child = menu->list; child; child = child->next) { in updateMenuList()
600 type = child->prompt ? child->prompt->type : P_UNKNOWN; in updateMenuList()
604 if (!(child->flags & MENU_ROOT)) in updateMenuList()
608 if (child->flags & MENU_ROOT) in updateMenuList()
615 visible = menu_is_visible(child); in updateMenuList()
616 if (!menuSkip(child)) { in updateMenuList()
617 if (!child->sym && !child->list && !child->prompt) in updateMenuList()
619 if (!item || item->menu != child) in updateMenuList()
620 item = new ConfigItem(parent, last, child, visible); in updateMenuList()
[all …]
Dkxgettext.c173 struct menu *child; in menu_build_message_list() local
184 for (child = menu->list; child != NULL; child = child->next) in menu_build_message_list()
185 if (child->prompt != NULL) in menu_build_message_list()
186 menu_build_message_list(child); in menu_build_message_list()
Dmenu.c460 struct menu *child; in menu_is_empty() local
462 for (child = menu->list; child; child = child->next) { in menu_is_empty()
463 if (menu_is_visible(child)) in menu_is_empty()
471 struct menu *child; in menu_is_visible() local
496 for (child = menu->list; child; child = child->next) { in menu_is_visible()
497 if (menu_is_visible(child)) { in menu_is_visible()
Dqconf.h152 return (ConfigItem *)Parent::child(0); in firstChild()
160 ret = (ConfigItem *)_parent->child(_parent->indexOfChild(this)+1); in nextSibling()
Dkconfig-language.txt21 to determine the visibility of an entry. Any child entry is only
230 - the child entry must become invisible, if the parent is set to 'n'
231 - the child entry must only be visible, if the parent is visible
/hal_espressif-3.4.0/components/mbedtls/esp_crt_bundle/
Desp_crt_bundle.c44 static int esp_crt_check_signature(mbedtls_x509_crt *child, const uint8_t *pub_key_buf, size_t pub_…
47 static int esp_crt_check_signature(mbedtls_x509_crt *child, const uint8_t *pub_key_buf, size_t pub_… in esp_crt_check_signature() argument
63 if (!mbedtls_pk_can_do(&parent.pk, child->sig_pk)) { in esp_crt_check_signature()
69 md_info = mbedtls_md_info_from_type(child->sig_md); in esp_crt_check_signature()
70 if ( (ret = mbedtls_md( md_info, child->tbs.p, child->tbs.len, hash )) != 0 ) { in esp_crt_check_signature()
75 if ( (ret = mbedtls_pk_verify_ext( child->sig_pk, child->sig_opts, &parent.pk, in esp_crt_check_signature()
76 child->sig_md, hash, mbedtls_md_get_size( md_info ), in esp_crt_check_signature()
77 child->sig.p, child->sig.len )) != 0 ) { in esp_crt_check_signature()
97 mbedtls_x509_crt *child = crt; in esp_crt_verify_callback() local
128 int cmp_res = memcmp(child->issuer_raw.p, crt_name, name_len ); in esp_crt_verify_callback()
[all …]
/hal_espressif-3.4.0/components/wpa_supplicant/src/utils/
Djson.c195 if (json_check_tree_state(token->child) < 0 || in json_check_tree_state()
262 token->child = json_alloc_token(&tokens); in json_parse()
263 if (!token->child) in json_parse()
265 curr_token = token->child; in json_parse()
287 if (curr_token->child->state == JSON_EMPTY && in json_parse()
288 !curr_token->child->child && in json_parse()
289 !curr_token->child->sibling) { in json_parse()
292 json_free(curr_token->child); in json_parse()
293 curr_token->child = NULL; in json_parse()
485 json_free(json->child); in json_free()
[all …]
Djson.h31 struct json_token *parent, *child, *sibling; member
/hal_espressif-3.4.0/tools/ldgen/
Dgeneration.py152 child = [c for c in self.children if c.name == name]
153 assert(len(child) <= 1)
155 if not child:
156 child = self.child_t(self, name)
157 self.children.append(child)
159 child = child[0]
161 return child
176 for child in sorted(self.children, key=lambda c: c.name):
177 children_commands = child.get_output_commands()
242 child = self.add_child(entity)
[all …]
/hal_espressif-3.4.0/components/json/
DREADME102 Each cJSON has, potentially, a child, siblings, value, a name.
106 Sibling has type Object, name "format", and a child.
107 That child has type String, name "type", value "rect", and a sibling:
116 struct cJSON *child;
131 Only objects and arrays have a "child", and it's the head of the doubly linked list.
132 A "child" entry will have prev==0, but next potentially points on. The last sibling has next=0.
139 Any entry which is in the linked list which is the child of an object will have a "string"
156 if (item->child && dorecurse) parse_and_callback(item->child,newprefix);
193 cJSON *subitem=item->child;
197 if (subitem->child) parse_object(subitem->child);
[all …]
/hal_espressif-3.4.0/tools/kconfig_new/
Dgen_kconfig_doc.py386 child = node.list
387 while child:
388 if not is_choice(child) and child.prompt and visibility.visible(child):
389 child_list.append((child.prompt[0], get_link_anchor(child)))
390 child = child.next
/hal_espressif-3.4.0/docs/en/api-guides/
Desp-wifi-mesh.rst81 …- A node X is a child node when it is connected to another node Y where the connection makes node …
83 - The converse notion of a child node
85 - Any node reachable by repeated proceeding from parent to child
93 - The connection from a node to one of its child nodes
106 …erface**. This naturally results in a tree network topology with a parent-child hierarchy consisti…
132 **Leaf Nodes:** A leaf node is a node that is not permitted to have any child nodes (no downstream …
134 …), but can have zero to multiple downstream connections (zero to multiple child nodes). Therefore …
146 - Current number of child nodes
171 - The number of downstream connections (child nodes) the parent node candidate currently has
175 …andidates within the same layer, the parent node candidate with the least child nodes will be pref…
[all …]
/hal_espressif-3.4.0/tools/kconfig_new/test/confserver/
Dtestcases_v1.txt1 * Set TEST_BOOL, showing child items
9 * Clear TEST_BOOL, hiding child items
Dtestcases_v2.txt1 * Set TEST_BOOL, showing child items
9 * Clear TEST_BOOL, hiding child items
DREADME.md20 * Set TEST_BOOL, showing child items
/hal_espressif-3.4.0/components/esp_wifi/include/
Desp_mesh_internal.h96 uint8_t child[6]; /**< child address */ member
120 } child[ESP_WIFI_MAX_CONN_NUM]; member
/hal_espressif-3.4.0/examples/openthread/ot_cli/
DREADME.md42 child
115 router # child is also a valid state
118 The second device has joined the Thread network as a router (or a child).
/hal_espressif-3.4.0/components/esptool_py/esptool/flasher_stub/
Dminiz.c3459 mz_uint64 child, root = start; in mz_zip_reader_sort_central_dir_offsets_by_filename() local
3462 if ((child = (root << 1U) + 1U) >= size) in mz_zip_reader_sort_central_dir_offsets_by_filename()
3464child += (((child + 1U) < size) && (mz_zip_reader_filename_less(pCentral_dir, pCentral_dir_offsets… in mz_zip_reader_sort_central_dir_offsets_by_filename()
3465 …(!mz_zip_reader_filename_less(pCentral_dir, pCentral_dir_offsets, pIndices[root], pIndices[child])) in mz_zip_reader_sort_central_dir_offsets_by_filename()
3467 MZ_SWAP_UINT32(pIndices[root], pIndices[child]); in mz_zip_reader_sort_central_dir_offsets_by_filename()
3468 root = child; in mz_zip_reader_sort_central_dir_offsets_by_filename()
3478 mz_uint64 child, root = 0; in mz_zip_reader_sort_central_dir_offsets_by_filename() local
3482 if ((child = (root << 1U) + 1U) >= end) in mz_zip_reader_sort_central_dir_offsets_by_filename()
3484child += (((child + 1U) < end) && mz_zip_reader_filename_less(pCentral_dir, pCentral_dir_offsets, … in mz_zip_reader_sort_central_dir_offsets_by_filename()
3485 …(!mz_zip_reader_filename_less(pCentral_dir, pCentral_dir_offsets, pIndices[root], pIndices[child])) in mz_zip_reader_sort_central_dir_offsets_by_filename()
[all …]
/hal_espressif-3.4.0/components/bootloader/subproject/
DCMakeLists.txt46 if(IS_DIRECTORY ${curdir}/${child})
/hal_espressif-3.4.0/docs/en/api-reference/network/
Desp-wifi-mesh.rst56 …ts and can indicate events such as the connection/disconnection of parent/child. Before ESP-WIFI-M…
269 | | | disconnect from the router and all child nodes, select a preferr…

12