Home
last modified time | relevance | path

Searched full:selector (Results 1 – 25 of 542) sorted by relevance

12345678910>>...22

/openbmc/linux/lib/
Dlinear_ranges.c
/openbmc/u-boot/drivers/pinctrl/
H A Dpinctrl-generic.c14 * pinctrl_pin_name_to_selector() - return the pin selector for a pin
18 * @return: pin selector, or negative error code on failure
23 unsigned npins, selector; in pinctrl_pin_name_to_selector() local
33 for (selector = 0; selector < npins; selector++) { in pinctrl_pin_name_to_selector()
34 const char *pname = ops->get_pin_name(dev, selector); in pinctrl_pin_name_to_selector()
37 return selector; in pinctrl_pin_name_to_selector()
44 * pinctrl_group_name_to_selector() - return the group selector for a group
48 * @return: pin group selector, or negative error code on failure
54 unsigned ngroups, selector; in pinctrl_group_name_to_selector() local
64 for (selector = 0; selector < ngroups; selector++) { in pinctrl_group_name_to_selector()
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/tests/browser/
H A Dselenium_helpers_base.py195 def find(self, selector): argument
196 """ Find single element by CSS selector """
197 return self.driver.find_element(By.CSS_SELECTOR, selector)
199 def find_all(self, selector): argument
200 """ Find all elements matching CSS selector """
201 return self.driver.find_elements(By.CSS_SELECTOR, selector)
203 def element_exists(self, selector): argument
205 Return True if one element matching selector exists,
208 return len(self.find_all(selector)) == 1
214 def wait_until_present(self, selector, timeout=Wait._TIMEOUT): argument
[all …]
H A Dtest_builddashboard_page_artifacts.py118 selector = '[data-value="target-package-count"]'
119 self.assertFalse(self.element_exists(selector),
122 selector = '[data-value="target-package-size"]'
123 self.assertFalse(self.element_exists(selector),
126 selector = '[data-link="target-packages"]'
127 self.assertFalse(self.element_exists(selector),
180 selector = '[data-links="image-artifacts"] li'
181 self.assertTrue(self.element_exists(selector),
182 'should be a link to the image file (selector %s)' % selector)
191 selector = 'a[data-link="license-manifest"]'
[all …]
H A Dtest_most_recent_builds_states.py47 selector = base_selector + '[data-build-state="Queued"]'
48 element = self.wait_until_visible(selector)
63 selector = base_selector + '[data-build-state="Parsing"]'
64 element = self.wait_until_visible(selector)
77 element = self.wait_until_visible(selector)
97 selector = base_selector + '[data-build-state="Starting"]'
98 element = self.wait_until_visible(selector)
108 selector = base_selector + '[data-build-state="In Progress"]'
109 element = self.wait_until_visible(selector)
125 element = self.wait_until_visible(selector)
[all …]
/openbmc/docs/designs/
H A Dmultihost-phosphor-buttons.md57 example for a multihost platform yosemite-V2 it has host selector switch mux as
74 | | | | | | selector |------+ | |
95 ## 1.Host selector switch (selector switch)
97 This host selector switch/selector switch has 4 gpio connected as input and
98 based on the gpio state values the host selector switch value is derived. The
100 values and host selector values can be stored as part of gpio json config.
105 For example, when the power button is pressed, The value of the host selector
112 selector switch position.
116 host selector position value = 0,bmc is mapped to power and reset buttons host
117 selector position value = 1,host 1 is mapped to power and reset buttons host
[all …]
/openbmc/openbmc/poky/bitbake/lib/bs4/
H A Dcss.py9 CSS selector API.
13 starting point for a CSS selector.
26 selector.
56 # If the selector is a precompiled pattern, it already has
75 """Pre-compile a selector and return the compiled object.
77 :param selector: A CSS selector.
80 used in the CSS selector to namespace URIs. By default,
90 :return: A precompiled selector object.
105 :param selector: A CSS selector.
108 used in the CSS selector to namespace URIs. By default,
[all …]
/openbmc/linux/kernel/entry/
Dsyscall_user_dispatch.c
/openbmc/qemu/tests/image-fuzzer/qcow2/
H A Dfuzz.py121 def selector(current, constraints, validate=int_validator): function
167 return selector(current, constraints)
173 return selector(current, constraints)
179 return selector(current, constraints)
188 return selector(current, constraints)
194 return selector(current, constraints)
203 return selector(current, constraints)
209 return selector(current, constraints)
215 return selector(current, constraints)
221 return selector(current, constraints)
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/
H A Dmrbsection.js79 var selector;
100 selector = '[data-latest-build-result="' + build.id + '"] ' +
102 container = $(selector);
111 selector = '#repos-cloned-percentage-' + build.id;
112 $(selector).html(build.repos_cloned_percentage);
113 selector = '#repos-cloned-progressitem-' + build.id;
114 $(selector).html('('+build.progress_item+')');
117 selector = '#repos-cloned-percentage-bar-' + build.id;
118 $(selector).width(build.repos_cloned_percentage + '%');
122 selector = '#build-pc-done-' + build.id;
[all …]
/openbmc/linux/arch/x86/include/asm/
Dgsseg.h
/openbmc/linux/drivers/md/
Ddm-path-selector.h
Ddm-ps-queue-length.c
/openbmc/qemu/target/i386/tcg/
H A Dseg_helper.c150 uint32_t *e2_ptr, int selector, in load_segment_ra() argument
157 if (selector & 0x4) { in load_segment_ra()
162 index = selector & ~7; in load_segment_ra()
173 uint32_t *e2_ptr, int selector) in load_segment() argument
175 return load_segment_ra(env, e1_ptr, e2_ptr, selector, 0); in load_segment()
203 static inline void load_seg_vm(CPUX86State *env, int seg, int selector) in load_seg_vm() argument
205 selector &= 0xffff; in load_seg_vm()
207 cpu_x86_load_seg_cache(env, seg, selector, (selector << 4), 0xffff, in load_seg_vm()
243 raise_exception_err_ra(env, EXCP0A_TSS, env->tr.selector & 0xfffc, retaddr); in get_ss_esp_from_tss()
254 static void tss_load_seg(CPUX86State *env, X86Seg seg_reg, int selector, in tss_load_seg() argument
[all …]
/openbmc/u-boot/arch/arm/mach-snapdragon/
H A Dpinctrl-apq8096.c29 unsigned int selector) in apq8096_get_function_name() argument
31 return msm_pinctrl_functions[selector].name; in apq8096_get_function_name()
35 unsigned int selector) in apq8096_get_pin_name() argument
37 if (selector < 150) { in apq8096_get_pin_name()
38 snprintf(pin_name, MAX_PIN_NAME_LEN, "GPIO_%u", selector); in apq8096_get_pin_name()
41 return msm_pinctrl_pins[selector - 150]; in apq8096_get_pin_name()
45 static unsigned int apq8096_get_function_mux(unsigned int selector) in apq8096_get_function_mux() argument
47 return msm_pinctrl_functions[selector].val; in apq8096_get_function_mux()
H A Dpinctrl-apq8016.c34 unsigned int selector) in apq8016_get_function_name() argument
36 return msm_pinctrl_functions[selector].name; in apq8016_get_function_name()
40 unsigned int selector) in apq8016_get_pin_name() argument
42 if (selector < 122) { in apq8016_get_pin_name()
43 snprintf(pin_name, MAX_PIN_NAME_LEN, "GPIO_%u", selector); in apq8016_get_pin_name()
46 return msm_pinctrl_pins[selector - 122]; in apq8016_get_pin_name()
50 static unsigned int apq8016_get_function_mux(unsigned int selector) in apq8016_get_function_mux() argument
52 return msm_pinctrl_functions[selector].val; in apq8016_get_function_mux()
/openbmc/linux/include/linux/
Dlinear_range.h
/openbmc/linux/drivers/clk/bcm/
Dclk-bcm281xx.c
/openbmc/qemu/docs/specs/
H A Dfw_cfg.rst14 Selector (Control) Register
25 Setting the selector register will cause the data offset to be set
29 Bit14 of the selector register indicates whether the configuration
34 the selector value is between 0x4000-0x7fff or 0xc000-0xffff.
43 governed independently of Bit14 in the selector key value.
45 Bit15 of the selector register indicates whether the configuration
49 items are accessed with a selector value between 0x0000-0x7fff, and
50 architecture specific configuration items are accessed with a selector
64 selector register. In other words, the two ports overlap, and can not
69 the selector register, as described above.
[all …]
H A Dacpi_cpu_hotplug.rst46 The last stored value in 'CPU selector' must refer to a possible CPU, otherwise
51 On QEMU start, 'CPU selector' is initialized to a valid value, on reset it
100 contains 'CPU selector' value of a CPU with pending event[s]
111 CPU selector: (DWORD access)
153 selected CPU ('CPU selector' value).
154 If no CPU with events found, the current 'CPU selector' doesn't
200 #. Store 0x0 to the 'CPU selector' register, attempting to switch to modern mode
201 #. Store 0x0 to the 'CPU selector' register, to ensure valid selector value
210 #. Store 0x0 to the 'CPU selector' register.
216 selector of the CPU with the pending event (which is already selected).
[all …]
/openbmc/linux/drivers/pinctrl/
Dpinctrl-da850-pupd.c
/openbmc/qemu/target/i386/hvf/
H A Dx86_descr.c26 .selector = VMCS_GUEST_##seg##_SELECTOR, \
33 int selector; member
66 sel.sel = rvmcs(cpu->accel->fd, vmx_segment_fields[seg].selector); in vmx_read_segment_selector()
70 void vmx_write_segment_selector(CPUState *cpu, x86_segment_selector selector, X86Seg seg) in vmx_write_segment_selector() argument
72 wvmcs(cpu->accel->fd, vmx_segment_fields[seg].selector, selector.sel); in vmx_write_segment_selector()
77 desc->sel = rvmcs(cpu->accel->fd, vmx_segment_fields[seg].selector); in vmx_read_segment_descriptor()
89 wvmcs(cpu->accel->fd, sf->selector, desc->sel); in vmx_write_segment_descriptor()
93 void x86_segment_descriptor_to_vmx(CPUState *cpu, x86_segment_selector selector, in x86_segment_descriptor_to_vmx() argument
97 vmx_desc->sel = selector.sel; in x86_segment_descriptor_to_vmx()
101 vmx_desc->ar = (selector.sel ? 0 : 1) << 16 | in x86_segment_descriptor_to_vmx()
/openbmc/linux/include/linux/iio/
Diio-gts-helper.h
/openbmc/qemu/include/hw/nvram/
H A Dfw_cfg.h103 * @key: selector key value for new fw_cfg item
116 * @key: selector key value for new fw_cfg item
128 * @key: selector key value for new fw_cfg item
142 * @key: selector key value for new fw_cfg item
154 * @key: selector key value for new fw_cfg item
168 * @key: selector key value for new fw_cfg item
180 * @key: selector key value for new fw_cfg item
194 * @key: selector key value for new fw_cfg item
206 * @key: selector key value for new fw_cfg item
227 * The next available (unused) selector key starting at FW_CFG_FILE_FIRST
[all …]
/openbmc/qemu/hw/acpi/
H A Dcpu.c59 if (cpu_st->selector >= cpu_st->dev_count) { in cpu_hotplug_rd()
63 cdev = &cpu_st->devs[cpu_st->selector]; in cpu_hotplug_rd()
70 trace_cpuhp_acpi_read_flags(cpu_st->selector, val); in cpu_hotplug_rd()
75 val = cpu_st->selector; in cpu_hotplug_rd()
83 trace_cpuhp_acpi_read_cmd_data(cpu_st->selector, val); in cpu_hotplug_rd()
96 trace_cpuhp_acpi_read_cmd_data2(cpu_st->selector, val); in cpu_hotplug_rd()
114 if (cpu_st->selector >= cpu_st->dev_count) { in cpu_hotplug_wr()
115 trace_cpuhp_acpi_invalid_idx_selected(cpu_st->selector); in cpu_hotplug_wr()
121 case ACPI_CPU_SELECTOR_OFFSET_WR: /* current CPU selector */ in cpu_hotplug_wr()
122 cpu_st->selector = data; in cpu_hotplug_wr()
[all …]

12345678910>>...22