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

1234

/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/adb/
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 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_auth_host.c372 if (item->next == &key_list)
374 return item->next;
H A Dsysdeps.h196 fdevent *next; member in struct:fdevent
/system/core/libcorkscrew/
H A Dptrace.c106 for (map_info_t* mi = context->map_info_list; mi; mi = mi->next) {
128 for (map_info_t* mi = context->map_info_list; mi; mi = mi->next) {
/system/netd/
H A Dlogwrapper.c173 char *next = buffer; local
190 while ((tmp = strsep(&next, " "))) {
H A DBandwidthController.cpp172 char *next = buffer; local
202 while ((tmp = strsep(&next, " "))) {
/system/core/include/diskconfig/
H A Ddiskconfig.h100 struct write_list *next; member in struct:write_list
/system/extras/fatblock/
H A Dfs.c38 extent->next = fs->extents;
56 e = last ? last->next : fs->extents;
57 for (; e; e = e->next) {
/system/core/init/
H A Dparser.c30 for (si = svc->sockets; si; si = si->next) {
H A Dsignal_handler.c72 for (si = svc->sockets; si; si = si->next) {
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_parser.c763 ei->next = svc->envvars;
790 si->next = svc->sockets;
/system/core/run-as/
H A Dpackage.c306 * it will be caught in the next conditional.
436 /* find end of current line and start of next one */
438 const char* next = (end < buffer_end) ? end + 1 : buffer_end; local
493 p = next;
/system/vold/
H A DDevmapper.cpp108 nxt = n->next;
239 tgt->next = cryptParams - buffer;
/system/core/sdcard/
H A Dsdcard.c103 struct node *next; /* per-dir sibling list */ member in struct:node
181 node->next = parent->child;
190 node->parent->child = node->parent->child->next;
194 while (node2->next != node)
195 node2 = node2->next;
196 node2->next = node->next;
200 node->next = NULL;
398 for (node = node->child; node; node = node->next) {
/system/core/libusbhost/
H A Dusbhost.c471 struct usb_descriptor_header* next; local
474 next = (struct usb_descriptor_header*)iter->curr_desc;
475 iter->curr_desc += next->bLength;
476 return next;
/system/core/sh/
H A Djobs.c1138 * a background process until the next time she runs a real program
1271 for (lp = n->npipe.cmdlist ; lp ; lp = lp->next) {
1273 if (lp->next)
1321 for (np = n->ncase.cases; np; np = np->nclist.next) {
1382 for (; np; np = np->narg.next) {
1386 if (sep && np->narg.next)
/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/toolbox/
H A Dtop.c54 struct proc_info *next; member in struct:proc_info
201 free_procs = free_procs->next;
214 proc->next = free_procs;
/system/core/libzipfile/
H A Dcentraldir.c246 entry->next = file->entries;
/system/core/libdiskconfig/
H A Ddiskconfig.c98 for (partnode = root->first_child; partnode; partnode = partnode->next) {
/system/extras/librank/
H A Dlibrank.c40 struct library_info *next; member in struct:library_info
/system/core/libcutils/
H A Dmq.c311 * Frees current packet and moves to the next one. Returns true if there is
312 * a next packet or false if the queue is empty.
326 OutgoingPacket* next = current->nextPacket; local
327 peerProxy->currentPacket = next;
330 if (next == NULL) {
339 // TODO: Start writing next packet? It would reduce the number of
506 // Success. Queue up the next packet.
886 // This packet is complete. Get ready for the next one.
987 // Get ready for the next packet.

Completed in 275 milliseconds

1234