| /u-boot/common/ |
| A D | cli_getch.c | 48 act = ESC_SAVE; in cli_ch_esc() 54 act = ESC_CONVERTED; in cli_ch_esc() 58 act = ESC_CONVERTED; in cli_ch_esc() 62 act = ESC_CONVERTED; in cli_ch_esc() 66 act = ESC_CONVERTED; in cli_ch_esc() 70 act = ESC_CONVERTED; in cli_ch_esc() 84 act = ESC_SAVE; in cli_ch_esc() 111 act = ESC_SAVE; in cli_ch_esc() 119 act = ESC_SAVE; in cli_ch_esc() 130 *actp = act; in cli_ch_esc() [all …]
|
| /u-boot/arch/nios2/cpu/ |
| A D | interrupts.c | 43 struct irq_action *act; in external_interrupt() local 47 act = vecs; in external_interrupt() 55 act->handler (act->arg); in external_interrupt() 56 act->count++; in external_interrupt() 59 act++; in external_interrupt() 86 act = &vecs[irq]; in irq_install_handler() 90 act->handler = hdlr; in irq_install_handler() 91 act->arg = arg; in irq_install_handler() 135 (ulong)act->arg, in do_irqinfo() 136 act->count); in do_irqinfo() [all …]
|
| /u-boot/net/ |
| A D | eth_common.c | 58 char *act = env_get("ethact"); in eth_current_changed() local 72 if (act == NULL || strcmp(act, eth_get_name()) != 0) in eth_current_changed() 79 else if (act != NULL) in eth_current_changed() 112 static char *act; in eth_set_current() local 117 if ((act == NULL) || (env_changed_id != env_id)) { in eth_set_current() 118 act = env_get("ethact"); in eth_set_current() 122 if (act == NULL) { in eth_set_current() 133 eth_set_dev(eth_get_dev_by_name(act)); in eth_set_current()
|
| /u-boot/lib/ |
| A D | asn1_decoder.c | 347 unsigned char act; in asn1_ber_decoder() local 350 act = machine[pc + 1]; in asn1_ber_decoder() 352 act = machine[pc + 2]; in asn1_ber_decoder() 353 ret = actions[act](context, hdr, tag, data + dp, len); in asn1_ber_decoder() 441 unsigned char act; in asn1_ber_decoder() local 443 act = machine[pc + 2]; in asn1_ber_decoder() 445 act = machine[pc + 1]; in asn1_ber_decoder() 446 ret = actions[act](context, hdr, 0, data + tdp, len); in asn1_ber_decoder()
|
| /u-boot/test/boot/ |
| A D | expo.c | 387 struct expo_action act; in expo_render_image() local 480 ut_assertok(expo_action_get(exp, &act)); in expo_render_image() 482 ut_asserteq(EXPOACT_POINT, act.type); in expo_render_image() 483 ut_asserteq(ITEM2, act.select.id); in expo_render_image() 496 ut_assertok(expo_action_get(exp, &act)); in expo_render_image() 497 ut_asserteq(EXPOACT_SELECT, act.type); in expo_render_image() 498 ut_asserteq(ITEM2, act.select.id); in expo_render_image() 501 ut_asserteq(-EAGAIN, expo_action_get(exp, &act)); in expo_render_image() 520 ut_assertok(expo_action_get(exp, &act)); in expo_render_image() 522 ut_asserteq(EXPOACT_POINT, act.type); in expo_render_image() [all …]
|
| /u-boot/boot/ |
| A D | expo.c | 164 int expo_action_get(struct expo *exp, struct expo_action *act) in expo_action_get() argument 166 *act = exp->action; in expo_action_get() 169 return act->type == EXPOACT_NONE ? -EAGAIN : 0; in expo_action_get()
|
| A D | bootflow_menu.c | 212 struct expo_action act; in bootflow_menu_run() local 245 ret = expo_action_get(exp, &act); in bootflow_menu_run() 247 switch (act.type) { in bootflow_menu_run() 249 sel_id = act.select.id; in bootflow_menu_run()
|
| /u-boot/arch/arm/dts/ |
| A D | bcm2835-rpi-cm1.dtsi | 8 led-act {
|
| A D | kirkwood-blackarmor-nas220.dts | 109 pmx_act_sata0: pmx-act-sata0 { 114 pmx_act_sata1: pmx-act-sata1 {
|
| A D | bcm2837-rpi-cm3.dtsi | 17 /delete-node/ led-act;
|
| A D | bcm2835-rpi.dtsi | 7 led-act {
|
| A D | bcm2835-rpi-a.dts | 17 led-act {
|
| A D | bcm2835-rpi-b.dts | 18 led-act {
|
| A D | bcm2835-rpi-zero.dts | 21 led-act {
|
| A D | bcm2836-rpi-2-b.dts | 18 led-act {
|
| A D | stm32f746-disco.dts | 77 /* Override timer5 to act as clockevent */
|
| A D | bcm2835-rpi-a-plus.dts | 17 led-act {
|
| A D | bcm2835-rpi-b-plus.dts | 18 led-act {
|
| /u-boot/tools/ |
| A D | asn1_compiler.c | 1395 const char *act; in render_out_of_line_list() local 1410 act = e->action ? "_ACT" : ""; in render_out_of_line_list() 1413 render_opcode(out, "ASN1_OP_END_SEQ%s,\n", act); in render_out_of_line_list() 1416 render_opcode(out, "ASN1_OP_END_SEQ_OF%s,\n", act); in render_out_of_line_list() 1420 render_opcode(out, "ASN1_OP_END_SET%s,\n", act); in render_out_of_line_list() 1423 render_opcode(out, "ASN1_OP_END_SET_OF%s,\n", act); in render_out_of_line_list() 1442 const char *cond, *act; in render_element() local 1460 act = e->action ? "_ACT" : ""; in render_element() 1464 cond, act, skippable ? "_OR_SKIP" : ""); in render_element() 1492 cond, act, in render_element() [all …]
|
| /u-boot/arch/sandbox/cpu/ |
| A D | os.c | 311 struct sigaction act; in os_setup_signal_handlers() local 313 act.sa_sigaction = os_signal_handler; in os_setup_signal_handlers() 314 sigemptyset(&act.sa_mask); in os_setup_signal_handlers() 315 act.sa_flags = SA_SIGINFO; in os_setup_signal_handlers() 316 if (sigaction(SIGILL, &act, NULL) || in os_setup_signal_handlers() 317 sigaction(SIGBUS, &act, NULL) || in os_setup_signal_handlers() 318 sigaction(SIGSEGV, &act, NULL)) in os_setup_signal_handlers()
|
| /u-boot/doc/device-tree-bindings/leds/ |
| A D | common.txt | 9 "backlight" - LED will act as a back-light, controlled by the framebuffer
|
| /u-boot/drivers/pci_endpoint/ |
| A D | Kconfig | 31 The sandbox driver act as a dummy driver which stores and
|
| /u-boot/arch/mips/mach-octeon/ |
| A D | cvmx-pki.c | 771 cvmx_pki_clx_pcamx_actionx_t act; in cvmx_pki_pcam_write_entry() local 798 act.u64 = csr_rd_node( in cvmx_pki_pcam_write_entry() 801 act.s.pmc = action.parse_mode_chg; in cvmx_pki_pcam_write_entry() 802 act.s.style_add = action.style_add; in cvmx_pki_pcam_write_entry() 803 act.s.pf = action.parse_flag_set; in cvmx_pki_pcam_write_entry() 804 act.s.setty = action.layer_type_set; in cvmx_pki_pcam_write_entry() 805 act.s.advance = action.pointer_advance; in cvmx_pki_pcam_write_entry() 809 act.u64); in cvmx_pki_pcam_write_entry()
|
| /u-boot/drivers/usb/gadget/ |
| A D | rndis.c | 1207 struct list_head *act, *tmp; in rndis_free_response() local 1209 list_for_each_safe(act, tmp, in rndis_free_response() 1212 r = list_entry(act, rndis_resp_t, list); in rndis_free_response() 1223 struct list_head *act, *tmp; in rndis_get_next_response() local 1228 list_for_each_safe(act, tmp, in rndis_get_next_response() 1231 r = list_entry(act, rndis_resp_t, list); in rndis_get_next_response()
|
| /u-boot/drivers/mtd/nand/raw/ |
| A D | nand_bbt.c | 175 int res, ret = 0, i, j, act = 0; in read_bbt() local 218 for (j = 0; j < 8; j += bits, act++) { in read_bbt() 224 (loff_t)(offs + act) << in read_bbt() 226 bbt_mark_entry(this, offs + act, in read_bbt() 236 (loff_t)(offs + act) << in read_bbt() 240 bbt_mark_entry(this, offs + act, in read_bbt() 243 bbt_mark_entry(this, offs + act, in read_bbt()
|