Searched refs:state (Results 126 - 150 of 394) sorted by relevance

1234567891011>>

/u-boot/scripts/kconfig/
H A Dstreamline_config.pl158 my $state = "NONE";
204 $state = "NEW";
214 $state = "DEP";
218 } elsif ($state eq "NEW" && /^\s*depends\s+on\s+(.*)$/) {
219 $state = "DEP";
221 } elsif ($state eq "DEP" && /^\s*depends\s+on\s+(.*)$/) {
223 } elsif ($state eq "DEP" && /^\s*def(_(bool|tristate)|ault)\s+(\S.*)$/) {
232 } elsif ($state ne "NONE" && /^\s*select\s+(\S+)/) {
241 } elsif ($state ne "NONE" && /^\s*(tristate\s+\S|prompt\b)/) {
262 $state
[all...]
H A Dnconf.c1021 static int do_match(int key, struct match_state *state, int *ans) argument
1026 if (key == '/' || (state->in_search && key == 27)) {
1030 state->in_search = 1-state->in_search;
1031 bzero(state->pattern, sizeof(state->pattern));
1032 state->match_direction = MATCH_TINKER_PATTERN_DOWN;
1034 } else if (!state->in_search)
1038 state->pattern[strlen(state
[all...]
/u-boot/drivers/tpm/
H A Dtpm2_tis_sandbox.c10 #include <asm/state.h>
41 * state file if enabled.
73 * sandbox_tpm2_read_state() - read the sandbox EC state from the state file
83 struct sandbox_tpm2 *state = &s_state; local
91 state->tests_done = fdtdec_get_int(blob, node, "tests-done", 0);
100 memcpy(state->pw[i], prop, len);
101 state->pw_sz[i] = len;
107 state->properties[i] = fdtdec_get_uint(blob, node, prop_name,
121 memcpy(state
155 const struct sandbox_tpm2 *state = g_state; local
[all...]
/u-boot/drivers/i2c/
H A Docores_i2c.c71 int state; /* see STATE_ */ member in struct:ocores_i2c_bus
156 if (i2c->state == STATE_DONE || i2c->state == STATE_ERROR) {
164 i2c->state = STATE_ERROR;
169 if (i2c->state == STATE_START || i2c->state == STATE_WRITE) {
170 i2c->state =
174 i2c->state = STATE_ERROR;
194 i2c->state = STATE_START;
200 i2c->state
[all...]
/u-boot/drivers/power/domain/
H A Dti-power-domain.c282 int ti_lpsc_transition(struct ti_lpsc *lpsc, u8 state) argument
290 if (state == MDSTAT_STATE_ENABLE) {
301 lpsc->psc->id, lpsc->id, state);
304 ti_lpsc_transition(lpsc->depend, state);
307 if ((mdctl & MDSTAT_STATE_MASK) == state)
310 if (state == MDSTAT_STATE_ENABLE)
316 mdctl |= state;
328 static int ti_power_domain_transition(struct power_domain *pd, u8 state) argument
332 return ti_lpsc_transition(lpsc, state);
/u-boot/fs/yaffs2/
H A Dyaffs_nand.c94 enum yaffs_block_state *state,
99 return dev->param.query_block_fn(dev, block_no, state,
102 return yaffs_tags_compat_query_block(dev, block_no, state, seq_number);
92 yaffs_query_init_block_state(struct yaffs_dev *dev, int block_no, enum yaffs_block_state *state, u32 *seq_number) argument
/u-boot/include/linux/mtd/
H A Donenand.h67 * @param state [INTERN] the current state of the OneNAND device
94 int (*wait) (struct mtd_info *mtd, int state);
95 int (*bbt_wait) (struct mtd_info *mtd, int state);
115 int state; member in struct:onenand_chip
H A Dflashchip.h70 flstate_t state; member in struct:flchip
/u-boot/drivers/usb/cdns3/
H A Ddrd.h25 __le32 state; member in struct:cdns3_otg_regs
46 __le32 state; member in struct:cdns3_otg_legacy_regs
67 __le32 state; member in struct:cdns3_otg_common_regs
H A Dhost.c50 rdrv->state = CDNS3_ROLE_STATE_INACTIVE;
/u-boot/drivers/mtd/spi/
H A Dsf_mtd.c38 instr->state = MTD_ERASING;
42 instr->state = MTD_ERASE_FAILED;
47 instr->state = MTD_ERASE_DONE;
/u-boot/board/qualcomm/dragonboard820c/
H A Ddragonboard820c.c108 enum button_state_t state; local
116 state = button_get_state(btn);
117 if (state == BUTTON_ON) {
/u-boot/cmd/
H A Dmux.c126 unsigned long state; local
137 ret = strict_strtoul(argv[3], 16, &state);
139 printf("Invalid state\n");
143 ret = mux_control_select(mux, state);
145 printf("Failed to select requested state\n");
178 "select <chip> <id> <state> - Select the given mux state\n"
179 "deselect <chip> <id> - Deselect the given mux and reset it to its idle state");
/u-boot/drivers/video/
H A Dsandbox_sdl.c13 #include <asm/state.h>
31 struct sandbox_state *state = state_get_current(); local
35 state->double_lcd);
/u-boot/lib/efi_loader/
H A Defi_net.c83 if (this->mode->state != EFI_NETWORK_STOPPED) {
88 this->mode->state = EFI_NETWORK_STARTED;
116 if (this->mode->state == EFI_NETWORK_STOPPED) {
119 /* Disable hardware and put it into the reset state */
123 this->mode->state = EFI_NETWORK_STOPPED;
155 switch (this->mode->state) {
166 /* Disable hardware and put it into the reset state */
176 this->mode->state = EFI_NETWORK_STOPPED;
182 this->mode->state = EFI_NETWORK_INITIALIZED;
212 switch (this->mode->state) {
[all...]
/u-boot/arch/sandbox/include/asm/
H A Dgetopt.h31 int (*callback)(struct sandbox_state *state, const char *opt);
/u-boot/doc/sphinx/
H A Dkerneldoc.py61 env = self.state.document.settings.env
75 tab_width = self.options.get('tab-width', self.state.document.settings.tab_width)
156 with switch_source_input(self.state, result):
157 self.state.nested_parse(result, 0, node, match_titles=1)
/u-boot/drivers/spi/
H A Dsandbox_spi.c23 #include <asm/state.h>
30 * Helper struct to keep track of the sandbox SPI bus internal state. It is
44 __weak int sandbox_spi_get_emul(struct sandbox_state *state, argument
69 struct sandbox_state *state = state_get_current(); local
94 ret = sandbox_spi_get_emul(state, bus, slave, &emul);
/u-boot/boot/
H A Dbootmeth_sandbox.c25 bflow->state = BOOTFLOWST_READY;
/u-boot/test/dm/
H A Ddsi_host.c10 #include <asm/state.h>
/u-boot/fs/sandbox/
H A Dhost_bootdev.c32 bflow->state = BOOTFLOWST_MEDIA;
/u-boot/include/u-boot/
H A Dsha512.h14 uint64_t state[SHA512_SUM_LEN / 8]; member in struct:__anon468
/u-boot/drivers/ddr/marvell/a38x/
H A Dddr3_training_ip_def.h76 #define SET_RESULT_STATE(res, state) (res = state)
/u-boot/include/test/
H A Dtest.h13 * struct unit_test_state - Entire state of test system
88 int (*func)(struct unit_test_state *state);
155 #include <asm/state.h>
/u-boot/arch/x86/include/asm/
H A Dmtrr.h63 * Information about the previous MTRR state, set up by mtrr_open()
100 * @state: Empty structure to pass in to hold settings
103 void mtrr_open(struct mtrr_state *state, bool do_caches);
110 * @state: Structure from mtrr_open()
111 * @state: true to restore cache state to that before mtrr_open()
113 void mtrr_close(struct mtrr_state *state, bool do_caches);

Completed in 185 milliseconds

1234567891011>>