Home
last modified time | relevance | path

Searched refs:sfile (Results 1 – 10 of 10) sorted by relevance

/openbmc/linux/drivers/crypto/intel/qat/qat_common/
H A Dadf_transport_debug.c15 struct adf_etr_ring_data *ring = sfile->private; in adf_ring_start()
31 struct adf_etr_ring_data *ring = sfile->private; in adf_ring_next()
43 struct adf_etr_ring_data *ring = sfile->private; in adf_ring_show()
58 seq_printf(sfile, "ring name: %s\n", in adf_ring_show()
60 seq_printf(sfile, "ring num %d, bank num %d\n", in adf_ring_show()
62 seq_printf(sfile, "head %x, tail %x, empty: %d\n", in adf_ring_show()
65 seq_printf(sfile, "ring size %lld, msg size %d\n", in adf_ring_show()
121 struct adf_etr_bank_data *bank = sfile->private; in adf_bank_start()
136 struct adf_etr_bank_data *bank = sfile->private; in adf_bank_next()
147 struct adf_etr_bank_data *bank = sfile->private; in adf_bank_show()
[all …]
H A Dadf_fw_counters.c136 static void *qat_fw_counters_seq_start(struct seq_file *sfile, loff_t *pos) in qat_fw_counters_seq_start() argument
138 struct adf_fw_counters *fw_counters = sfile->private; in qat_fw_counters_seq_start()
149 static void *qat_fw_counters_seq_next(struct seq_file *sfile, void *v, loff_t *pos) in qat_fw_counters_seq_next() argument
151 struct adf_fw_counters *fw_counters = sfile->private; in qat_fw_counters_seq_next()
161 static void qat_fw_counters_seq_stop(struct seq_file *sfile, void *v) {} in qat_fw_counters_seq_stop() argument
163 static int qat_fw_counters_seq_show(struct seq_file *sfile, void *v) in qat_fw_counters_seq_show() argument
168 seq_puts(sfile, "AE "); in qat_fw_counters_seq_show()
170 seq_printf(sfile, " %*s", ADF_FW_COUNTERS_MAX_PADDING, in qat_fw_counters_seq_show()
175 seq_printf(sfile, "%2d:", ae_counters->ae); in qat_fw_counters_seq_show()
177 seq_printf(sfile, " %*llu", ADF_FW_COUNTERS_MAX_PADDING, in qat_fw_counters_seq_show()
[all …]
H A Dadf_cfg.c13 static void *qat_dev_cfg_start(struct seq_file *sfile, loff_t *pos) in qat_dev_cfg_start() argument
15 struct adf_cfg_device_data *dev_cfg = sfile->private; in qat_dev_cfg_start()
21 static int qat_dev_cfg_show(struct seq_file *sfile, void *v) in qat_dev_cfg_show() argument
27 seq_printf(sfile, "[%s]\n", sec->name); in qat_dev_cfg_show()
31 seq_printf(sfile, "%s = %s\n", ptr->key, ptr->val); in qat_dev_cfg_show()
36 static void *qat_dev_cfg_next(struct seq_file *sfile, void *v, loff_t *pos) in qat_dev_cfg_next() argument
38 struct adf_cfg_device_data *dev_cfg = sfile->private; in qat_dev_cfg_next()
43 static void qat_dev_cfg_stop(struct seq_file *sfile, void *v) in qat_dev_cfg_stop() argument
/openbmc/linux/drivers/scsi/
H A Dscsi_proc.c482 static void *scsi_seq_start(struct seq_file *sfile, loff_t *pos) in scsi_seq_start() argument
490 sfile->private++; in scsi_seq_start()
495 static void *scsi_seq_next(struct seq_file *sfile, void *v, loff_t *pos) in scsi_seq_next() argument
498 sfile->private++; in scsi_seq_next()
502 static void scsi_seq_stop(struct seq_file *sfile, void *v) in scsi_seq_stop() argument
507 static int scsi_seq_show(struct seq_file *sfile, void *dev) in scsi_seq_show() argument
509 if (!sfile->private) in scsi_seq_show()
510 seq_puts(sfile, "Attached devices:\n"); in scsi_seq_show()
512 return proc_print_scsidevice(dev, sfile); in scsi_seq_show()
/openbmc/linux/kernel/
H A Dgen_kheaders.sh7 sfile="$(readlink -f "$0")"
57 this_file_md5="$(ls -l $sfile | md5sum | cut -d ' ' -f1)"
/openbmc/linux/scripts/
H A Dcheckkconfigsymbols.py380 for sfile in source_files:
381 referenced_symbols[sfile] = parse_source_file(sfile)
385 def parse_source_file(sfile): argument
390 if not os.path.exists(sfile):
393 with open(sfile, "r", encoding='utf-8', errors='replace') as stream:
/openbmc/linux/drivers/gpio/
H A Dgpio-mockup.c265 struct seq_file *sfile; in gpio_mockup_debugfs_read() local
273 sfile = file->private_data; in gpio_mockup_debugfs_read()
274 priv = sfile->private; in gpio_mockup_debugfs_read()
290 struct seq_file *sfile; in gpio_mockup_debugfs_write() local
301 sfile = file->private_data; in gpio_mockup_debugfs_write()
302 priv = sfile->private; in gpio_mockup_debugfs_write()
/openbmc/linux/drivers/pinctrl/
H A Dpinmux.c683 struct seq_file *sfile = file->private_data; in pinmux_select() local
684 struct pinctrl_dev *pctldev = sfile->private; in pinmux_select()
/openbmc/openbmc/poky/scripts/lib/recipetool/
H A Dcreate.py1354 for sfile in sfiles:
1355 if os.path.isfile(sfile):
1357 os.path.basename(sfile).upper())
1359 with open(sfile) as f:
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dwic.py1369 with open(src_name, 'r+b') as sfile:
1370 sfile.seek(1024 * 4)
1371 sfile.write(b'\x00')