Home
last modified time | relevance | path

Searched refs:Slab_Init (Results 1 – 8 of 8) sorted by relevance

/sys/kern/
Dvfs.c42 Slab_Init(&vfsSlab, "VFS Slab", sizeof(VFS), 16); in VFS_MountRoot()
43 Slab_Init(&vnodeSlab, "VNode Slab", sizeof(VNode), 16); in VFS_MountRoot()
Dhandle.c17 Slab_Init(&handleSlab, "Handle Objects", sizeof(Handle), 16); in Handle_GlobalInit()
Dktimer.c30 Slab_Init(&timerSlab, "KTimerEvent Slab", sizeof(KTimerEvent), 16); in KTimer_Init()
Dthread.c57 Slab_Init(&processSlab, "Process Objects", sizeof(Process), 16); in Thread_Init()
58 Slab_Init(&threadSlab, "Thread Objects", sizeof(Thread), 16); in Thread_Init()
Dslab.c31 Slab_Init(Slab *slab, const char *name, uintptr_t objsz, uintptr_t align) in Slab_Init() function
Dbufcache.c62 Slab_Init(&cacheEntrySlab, "BufCacheEntry Slab", sizeof(BufCacheEntry), 16); in BufCache_Init()
/sys/include/
Dkmem.h61 void Slab_Init(Slab *slab, const char *name, uintptr_t objsz, uintptr_t align);
/sys/dev/
De1000.c449 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()