Home
last modified time | relevance | path

Searched refs:file_list (Results 1 – 25 of 40) sorted by relevance

12

/openbmc/u-boot/common/
H A Dlog.c128 static bool log_has_file(const char *file_list, const char *file) in log_has_file() argument
134 for (s = file_list; *s; s = p + (*p != '\0')) { in log_has_file()
169 if (filt->file_list && in log_passes_filters()
170 !log_has_file(filt->file_list, rec->file)) in log_passes_filters()
226 enum log_level_t max_level, const char *file_list) in log_add_filter() argument
253 if (file_list) { in log_add_filter()
254 filt->file_list = strdup(file_list); in log_add_filter()
255 if (!filt->file_list) { in log_add_filter()
/openbmc/openbmc-test-automation/lib/
H A Dgen_call_robot.py351 file_list = (
364 "ls -1 " + file_list + " 2>/dev/null", show_err=0
366 file_list = re.sub("\n", " ", out_buf.rstrip("\n"))
368 if file_list == "":
379 gc.shell_cmd("rm -rf " + file_list)
383 gc.shell_cmd("gzip -f " + file_list)
385 file_list = re.sub(" ", ".gz ", file_list) + ".gz"
400 re.sub(".*/", target_dir_path, x) for x in file_list.split(" ")
404 "mv " + file_list + " " + target_dir_path + " >/dev/null", time_out=600
H A Dboot_data.py342 file_list = sorted(glob.glob(globex))
343 for file_path in file_list:
/openbmc/qemu/hw/acpi/
H A Dbios-linker-loader.c134 linker->file_list = g_array_new(false, true /* clear */, in bios_linker_loader_init()
147 for (i = 0; i < linker->file_list->len; i++) { in bios_linker_loader_cleanup()
148 entry = &g_array_index(linker->file_list, BiosLinkerFileEntry, i); in bios_linker_loader_cleanup()
151 g_array_free(linker->file_list, true); in bios_linker_loader_cleanup()
161 for (i = 0; i < linker->file_list->len; i++) { in bios_linker_find_file()
162 entry = &g_array_index(linker->file_list, BiosLinkerFileEntry, i); in bios_linker_find_file()
203 g_array_append_val(linker->file_list, file); in bios_linker_loader_alloc()
/openbmc/linux/virt/kvm/
H A Dvfio.c33 struct list_head file_list; member
126 list_for_each_entry(kvf, &kv->file_list, node) { in kvm_vfio_update_coherency()
162 list_for_each_entry(kvf, &kv->file_list, node) { in kvm_vfio_file_add()
176 list_add_tail(&kvf->node, &kv->file_list); in kvm_vfio_file_add()
204 list_for_each_entry(kvf, &kv->file_list, node) { in kvm_vfio_file_del()
250 list_for_each_entry(kvf, &kv->file_list, node) { in kvm_vfio_file_set_spapr_tce()
337 list_for_each_entry_safe(kvf, tmp, &kv->file_list, node) { in kvm_vfio_release()
378 INIT_LIST_HEAD(&kv->file_list); in kvm_vfio_create()
/openbmc/linux/tools/testing/selftests/efivarfs/
H A Defivarfs.sh154 local file_list="abc dump-type0-11-1-1362436005 1234 -"
155 for f in $file_list; do
176 local file_list="
190 for f in $file_list; do
/openbmc/u-boot/scripts/kconfig/
H A Dutil.c19 for (file = file_list; file; file = file->next) { in file_lookup()
29 file->next = file_list; in file_lookup()
30 file_list = file; in file_lookup()
48 for (file = file_list; file; file = file->next) { in file_write_dep()
H A Dexpr.h284 extern struct file *file_list;
/openbmc/linux/scripts/kconfig/
H A Dutil.c17 for (file = file_list; file; file = file->next) { in file_lookup()
26 file->next = file_list; in file_lookup()
27 file_list = file; in file_lookup()
H A Dexpr.h280 extern struct file *file_list;
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/templatetags/
H A Dprojecttags.py174 def filter_setin_files(file_list, matchstr): argument
180 for fobj in file_list:
186 last = list(file_list)[-1].file_name
/openbmc/u-boot/include/
H A Dlog.h312 const char *file_list; member
384 enum log_level_t max_level, const char *file_list);
/openbmc/qemu/include/hw/acpi/
H A Dbios-linker-loader.h7 GArray *file_list; member
/openbmc/openbmc/poky/meta/classes-global/
H A Dpackage_rpm.bbclass423 file_list = []
424 walk_files(root, file_list, conffiles)
425 if not file_list and localdata.getVar('ALLOW_EMPTY', False) != "1":
432 if file_list:
434 spec_files_top.extend(file_list)
515 file_list = []
516 walk_files(root, file_list, conffiles)
517 if not file_list and localdata.getVar('ALLOW_EMPTY', False) != "1":
524 if file_list:
526 spec_files_bottom.extend(file_list)
/openbmc/linux/fs/smb/client/
H A Dmisc.c753 struct file_list *tmp_list, *tmp_next_list; in cifs_close_deferred_file()
768 tmp_list = kmalloc(sizeof(struct file_list), GFP_ATOMIC); in cifs_close_deferred_file()
789 struct file_list *tmp_list, *tmp_next_list; in cifs_close_all_deferred_files()
801 tmp_list = kmalloc(sizeof(struct file_list), GFP_ATOMIC); in cifs_close_all_deferred_files()
821 struct file_list *tmp_list, *tmp_next_list; in cifs_close_deferred_file_under_dentry()
838 tmp_list = kmalloc(sizeof(struct file_list), GFP_ATOMIC); in cifs_close_deferred_file_under_dentry()
/openbmc/linux/drivers/misc/mei/
H A Ddebugfs.c75 list_for_each_entry(cl, &dev->file_list, link) { in mei_dbgfs_active_show()
H A Dinterrupt.c457 list_for_each_entry(cl, &dev->file_list, link) { in mei_irq_read_handler()
672 list_for_each_entry(cl, &dev->file_list, link) { in mei_timer()
H A Dinit.c371 INIT_LIST_HEAD(&dev->file_list); in mei_device_init()
/openbmc/linux/drivers/misc/genwqe/
H A Dcard_dev.c38 rc = list_empty(&cd->file_list); in genwqe_open_files()
49 list_add(&cfile->list, &cd->file_list); in genwqe_add_file()
265 list_for_each_entry(cfile, &cd->file_list, list) { in genwqe_kill_fasync()
281 list_for_each_entry(cfile, &cd->file_list, list) { in genwqe_terminate()
H A Dcard_base.h316 struct list_head file_list; /* list of open files */ member
/openbmc/linux/drivers/usb/class/
H A Dusbtmc.c77 struct list_head file_list; member
202 list_add_tail(&file_data->file_elem, &data->file_list); in usbtmc_open()
2312 list_for_each(elem, &data->file_list) { in usbtmc_interrupt()
2381 INIT_LIST_HEAD(&data->file_list); in usbtmc_probe()
2488 list_for_each(elem, &data->file_list) { in usbtmc_disconnect()
2521 list_for_each(elem, &data->file_list) { in usbtmc_suspend()
2560 list_for_each(elem, &data->file_list) { in usbtmc_pre_reset()
/openbmc/u-boot/tools/buildman/
H A Dbuilderthread.py406 file_list = glob.glob(os.path.join(out_dir, dirname, pattern))
407 for fname in file_list:
/openbmc/openbmc/poky/meta/classes/
H A Duseradd-staticids.bbclass20 def merge_files(file_list, exp_fields):
21 """Read each passwd/group file in file_list, split each line and create
27 for conf in file_list.split():
/openbmc/linux/drivers/infiniband/core/
H A Duser_mad.c101 struct list_head file_list; member
1032 list_add_tail(&file->port_list, &port->file_list); in ib_umad_open()
1312 INIT_LIST_HEAD(&port->file_list); in ib_umad_init_port()
1360 list_for_each_entry(file, &port->file_list, port_list) { in ib_umad_kill_port()
/openbmc/linux/drivers/rapidio/devices/
H A Drio_mport_cdev.c153 * @file_list - list of open files on given mport
170 struct list_head file_list; member
1928 list_add_tail(&priv->list, &chdev->file_list); in mport_cdev_open()
2379 INIT_LIST_HEAD(&md->file_list); in mport_cdev_add()
2459 list_for_each_entry(client, &md->file_list, list) { in mport_cdev_terminate_dma()
2486 list_for_each_entry(client, &md->file_list, list) { in mport_cdev_kill_fasync()

12