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

12

/bionic/libc/stdio/
H A Dglue.h40 struct glue *next; member in struct:glue
/bionic/libc/bionic/
H A Dmalloc_debug_check_mapinfo.h35 struct mapinfo* next; member in struct:mapinfo
H A Dpthread_internal.h38 struct pthread_internal_t* next; member in struct:pthread_internal_t
H A Dmalloc_debug_common.h51 HashEntry* next; member in struct:HashEntry
H A Dmalloc_debug_leak.cpp119 entry = entry->next;
151 entry->next = gHashTable.slots[slot];
159 if (entry->next != NULL) {
160 entry->next->prev = entry;
181 e1 = e1->next;
191 HashEntry* next = entry->next; local
193 if (prev != NULL) entry->prev->next = next;
194 if (next !
[all...]
H A Dmalloc_debug_check.cpp90 hdr_t* next; member in struct:hdr_t
188 hdr->next = *head;
198 hdr->prev->next = hdr->next;
200 *head = hdr->next;
202 if (hdr->next) {
203 hdr->next->prev = hdr->prev;
H A Dpthread-timers.c95 thr_timer_t* next; /* next in free list */ member in struct:thr_timer
110 struct timespec volatile expires; /* next expiration time, or 0 */
139 t->timers[nn-1].next = &t->timers[nn];
154 t->free_timer = timer->next;
155 timer->next = NULL;
169 timer->next = t->free_timer;
390 /* return the relative time until the next expiration, or 0 if
470 /* compute next expiration time. note that if the
H A Dpthread_debug.c128 struct mapinfo *next; member in struct:mapinfo
155 mi->next = 0;
171 mi->next = milist;
186 mi = mi->next;
203 mi = mi->next;
384 struct MutexInfo* next; member in struct:MutexInfo
422 object->next = 0;
689 HashEntry* next; member in struct:HashEntry
735 HashEntry* next = entry->next; local
[all...]
/bionic/libc/kernel/common/linux/raid/
H A Dxor.h14 *** Any manual change here will be lost the next time this script will
25 struct xor_block_template *next; member in struct:xor_block_template
/bionic/libc/kernel/common/linux/
H A Dvmalloc.h14 *** Any manual change here will be lost the next time this script will
44 struct vm_struct *next; member in struct:vm_struct
H A Dnotifier.h14 *** Any manual change here will be lost the next time this script will
27 struct notifier_block *next; member in struct:notifier_block
H A Dfile.h14 *** Any manual change here will be lost the next time this script will
45 struct fdtable *next; member in struct:fdtable
H A Dfutex.h14 *** Any manual change here will be lost the next time this script will
35 struct robust_list __user *next; member in struct:robust_list
H A Dinterrupt.h14 *** Any manual change here will be lost the next time this script will
72 struct irqaction *next; member in struct:irqaction
111 struct tasklet_struct *next; member in struct:tasklet_struct
H A Dioport.h14 *** Any manual change here will be lost the next time this script will
34 struct resource_list *next; member in struct:resource_list
H A Dproc_fs.h14 *** Any manual change here will be lost the next time this script will
55 struct proc_dir_entry *next, *parent, *subdir; member in struct:proc_dir_entry
66 struct kcore_list *next; member in struct:kcore_list
H A Ddm-ioctl.h14 *** Any manual change here will be lost the next time this script will
50 uint32_t next; member in struct:dm_target_spec
62 uint32_t next; member in struct:dm_name_list
67 uint32_t next; member in struct:dm_target_versions
H A Dskbuff.h14 *** Any manual change here will be lost the next time this script will
52 struct sk_buff *next; member in struct:sk_buff_head
105 struct sk_buff *next; member in struct:sk_buff
H A Dfd.h14 *** Any manual change here will be lost the next time this script will
227 struct floppy_raw_cmd *next; member in struct:floppy_raw_cmd
/bionic/libc/stdlib/
H A Datexit.h34 struct atexit *next; /* next in list */ member in struct:atexit
35 int ind; /* next index in this table */
/bionic/libc/unistd/
H A Dpopen.c46 struct pid *next; member in struct:pid
89 for (pcur = pidlist; pcur; pcur = pcur->next)
124 cur->next = pidlist;
143 for (last = NULL, cur = pidlist; cur; last = cur, cur = cur->next)
158 pidlist = cur->next;
160 last->next = cur->next;
/bionic/linker/
H A Dlinker.h56 /* Returns the address of the next page after address 'x', unless 'x' is
117 soinfo *next; member in struct:soinfo
/bionic/libc/kernel/common/linux/mtd/
H A Dmtd.h14 *** Any manual change here will be lost the next time this script will
55 struct erase_info *next; member in struct:erase_info
/bionic/libc/netbsd/isc/
H A Deventlib_p.h91 struct evConn * next; member in struct:evConn
124 struct evFile * next; member in struct:evFile
145 struct evStream *prev, *next; member in struct:evStream
161 struct evWait * next; member in struct:evWait
168 struct evWaitList * next; member in struct:evWaitList
179 struct { struct evEvent_p *next; } free; member in struct:evEvent_p::__anon638::__anon644
/bionic/libc/upstream-netbsd/libc/regex/
H A Dregcomp.c109 const char *next; /* next character in RE */ local
182 #define PEEK() (*p->next)
183 #define PEEK2() (*(p->next+1))
184 #define MORE() (p->next < p->end)
185 #define MORE2() (p->next+1 < p->end)
190 #define NEXT() (p->next++)
191 #define NEXT2() (p->next += 2)
192 #define NEXTn(n) (p->next += (n))
193 #define GETNEXT() (*p->next
[all...]

Completed in 304 milliseconds

12