Searched refs:next (Results 1 - 25 of 78) sorted by relevance

1234

/system/core/sh/
H A Dalias.h40 struct alias *next; member in struct:alias
H A Dnodes.h88 union node *next; member in struct:nclist
96 union node *next; member in struct:narg
104 union node *next; member in struct:nfile
113 union node *next; member in struct:ndup
122 union node *next; member in struct:nhere
153 struct nodelist *next; member in struct:nodelist
H A Dnodes.c162 calcsize(n->nclist.next);
168 calcsize(n->narg.next);
176 calcsize(n->nfile.next);
181 calcsize(n->ndup.next);
186 calcsize(n->nhere.next);
203 lp = lp->next;
260 new->nclist.next = copynode(n->nclist.next);
266 new->narg.next = copynode(n->narg.next);
[all...]
H A Dalias.c70 for (ap = *app; ap; ap = ap->next) {
85 * alias value off the input before processing the next alias, we
95 * resulting token(s) is next checked for further alias sub. The
111 ap->next = *app;
123 for (ap = *app; ap; app = &(ap->next), ap = ap->next) {
136 *app = ap->next;
171 ap = ap->next;
183 for (; ap; ap = ap->next) {
219 for (ap = atab[i]; ap; ap = ap->next) {
[all...]
H A Dexpand.h38 struct strlist *next; member in struct:strlist
H A Dexpand.c81 struct ifsregion *next; /* next region in list */ member in struct:ifsregion
141 ifsfirst.next = NULL;
164 exparg.lastp = &sp->next;
224 argbackq = argbackq->next;
309 while (ifsfirst.next != NULL) {
312 ifsp = ifsfirst.next->next;
313 ckfree(ifsfirst.next);
314 ifsfirst.next
[all...]
H A Dnodes.c.pat101 lp = lp->next;
131 lp = lp->next;
132 lpp = &(*lpp)->next;
/system/core/libcutils/
H A Ddir_hash.c119 struct list *next; member in struct:list
153 struct list *next; local
154 for (f = list; f != NULL; f = next) {
155 next = f->next;
168 node->next = list;
174 for (f = list; f != NULL; f = f->next) {
183 struct list *next; local
184 for (f = list; f != NULL; f = f->next) {
185 next
211 struct list *next; local
237 struct list *next; local
249 struct list *next; local
287 struct list *next; local
305 struct list *next; local
324 struct list *next; local
[all...]
H A Dhashmap.c31 Entry* next; member in struct:Entry
117 Entry* next = entry->next; local
119 entry->next = newBuckets[index];
121 entry = next;
145 Entry* next = entry->next; local
147 entry = next;
174 entry->next = NULL;
216 // Move to next entr
[all...]
/system/core/nexus/
H A DDhcpListener.cpp50 char *next = buffer; local
55 if (!(tmp = strsep(&next, ":"))) {
64 char *next = buffer + 9; local
67 if (!inet_aton(strsep(&next, ":"), &ipaddr)) {
70 if (!inet_aton(strsep(&next, ":"), &netmask)) {
73 if (!inet_aton(strsep(&next, ":"), &broadcast)) {
76 if (!inet_aton(strsep(&next, ":"), &gateway)) {
79 if (!inet_aton(strsep(&next, ":"), &dns1)) {
82 if (!inet_aton(strsep(&next, ":"), &dns2)) {
89 char *next local
[all...]
/system/core/adb/
H A Dshlist.c13 listPtr->next = listPtr;
21 for(item=head->next;( item != head );item=item->next)
44 if( head->next != head )
45 return( head->next );
54 for(i=0,item=head->next;( (i < num) && (item != head) );i++,item=item->next);
64 if( item->next != head )
65 return( item->next );
85 (item->prev)->next
[all...]
H A Djdwp_service.c105 JdwpProcess* next; member in struct:JdwpProcess
125 JdwpProcess* proc = _jdwp_list.next;
127 for ( ; proc != &_jdwp_list; proc = proc->next ) {
163 proc->prev->next = proc->next;
164 proc->next->prev = proc->prev;
205 proc->next = proc;
220 proc->next = &_jdwp_list;
221 proc->prev = proc->next->prev;
223 proc->prev->next
601 JdwpTracker* next; member in struct:JdwpTracker
[all...]
H A Dtransport.c31 .next = &transport_list,
80 adisconnect* dis = t->disconnects.next;
84 adisconnect* next = dis->next; local
86 dis = next;
364 device_tracker* next; member in struct:device_tracker
379 *pnode = node->next;
382 pnode = &node->next;
459 tracker->next = device_tracker_list;
477 device_tracker* next local
[all...]
H A Dusb_windows.c38 usb_handle *next; member in struct:usb_handle
62 .next = &handle_list,
121 for(usb = handle_list.next; usb != &handle_list; usb = usb->next) {
158 handle->next = &handle_list;
160 handle->prev->next = handle;
161 handle->next->prev = handle;
197 ret->next = ret;
379 if ((handle->next != handle) && (handle->prev != handle)) {
380 handle->next
[all...]
H A Dusb_libusb.c46 usb_handle *next; member in struct:usb_handle
64 .next = &handle_list,
213 h->next->prev = h->prev;
214 h->prev->next = h->next;
216 h->next = NULL;
237 h->next->prev = h->prev;
238 h->prev->next = h->next;
240 h->next
[all...]
/system/wlan/ti/lib/
H A Dshlist.c13 listPtr->next = listPtr;
21 for(item=head->next;( item != head );item=item->next)
44 if( head->next != head )
45 return( head->next );
54 for(i=0,item=head->next;( (i < num) && (item != head) );i++,item=item->next);
64 if( item->next != head )
65 return( item->next );
85 (item->prev)->next
[all...]
/system/extras/showslab/
H A Dshowslab.c21 struct slab_info *next; member in struct:slab_info
141 prev->next = p;
149 p->next = NULL;
163 struct slab_info *temp = list->next;
176 p->next = a;
178 a = a->next;
180 p->next = b;
182 b = b->next;
186 p->next = (a == NULL) ? b : a;
187 return list.next;
[all...]
/system/core/toolbox/
H A Dreadtty.c29 char *next; local
32 next = strchr(map[i].chars, current);
33 if(next && next[1])
34 return next[1];
44 char *next; local
47 next = strchr(map[i].chars+1, current);
48 if(next && next[-1])
49 return next[
[all...]
/system/core/init/
H A Dinit.h46 struct listnode *next; member in struct:listnode
55 .next = &name, \
60 for (node = (list)->next; node != (list); node = node->next)
66 #define list_empty(list) ((list) == (list)->next)
67 #define list_head(list) ((list)->next)
96 struct socketinfo *next; member in struct:socketinfo
105 struct svcenvinfo *next; member in struct:svcenvinfo
H A Dutil.c194 node->next = node;
200 item->next = head;
202 head->prev->next = item;
208 item->next->prev = item->prev;
209 item->prev->next = item->next;
/system/core/libdiskconfig/
H A Dwrite_lst.c53 item->next = (*lst);
63 temp_wr = lst->next;
72 for(; lst; lst = lst->next) {
/system/core/libzipfile/
H A Dzipfile.c35 Zipentry* next = entry->next; local
37 entry = next;
51 entry = entry->next;
143 entry = entry->next;
156 entry = entry->next;
/system/vold/
H A Dmain.cpp180 char *next = line; local
189 if (!(type = strsep(&next, " \t"))) {
193 if (!(label = strsep(&next, " \t"))) {
197 if (!(mount_point = strsep(&next, " \t"))) {
206 if (!(part = strsep(&next, " \t"))) {
221 while((sysfs_path = strsep(&next, " \t"))) {
/system/core/debuggerd/
H A Dutility.h31 struct mapinfo *next; member in struct:mapinfo
/system/core/include/cutils/
H A Dconfig_utils.h29 cnode *next; member in struct:cnode

Completed in 3010 milliseconds

1234