Searched refs:entry (Results 1 - 20 of 20) sorted by relevance

/bionic/libc/bionic/
H A Dmalloc_debug_leak.c89 HashEntry* entry; member in struct:AllocationEntry
113 HashEntry* entry = table->slots[slot]; local
114 while (entry != NULL) {
115 //debug_log("backtrace: %p, entry: %p entry->backtrace: %p\n",
116 // backtrace, entry, (entry != NULL) ? entry->backtrace : NULL);
118 * See if the entry matches exactly. We compare the "size" field,
121 if (entry
145 HashEntry* entry = find_entry(&gHashTable, slot, backtrace, numEntries, size); local
176 is_valid_entry(HashEntry* entry) argument
196 remove_entry(HashEntry* entry) argument
547 HashEntry* entry = header->entry; local
[all...]
H A Dmalloc_debug_common.c37 * (to fill allocation entry hash table, for example). So, all relevant
110 * "*infoSize" is set to the size of a single entry
141 HashEntry* entry = gHashTable.slots[i]; local
142 while (entry != NULL) {
143 list[index] = entry;
145 ((entry->size & ~SIZE_FLAG_MASK) * entry->allocations);
147 entry = entry->next;
169 HashEntry* entry local
[all...]
H A Dsystem_properties.c110 unsigned entry = *toc++; local
111 if(TOC_NAME_LEN(entry) != len) continue;
113 pi = TOC_TO_INFO(pa, entry);
/bionic/libc/kernel/common/linux/
H A Dworkqueue.h23 struct list_head entry; member in struct:work_struct
34 #define __WORK_INITIALIZER(n, f, d) { .entry = { &(n).entry, &(n).entry }, .func = (f), .data = (d), .timer = TIMER_INITIALIZER(NULL, 0, 0), }
40 #define INIT_WORK(_work, _func, _data) do { INIT_LIST_HEAD(&(_work)->entry); (_work)->pending = 0; PREPARE_WORK((_work), (_func), (_data)); init_timer(&(_work)->timer); } while (0)
H A Dtimer.h22 struct list_head entry; member in struct:timer_list
H A Dsysdev.h38 struct list_head entry; member in struct:sysdev_driver
H A Dblkdev.h451 #define blkdev_entry_to_request(entry) list_entry((entry), struct request, queuelist)
H A Dvideodev2.h1004 struct v4l2_enc_idx_entry entry[V4L2_ENC_IDX_ENTRIES]; member in struct:v4l2_enc_idx
/bionic/libc/unistd/
H A Dopendir.c94 struct dirent* entry; local
112 entry = dir->_DIR_next;
115 if (((long)(void*)entry & 3) != 0)
118 if ( (unsigned)entry->d_reclen > sizeof(*entry) ||
119 entry->d_reclen <= offsetof(struct dirent, d_name) )
122 if ( (char*)entry + entry->d_reclen > (char*)dir->_DIR_buff + sizeof(dir->_DIR_buff) )
125 if ( !memchr( entry->d_name, 0, entry
142 struct dirent *entry = NULL; local
152 readdir_r(DIR* dir, struct dirent *entry, struct dirent **result) argument
[all...]
/bionic/libc/kernel/arch-x86/asm/
H A Ddesc_32.h55 #define write_ldt_entry(dt, entry, a, b) write_dt_entry(dt, entry, a, b)
56 #define write_gdt_entry(dt, entry, a, b) write_dt_entry(dt, entry, a, b)
57 #define write_idt_entry(dt, entry, a, b) write_dt_entry(dt, entry, a, b)
H A Dpgtable_32.h144 #define ptep_set_access_flags(vma, address, ptep, entry, dirty) ({ int __changed = !pte_same(*(ptep), entry); if (__changed && dirty) { (ptep)->pte_low = (entry).pte_low; pte_update_defer((vma)->vm_mm, (address), (ptep)); flush_tlb_page(vma, address); } __changed; })
/bionic/libc/arch-arm/bionic/
H A Dcrtbegin_so.S32 # A call to this function must be the first entry
/bionic/libc/kernel/arch-sh/asm/
H A Dmmu.h50 int entry; member in struct:pmb_entry
/bionic/libthread_db/
H A Dlibthread_db.c193 struct dirent * entry; local
203 while ((entry = readdir(dir)) != NULL) {
204 if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0) {
207 handle.tid = atoi(entry->d_name);
/bionic/libc/include/
H A Ddirent.h67 extern int readdir_r(DIR* dirp, struct dirent *entry, struct dirent **result);
/bionic/libc/arch-sh/bionic/
H A Dcrtbegin_dynamic.S75 # the last entry shall be 0, and is defined in crtend.S
/bionic/libdl/arch-sh/
H A Dsobegin.S40 mov.l 0f, r8 /* first entry is invalid */
64 # the last entry shall be 0, and is defined in crtend.S
/bionic/linker/
H A Dlinker.h95 unsigned entry; member in struct:soinfo
H A Dlinker.c317 /* prev will never be NULL, because the first entry in solist is
1129 * for the ELF object. If the loading fails, we waste the entry, but
1143 si->entry = 0;
1872 // Set the DT_DEBUG entry to the addres of _r_debug for GDB
1966 of the DT_NEEDED entry itself, so that we can retrieve the
2194 si->entry = vecs[1];
2268 si->entry);
2269 return si->entry;
/bionic/libc/arch-x86/bionic/
H A Dcrtbegin_dynamic.S75 # the last entry shall be 0, and is defined in crtend.S

Completed in 494 milliseconds