/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | wic.py | 984 p = runCmd("wic create %s -e core-image-minimal -o %s" % (wkspath, self.resultdir), 987 if p.status: 988 return (p, None) 995 return (p, None) 1010 return (p, res.output.splitlines()[2:]) 1032 p, _ = self._get_wic_partitions(wkspath, ignore_status=True) 1035 …self.assertNotEqual(p.status, 0, "wic exited successfully when an error was expected:\n%s" % p.out… 1110 p, _ = self._get_wic_partitions(tempf.name, ignore_status=True) 1111 …self.assertNotEqual(p.status, 0, "wic exited successfully when an error was expected:\n%s" % p.out… 1119 p, _ = self._get_wic_partitions(tempf.name, ignore_status=True) [all …]
|
/openbmc/linux/drivers/scsi/aic7xxx/ |
H A D | aic7xxx_osm.c | 890 ahc_linux_setup_tag_info_global(char *p) in ahc_linux_setup_tag_info_global() argument 894 tags = simple_strtoul(p + 1, NULL, 0) & 0xff; in ahc_linux_setup_tag_info_global() 1006 char *p; in aic7xxx_setup() local 1036 while ((p = strsep(&s, ",.")) != NULL) { in aic7xxx_setup() 1037 if (*p == '\0') in aic7xxx_setup() 1042 if (strncmp(options[i].name, p, n) == 0) in aic7xxx_setup() 1048 if (strncmp(p, "global_tag_depth", n) == 0) { in aic7xxx_setup() 1049 ahc_linux_setup_tag_info_global(p + n); in aic7xxx_setup() 1050 } else if (strncmp(p, "tag_info", n) == 0) { in aic7xxx_setup() 1053 } else if (p[n] == ':') { in aic7xxx_setup() [all …]
|
/openbmc/qemu/hw/mem/ |
H A D | cxl_type3.c | 1356 CXLPoison *p; in qmp_cxl_inject_poison() local 1377 QLIST_FOREACH(p, &ct3d->poison_list, node) { in qmp_cxl_inject_poison() 1378 if (((start >= p->start) && (start < p->start + p->length)) || in qmp_cxl_inject_poison() 1379 ((start + length > p->start) && in qmp_cxl_inject_poison() 1380 (start + length <= p->start + p->length))) { in qmp_cxl_inject_poison() 1387 p = g_new0(CXLPoison, 1); in qmp_cxl_inject_poison() 1388 p->length = length; in qmp_cxl_inject_poison() 1389 p->start = start; in qmp_cxl_inject_poison() 1391 p->type = CXL_POISON_TYPE_INTERNAL; in qmp_cxl_inject_poison() 1394 QLIST_INSERT_HEAD(&ct3d->poison_list, p, node); in qmp_cxl_inject_poison() [all …]
|
/openbmc/linux/drivers/thunderbolt/ |
H A D | usb4.c | 942 struct tb_port *p; in usb4_port_idx() local 947 if (!tb_port_is_null(p)) in usb4_port_idx() 949 if (tb_is_upstream_port(p)) in usb4_port_idx() 951 if (!p->link_nr) { in usb4_port_idx() 952 if (p == port) in usb4_port_idx() 975 struct tb_port *p; in usb4_switch_map_pcie_down() local 980 if (!tb_port_is_pcie_down(p)) in usb4_switch_map_pcie_down() 984 return p; in usb4_switch_map_pcie_down() 1006 struct tb_port *p; in usb4_switch_map_usb3_down() local 1011 if (!tb_port_is_usb3_down(p)) in usb4_switch_map_usb3_down() [all …]
|
/openbmc/linux/drivers/base/power/ |
H A D | domain.c | 122 #define genpd_lock(p) p->lock_ops->lock(p) argument 123 #define genpd_lock_nested(p, d) p->lock_ops->lock_nested(p, d) argument 124 #define genpd_lock_interruptible(p) p->lock_ops->lock_interruptible(p) argument 125 #define genpd_unlock(p) p->lock_ops->unlock(p) argument 3091 const char *p = ""; in rtpm_status_str() local 3094 p = "error"; in rtpm_status_str() 3096 p = "unsupported"; in rtpm_status_str() 3098 p = status_lookup[dev->power.runtime_status]; in rtpm_status_str() 3102 seq_printf(s, "%-25s ", p); in rtpm_status_str()
|
/openbmc/linux/drivers/net/ethernet/sun/ |
H A D | sungem.c | 1988 const char *p; in gem_check_invariants() local 1991 if (p && !strcmp(p, "serdes")) in gem_check_invariants() 2731 if (readb(p + 0) != 0x90 || in find_eth_addr_in_vpd() 2732 readb(p + 1) != 0x00 || in find_eth_addr_in_vpd() 2733 readb(p + 2) != 0x09 || in find_eth_addr_in_vpd() 2734 readb(p + 3) != 0x4e || in find_eth_addr_in_vpd() 2736 readb(p + 5) != 0x06) in find_eth_addr_in_vpd() 2740 p += 6; in find_eth_addr_in_vpd() 2754 if (p) { in get_gem_mac_nonobp() 2758 readb(p + 1) == 0xaa && in get_gem_mac_nonobp() [all …]
|
/openbmc/linux/net/sched/ |
H A D | sch_cake.c | 457 vars->p_drop += p->p_inc; in cobalt_queue_full() 458 if (vars->p_drop < p->p_inc) in cobalt_queue_full() 481 if (vars->p_drop < p->p_dec) in cobalt_queue_empty() 484 vars->p_drop -= p->p_dec; in cobalt_queue_empty() 494 p->interval, in cobalt_queue_empty() 542 p->interval, in cobalt_should_drop() 560 p->interval, in cobalt_should_drop() 568 p->interval, in cobalt_should_drop() 1459 u16 p = (i - 1) >> 1; in cake_heapify_up() local 1464 cake_heap_swap(q, i, p); in cake_heapify_up() [all …]
|
/openbmc/linux/block/ |
H A D | blk-iocost.c | 834 if (p->too_fast_vrate_pct && p->too_fast_vrate_pct <= vrate_pct) { in ioc_autop_idx() 843 if (p->too_slow_vrate_pct && p->too_slow_vrate_pct >= vrate_pct) { in ioc_autop_idx() 915 const struct ioc_params *p; in ioc_refresh_params_disk() local 921 p = &autop[idx]; in ioc_refresh_params_disk() 936 memcpy(ioc->params.qos, p->qos, sizeof(p->qos)); in ioc_refresh_params_disk() 938 memcpy(ioc->params.i_lcoefs, p->i_lcoefs, sizeof(p->i_lcoefs)); in ioc_refresh_params_disk() 3219 char *body, *p; in ioc_qos_write() local 3251 while ((p = strsep(&body, " \t\n"))) { in ioc_qos_write() 3257 if (!*p) in ioc_qos_write() 3413 char *body, *p; in ioc_cost_model_write() local [all …]
|
/openbmc/linux/tools/perf/util/ |
H A D | annotate.c | 1446 double p; in annotate__branch_printf() local 1456 if (p > 0.1) { in annotate__branch_printf() 1473 if (p > 0.1) { in annotate__branch_printf() 2386 while (*p != NULL) { in insert_source_line() 2387 parent = *p; in insert_source_line() 2400 p = &(*p)->rb_left; in insert_source_line() 2402 p = &(*p)->rb_right; in insert_source_line() 2433 while (*p != NULL) { in __resort_source_line() 2434 parent = *p; in __resort_source_line() 2438 p = &(*p)->rb_left; in __resort_source_line() [all …]
|
/openbmc/linux/drivers/gpu/drm/msm/disp/mdp5/ |
H A D | mdp5_smp.h | 73 void mdp5_smp_dump(struct mdp5_smp *smp, struct drm_printer *p);
|
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump/ |
H A D | fix-racing-build-issue.patch | 15 + -mkdir -p $(SODIR)
|
/openbmc/phosphor-hwmon/msl/ |
H A D | max31785-msl | 26 while getopts p:b:r:h key; do
|
/openbmc/linux/arch/openrisc/include/asm/ |
H A D | processor.h | 75 unsigned long __get_wchan(struct task_struct *p);
|
/openbmc/linux/arch/mips/include/asm/mach-lantiq/xway/ |
H A D | xway_dma.h | 48 extern void ltq_dma_init_port(int p, int tx_burst, int rx_burst);
|
/openbmc/qemu/net/ |
H A D | util.h | 84 int net_parse_macaddr(uint8_t *macaddr, const char *p);
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/libmemcached/files/ |
H A D | crosscompile.patch | 30 fprintf(stderr, "?%d %p in %s\n", x, backtrace_buffer[x], symbollist[x]);
|
/openbmc/openbmc/meta-facebook/meta-bletchley/recipes-phosphor/fans/ |
H A D | phosphor-pid-control_%.bbappend | 10 mkdir -p ${D}${systemd_system_unitdir}/phosphor-pid-control.service.d
|
/openbmc/linux/mm/ |
H A D | memcontrol.c | 425 while (*p) { in __mem_cgroup_insert_exceeded() 426 parent = *p; in __mem_cgroup_insert_exceeded() 430 p = &(*p)->rb_left; in __mem_cgroup_insert_exceeded() 433 p = &(*p)->rb_right; in __mem_cgroup_insert_exceeded() 1006 if (unlikely(!p)) in mem_cgroup_from_task() 1647 if (p) { in mem_cgroup_print_oom_context() 3002 return mem_cgroup_from_obj_folio(virt_to_folio(p), p); in mem_cgroup_from_slab_obj() 6173 p = NULL; in mem_cgroup_can_attach() 6175 WARN_ON_ONCE(p); in mem_cgroup_can_attach() 6176 p = leader; in mem_cgroup_can_attach() [all …]
|
/openbmc/linux/drivers/net/ethernet/8390/ |
H A D | Makefile | 12 obj-$(CONFIG_NE2000) += ne.o 8390p.o
|
/openbmc/linux/sound/core/seq/oss/ |
H A D | seq_oss_synth.h | 26 const char __user *buf, int p, int c);
|
/openbmc/linux/Documentation/devicetree/bindings/display/panel/ |
H A D | dlc,dlc0700yzg-1.yaml | 10 - Philipp Zabel <p.zabel@pengutronix.de>
|
/openbmc/linux/drivers/gpu/drm/i915/gt/ |
H A D | intel_breadcrumbs.h | 43 struct drm_printer *p);
|
/openbmc/linux/drivers/gpu/drm/radeon/ |
H A D | r600.h | 55 int r600_dma_cs_next_reloc(struct radeon_cs_parser *p,
|
/openbmc/linux/tools/testing/selftests/bpf/prog_tests/ |
H A D | send_signal_sched_switch.c | 18 static void *worker(void *p) in worker() argument
|
/openbmc/linux/include/media/ |
H A D | videobuf2-dvb.h | 67 int vb2_dvb_find_frontend(struct vb2_dvb_frontends *f, struct dvb_frontend *p);
|