Searched refs:Slab_Init (Results 1 – 8 of 8) sorted by relevance
| /sys/kern/ |
| D | vfs.c | 42 Slab_Init(&vfsSlab, "VFS Slab", sizeof(VFS), 16); in VFS_MountRoot() 43 Slab_Init(&vnodeSlab, "VNode Slab", sizeof(VNode), 16); in VFS_MountRoot()
|
| D | handle.c | 17 Slab_Init(&handleSlab, "Handle Objects", sizeof(Handle), 16); in Handle_GlobalInit()
|
| D | ktimer.c | 30 Slab_Init(&timerSlab, "KTimerEvent Slab", sizeof(KTimerEvent), 16); in KTimer_Init()
|
| D | thread.c | 57 Slab_Init(&processSlab, "Process Objects", sizeof(Process), 16); in Thread_Init() 58 Slab_Init(&threadSlab, "Thread Objects", sizeof(Thread), 16); in Thread_Init()
|
| D | slab.c | 31 Slab_Init(Slab *slab, const char *name, uintptr_t objsz, uintptr_t align) in Slab_Init() function
|
| D | bufcache.c | 62 Slab_Init(&cacheEntrySlab, "BufCacheEntry Slab", sizeof(BufCacheEntry), 16); in BufCache_Init()
|
| /sys/include/ |
| D | kmem.h | 61 void Slab_Init(Slab *slab, const char *name, uintptr_t objsz, uintptr_t align);
|
| /sys/dev/ |
| D | e1000.c | 449 Slab_Init(&rxPool, "E1000 RX Pool", 4096, 4096); in E1000_Configure() 450 Slab_Init(&rxDescPool, "E1000 RX Descriptors", E1000_RX_QLEN*sizeof(E1000RXDesc), 16); in E1000_Configure() 451 Slab_Init(&txDescPool, "E1000 TX Descriptors", E1000_TX_QLEN*sizeof(E1000TXDesc), 16); in E1000_Configure()
|