/openbmc/linux/drivers/scsi/ |
H A D | scsi_transport_srp.c | 31 struct scsi_transport_template t; member 665 return &i->t.host_attrs.ac == cont; in srp_host_match() 821 i->t.host_size = sizeof(struct srp_host_attrs); in srp_attach_transport() 822 i->t.host_attrs.ac.attrs = &i->host_attrs[0]; in srp_attach_transport() 823 i->t.host_attrs.ac.class = &srp_host_class.class; in srp_attach_transport() 824 i->t.host_attrs.ac.match = srp_host_match; in srp_attach_transport() 826 transport_container_register(&i->t.host_attrs); in srp_attach_transport() 853 return &i->t; in srp_attach_transport() 861 void srp_release_transport(struct scsi_transport_template *t) in srp_release_transport() argument 863 struct srp_internal *i = to_srp_internal(t); in srp_release_transport() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-httpd/hiawatha/files/ |
H A D | hiawatha.service | 11 #(doesn't like this setting. Can't find files) PrivateTmp=true
|
/openbmc/openpower-vpd-parser/ |
H A D | writefru.py | 29 t = Template(filename=template) 31 fd.write(t.render(fruDict=yamlDict))
|
H A D | extra-properties.py | 29 t = Template(filename=template) 31 fd.write(t.render(dict=yamlDict))
|
/openbmc/phosphor-power/power-sequencer/ |
H A D | pgood_monitor.hpp | 47 std::chrono::milliseconds& t) : in PGOODMonitor() argument 48 DeviceMonitor(std::move(d), e, t), bus(b) in PGOODMonitor()
|
/openbmc/witherspoon-pfault-analysis/power-sequencer/ |
H A D | pgood_monitor.hpp | 47 std::chrono::milliseconds& t) : in PGOODMonitor() argument 48 DeviceMonitor(std::move(d), e, t), bus(b) in PGOODMonitor()
|
/openbmc/openbmc/meta-yadro/meta-vegman/recipes-phosphor/console/ |
H A D | obmc-console_%.bbappend | 17 install -m 0644 ${UNPACKDIR}/${PN}@.service -D -t ${D}${systemd_system_unitdir} 18 install -m 0755 ${UNPACKDIR}/uart-remapping.sh -D -t ${D}${sbindir}
|
/openbmc/openbmc/poky/meta/recipes-extended/shadow/ |
H A D | shadow_4.15.1.bb | 3 # Build falsely assumes that if --enable-libpam is set, we don't need to link against 10 CVE_STATUS[CVE-2013-4235] = "upstream-wontfix: Severity is low and marked as closed and won't fix."
|
/openbmc/linux/drivers/char/ |
H A D | hpet.c | 144 unsigned long t, mc, base, k; in hpet_interrupt() local 148 t = devp->hd_ireqfreq; in hpet_interrupt() 166 base = mc % t; in hpet_interrupt() 167 k = (mc - base + hpetp->hp_delta) / t; in hpet_interrupt() 168 write_counter(t * (k + 1) + base, in hpet_interrupt() 456 unsigned long g, v, t, m; in hpet_ioctl_ieon() local 516 t = devp->hd_ireqfreq; in hpet_ioctl_ieon() 538 write_counter(t + m + hpetp->hp_delta, &timer->hpet_compare); in hpet_ioctl_ieon() 543 write_counter(t, &timer->hpet_compare); in hpet_ioctl_ieon() 770 unsigned long t, m, count, i, flags, start; in __hpet_calibrate() local [all …]
|
/openbmc/linux/fs/f2fs/ |
H A D | segment.h | 25 #define IS_DATASEG(t) ((t) <= CURSEG_COLD_DATA) argument 26 #define IS_NODESEG(t) ((t) >= CURSEG_HOT_NODE && (t) <= CURSEG_COLD_NODE) argument 35 #define IS_HOT(t) ((t) == CURSEG_HOT_NODE || (t) == CURSEG_HOT_DATA) argument 36 #define IS_WARM(t) ((t) == CURSEG_WARM_NODE || (t) == CURSEG_WARM_DATA) argument 37 #define IS_COLD(t) ((t) == CURSEG_COLD_NODE || (t) == CURSEG_COLD_DATA) argument
|
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt7915/ |
H A D | mmio.c | 611 struct mt76_txwi_cache *t; in mt7915_mmio_wed_release_rx_buf() local 613 t = mt76_rx_token_release(&dev->mt76, i); in mt7915_mmio_wed_release_rx_buf() 614 if (!t || !t->ptr) in mt7915_mmio_wed_release_rx_buf() 617 mt76_put_page_pool_buf(t->ptr, false); in mt7915_mmio_wed_release_rx_buf() 618 t->ptr = NULL; in mt7915_mmio_wed_release_rx_buf() 620 mt76_put_rxwi(&dev->mt76, t); in mt7915_mmio_wed_release_rx_buf() 629 struct mt76_txwi_cache *t = NULL; in mt7915_mmio_wed_init_rx_buf() local 645 t = mt76_get_rxwi(&dev->mt76); in mt7915_mmio_wed_init_rx_buf() 646 if (!t) in mt7915_mmio_wed_init_rx_buf() 672 if (t) in mt7915_mmio_wed_init_rx_buf() [all …]
|
/openbmc/openbmc/poky/meta/classes/ |
H A D | icecc.bbclass | 98 # PARALLEL_MAKE as part of the test environment. Many tests won't use 136 # don't even try it, when explicitly disabled 139 # allarch recipes don't use compiler 197 # Don't pollute allarch signatures with TARGET_FPU 237 # don't create unnecessary directories when icecc is disabled 296 t = icecc_get_tool(bb, d, tool) 297 if t: 298 link_path = icecc_get_tool_link(t, d) 303 return t 305 return t [all …]
|
/openbmc/qemu/ui/ |
H A D | console-vc.c | 379 QemuConsole *s = QEMU_CONSOLE(t); in text_console_resize() 387 if (w == t->width && h == t->height) { in text_console_resize() 391 last_width = t->width; in text_console_resize() 392 t->width = w; in text_console_resize() 393 t->height = h; in text_console_resize() 395 w1 = MIN(t->width, last_width); in text_console_resize() 397 cells = g_new(TextCell, t->width * t->total_height + 1); in text_console_resize() 399 c = &cells[y * t->width]; in text_console_resize() 406 for (x = w1; x < t->width; x++) { in text_console_resize() 412 g_free(t->cells); in text_console_resize() [all …]
|
/openbmc/linux/drivers/base/regmap/ |
H A D | regmap-irq.c | 252 if ((t->types_supported & type) != type) in regmap_irq_set_type() 577 if (t->type_reg_mask) in regmap_irq_set_type_config_simple() 578 buf[0][idx] &= ~t->type_reg_mask; in regmap_irq_set_type_config_simple() 581 t->type_rising_val | in regmap_irq_set_type_config_simple() 582 t->type_level_low_val | in regmap_irq_set_type_config_simple() 583 t->type_level_high_val); in regmap_irq_set_type_config_simple() 587 buf[0][idx] |= t->type_falling_val; in regmap_irq_set_type_config_simple() 591 buf[0][idx] |= t->type_rising_val; in regmap_irq_set_type_config_simple() 595 buf[0][idx] |= (t->type_falling_val | in regmap_irq_set_type_config_simple() 596 t->type_rising_val); in regmap_irq_set_type_config_simple() [all …]
|
/openbmc/linux/drivers/hwmon/ |
H A D | nct6683.c | 421 t = tg->templates; in nct6683_create_attr_group() 422 for (count = 0; *t; t++, count++) in nct6683_create_attr_group() 446 t = tg->templates; in nct6683_create_attr_group() 447 while (*t) { in nct6683_create_attr_group() 450 if ((*t)->s2) { in nct6683_create_attr_group() 454 a2->nr = (*t)->u.s.nr + i; in nct6683_create_attr_group() 455 a2->index = (*t)->u.s.index; in nct6683_create_attr_group() 457 (*t)->dev_attr.attr.mode; in nct6683_create_attr_group() 465 a->index = (*t)->u.index + i; in nct6683_create_attr_group() 467 (*t)->dev_attr.attr.mode; in nct6683_create_attr_group() [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/ |
H A D | jquery.cookie.js | 64 var days = options.expires, t = options.expires = new Date(); 65 t.setDate(t.getDate() + days);
|
/openbmc/linux/arch/sparc/kernel/ |
H A D | sigutil_64.c | 76 struct thread_info *t = current_thread_info(); in restore_rwin_state() local 88 err |= copy_from_user(&t->reg_window[i], in restore_rwin_state() 91 err |= __get_user(t->rwbuf_stkptrs[i], in restore_rwin_state()
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 076.out | 8 qemu-io: can't open device TEST_DIR/parallels-v1: Catalog too large 11 qemu-io: can't open device TEST_DIR/parallels-v1: Catalog too large 14 qemu-io: can't open device TEST_DIR/parallels-v1: Invalid image: Zero sectors per track
|
H A D | 229.out | 2 Formatting 'TEST_DIR/t.IMGFMT', fmt=IMGFMT size=2097152 3 Formatting 'TEST_DIR/t.IMGFMT.dest', fmt=IMGFMT size=2097152 14 'target': 'blkdebug:TEST_DIR/blkdebug.conf:TEST_DIR/t.IMGFMT.dest',
|
/openbmc/openbmc/poky/meta/recipes-core/ifupdown/files/ |
H A D | defn2-c-man-don-t-rely-on-dpkg-architecture-to-set-a.patch | 4 Subject: [PATCH] defn2[c|man]: don't rely on dpkg-architecture to set arch 9 Without this the arch is not detected, but it doesn't error 10 out, and hence you get useless binaries that don't know any
|
/openbmc/qemu/pc-bios/keymaps/ |
H A D | meson.build | 43 t = [] variable 46 t += custom_target(km, 54 alias_target('update-keymaps', t)
|
/openbmc/openbmc/poky/meta/recipes-devtools/perl/ |
H A D | libtest-warnings-perl_0.033.bb | 32 cp -r ${B}/t/lib ${D}${PTEST_PATH}/t/ 33 chown -R root:root ${D}${PTEST_PATH}/t/lib
|
/openbmc/linux/tools/virtio/ringtest/ |
H A D | main.h | 23 unsigned long long t; in wait_cycles() local 25 t = __rdtsc(); in wait_cycles() 26 while (__rdtsc() - t < cycles) {} in wait_cycles()
|
/openbmc/linux/drivers/iio/gyro/ |
H A D | ssp_gyro_sensor.c | 31 u32 t; in ssp_gyro_read_raw() local 36 t = ssp_get_sensor_delay(data, SSP_GYROSCOPE_SENSOR); in ssp_gyro_read_raw() 37 ssp_convert_to_freq(t, val, val2); in ssp_gyro_read_raw()
|
/openbmc/linux/drivers/iio/accel/ |
H A D | ssp_accel_sensor.c | 31 u32 t; in ssp_accel_read_raw() local 36 t = ssp_get_sensor_delay(data, SSP_ACCELEROMETER_SENSOR); in ssp_accel_read_raw() 37 ssp_convert_to_freq(t, val, val2); in ssp_accel_read_raw()
|