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

123

/bionic/libc/stdio/
H A Dglue.h44 struct glue *next; member in struct:glue
/bionic/libc/bionic/
H A D__cxa_thread_atexit_impl.cpp27 thread_local_dtor* next; member in class:thread_local_dtor
43 dtor->next = thread->thread_local_dtors;
55 thread->thread_local_dtors = current->next;
H A Dpthread_atfork.cpp36 atfork_t* next; member in struct:atfork_t
52 for (atfork_t* it = first_; it != nullptr; it = it->next) {
65 entry->next = nullptr;
68 entry->prev->next = entry;
82 it = it->next;
85 it = it->next;
93 entry->prev->next = entry->next;
95 first_ = entry->next;
98 if (entry->next !
[all...]
H A Ddirent.cpp141 dirent* next = __readdir_locked(d); local
142 if (errno != 0 && next == NULL) {
146 if (next != NULL) {
147 memcpy(entry, next, next->d_reclen);
H A Dnet_if.cpp77 if_list* next; member in struct:if_list
82 next = *list;
89 list = it->next;
130 for (if_list* it = list; it != nullptr; it = it->next) {
138 for (if_list* it = list; it != nullptr; it = it->next) {
H A Dpthread_internal.h65 class pthread_internal_t* next; member in class:pthread_internal_t
H A Dspawn.cpp48 __posix_spawn_file_action* next; member in struct:__posix_spawn_file_action
80 for (__posix_spawn_file_action* action = head; action != nullptr; action = action->next) {
281 a = a->next;
301 action->next = nullptr;
320 (*actions)->last->next = action;
/bionic/libc/upstream-freebsd/lib/libc/stdlib/
H A Dquick_exit.c38 struct quick_exit_handler *next; member in struct:quick_exit_handler
62 h->next = handlers;
77 for (h = handlers; NULL != h; h = h->next)
/bionic/libc/stdlib/
H A Datexit.c45 struct atexit *next; /* next in list */ member in struct:atexit
46 int ind; /* next index in this table */
113 p->next = __atexit;
147 for (p = __atexit; p != NULL; p = p->next) {
181 p = p->next;
/bionic/libc/upstream-netbsd/lib/libc/gen/
H A Dpopen.c68 struct pid *next; member in struct:pid
131 for (old = pidlist; old; old = old->next)
178 cur->next = pidlist;
202 for (last = NULL, cur = pidlist; cur; last = cur, cur = cur->next)
214 pidlist = cur->next;
216 last->next = cur->next;
/bionic/linker/
H A Dlinker_block_allocator.cpp43 LinkerBlockAllocatorPage* next; member in struct:LinkerBlockAllocatorPage
108 for (LinkerBlockAllocatorPage* page = page_list_; page != nullptr; page = page->next) {
134 page->next = page_list_;
146 if (block >= (page_ptr + sizeof(page->next)) && block < (page_ptr + PAGE_SIZE)) {
150 page = page->next;
H A Dlinker_allocator.h73 small_object_block_record* next; member in struct:small_object_block_record
H A Dlinker_reloc_iterators.h54 rel_t* next() { function in class:plain_reloc_iterator
88 rel_t* next() { function in class:packed_reloc_iterator
H A Dlinked_list.h35 LinkedListEntry<T>* next; member in struct:LinkedListEntry
53 entry_ = entry_->next;
95 new_entry->next = head_;
105 new_entry->next = nullptr;
110 tail_->next = new_entry;
122 head_ = entry->next;
143 head_ = head_->next;
164 for (LinkedListEntry<T>* e = head_; e != nullptr; e = e->next) {
176 LinkedListEntry<T>* next = e->next; local
[all...]
/bionic/libc/kernel/uapi/linux/
H A Dromfs_fs.h14 *** Any manual change here will be lost the next time this script will
41 __be32 next; member in struct:romfs_inode
H A Dvirtio_ring.h14 *** Any manual change here will be lost the next time this script will
35 __virtio16 next; member in struct:vring_desc
H A Dfutex.h14 *** Any manual change here will be lost the next time this script will
52 struct robust_list __user * next; member in struct:robust_list
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Dromfs_fs.h14 *** Any manual change here will be lost the next time this script will
41 __be32 next; member in struct:romfs_inode
H A Dvirtio_ring.h14 *** Any manual change here will be lost the next time this script will
35 __virtio16 next; member in struct:vring_desc
H A Dfutex.h14 *** Any manual change here will be lost the next time this script will
52 struct robust_list __user * next; member in struct:robust_list
/bionic/tests/
H A Dsearch_test.cpp141 q_node* next; member in struct:q_node
159 for (q_node* q = &zero; q != NULL; q = q->next) {
175 ASSERT_EQ(2, head->next->i);
176 ASSERT_EQ(nullptr, head->next->next);
180 ASSERT_EQ(nullptr, head->next);
186 zero.next = &zero;
193 ASSERT_EQ(1, head->next->i);
194 ASSERT_EQ(2, head->next->next
[all...]
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/
H A Dromfs_fs.h14 *** Any manual change here will be lost the next time this script will
41 __be32 next; member in struct:romfs_inode
H A Dvirtio_ring.h14 *** Any manual change here will be lost the next time this script will
35 __virtio16 next; member in struct:vring_desc
H A Dfutex.h14 *** Any manual change here will be lost the next time this script will
52 struct robust_list __user * next; member in struct:robust_list
/bionic/libc/system_properties/
H A Dcontexts_split.cpp44 ContextListNode(ContextListNode* next, const char* context, const char* filename) argument
45 : ContextNode(strdup(context), filename), next(next) {
52 ContextListNode* next; member in class:ContextListNode
56 PrefixNode(struct PrefixNode* next, const char* prefix, ContextListNode* context) argument
57 : prefix(strdup(prefix)), prefix_len(strlen(prefix)), context(context), next(next) {
65 PrefixNode* next; member in struct:PrefixNode
83 next_list = &(*next_list)->next;
92 list = list->next;
[all...]

Completed in 286 milliseconds

123