Searched refs:act (Results 1 - 15 of 15) sorted by relevance

/u-boot/common/
H A Dcli_getch.c43 enum cli_esc_state_t act = ESC_REJECT; local
48 act = ESC_SAVE;
50 act = ESC_CONVERTED;
56 act = ESC_CONVERTED;
60 act = ESC_CONVERTED;
64 act = ESC_CONVERTED;
68 act = ESC_CONVERTED;
72 act = ESC_CONVERTED;
76 act = ESC_CONVERTED;
86 act
173 enum cli_esc_state_t act; local
[all...]
/u-boot/arch/nios2/cpu/
H A Dinterrupts.c43 struct irq_action *act; local
47 act = vecs;
55 act->handler (act->arg);
56 act->count++;
59 act++;
81 struct irq_action *act; local
86 act = &vecs[irq];
90 act->handler = hdlr;
91 act
124 struct irq_action *act = vecs; local
[all...]
/u-boot/net/
H A Deth_common.c54 char *act = env_get("ethact"); local
68 if (act == NULL || strcmp(act, eth_get_name()) != 0)
75 else if (act != NULL)
108 static char *act; local
113 if ((act == NULL) || (env_changed_id != env_id)) {
114 act = env_get("ethact");
118 if (act == NULL) {
129 eth_set_dev(eth_get_dev_by_name(act));
/u-boot/lib/
H A Dasn1_decoder.c348 unsigned char act; local
351 act = machine[pc + 1];
353 act = machine[pc + 2];
354 ret = actions[act](context, hdr, tag, data + dp, len);
442 unsigned char act; local
444 act = machine[pc + 2];
446 act = machine[pc + 1];
447 ret = actions[act](context, hdr, 0, data + tdp, len);
/u-boot/boot/
H A Dbootflow_menu.c215 struct expo_action act; local
248 ret = expo_action_get(exp, &act);
250 switch (act.type) {
252 sel_id = act.select.id;
H A Dexpo.c242 int expo_action_get(struct expo *exp, struct expo_action *act) argument
244 *act = exp->action;
247 return act->type == EXPOACT_NONE ? -EAGAIN : 0;
H A Dcedit.c162 struct expo_action act; local
195 ret = expo_action_get(exp, &act);
197 switch (act.type) {
199 scene_set_highlight_id(scn, act.select.id);
203 scene_set_open(scn, act.select.id, true);
207 scene_set_open(scn, act.select.id, false);
/u-boot/test/boot/
H A Dexpo.c443 struct expo_action act; local
578 ut_assertok(expo_action_get(exp, &act));
580 ut_asserteq(EXPOACT_POINT_ITEM, act.type);
581 ut_asserteq(ITEM2, act.select.id);
594 ut_assertok(expo_action_get(exp, &act));
595 ut_asserteq(EXPOACT_SELECT, act.type);
596 ut_asserteq(ITEM2, act.select.id);
599 ut_asserteq(-EAGAIN, expo_action_get(exp, &act));
618 ut_assertok(expo_action_get(exp, &act));
620 ut_asserteq(EXPOACT_POINT_ITEM, act
[all...]
/u-boot/tools/
H A Dasn1_compiler.c1395 const char *act; local
1410 act = e->action ? "_ACT" : "";
1413 render_opcode(out, "ASN1_OP_END_SEQ%s,\n", act);
1416 render_opcode(out, "ASN1_OP_END_SEQ_OF%s,\n", act);
1420 render_opcode(out, "ASN1_OP_END_SET%s,\n", act);
1423 render_opcode(out, "ASN1_OP_END_SET_OF%s,\n", act);
1442 const char *cond, *act; local
1460 act = e->action ? "_ACT" : "";
1464 cond, act, skippable ? "_OR_SKIP" : "");
1492 cond, act,
[all...]
/u-boot/arch/sandbox/cpu/
H A Dos.c357 struct sigaction act; local
359 act.sa_sigaction = os_signal_handler;
360 sigemptyset(&act.sa_mask);
361 act.sa_flags = SA_SIGINFO;
362 if (sigaction(SIGILL, &act, NULL) ||
363 sigaction(SIGBUS, &act, NULL) ||
364 sigaction(SIGSEGV, &act, NULL))
/u-boot/arch/mips/mach-octeon/
H A Dcvmx-pki.c771 cvmx_pki_clx_pcamx_actionx_t act; local
798 act.u64 = csr_rd_node(
801 act.s.pmc = action.parse_mode_chg;
802 act.s.style_add = action.style_add;
803 act.s.pf = action.parse_flag_set;
804 act.s.setty = action.layer_type_set;
805 act.s.advance = action.pointer_advance;
809 act.u64);
/u-boot/drivers/usb/gadget/
H A Drndis.c1207 struct list_head *act, *tmp; local
1209 list_for_each_safe(act, tmp,
1212 r = list_entry(act, rndis_resp_t, list);
1223 struct list_head *act, *tmp; local
1228 list_for_each_safe(act, tmp,
1231 r = list_entry(act, rndis_resp_t, list);
/u-boot/drivers/mtd/nand/raw/
H A Dnand_bbt.c175 int res, ret = 0, i, j, act = 0; local
218 for (j = 0; j < 8; j += bits, act++) {
224 (loff_t)(offs + act) <<
226 bbt_mark_entry(this, offs + act,
236 (loff_t)(offs + act) <<
240 bbt_mark_entry(this, offs + act,
243 bbt_mark_entry(this, offs + act,
/u-boot/include/
H A Dexpo.h713 * @act: Returns action
716 int expo_action_get(struct expo *exp, struct expo_action *act);
/u-boot/scripts/kconfig/
H A Dqconf.cc942 void ConfigView::setOptionMode(QAction *act) argument
944 if (act == showNormalAction)
946 else if (act == showAllAction)

Completed in 136 milliseconds