| /sys/kern/ |
| D | bufcache.c | 97 BufCacheLookup(Disk *disk, uint64_t diskOffset, BufCacheEntry **entry) in BufCacheLookup() argument 110 *entry = e; in BufCacheLookup() 115 *entry = NULL; in BufCacheLookup() 133 BufCacheAlloc(Disk *disk, uint64_t diskOffset, BufCacheEntry **entry) in BufCacheAlloc() argument 160 *entry = e; in BufCacheAlloc() 178 BufCache_Alloc(Disk *disk, uint64_t diskOffset, BufCacheEntry **entry) in BufCache_Alloc() argument 184 status = BufCacheLookup(disk, diskOffset, entry); in BufCache_Alloc() 185 if (*entry == NULL) { in BufCache_Alloc() 186 status = BufCacheAlloc(disk, diskOffset, entry); in BufCache_Alloc() 205 BufCache_Release(BufCacheEntry *entry) in BufCache_Release() argument [all …]
|
| D | palloc.c | 174 uintptr_t entry = (uintptr_t)DMVA2PA(pg) / PGSIZE; in PAllocGetInfo() local 175 return &pageInfoTable[entry]; in PAllocGetInfo()
|
| /sys/fs/o2fs/ |
| D | o2fs.c | 46 BufCacheEntry *entry; in O2FS_Mount() local 54 status = BufCache_Read(disk, 0, &entry); in O2FS_Mount() 61 sb = entry->buffer; in O2FS_Mount() 64 BufCache_Release(entry); in O2FS_Mount() 70 BufCache_Release(entry); in O2FS_Mount() 85 BufCache_Release(entry); in O2FS_Mount() 95 fs->fsptr = entry; in O2FS_Mount() 109 BufCache_Release(entry); in O2FS_Mount() 215 BufCacheEntry *entry; in O2FSLoadVNode() local 217 status = BufCache_Read(fs->disk, objid->offset, &entry); in O2FSLoadVNode() [all …]
|
| /lib/liblwip/src/core/ |
| D | dns.c | 317 struct local_hostlist_entry *entry; in dns_init_local() local 326 entry = (struct local_hostlist_entry *)memp_malloc(MEMP_LOCALHOSTLIST); in dns_init_local() 327 LWIP_ASSERT("mem-error in dns_init_local", entry != NULL); in dns_init_local() 328 if (entry != NULL) { in dns_init_local() 329 entry->name = (char*)entry + sizeof(struct local_hostlist_entry); in dns_init_local() 330 MEMCPY((char*)entry->name, init_entry->name, namelen); in dns_init_local() 331 ((char*)entry->name)[namelen] = 0; in dns_init_local() 332 entry->addr = init_entry->addr; in dns_init_local() 333 entry->next = local_hostlist_dynamic; in dns_init_local() 334 local_hostlist_dynamic = entry; in dns_init_local() [all …]
|
| /sys/amd64/ |
| D | pmap.c | 225 PageEntry *entry; in PMap_Translate() local 250 entry = &table->entries[k]; in PMap_Translate() 251 return (*entry & ~(LARGE_PGMASK | PTE_NX)) + (va & LARGE_PGMASK); in PMap_Translate() 260 entry = &table->entries[l]; in PMap_Translate() 262 return (*entry & ~(PGMASK | PTE_NX)) + (va & PGMASK); in PMap_Translate() 278 PMapLookupEntry(AS *space, uint64_t va, PageEntry **entry, int size) in PMapLookupEntry() argument 289 *entry = NULL; in PMapLookupEntry() 305 *entry = &table->entries[j]; in PMapLookupEntry() 321 *entry = &table->entries[k]; in PMapLookupEntry() 336 *entry = &table->entries[l]; in PMapLookupEntry() [all …]
|
| D | xmem.c | 66 PageEntry *entry; in XMem_Destroy() local 69 PMap_SystemLookup(xmem->base + off, &entry, PGSIZE); in XMem_Destroy()
|
| /sys/include/ |
| D | bufcache.h | 17 int BufCache_Alloc(Disk *disk, uint64_t diskOffset, BufCacheEntry **entry); 18 void BufCache_Release(BufCacheEntry *entry); 19 int BufCache_Read(Disk *disk, uint64_t diskOffset, BufCacheEntry **entry); 20 int BufCache_Write(BufCacheEntry *entry);
|
| /sbin/newfs_o2fs/ |
| D | newfs_o2fs.c | 175 int entry = 0; in AddDirectory() local 181 memset(&entries[entry], 0, sizeof(BDirEntry)); in AddDirectory() 186 strncpy((char *)entries[entry].name, tokenString, MAXNAMELEN); in AddDirectory() 190 memcpy(&entries[entry].objId, fobj, sizeof(ObjID)); in AddDirectory() 195 strncpy((char *)entries[entry].name, tokenString, MAXNAMELEN); in AddDirectory() 197 memcpy(&entries[entry].objId, dobj, sizeof(ObjID)); in AddDirectory() 210 memcpy(entries[entry].magic, BDIR_MAGIC, 8); in AddDirectory() 212 entries[entry].flags = 0; in AddDirectory() 213 entries[entry].ctime = (uint64_t)time(NULL); in AddDirectory() 214 entries[entry].mtime = (uint64_t)time(NULL); in AddDirectory() [all …]
|
| /lib/libc/amd64/ |
| D | entry.S | 3 # Program entry point
|
| /lib/libc/posix/ |
| D | pthread.c | 27 void *(*entry)(void *); member 68 thr->entry = NULL; in __pthread_init() 102 thr->result = (thr->entry)(thr->arg); in pthreadCreateHelper() 121 thr->entry = start_routine; in pthread_create()
|
| /lib/libc/ |
| D | SConscript | 28 # "amd64/entry.S",
|
| /sys/amd64/include/ |
| D | pmap.h | 75 void PMap_SystemLookup(uint64_t va, PageEntry **entry, int size);
|
| /lib/liblwip/doc/ |
| D | contrib.txt | 48 …If you correct an existing bug then attach the patch to the bug rather than creating a new entry i…
|
| /lib/liblwip/ |
| D | UPGRADING | 133 * Fixed ARP input processing: only add a new entry if a request was directed as us
|
| D | CHANGELOG | 292 sending an ARP request when an ARP entry is used in the last minute before 807 * etharp.c/.h: Fixed ARP input processing: only add a new entry if a 1974 * etharp.c: Introduced fast one-entry-cache to speed up ARP lookup when sending 2320 to cache ARP table indices with each pcb instead of single-entry cache for 2869 * etharp.c: Make sure the first pbuf queued on an ARP entry
|
| /docs/ |
| D | Doxyfile | 764 # will remove the Files entry from the Quick Index and from the Folder Tree View 771 # page. This will remove the Namespaces entry from the Quick Index and from the
|