| /rk3399_rockchip-uboot/common/ |
| H A D | menu.c | 58 struct menu_item *item; in menu_items_iter() local 62 item = list_entry(pos, struct menu_item, list); in menu_items_iter() 64 ret = callback(m, item, extra); in menu_items_iter() 79 struct menu_item *item, in menu_item_print() argument 83 puts(item->key); in menu_item_print() 86 m->item_data_print(item->data); in menu_item_print() 97 struct menu_item *item, in menu_item_destroy() argument 100 if (item->key) in menu_item_destroy() 101 free(item->key); in menu_item_destroy() 103 free(item); in menu_item_destroy() [all …]
|
| /rk3399_rockchip-uboot/scripts/kconfig/ |
| H A D | qconf.cc | 284 item = i; in show() 285 if (sym_get_string_value(item->menu->sym)) in show() 286 setText(QString::fromLocal8Bit(sym_get_string_value(item->menu->sym))); in show() 300 sym_set_string_value(item->menu->sym, text().toLatin1()); in keyPressEvent() 301 parent()->updateList(item); in keyPressEvent() 396 ConfigItem* item = (ConfigItem*)menu->data; in findConfigItem() local 398 for (; item; item = item->nextItem) { in findConfigItem() 399 if (this == item->listView()) in findConfigItem() 403 return item; in findConfigItem() 414 ConfigItem* item = (ConfigItem*)selectedItems().first(); in updateSelection() local [all …]
|
| H A D | qconf.h | 66 void updateList(ConfigItem *item); 67 void setValue(ConfigItem* item, tristate val); 68 void changeValue(ConfigItem* item); 205 ConfigItem *item; 214 static void updateList(ConfigItem* item);
|
| /rk3399_rockchip-uboot/tools/patman/ |
| H A D | checkpatch.py | 65 item = {} 89 if not line and item: 90 result.problems.append(item) 91 item = {} 112 item['msg'] = err_match.group(1) 113 item['type'] = 'error' 115 item['msg'] = warn_match.group(1) 116 item['type'] = 'warning' 118 item['msg'] = check_match.group(1) 119 item['type'] = 'check' [all …]
|
| H A D | settings.py | 183 for item in m.group(2).split(','): 184 item = item.strip() 185 if item: 186 list.append(item)
|
| H A D | series.py | 125 for item in to_set: 126 print('To:\t ', item) 127 for item in cc_set - to_set: 128 print('Cc:\t ', item) 158 process_it = [item.strip() for item in process_it]
|
| H A D | gitutil.py | 325 for item in in_list: 326 raw += LookupEmail(item, alias, raise_on_error=raise_on_error) 328 for item in raw: 329 if not item in result: 330 result.append(item) 507 for item in alias[lookup_name]: 508 todo = LookupEmail(item, alias, raise_on_error, level + 1)
|
| /rk3399_rockchip-uboot/lib/optee_clientApi/ |
| H A D | OpteeClientLoadTa.c | 52 struct userta_item *item; in search_ta() local 125 item = (struct userta_item *)(header + 1); in search_ta() 128 tee_uuid_from_octets(&ta_uuid, item->ta_uuid); in search_ta() 144 item->ta_offset, item->ta_len, *ta_size); in search_ta() 146 if (is_uuid_equal(ta_uuid, uuid) && item->ta_ver == ta_ver) { in search_ta() 147 if (item->ta_len <= *ta_size && ta) in search_ta() 148 memcpy(ta, userta + item->ta_offset, item->ta_len); in search_ta() 149 *ta_size = item->ta_len; in search_ta() 153 item++; in search_ta()
|
| /rk3399_rockchip-uboot/arch/arm/mach-davinci/include/mach/ |
| H A D | davinci_misc.h | 30 #define PINMUX_ITEM(item) { \ argument 31 .pins = item, \ 32 .n_pins = ARRAY_SIZE(item) \ 42 int davinci_configure_pin_mux_items(const struct pinmux_resource *item, 49 int da8xx_configure_lpsc_items(const struct lpsc_resource *item,
|
| /rk3399_rockchip-uboot/test/py/ |
| H A D | conftest.py | 349 def pytest_itemcollected(item): argument 362 tests_not_run.append(item.name) 411 def setup_boardspec(item): argument 425 mark = item.get_marker('boardspec') 439 def setup_buildconfigspec(item): argument 453 mark = item.get_marker('buildconfigspec') 460 def start_test_section(item): argument 461 anchors[item.name] = log.start_section(item.name) 463 def pytest_runtest_setup(item): argument 476 start_test_section(item) [all …]
|
| /rk3399_rockchip-uboot/arch/arm/mach-rockchip/ |
| H A D | vendor.c | 87 struct vendor_item *item; member 513 vendor_info.item = (struct vendor_item *)(buffer + sizeof(struct vendor_hdr)); in vendor_storage_init() 616 struct vendor_item *item; in vendor_storage_read() local 625 item = vendor_info.item; in vendor_storage_read() 627 if ((item + i)->id == id) { in vendor_storage_read() 630 if (size > (item + i)->size) in vendor_storage_read() 631 size = (item + i)->size; in vendor_storage_read() 632 offset = (item + i)->offset; in vendor_storage_read() 657 struct vendor_item *item; in vendor_storage_write() local 706 item = vendor_info.item; in vendor_storage_write() [all …]
|
| /rk3399_rockchip-uboot/lib/ |
| H A D | hashtable.c | 225 static inline int _compare_and_overwrite_entry(ENTRY item, ACTION action, in _compare_and_overwrite_entry() argument 230 && strcmp(item.key, htab->table[idx].entry.key) == 0) { in _compare_and_overwrite_entry() 232 if ((action == ENTER) && (item.data != NULL)) { in _compare_and_overwrite_entry() 235 &htab->table[idx].entry, item.data, in _compare_and_overwrite_entry() 238 "%s, skipping it!\n", item.key); in _compare_and_overwrite_entry() 246 htab->table[idx].entry.callback(item.key, in _compare_and_overwrite_entry() 247 item.data, env_op_overwrite, flag)) { in _compare_and_overwrite_entry() 249 "%s, skipping it!\n", item.key); in _compare_and_overwrite_entry() 256 htab->table[idx].entry.data = strdup(item.data); in _compare_and_overwrite_entry() 271 int hsearch_r(ENTRY item, ACTION action, ENTRY ** retval, in hsearch_r() argument [all …]
|
| /rk3399_rockchip-uboot/arch/arm/mach-davinci/ |
| H A D | pinmux.c | 78 int davinci_configure_pin_mux_items(const struct pinmux_resource *item, in davinci_configure_pin_mux_items() argument 84 if (davinci_configure_pin_mux(item[i].pins, in davinci_configure_pin_mux_items() 85 item[i].n_pins) != 0) in davinci_configure_pin_mux_items()
|
| H A D | misc.c | 128 int da8xx_configure_lpsc_items(const struct lpsc_resource *item, in da8xx_configure_lpsc_items() argument 134 lpsc_on(item[i].lpsc_no); in da8xx_configure_lpsc_items()
|
| /rk3399_rockchip-uboot/drivers/usb/gadget/ |
| H A D | ci_udc.c | 211 struct ept_queue_item *item = ci_get_qtd(ep_num, 0); in ci_flush_qtd() local 212 const unsigned long start = (unsigned long)item; in ci_flush_qtd() 239 struct ept_queue_item *item = ci_get_qtd(ep_num, 0); in ci_invalidate_qtd() local 240 const unsigned long start = (unsigned long)item; in ci_invalidate_qtd() 424 struct ept_queue_item *item; in ci_ep_submit_next_request() local 436 item = ci_get_qtd(num, in); in ci_ep_submit_next_request() 442 head->next = (unsigned long)item; in ci_ep_submit_next_request() 448 dtd = item; in ci_ep_submit_next_request() 474 item = dtd; in ci_ep_submit_next_request() 500 item->next = (unsigned long)other_item; in ci_ep_submit_next_request() [all …]
|
| /rk3399_rockchip-uboot/arch/arm/lib/ |
| H A D | stacktrace.c | 152 struct unwind_idx *item; in find_index() local 166 item = &start[mid]; in find_index() 168 prel31_addr = expand_prel31(item->offset); in find_index() 169 func_addr = (ulong)&item->offset + prel31_addr; in find_index() 454 struct unwind_idx *item = &start[n]; in relocate_exidx() local 456 if (item->offset & BIT(31)) in relocate_exidx() 460 item->offset = offset_prel31(item->offset, offset); in relocate_exidx() 462 if (item->insn == EXIDX_CANTUNWIND) in relocate_exidx() 464 if (item->insn & BIT(31)) { in relocate_exidx() 472 item->insn = offset_prel31(item->insn, offset); in relocate_exidx()
|
| /rk3399_rockchip-uboot/env/ |
| H A D | flags.c | 499 int env_flags_validate(const ENTRY *item, const char *newval, enum env_op op, in env_flags_validate() argument 506 oldval = item->data; in env_flags_validate() 508 name = item->key; in env_flags_validate() 516 (ENV_FLAGS_VARTYPE_BIN_MASK & item->flags); in env_flags_validate() 533 if (item->flags & ENV_FLAGS_VARACCESS_PREVENT_DELETE) { in env_flags_validate() 539 if (item->flags & ENV_FLAGS_VARACCESS_PREVENT_OVERWR) { in env_flags_validate() 542 } else if (item->flags & in env_flags_validate() 557 if (item->flags & ENV_FLAGS_VARACCESS_PREVENT_CREATE) { in env_flags_validate()
|
| /rk3399_rockchip-uboot/arch/x86/include/asm/arch-broadwell/ |
| H A D | me.h | 162 #define MBP_MAKE_IDENT(appid, item) ((appid << 8) | item) argument 163 #define MBP_IDENT(appid, item) \ argument 164 MBP_MAKE_IDENT(MBP_APPID_##appid, MBP_##appid##_##item##_ITEM)
|
| /rk3399_rockchip-uboot/doc/ |
| H A D | README.menu | 14 Menus are composed of items. Each item has a key used to identify it in 48 * menu_item_add() - Adds or replaces a menu item 58 * menu_default_choice() - Set *choice to point to the default item's data 82 to pick from a list of tools. The item key and data are the same. 103 printf("failed to add item!");
|
| /rk3399_rockchip-uboot/tools/ |
| H A D | proftool.c | 311 static void check_trace_config_line(struct trace_configline_info *item) in check_trace_config_line() argument 316 debug("Checking trace config line '%s'\n", item->name); in check_trace_config_line() 318 err = regexec(&item->regex, func->name, 0, NULL, 0); in check_trace_config_line() 319 debug(" - regex '%s', string '%s': %d\n", item->name, in check_trace_config_line() 325 regex_report_error(&item->regex, err, "match", in check_trace_config_line() 326 item->name); in check_trace_config_line() 331 switch (item->type) { in check_trace_config_line()
|
| H A D | mkimage.c | 45 int item; in show_valid_options() local 54 for (item = 0; item < count; item++) in show_valid_options() 55 order[item] = item; in show_valid_options() 62 item = order[i]; in show_valid_options() 64 genimg_get_cat_short_name(category, item), in show_valid_options() 65 genimg_get_cat_name(category, item)); in show_valid_options()
|
| /rk3399_rockchip-uboot/scripts/basic/ |
| H A D | fixdep.c | 142 struct item { struct 143 struct item *next; argument 150 static struct item *hashtab[HASHSZ]; argument 167 struct item *aux; in is_defined_config() 182 struct item *aux = malloc(sizeof(*aux) + len); in define_config()
|
| /rk3399_rockchip-uboot/tools/buildman/ |
| H A D | kconfiglib.py | 789 for item in choice.actual_symbols: 790 if item.type != UNKNOWN: 791 choice.type = item.type 795 for item in choice.actual_symbols: 796 if item.type == UNKNOWN: 797 item.type = choice.type 1518 def transform_y_m_n(item): argument 1519 if item is self.y: return "y" 1520 if item is self.m: return "m" 1521 if item is self.n: return "n" [all …]
|
| /rk3399_rockchip-uboot/include/ |
| H A D | env_flags.h | 161 int env_flags_validate(const ENTRY *item, const char *newval, enum env_op op,
|
| /rk3399_rockchip-uboot/cmd/ |
| H A D | nvedit.c | 550 char *p, *item; in env_update_extract_subset() local 567 item = strtok(tmp_varvalue, " "); in env_update_extract_subset() 568 while (item) { in env_update_extract_subset() 569 p = strstr(item, subset_key) ? subset_varvalue : new_varvalue; in env_update_extract_subset() 570 strcat(p, item); in env_update_extract_subset() 572 debug("%s: [item]: %s\n", __func__, item); in env_update_extract_subset() 573 item = strtok(NULL, " "); in env_update_extract_subset()
|