Searched defs:next (Results 1 - 25 of 60) sorted by relevance

123

/system/extras/fatblock/
H A Dfdpool.h22 struct pooled_fd *next; member in struct:pooled_fd
H A Dfatblock.h40 struct extent *next; member in struct:extent
H A Dfdpool.c31 .next = &fdpool_head
38 struct pooled_fd *next = prev->next; local
42 prev->next = node;
44 node->next = next;
45 next->prev = node;
53 struct pooled_fd *next = node->next; local
56 assert(next);
[all...]
/system/core/include/cutils/
H A Dconfig_utils.h29 cnode *next; member in struct:cnode
H A Dlist.h24 struct listnode *next; member in struct:listnode
33 .next = &name, \
38 for (node = (list)->next; node != (list); node = node->next)
47 #define list_empty(list) ((list) == (list)->next)
48 #define list_head(list) ((list)->next)
/system/core/sh/
H A Dalias.h40 struct alias *next; member in struct:alias
H A Dexpand.h38 struct strlist *next; member in struct:strlist
H A Dredir.c80 struct redirtab *next; member in struct:redirtab
126 sv->next = redirlist;
129 for (n = redir ; n ; n = n->nfile.next) {
316 redirlist = rp->next;
357 for (rp = redirlist ; rp ; rp = rp->next) {
H A Dvar.h53 struct var *next; /* next entry in hash list */ member in struct:var
64 struct localvar *next; /* next local variable in list */ member in struct:localvar
/system/core/adb/
H A Dfdevent.h69 fdevent *next; member in struct:fdevent
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 Dutility.h33 struct mapinfo *next; member in struct:mapinfo
/system/core/nexus/
H A DSupplicantStatus.cpp52 char *next = data; local
54 while((line = strsep(&next, "\n"))) {
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/libzipfile/
H A Dprivate.h18 struct Zipentry* next; member in struct:Zipentry
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/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/extras/ext4_utils/
H A Dbacked_block.c28 struct data_block *next; member in struct:data_block
48 new_db->next = data_blocks;
55 there if the next block number is higher */
62 for (; db->next && db->next->block < new_db->block; db = db->next)
65 if (db->next == NULL) {
66 db->next = new_db;
68 new_db->next = db->next;
156 struct data_block *next = db->next; local
[all...]
/system/core/debuggerd/arm/
H A Dmachine.c87 mapinfo *next = NULL; local
92 next = map->next;
96 next = map;
102 map = map->next;
106 * Show "next" then "match" then "prev" so that the addresses appear in
109 if (next != NULL) {
110 _LOG(tfd, false, "%08x-%08x %s\n", next->start, next->end, next
[all...]
/system/core/libcutils/
H A Dconfig_utils.c44 for(node = root->first_child; node; node = node->next)
58 root->last_child->next = node;
119 char next; member in struct:__anon367
130 if(cs->next != 0) {
131 c = cs->next;
132 cs->next = 0;
212 cs->next = *data;
297 cs.next = 0;
326 cur = cur->next;
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 Dsched_policy.c142 char *next = lineBuf; local
148 if (!strsep(&next, ":")) {
152 if (!(subsys = strsep(&next, ":"))) {
161 if (!(grp = strsep(&next, ":"))) {
/system/netd/
H A Dlogwrapper.c192 char *next = buffer; local
209 while ((tmp = strsep(&next, " "))) {
/system/core/include/diskconfig/
H A Ddiskconfig.h99 struct write_list *next; member in struct:write_list
/system/core/init/
H A Dinit.h52 struct socketinfo *next; member in struct:socketinfo
61 struct svcenvinfo *next; member in struct:svcenvinfo

Completed in 8515 milliseconds

123