Searched refs:next (Results 1 - 25 of 74) sorted by path

123

/system/core/adb/
H A Dadb.c668 .next = &listener_list,
724 if (l->next) {
725 l->next->prev = l->prev;
726 l->prev->next = l->next;
727 l->next = l->prev = l;
816 for (l = listener_list.next; l != &listener_list; l = l->next) {
837 for (l = listener_list.next; l != &listener_list; l = l->next) {
[all...]
H A Dadb.h62 apacket *next; member in struct:apacket
79 asocket *next; member in struct:asocket
152 adisconnect* next; member in struct:adisconnect
177 atransport *next; member in struct:atransport
228 alistener *next; member in struct:alistener
H A Dadb_auth_host.c391 if (item->next == &key_list)
393 return item->next;
H A Dfdevent.c89 .next = &list_pending,
469 node->next = list;
471 node->prev->next = node;
477 node->prev->next = node->next;
478 node->next->prev = node->prev;
479 node->next = 0;
486 fdevent *node = list->next;
490 list->next = node->next;
[all...]
H A Dfdevent.h69 fdevent *next; member in struct:fdevent
H A Dfile_sync_client.c569 copyinfo *next; member in struct:copyinfo
594 ci->next = 0;
616 copyinfo *ci, *next; local
647 ci->next = dirlist;
664 ci->next = *filelist;
675 for(ci = dirlist; ci != 0; ci = next) {
676 next = ci->next;
688 copyinfo *ci, *next; local
713 for(ci = filelist; ci != 0; ci = ci->next) {
872 copyinfo *next = dirlist->next; local
900 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.c53 .next = &local_socket_list,
62 .next = &local_socket_closing_list,
75 for (s = local_socket_list.next; s != &local_socket_list; s = s->next) {
91 s->next = list;
92 s->prev = s->next->prev;
93 s->prev->next = s;
94 s->next->prev = s;
116 if (s->prev && s->next)
118 s->prev->next
[all...]
H A Dsysdeps.h199 fdevent *next; member in struct:fdevent
H A Dsysdeps_win32.c1279 .next = &list_pending,
1290 EventHook next; member in struct:EventHookRec_
1310 _free_hooks = hook->next;
1316 hook->next = NULL;
1338 hook->next = _free_hooks;
1378 pnode = &node->next;
1400 node->next = *pnode;
1431 *pnode = node->next;
1663 for (hook = looper->hooks; hook; hook = hook->next) {
1679 for (hook = looper->hooks; hook; hook = hook->next)
[all...]
H A Dtransport.c31 .next = &transport_list,
36 .next = &pending_list,
91 adisconnect* dis = t->disconnects.next;
95 adisconnect* next = dis->next; local
97 dis = next;
394 device_tracker* next; member in struct:device_tracker
409 *pnode = node->next;
412 pnode = &node->next;
489 tracker->next
507 device_tracker* next = tracker->next; local
1077 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.c40 usb_handle *next; member in struct:usb_handle
64 .next = &handle_list,
123 for(usb = handle_list.next; usb != &handle_list; usb = usb->next) {
160 handle->next = &handle_list;
162 handle->prev->next = handle;
163 handle->next->prev = handle;
199 ret->next = ret;
383 if ((handle->next != handle) && (handle->prev != handle)) {
384 handle->next
[all...]
/system/core/fastboot/
H A Dengine.c68 Action *next; member in struct:Action
155 action_last->next = a;
379 for (a = action_list; a; a = a->next) {
/system/core/fastbootd/commands/
H A Dpartitions.c653 for (i = 0, current = node->first_child; current; current = current->next, ++i) {
689 for (i = 0, current = node->first_child; current; current = current->next, ++i)
H A Dvirtual_partitions.c41 for (current = partitions; current != NULL; current = current->next) {
59 new->next = partitions;
H A Dvirtual_partitions.h38 struct virtual_partition *next; member in struct:virtual_partition
/system/core/fastbootd/
H A Dprotocol.c47 struct fastboot_cmd *next; member in struct:fastboot_cmd
54 struct fastboot_var *next; member in struct:fastboot_var
70 cmd->next = cmdlist;
84 var->next = varlist;
93 for (var = varlist; var; var = var->next) {
157 for (cmd = cmdlist; cmd; cmd = cmd->next) {
/system/core/fs_mgr/
H A Dfs_mgr_verity.c322 // set next target boundary
325 tgt->next = verity_params - buffer;
/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)
48 for (node = (list)->next, n = node->next; \
50 node = n, n = node->next)
54 node->next = node;
60 item->next = head;
62 head->prev->next
[all...]
/system/core/include/diskconfig/
H A Ddiskconfig.h100 struct write_list *next; member in struct:write_list
/system/core/include/utils/
H A DBasicHashtable.h68 ssize_t next(ssize_t index) const;
131 // Returns the increment to add to a bucket index to seek to the next bucket
138 // Returns the index of the next bucket that is in the collision chain
255 /* Returns the index of the next entry in the hashtable given the index of a previous entry.
258 * If the given index is not -1, then returns the index of the next entry in the hashtable,
264 inline ssize_t next(ssize_t index) const { function in class:android::BasicHashtable
265 return BasicHashtableImpl::next(index);
270 * otherwise returns the index of the next matching entry.
302 * to continue iterating over the hashtable using next() or find().
H A DLruCache.h58 bool next() { function in class:android::LruCache::Iterator
59 mIndex = mCache.mTable->next(mIndex);

Completed in 181 milliseconds

123