Home
last modified time | relevance | path

Searched refs:olist (Results 1 – 12 of 12) sorted by relevance

/openbmc/linux/drivers/gpu/drm/
H A Ddrm_suballoc.c78 sa_manager->hole = &sa_manager->olist; in drm_suballoc_manager_init()
79 INIT_LIST_HEAD(&sa_manager->olist); in drm_suballoc_manager_init()
100 if (!list_empty(&sa_manager->olist)) { in drm_suballoc_manager_fini()
101 sa_manager->hole = &sa_manager->olist; in drm_suballoc_manager_fini()
103 if (!list_empty(&sa_manager->olist)) in drm_suballoc_manager_fini()
106 list_for_each_entry_safe(sa, tmp, &sa_manager->olist, olist) { in drm_suballoc_manager_fini()
118 if (sa_manager->hole == &sa->olist) in drm_suballoc_remove_locked()
119 sa_manager->hole = sa->olist.prev; in drm_suballoc_remove_locked()
121 list_del_init(&sa->olist); in drm_suballoc_remove_locked()
131 if (sa_manager->hole->next == &sa_manager->olist) in drm_suballoc_try_free()
[all …]
/openbmc/openbmc/poky/meta/recipes-core/sysvinit/sysvinit/
H A Dpidof-add-m-option.patch54 +PROC *olist = NULL;
70 + for (p = olist; p; p = olist) {
71 + olist = olist->next;
98 + n->next = olist;
99 + olist = n;
144 + olist = (PROC*)0;
174 + for (optr = olist; optr; optr = optr->next) {
/openbmc/qemu/tests/unit/
H A Dtest-seccomp.c34 QemuOptsList *olist; in test_seccomp_helper() local
39 olist = qemu_find_opts("sandbox"); in test_seccomp_helper()
40 g_assert(olist != NULL); in test_seccomp_helper()
42 opts = qemu_opts_parse_noisily(olist, args, true); in test_seccomp_helper()
/openbmc/linux/include/drm/
H A Ddrm_suballoc.h27 struct list_head olist; member
43 struct list_head olist; member
/openbmc/qemu/system/
H A Dvl.c2510 QemuOptsList *olist = qemu_find_opts_err("sandbox", NULL); in qemu_process_early_options() local
2511 if (olist) { in qemu_process_early_options()
2512 qemu_opts_foreach(olist, parse_sandbox, NULL, &error_fatal); in qemu_process_early_options()
2752 QemuOptsList *olist; in qemu_init() local
3147 olist = qemu_find_opts("fsdev"); in qemu_init()
3148 if (!olist) { in qemu_init()
3152 opts = qemu_opts_parse_noisily(olist, optarg, true); in qemu_init()
3163 olist = qemu_find_opts("virtfs"); in qemu_init()
3164 if (!olist) { in qemu_init()
3168 opts = qemu_opts_parse_noisily(olist, optarg, true); in qemu_init()
[all …]
/openbmc/linux/sound/core/
H A Dvmaster.c392 struct list_head olist = sctl->list; in master_free() local
396 sctl->list = olist; /* keep the current linked-list */ in master_free()
/openbmc/linux/fs/smb/client/
H A Dmisc.c666 list_del(&open->olist); in cifs_del_pending_open()
678 list_add_tail(&open->olist, &tlink_tcon(tlink)->pending_opens); in cifs_add_pending_open_locked()
H A Dsmb2misc.c589 list_for_each_entry(open, &tcon->pending_opens, olist) { in smb2_tcon_find_pending_open_lease()
H A Dcifsglob.h1344 struct list_head olist; member
H A Dfile.c532 list_del(&fid->pending_open->olist); in cifs_new_fileinfo()
/openbmc/qemu/ui/
H A Dspice-display.c1194 QemuOptsList *olist = qemu_find_opts("spice"); in qemu_spice_display_init() local
1195 QemuOpts *opts = QTAILQ_FIRST(&olist->head); in qemu_spice_display_init()
H A Dvnc.c4259 static void vnc_auto_assign_id(QemuOptsList *olist, QemuOpts *opts) in vnc_auto_assign_id() argument
4265 while (qemu_opts_find(olist, id)) { in vnc_auto_assign_id()
4274 QemuOptsList *olist = qemu_find_opts("vnc"); in vnc_parse() local
4275 QemuOpts *opts = qemu_opts_parse_noisily(olist, str, !is_help_option(str)); in vnc_parse()
4285 vnc_auto_assign_id(olist, opts); in vnc_parse()