Home
last modified time | relevance | path

Searched refs:next (Results 1 – 25 of 1203) sorted by relevance

12345678910>>...49

/openbmc/libpldm/src/
H A Dresponder.c21 struct pldm_responder_cookie *next; in pldm_responder_cookie_track() local
28 next = current->next; in pldm_responder_cookie_track()
29 while (next) { in pldm_responder_cookie_track()
31 if (pldm_responder_cookie_eq(next, cookie)) { in pldm_responder_cookie_track()
34 current = next; in pldm_responder_cookie_track()
35 next = next->next; in pldm_responder_cookie_track()
38 cookie->next = NULL; in pldm_responder_cookie_track()
39 current->next = cookie; in pldm_responder_cookie_track()
52 struct pldm_responder_cookie *next; in pldm_responder_cookie_untrack() local
59 next = current->next; in pldm_responder_cookie_untrack()
[all …]
/openbmc/u-boot/include/linux/
H A Dlist.h23 struct list_head *next, *prev; member
33 list->next = list; in INIT_LIST_HEAD()
45 struct list_head *next) in __list_add() argument
47 next->prev = new; in __list_add()
48 new->next = next; in __list_add()
50 prev->next = new; in __list_add()
63 __list_add(new, head, head->next); in list_add()
86 static inline void __list_del(struct list_head *prev, struct list_head *next) in __list_del() argument
88 next->prev = prev; in __list_del()
89 prev->next = next; in __list_del()
[all …]
/openbmc/u-boot/scripts/kconfig/
H A Dlist.h25 struct list_head *next, *prev; member
50 for (pos = list_entry((head)->next, typeof(*pos), member); \
52 pos = list_entry(pos->member.next, typeof(*pos), member))
62 for (pos = list_entry((head)->next, typeof(*pos), member), \
63 n = list_entry(pos->member.next, typeof(*pos), member); \
65 pos = n, n = list_entry(n->member.next, typeof(*n), member))
73 return head->next == head; in list_empty()
84 struct list_head *next) in __list_add() argument
86 next->prev = _new; in __list_add()
87 _new->next = next; in __list_add()
[all …]
H A Dkxgettext.c43 goto next; in escape()
50 next: in escape()
64 struct file_line *next; member
78 self->next = NULL; in file_line__new()
86 struct message *next; member
109 self->next = NULL; in message__new()
127 m = m->next; in mesage__find()
142 fl->next = self->files; in message__add_file_line()
163 m->next = message__list; in message__add()
184 for (child = menu->list; child != NULL; child = child->next) in menu_build_message_list()
[all …]
/openbmc/u-boot/lib/
H A Dlist_sort.c30 tail->next = a; in merge()
31 a = a->next; in merge()
33 tail->next = b; in merge()
34 b = b->next; in merge()
36 tail = tail->next; in merge()
38 tail->next = a?:b; in merge()
39 return head.next; in merge()
60 tail->next = a; in merge_and_restore_back_links()
62 a = a->next; in merge_and_restore_back_links()
64 tail->next = b; in merge_and_restore_back_links()
[all …]
/openbmc/libpldm/tests/
H A Dresponder.cpp14 .next = nullptr, in TEST()
18 ASSERT_NE(jar.next, nullptr); in TEST()
20 ASSERT_EQ(jar.next, nullptr); in TEST()
27 ASSERT_EQ(jar.next, nullptr); in TEST()
29 ASSERT_EQ(jar.next, nullptr); in TEST()
40 .next = nullptr, in TEST()
44 ASSERT_NE(jar.next, nullptr); in TEST()
49 ASSERT_NE(jar.next, nullptr); in TEST()
51 ASSERT_EQ(jar.next, nullptr); in TEST()
63 .next = nullptr, in TEST()
[all …]
/openbmc/webui-vue/src/router/
H A Dindex.js18 function allowRouterToNavigate(to, next, currentUserRole) { argument
25 next();
27 next('*');
31 next();
34 next('/login');
36 next();
40 router.beforeEach((to, from, next) => {
49 allowRouterToNavigate(to, next, currentUserRole);
57 allowRouterToNavigate(to, next, currentUserRole);
/openbmc/qemu/rust/qemu-api-macros/src/
H A Dbits.rs
/openbmc/qemu/tests/unit/
H A Dptimer-test-stubs.c58 while (t->next != NULL) { in timer_mod()
59 if (t->next == ts) { in timer_mod()
63 t = t->next; in timer_mod()
67 ts->next = NULL; in timer_mod()
68 t->next = ts; in timer_mod()
76 while (t->next != NULL) { in timer_del()
77 if (t->next == ts) { in timer_del()
78 t->next = ts->next; in timer_del()
82 t = t->next; in timer_del()
94 QEMUTimer *t = timer_list->active_timers.next; in qemu_clock_deadline_ns_all()
[all …]
/openbmc/u-boot/test/
H A Dtime_ut.c13 ulong base, start, next, diff; in test_get_timer() local
20 next = get_timer(0); in test_get_timer()
21 } while (start == next); in test_get_timer()
23 if (start + 1 != next) { in test_get_timer()
25 __func__, iter, start, next); in test_get_timer()
47 ulong prev, next, min = 1000000; in test_timer_get_us() local
54 next = timer_get_us(); in test_timer_get_us()
55 if (next != prev) { in test_timer_get_us()
56 delta = next - prev; in test_timer_get_us()
59 __func__, prev, next); in test_timer_get_us()
[all …]
/openbmc/openbmc/poky/bitbake/lib/bb/tests/
H A Dcow.py208 self.assertTupleEqual(next(b_gen), ('a', 'a'))
209 self.assertTupleEqual(next(b_gen), ('b', 'b'))
210 self.assertTupleEqual(next(b_gen), ('c', 'b'))
212 self.assertTupleEqual(next(b_gen), ('dict', {}))
214 next(b_gen)
231 self.assertTupleEqual(next(b_gen), ('a', 'c'))
232 self.assertTupleEqual(next(b_gen), ('b', 'b'))
233 self.assertTupleEqual(next(b_gen), ('c', 'b'))
234 self.assertTupleEqual(next(b_gen), ('dict', {'a': 'b'}))
236 next(b_gen)
[all …]
/openbmc/qemu/monitor/
H A Dfds.c39 QLIST_ENTRY(mon_fd_t) next;
47 QLIST_ENTRY(MonFdsetFd) next;
56 QLIST_ENTRY(MonFdset) next;
76 QLIST_FOREACH(monfd, &mon->fds, next) { in monitor_add_fd()
95 QLIST_INSERT_HEAD(&mon->fds, monfd, next); in monitor_add_fd()
123 QLIST_FOREACH(monfd, &cur_mon->fds, next) { in qmp_closefd()
128 QLIST_REMOVE(monfd, next); in qmp_closefd()
147 QLIST_FOREACH(monfd, &mon->fds, next) { in monitor_get_fd()
158 QLIST_REMOVE(monfd, next); in monitor_get_fd()
171 QLIST_REMOVE(mon_fdset, next); in monitor_fdset_free()
[all …]
H A Dqemu-config-qmp.c51 while (cur->next) { in cleanup_infolist()
53 while (pre_entry != cur->next) { in cleanup_infolist()
54 if (!strcmp(pre_entry->value->name, cur->next->value->name)) { in cleanup_infolist()
55 del_entry = cur->next; in cleanup_infolist()
56 cur->next = cur->next->next; in cleanup_infolist()
57 del_entry->next = NULL; in cleanup_infolist()
61 pre_entry = pre_entry->next; in cleanup_infolist()
63 cur = cur->next; in cleanup_infolist()
[all...]
/openbmc/qemu/util/
H A Dyank.c23 QLIST_ENTRY(YankFuncAndParam) next;
29 QLIST_ENTRY(YankInstanceEntry) next;
72 QLIST_FOREACH(entry, &yank_instance_list, next) { in yank_find_entry()
94 QLIST_INSERT_HEAD(&yank_instance_list, entry, next); in yank_register_instance()
108 QLIST_REMOVE(entry, next); in yank_unregister_instance()
128 QLIST_INSERT_HEAD(&entry->yankfns, func_entry, next); in yank_register_function()
142 QLIST_FOREACH(func_entry, &entry->yankfns, next) { in yank_unregister_function()
144 QLIST_REMOVE(func_entry, next); in yank_unregister_function()
161 for (tail = instances; tail; tail = tail->next) { in qmp_yank()
168 for (tail = instances; tail; tail = tail->next) { in qmp_yank()
[all …]
H A Drange.c45 for (l = list; l && range_compare(l->data, data) < 0; l = l->next) { in range_list_insert()
58 while (l->next && range_compare(l->data, l->next->data) == 0) { in range_list_insert()
61 range_extend(l->data, l->next->data); in range_list_insert()
62 g_free(l->next->data); in range_list_insert()
63 new_l = g_list_delete_link(list, l->next); in range_list_insert()
86 for (l = in; l && range_upb(l->data) < low; l = l->next) { in range_inverse_array()
102 for (; l->next; l = l->next) { in range_inverse_array()
104 rn = (Range *)l->next->data; in range_inverse_array()
/openbmc/qemu/authz/
H A Dlist.c57 rules = rules->next; in qauthz_list_is_allowed()
171 while (rules->next) { in qauthz_list_append_rule()
173 rules = rules->next; in qauthz_list_append_rule()
175 rules->next = tmp; in qauthz_list_append_rule()
206 while (rules->next && i < (index - 1)) { in qauthz_list_insert_rule()
208 rules = rules->next; in qauthz_list_insert_rule()
210 tmp->next = rules->next; in qauthz_list_insert_rule()
211 rules->next = tmp; in qauthz_list_insert_rule()
214 tmp->next = auth->rules; in qauthz_list_insert_rule()
233 prev->next = rules->next; in qauthz_list_delete_rule()
[all …]
/openbmc/u-boot/arch/mips/lib/
H A Dbootm.c78 const char *bootargs, *next, *quote; in linux_cmdline_legacy() local
86 next = bootargs; in linux_cmdline_legacy()
90 next = strchr(bootargs, ' '); in linux_cmdline_legacy()
92 while (next && quote && quote < next) { in linux_cmdline_legacy()
97 next = strchr(quote + 1, '"'); in linux_cmdline_legacy()
98 if (next) { in linux_cmdline_legacy()
99 quote = strchr(next + 1, '"'); in linux_cmdline_legacy()
100 next = strchr(next + 1, ' '); in linux_cmdline_legacy()
104 if (!next) in linux_cmdline_legacy()
105 next = bootargs + strlen(bootargs); in linux_cmdline_legacy()
[all …]
/openbmc/qemu/
H A Dreplication.c47 ReplicationState *rs, *next; in replication_start_all() local
50 QLIST_FOREACH_SAFE(rs, &replication_states, node, next) { in replication_start_all()
63 ReplicationState *rs, *next; in replication_do_checkpoint_all() local
66 QLIST_FOREACH_SAFE(rs, &replication_states, node, next) { in replication_do_checkpoint_all()
79 ReplicationState *rs, *next; in replication_get_error_all() local
82 QLIST_FOREACH_SAFE(rs, &replication_states, node, next) { in replication_get_error_all()
95 ReplicationState *rs, *next; in replication_stop_all() local
98 QLIST_FOREACH_SAFE(rs, &replication_states, node, next) { in replication_stop_all()
/openbmc/qemu/net/
H A Dfilter.c51 NetFilterState *next; in netfilter_next() local
55 next = QTAILQ_NEXT(nf, next); in netfilter_next()
58 next = QTAILQ_PREV(nf, next); in netfilter_next()
61 return next; in netfilter_next()
73 NetFilterState *next = NULL; in qemu_netfilter_pass_to_next() local
91 next = netfilter_next(nf, direction); in qemu_netfilter_pass_to_next()
92 while (next) { in qemu_netfilter_pass_to_next()
99 ret = qemu_netfilter_receive(next, direction, sender, flags, iov, in qemu_netfilter_pass_to_next()
104 next = netfilter_next(next, direction); in qemu_netfilter_pass_to_next()
295 QTAILQ_INSERT_BEFORE(position, nf, next); in netfilter_complete()
[all …]
H A Dhub.c34 QLIST_ENTRY(NetHubPort) next;
42 QLIST_ENTRY(NetHub) next;
54 QLIST_FOREACH(port, &hub->ports, next) { in net_hub_receive()
70 QLIST_FOREACH(port, &hub->ports, next) { in net_hub_receive_iov()
89 QLIST_INSERT_HEAD(&hubs, hub, next); in net_hub_new()
100 QLIST_FOREACH(port, &hub->ports, next) { in net_hub_port_can_receive()
134 QLIST_REMOVE(port, next);
168 QLIST_INSERT_HEAD(&hub->ports, port, next);
188 QLIST_FOREACH(hub, &hubs, next) { in net_hub_add_port()
210 QLIST_FOREACH(hub, &hubs, next) { in net_hub_info()
[all...]
/openbmc/u-boot/net/
H A Deth_legacy.c43 eth_current = eth_current->next; in eth_set_current_to_next()
67 dev = dev->next; in eth_get_dev_by_name()
87 dev = dev->next; in eth_get_dev_by_index()
126 dev = dev->next; in on_ethaddr()
196 for (d = eth_devices; d->next != eth_devices; d = d->next) in eth_register()
198 d->next = dev; in eth_register()
202 dev->next = eth_devices; in eth_register()
216 for (cur = eth_devices; cur->next != eth_devices && cur->next != dev; in eth_unregister()
217 cur = cur->next) in eth_unregister()
221 if (cur->next != dev) in eth_unregister()
[all …]
/openbmc/phosphor-webui/app/login/controllers/
H A Dlogin-controller.js42 var next = $location.search().next;
44 if (next === undefined || next == null ||
45 next.indexOf(':') >= 0) {
48 $window.location.href = next;
/openbmc/qemu/target/loongarch/tcg/
H A Dconstant_timer.c37 uint64_t now, next; in cpu_loongarch_store_constant_timer_config() local
42 next = now + (value & CONSTANT_TIMER_TICK_MASK) * TIMER_PERIOD; in cpu_loongarch_store_constant_timer_config()
43 timer_mod(&cpu->timer, next); in cpu_loongarch_store_constant_timer_config()
53 uint64_t now, next; in loongarch_constant_timer_cb() local
57 next = now + (env->CSR_TCFG & CONSTANT_TIMER_TICK_MASK) * TIMER_PERIOD; in loongarch_constant_timer_cb()
58 timer_mod(&cpu->timer, next); in loongarch_constant_timer_cb()
/openbmc/u-boot/arch/arm/lib/
H A Dcache.c97 phys_addr_t next = ALIGN(noncached_next, align); in noncached_alloc() local
99 if (next >= noncached_end || (noncached_end - next) < size) in noncached_alloc()
102 debug("allocated %zu bytes of uncached memory @%pa\n", size, &next); in noncached_alloc()
103 noncached_next = next + size; in noncached_alloc()
105 return next; in noncached_alloc()
/openbmc/qemu/hw/uefi/
H A Dvar-service-siglist.c22 QTAILQ_FOREACH(c, &siglist->x509, next) { in uefi_vars_siglist_add_x509()
36 QTAILQ_INSERT_TAIL(&siglist->x509, c, next); in uefi_vars_siglist_add_x509()
48 QTAILQ_FOREACH(h, &siglist->sha256, next) { in uefi_vars_siglist_add_sha256()
58 QTAILQ_INSERT_TAIL(&siglist->sha256, h, next); in uefi_vars_siglist_add_sha256()
73 QTAILQ_FOREACH_SAFE(c, &siglist->x509, next, cs) { in uefi_vars_siglist_free()
74 QTAILQ_REMOVE(&siglist->x509, c, next); in uefi_vars_siglist_free()
77 QTAILQ_FOREACH_SAFE(h, &siglist->sha256, next, hs) { in uefi_vars_siglist_free()
78 QTAILQ_REMOVE(&siglist->sha256, h, next); in uefi_vars_siglist_free()
149 QTAILQ_FOREACH(c, &siglist->x509, next) { in uefi_vars_siglist_blob_size()
155 QTAILQ_FOREACH(h, &siglist->sha256, next) { in uefi_vars_siglist_blob_size()
[all …]

12345678910>>...49