/openbmc/libpldm/src/ |
H A D | responder.c | 21 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 D | list.h | 17 * sometimes we already know the next/prev entries and we can 23 struct list_head *next, *prev; member 33 list->next = list; in INIT_LIST_HEAD() 41 * the prev/next entries already! 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() 80 * Delete a list entry by making the prev/next entries [all …]
|
/openbmc/u-boot/scripts/kconfig/ |
H A D | list.h | 25 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() 80 * the prev/next entries already! 84 struct list_head *next) in __list_add() argument 86 next->prev = _new; in __list_add() [all …]
|
H A D | kxgettext.c | 43 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/libpldm/tests/ |
H A D | responder.cpp | 14 .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/u-boot/lib/ |
H A D | list_sort.c | 30 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/qemu/tests/unit/ |
H A D | ptimer-test-stubs.c | 58 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/qemu/rust/qemu-api-macros/src/ |
H A D | bits.rs | 39 let next = match tok { in parse_primary() localVariable 45 let Some(first_tok) = stream.next() else { in parse_primary() 50 let next = self.parse_or(first_tok, &mut stream, &mut output)?; in parse_primary() localVariable 51 if let Some(tok) = next { in parse_primary() 55 it.next() in parse_primary() 66 it.next() in parse_primary() 72 let Some(rhs_tok) = it.next() else { in parse_primary() 75 let next = self.parse_primary(rhs_tok, it, out)?; in parse_primary() localVariable 77 next in parse_primary() 83 Ok(next) in parse_primary() [all …]
|
/openbmc/webui-vue/src/router/ |
H A D | index.js | 18 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/u-boot/test/ |
H A D | time_ut.c | 13 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() 24 printf("%s: iter=%d, start=%lu, next=%lu, expected a difference of 1\n", 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() [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bb/tests/ |
H A D | cow.py | 208 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 D | fds.c | 39 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 D | qemu-config-qmp.c | 50 while (cur->next) { in cleanup_infolist() 52 while (pre_entry != cur->next) { in cleanup_infolist() 53 if (!strcmp(pre_entry->value->name, cur->next->value->name)) { in cleanup_infolist() 54 del_entry = cur->next; in cleanup_infolist() 55 cur->next = cur->next->next; in cleanup_infolist() 56 del_entry->next = NULL; in cleanup_infolist() 60 pre_entry = pre_entry->next; in cleanup_infolist() 62 cur = cur->next; in cleanup_infolist() 73 while (cur->next) { in connect_infolist() 74 cur = cur->next; in connect_infolist() [all …]
|
/openbmc/qemu/util/ |
H A D | yank.c | 23 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 D | range.c | 45 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 D | list.c | 57 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/openbmc/poky/meta/recipes-core/glibc/glibc/ |
H A D | makedbs.sh | 22 /^[ \t]*$$/ { next } \ 23 /^[ \t]*#/ { next } \ 35 /^[ \t]*$$/ { next } \ 36 /^[ \t]*#/ { next } \ 59 awk '/^[ \t]*$$/ { next } \ 60 /^[ \t]*#/ { next } \ 71 awk '/^[ \t]*$$/ { next } \ 72 /^[ \t]*#/ { next } \ 85 awk '/^[ \t]*$$/ { next } \ 86 /^[ \t]*#/ { next } \ [all …]
|
/openbmc/u-boot/fs/jffs2/ |
H A D | mergesort.c | 26 q = q->next; in sort_list() 31 /* merge the next element */ in sort_list() 35 /* p is empty, or p > q, so q next */ in sort_list() 37 q = q->next; in sort_list() 41 p = p->next; in sort_list() 44 e->next = NULL; /* break accidental loops. */ in sort_list() 46 tail = &e->next; in sort_list()
|
/openbmc/qemu/ |
H A D | replication.c | 47 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 D | filter.c | 51 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() 97 * pass NULL to 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() [all …]
|
/openbmc/u-boot/arch/mips/lib/ |
H A D | bootm.c | 78 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() 94 * we found a left quote before the next blank 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() [all …]
|
/openbmc/qemu/hw/usb/ |
H A D | hcd-ehci.h | 49 uint32_t next; member 80 uint32_t next; /* Standard next link pointer */ member 118 uint32_t backptr; /* Standard next link pointer */ 124 uint32_t next; /* Standard next link pointer */ member 125 uint32_t altnext; /* Standard next link pointer */ 154 uint32_t next; /* Standard next link pointer */ member 191 uint32_t current_qtd; /* Standard next link pointer */ 192 uint32_t next_qtd; /* Standard next link pointer */ 208 uint32_t next; /* Standard next link pointer */ member 209 uint32_t backptr; /* Standard next link pointer */ [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/expect/expect/ |
H A D | 0001-Replace-tclsh-with-tclsh8-in-the-scripts-used-in-the.patch | 63 # The next line is executed by /bin/sh, but not tcl \ 76 # The next line is executed by /bin/sh, but not tcl \ 89 # The next line is executed by /bin/sh, but not tcl \ 102 # The next line is executed by /bin/sh, but not tcl \ 115 # The next line is executed by /bin/sh, but not tcl \ 128 # The next line is executed by /bin/sh, but not tcl \ 141 # The next line is executed by /bin/sh, but not tcl \ 154 # The next line is executed by /bin/sh, but not tcl \ 167 # The next line is executed by /bin/sh, but not tcl \ 180 # The next line is executed by /bin/sh, but not tcl \ [all …]
|
/openbmc/qemu/hw/uefi/ |
H A D | var-service-siglist.c | 22 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 …]
|
/openbmc/qemu/target/loongarch/tcg/ |
H A D | constant_timer.c | 37 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()
|