Searched refs:next (Results 1 - 25 of 77) sorted by last modified time

1234

/system/vold/
H A DDevmapper.cpp108 nxt = n->next;
239 tgt->next = cryptParams - buffer;
H A Dcryptfs.c431 tgt->next = crypt_params - buffer;
/system/core/adb/
H A Dadb.c613 .next = &listener_list,
669 if (l->next) {
670 l->next->prev = l->prev;
671 l->prev->next = l->next;
672 l->next = l->prev = l;
729 for (l = listener_list.next; l != &listener_list; l = l->next) {
748 for(l = listener_list.next; l != &listener_list; l = l->next){
[all...]
H A Dadb.h61 apacket *next; member in struct:apacket
78 asocket *next; member in struct:asocket
148 adisconnect* next; member in struct:adisconnect
173 atransport *next; member in struct:atransport
224 alistener *next; member in struct:alistener
H A Dadb_auth_host.c372 if (item->next == &key_list)
374 return item->next;
H A Dfdevent.c98 .next = &list_pending,
478 node->next = list;
480 node->prev->next = node;
486 node->prev->next = node->next;
487 node->next->prev = node->prev;
488 node->next = 0;
495 fdevent *node = list->next;
499 list->next = node->next;
[all...]
H A Dfdevent.h69 fdevent *next; member in struct:fdevent
H A Dfile_sync_client.c561 copyinfo *next; member in struct:copyinfo
586 ci->next = 0;
608 copyinfo *ci, *next; local
639 ci->next = dirlist;
656 ci->next = *filelist;
664 for(ci = dirlist; ci != 0; ci = next) {
665 next = ci->next;
677 copyinfo *ci, *next; local
702 for(ci = filelist; ci != 0; ci = ci->next) {
860 copyinfo *next = dirlist->next; local
875 copyinfo *ci, *next; local
[all...]
H A Djdwp_service.c106 JdwpProcess* next; member in struct:JdwpProcess
126 JdwpProcess* proc = _jdwp_list.next;
128 for ( ; proc != &_jdwp_list; proc = proc->next ) {
164 proc->prev->next = proc->next;
165 proc->next->prev = proc->prev;
206 proc->next = proc;
221 proc->next = &_jdwp_list;
222 proc->prev = proc->next->prev;
224 proc->prev->next
627 JdwpTracker* next; member in struct:JdwpTracker
[all...]
H A Dsockets.c49 .next = &local_socket_list,
58 .next = &local_socket_closing_list,
68 for (s = local_socket_list.next; s != &local_socket_list; s = s->next) {
82 s->next = list;
83 s->prev = s->next->prev;
84 s->prev->next = s;
85 s->next->prev = s;
102 if (s->prev && s->next)
104 s->prev->next
[all...]
H A Dsysdeps.h196 fdevent *next; member in struct:fdevent
H A Dsysdeps_win32.c1271 .next = &list_pending,
1282 EventHook next; member in struct:EventHookRec_
1302 _free_hooks = hook->next;
1308 hook->next = NULL;
1330 hook->next = _free_hooks;
1370 pnode = &node->next;
1392 node->next = *pnode;
1423 *pnode = node->next;
1655 for (hook = looper->hooks; hook; hook = hook->next) {
1671 for (hook = looper->hooks; hook; hook = hook->next)
[all...]
H A Dtransport.c31 .next = &transport_list,
86 adisconnect* dis = t->disconnects.next;
90 adisconnect* next = dis->next; local
92 dis = next;
389 device_tracker* next; member in struct:device_tracker
404 *pnode = node->next;
407 pnode = &node->next;
484 tracker->next = device_tracker_list;
502 device_tracker* next local
1039 atransport *t, *next; local
[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...]
H A Dusb_linux.c53 usb_handle *next; member in struct:usb_handle
82 .next = &handle_list,
90 for(usb = handle_list.next; usb != &handle_list; usb = usb->next){
108 for(usb = handle_list.next; usb != &handle_list; usb = usb->next){
199 // should have config descriptor next
547 h->next->prev = h->prev;
548 h->prev->next = h->next;
[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;
381 if ((handle->next != handle) && (handle->prev != handle)) {
382 handle->next
[all...]
/system/core/debuggerd/
H A Dtombstone.c355 map_info_t *next = NULL; local
359 next = map->next;
363 next = map;
369 map = map->next;
373 * Show "next" then "match" then "prev" so that the addresses appear in
376 if (next != NULL) {
377 _LOG(log, false, " %08x-%08x %s\n", next->start, next->end, next
[all...]
/system/core/fastboot/
H A Dengine.c88 Action *next; member in struct:Action
211 action_last->next = a;
606 for (a = action_list; a; a = a->next) {
/system/core/include/corkscrew/
H A Dmap_info.h31 struct map_info* next; member in struct:map_info
/system/core/include/cutils/
H A Dconfig_utils.h29 cnode *next; member in struct:cnode
H A Dlist.h28 struct listnode *next; member in struct:listnode
37 .next = &name, \
42 for (node = (list)->next; node != (list); node = node->next)
51 #define list_empty(list) ((list) == (list)->next)
52 #define list_head(list) ((list)->next)
/system/core/include/diskconfig/
H A Ddiskconfig.h100 struct write_list *next; member in struct:write_list
/system/core/init/
H A Dinit.c267 for (ei = svc->envvars; ei; ei = ei->next)
274 for (si = svc->sockets; si; si = si->next) {
353 char *next = tmp; local
359 while((bword = strsep(&next, " "))) {
521 node = cmd->clist.next;
H A Dinit.h52 struct socketinfo *next; member in struct:socketinfo
61 struct svcenvinfo *next; member in struct:svcenvinfo
H A Dinit_parser.c763 ei->next = svc->envvars;
790 si->next = svc->sockets;

Completed in 122 milliseconds

1234