Searched refs:Cache (Results 1 - 25 of 32) sorted by relevance

12

/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/utilities/
H A Dutcache.c182 ACPI_MEMORY_LIST *Cache; local
195 Cache = AcpiOsAllocate (sizeof (ACPI_MEMORY_LIST));
196 if (!Cache)
203 memset (Cache, 0, sizeof (ACPI_MEMORY_LIST));
204 Cache->ListName = CacheName;
205 Cache->ObjectSize = ObjectSize;
206 Cache->MaxDepth = MaxDepth;
208 *ReturnCache = Cache;
217 * PARAMETERS: Cache - Handle to cache object
227 ACPI_MEMORY_LIST *Cache)
226 AcpiOsPurgeCache( ACPI_MEMORY_LIST *Cache) argument
279 AcpiOsDeleteCache( ACPI_MEMORY_LIST *Cache) argument
318 AcpiOsReleaseObject( ACPI_MEMORY_LIST *Cache, void *Object) argument
383 AcpiOsAcquireObject( ACPI_MEMORY_LIST *Cache) argument
[all...]
H A Duttrack.c215 ACPI_MEMORY_LIST *Cache; local
218 Cache = AcpiOsAllocateZeroed (sizeof (ACPI_MEMORY_LIST));
219 if (!Cache)
224 Cache->ListName = ListName;
225 Cache->ObjectSize = ObjectSize;
227 *ReturnCache = Cache;
/haiku/src/add-ons/kernel/file_systems/packagefs/util/
H A DClassCache.h13 static object_cache* s##CLASS##Cache = NULL; \
20 if (s##CLASS##Cache == NULL) { \
21 s##CLASS##Cache = create_object_cache("packagefs " #CLASS "s", \
25 return object_cache_alloc(s##CLASS##Cache, 0); \
31 object_cache_free(s##CLASS##Cache, block, 0); \
/haiku/src/system/kernel/vm/
H A DPageCacheLocker.cpp51 fPage->Cache()->ReleaseRefAndUnlock();
H A DVMCache.cpp101 VMCache* Cache() const function in class:VMCacheTracing::VMCacheTraceEntry
410 return insertAreaEntry->Cache();
430 if (createEntry->Cache() == cache)
434 return addEntry->Cache();
601 if (cache == page->Cache()) {
791 if (page != NULL && page->Cache() != this)
808 page, this, page->Cache());
843 if (page->Cache() != this) {
845 this, page->Cache());
866 VMCache* oldCache = page->Cache();
[all...]
H A Dvm_page.cpp511 fCache(page->Cache()),
966 kprintf("cache: %p\n", page->Cache());
1019 set_debug_variable("_cache", (addr_t)page->Cache());
1066 kprintf("%p %p %-7s %8s %5d %5d\n", page, page->Cache(),
1067 vm_cache_type_to_string(page->Cache()->type),
1112 && sPages[i].Cache() != NULL
1113 && sPages[i].Cache()->temporary && sPages[i].WiredCount() == 0) {
1662 VMCache* cache = page->Cache();
1964 struct VMCache* Cache() const { return fCache; } function in class:PageWriteTransfer
2023 fCache = page->Cache();
[all...]
H A DVMTranslationMap.cpp198 if (page->Cache()->temporary)
/haiku/src/bin/bfs_tools/lib/
H A DCache.h3 /* Cache - a template cache class
15 template<class T> class Cache class
43 Cache(int32 max = 20) function in class:Cache
53 virtual ~Cache()
139 fprintf(stderr,"Cache: fatal error, fLeastRecentlyUsed != entry\n");
162 fprintf(stderr,"Cache: fatal error, fLeastRecently != NULL!\n");
H A DDisk.h18 #include "Cache.h"
23 class BlockRunCache : public Cache<block_run>
H A DDisk.cpp70 : Cache<block_run>(),
76 Cache<block_run>::Cacheable *BlockRunCache::NewCacheable(block_run run)
H A DBPlusTree.h13 #include "Cache.h"
90 class NodeCache : public Cache<off_t> {
H A DBPlusTree.cpp49 : Cache<off_t>(),
55 Cache<off_t>::Cacheable *
65 CacheableNode *node = (CacheableNode *)Cache<off_t>::Get(offset);
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/include/
H A Dacpiosxf.h381 * Memory/Object Cache
395 ACPI_CACHE_T *Cache);
401 ACPI_CACHE_T *Cache);
407 ACPI_CACHE_T *Cache);
413 ACPI_CACHE_T *Cache,
H A Dacdebug.h485 ACPI_MEMORY_LIST *Cache);
H A Dacobject.h651 ACPI_OBJECT_CACHE_LIST Cache; member in union:acpi_operand_object
/haiku/src/tests/system/kernel/slab/
H A DSlab.cpp402 typedef Cache<MallocMergedCacheStrategy> MallocMergedCache;
406 typedef Cache<MallocHashCacheStrategy> MallocHashCache;
478 Cache<HashCacheStrategy<AreaBackend> > cache("512byte hash cache", 512, 0, NULL,
H A DSlab.h118 class Cache : protected BaseCache { class in inherits:BaseCache
120 Cache(const char *_name, size_t objectSize, size_t alignment, function in class:Cache
274 class TypedCache : public Cache<MergedLinkCacheStrategy<Backend> > {
277 typedef Cache<Strategy> BaseType;
/haiku/headers/private/app/
H A DMessageUtils.h108 inline void Cache(const T &data) function in class:TChecksumHelper
/haiku/src/add-ons/kernel/file_systems/packagefs/package/
H A DCachedDataReader.cpp316 if (page->Cache() != NULL)
342 && page->Cache() == fCache,
/haiku/headers/private/kernel/vm/
H A Dvm_types.h163 VMCache* Cache() const function in struct:vm_page
/haiku/src/system/kernel/arch/x86/paging/32bit/
H A DX86VMTranslationMap32Bit.cpp474 if (page->Cache()->temporary)
531 VMCache* cache = page->Cache();
/haiku/src/system/kernel/arch/x86/paging/64bit/
H A DX86VMTranslationMap64Bit.cpp476 if (page->Cache()->temporary)
534 VMCache* cache = page->Cache();
/haiku/src/system/kernel/device_manager/
H A DIOCache.cpp615 if (page->Cache() != NULL)
640 && page->Cache() == fCache,
/haiku/src/system/kernel/arch/arm/paging/32bit/
H A DARMVMTranslationMap32Bit.cpp491 if (page->Cache()->temporary)
548 VMCache* cache = page->Cache();
/haiku/src/system/kernel/arch/ppc/paging/classic/
H A DPPCVMTranslationMapClassic.cpp837 if (page->Cache()->temporary)
897 VMCache* cache = page->Cache();

Completed in 244 milliseconds

12