Searched refs:next (Results 51 - 75 of 683) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/include/linux/
H A Dnotifier.h43 struct notifier_block *next; member in struct:notifier_block
/barrelfish-2018-10-04/usr/kaluga/
H A Dqueue.h29 struct mon_msg_state *next; member in struct:mon_msg_state
/barrelfish-2018-10-04/lib/barrelfish/
H A Dslab.c23 struct block_head *next;///< Pointer to next block in free list member in struct:block_head
69 bh->next = buf;
72 bh->next = NULL;
75 head->next = slabs->slabs;
91 for (sh = slabs->slabs; sh != NULL && sh->free == 0; sh = sh->next);
103 for (sh = slabs->slabs; sh != NULL && sh->free == 0; sh = sh->next);
113 sh->blocks = bh->next;
136 for (sh = slabs->slabs; sh != NULL; sh = sh->next) {
147 bh->next
[all...]
H A Dlmp_chan.c36 lc->prev = lc->next = NULL;
142 assert(lc->prev != NULL && lc->next != NULL);
145 if (lc->next == lc->prev) {
146 assert_disabled(lc->next == lc);
150 lc->prev->next = lc->next;
151 lc->next->prev = lc->prev;
156 lc->next = lc->prev = NULL;
297 assert(lc->next == NULL && lc->prev == NULL);
302 lc->next
394 struct lmp_chan *lc, *first = dp->lmp_send_events_list, *next; local
[all...]
H A Dlmp_endpoints.c201 assert_disabled(ep->next != NULL && ep->prev != NULL);
207 if (ep->next == ep) {
212 ep->prev->next = ep->next;
213 ep->next->prev = ep->prev;
215 dp->lmp_poll_list = ep->next;
223 // we'll stay runnable and get that next time
230 nextep = ep->next;
241 if (ep->next == ep) {
247 ep->prev->next
[all...]
/barrelfish-2018-10-04/lib/lwip/src/core/snmp/
H A Dasn1_enc.c166 p = p->next;
200 /* next octet in next pbuf */
201 p = p->next;
207 /* next octet in same pbuf */
222 /* next octet in next pbuf */
223 p = p->next;
230 /* next octet in same pbuf */
244 p = p->next;
[all...]
H A Dasn1_dec.c66 p = p->next;
115 /* next octet in next pbuf */
116 p = p->next;
123 /* next octet in same pbuf */
143 /* next octet in next pbuf */
144 p = p->next;
150 /* next octet in same pbuf */
165 /* next octe
[all...]
/barrelfish-2018-10-04/lib/dma/
H A Ddma_mem_mgr.c39 struct dma_mem_node *next; ///< the next region member in struct:dma_mem_node
87 node = node->next;
120 entry->next = NULL;
132 entry->next = tree->root;
145 if (node->next) {
146 node->next->prev = entry;
149 entry->next = node->next;
150 node->next
[all...]
/barrelfish-2018-10-04/lib/libc/net/
H A Dgetifmaddrs.c63 char *next; local
91 for (next = buf; next < buf + needed; next += rtm->rtm_msglen) {
92 rtm = (struct rt_msghdr *)(void *)next;
127 for (next = buf; next < buf + needed; next += rtm->rtm_msglen) {
128 rtm = (struct rt_msghdr *)(void *)next;
/barrelfish-2018-10-04/usr/device_managers/dma/
H A Ddma_mgr_drivers.c26 struct dma_service *next; member in struct:dma_service
34 svc->next = NULL;
45 current->prev->next = svc;
50 svc->next = current;
54 if (current->next == NULL) {
55 current->next = svc;
59 current = current->next;
97 current = current->next;
109 current = current->next;
/barrelfish-2018-10-04/lib/bulk_transfer/
H A Dbulk_pool.c57 list = list->next;
74 new_pool->next = NULL;
88 /* the ID of the pool in the list is lower, check next */
90 list = list->next;
99 new_pool->next = prev->next;
100 prev->next = new_pool;
102 new_pool->next = pool_list;
112 prev->next = new_pool;
131 /* the ID of the pool in the list is lower, check next */
[all...]
/barrelfish-2018-10-04/usr/monitor/
H A Dqueue.c27 assert(m->next == NULL);
31 q->tail->next = m;
51 assert(m->next == NULL);
57 m->next = q->head;
69 q->head = e->next;
83 // Dequeue next element from the queue
101 ms->next = NULL;
114 ms->next = NULL;
130 // Dequeue next element from the queue
148 ms->next
[all...]
/barrelfish-2018-10-04/lib/lua/src/
H A Dlfunc.c61 pp = &p->next;
67 uv->u.l.next = g->uvhead.u.l.next;
68 uv->u.l.next->u.l.prev = uv;
69 g->uvhead.u.l.next = uv;
70 lua_assert(uv->u.l.next->u.l.prev == uv && uv->u.l.prev->u.l.next == uv);
76 lua_assert(uv->u.l.next->u.l.prev == uv && uv->u.l.prev->u.l.next == uv);
77 uv->u.l.next
[all...]
/barrelfish-2018-10-04/lib/lwip/src/core/
H A Dtcp_in.c190 for (pcb = tcp_active_pcbs; pcb != NULL; pcb = pcb->next) {
205 LWIP_ASSERT("tcp_input: pcb->next != pcb (before cache)",
206 pcb->next != pcb);
208 prev->next = pcb->next;
209 pcb->next = tcp_active_pcbs;
212 LWIP_ASSERT("tcp_input: pcb->next != pcb (after cache)",
213 pcb->next != pcb);
223 for (pcb = tcp_tw_pcbs; pcb != NULL; pcb = pcb->next) {
245 lpcb = lpcb->next) {
771 struct tcp_seg *next; local
[all...]
/barrelfish-2018-10-04/kernel/
H A Dschedule_rbed.c89 return dcb->next != NULL || kcb_current->queue_tail == dcb;
131 for(struct dcb *i = kcb_current->queue_head; i != NULL; prev = i, i = i->next) {
143 dcb->next = i;
147 prev->next = dcb;
154 kcb_current->queue_tail->next = dcb;
175 kcb_current->queue_head = dcb->next;
183 for(struct dcb *i = kcb_current->queue_head; i != NULL; i = i->next) {
184 if(i->next == dcb) {
185 i->next = i->next
[all...]
/barrelfish-2018-10-04/lib/net_queue_manager/
H A Dfrag.c40 struct ip_packet *next; member in struct:ip_packet
47 struct fragment_filter *next; member in struct:fragment_filter
136 new_packet->next = frag_packets;
151 filter->next = frag_filters;
163 frag_filters = filter->next;
165 prev->next = frag_filters->next;
170 filter = filter->next;
185 filter = filter->next;
198 frag_packets = packet->next;
[all...]
/barrelfish-2018-10-04/lib/barrelfish/vspace/
H A Dmemobj_anon.c63 data->next = walk;
97 //printf("fwalk->next = %p\n", fwalk->next);
100 fwalk = fwalk->next;
112 elt = elt->next) {
116 anon->vregion_list = elt->next;
118 assert(prev->next == elt);
119 prev->next = elt->next;
127 fwalk = fwalk->next;
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/visualisation/
H A DViewerViewletsCommand.java44 viewletSymRefs.add(((Viewlet) i.next()).getSymRef());
54 viewlets.add(SymRef.get((SymRef) i.next()));
H A DViewletPopupMenu.java46 // Viewlet single = (Viewlet) viewlets.iterator().next();
62 currentAction = (Action) actionsIterator.next();
/barrelfish-2018-10-04/lib/lwip2/src/core/ipv6/
H A Dmld6.c98 struct mld_group *next = group->next; /* avoid use-after-free below */ local
108 /* move to "next" */
109 group = next;
126 group = group->next;
147 group = group->next;
174 group->next = netif_mld6_data(ifp);
195 netif_set_client_data(netif, LWIP_NETIF_CLIENT_DATA_INDEX_MLD6, group->next);
199 for (tmpGroup = netif_mld6_data(netif); tmpGroup != NULL; tmpGroup = tmpGroup->next) {
200 if (tmpGroup->next
[all...]
/barrelfish-2018-10-04/usr/drivers/usb/usb_manager/
H A Dusb_controller.c108 hc->next = NULL;
112 hc->next = host_controllers;
113 host_controllers->prev_next = &(hc->next);
141 hc = hc->next;
/barrelfish-2018-10-04/include/
H A Darranet.h15 struct packet *next; member in struct:packet
/barrelfish-2018-10-04/include/barrelfish/
H A Dnotificator.h13 struct notificator *prev, *next; member in struct:notificator
/barrelfish-2018-10-04/include/lwip/lwip/
H A Dip_frag.h55 struct ip_reassdata *next; member in struct:ip_reassdata
/barrelfish-2018-10-04/lib/devif/
H A Dregion.h20 struct buffer* next; member in struct:buffer

Completed in 116 milliseconds

1234567891011>>