/reactos/drivers/filesystems/udfs/Include/ |
H A D | wcache_lib.cpp | 746 if(Cache->FrameCount >= Cache->MaxFrames) { in WCacheInitFrame() 750 ASSERT(Cache->FrameCount < Cache->MaxFrames); in WCacheInitFrame() 765 ASSERT(Cache->FrameCount <= Cache->MaxFrames); in WCacheInitFrame() 791 ASSERT(Cache->FrameCount <= Cache->MaxFrames); in WCacheRemoveFrame() 799 ASSERT(Cache->FrameCount < Cache->MaxFrames); in WCacheRemoveFrame() 913 WContext->Cache = Cache; in WCacheAllocAsyncEntry() 1315 if(!Cache->FrameCount && !Cache->BlockCount) { in WCacheCheckLimits() 1320 if(Cache->FrameCount > (Cache->MaxFrames*3)/4) { in WCacheCheckLimits() 1390 if(Cache->FrameCount >= Cache->MaxFrames) { in WCacheCheckLimitsRW() 1656 if(Cache->FrameCount >= Cache->MaxFrames) { in WCacheCheckLimitsRAM() [all …]
|
H A D | wcache_lib.h | 208 OSSTATUS WCacheInit__(IN PW_CACHE Cache, 254 VOID WCacheFlushAll__(IN PW_CACHE Cache, 257 VOID WCachePurgeAll__(IN PW_CACHE Cache, 260 VOID WCacheRelease__(IN PW_CACHE Cache); 266 OSSTATUS WCacheDirect__(IN PW_CACHE Cache, 273 OSSTATUS WCacheEODirect__(IN PW_CACHE Cache, 280 BOOLEAN WCacheIsCached__(IN PW_CACHE Cache, 285 OSSTATUS WCacheSetMode__(IN PW_CACHE Cache, 288 ULONG WCacheGetMode__(IN PW_CACHE Cache); 292 VOID WCacheSyncReloc__(IN PW_CACHE Cache, [all …]
|
/reactos/drivers/bus/acpi/acpica/utilities/ |
H A D | utcache.c | 88 if (!Cache) in AcpiOsCreateCache() 100 *ReturnCache = Cache; in AcpiOsCreateCache() 128 if (!Cache) in AcpiOsPurgeCache() 141 while (Cache->ListHead) in AcpiOsPurgeCache() 190 AcpiOsFree (Cache); in AcpiOsDeleteCache() 220 if (!Cache || !Object) in AcpiOsReleaseObject() 227 if (Cache->CurrentDepth >= Cache->MaxDepth) in AcpiOsReleaseObject() 285 if (!Cache) in AcpiOsAcquireObject() 300 if (Cache->ListHead) in AcpiOsAcquireObject() 331 if ((Cache->TotalAllocated - Cache->TotalFreed) > Cache->MaxOccupied) in AcpiOsAcquireObject() [all …]
|
H A D | uttrack.c | 107 ACPI_MEMORY_LIST *Cache; in AcpiUtCreateList() local 110 Cache = AcpiOsAllocateZeroed (sizeof (ACPI_MEMORY_LIST)); in AcpiUtCreateList() 111 if (!Cache) in AcpiUtCreateList() 116 Cache->ListName = ListName; in AcpiUtCreateList() 117 Cache->ObjectSize = ObjectSize; in AcpiUtCreateList() 119 *ReturnCache = Cache; in AcpiUtCreateList()
|
/reactos/sdk/lib/inflib/ |
H A D | infhostgen.c | 27 PINFCACHE Cache; in InfHostOpenBufferedFile() local 51 if (Cache == NULL) in InfHostOpenBufferedFile() 59 ZEROMEMORY(Cache, in InfHostOpenBufferedFile() 114 FREE(Cache); in InfHostOpenBufferedFile() 115 Cache = NULL; in InfHostOpenBufferedFile() 137 PINFCACHE Cache; in InfHostOpenFile() local 213 ZEROMEMORY(Cache, in InfHostOpenFile() 269 FREE(Cache); in InfHostOpenFile() 285 PINFCACHE Cache; in InfHostCloseFile() local 296 Cache->FirstSection = InfpFreeSection(Cache->FirstSection); in InfHostCloseFile() [all …]
|
H A D | infrosgen.c | 58 PINFCACHE Cache; in InfOpenBufferedFile() local 84 if (Cache == NULL) in InfOpenBufferedFile() 92 ZEROMEMORY(Cache, in InfOpenBufferedFile() 147 FREE(Cache); in InfOpenBufferedFile() 148 Cache = NULL; in InfOpenBufferedFile() 175 PINFCACHE Cache; in InfOpenFile() local 265 ZEROMEMORY(Cache, in InfOpenFile() 320 FREE(Cache); in InfOpenFile() 336 PINFCACHE Cache; in InfCloseFile() local 347 Cache->FirstSection = InfpFreeSection(Cache->FirstSection); in InfCloseFile() [all …]
|
H A D | infcore.c | 143 InfpFindSection(PINFCACHE Cache, in InfpFindSection() argument 148 if (Cache == NULL || Name == NULL) in InfpFindSection() 154 Section = Cache->FirstSection; in InfpFindSection() 171 InfpAddSection(PINFCACHE Cache, in InfpAddSection() argument 177 if (Cache == NULL || Name == NULL) in InfpAddSection() 200 if (Cache->FirstSection == NULL) in InfpAddSection() 202 Cache->FirstSection = Section; in InfpAddSection() 203 Cache->LastSection = Section; in InfpAddSection() 209 Cache->LastSection = Section; in InfpAddSection() 275 PINFCACHE Cache; in InfpGetSectionForContext() local [all …]
|
H A D | infput.c | 90 InfpBuildFileBuffer(PINFCACHE Cache, in InfpBuildFileBuffer() argument 108 CacheSection = Cache->FirstSection; in InfpBuildFileBuffer() 112 if (CacheSection != Cache->FirstSection) in InfpBuildFileBuffer() 190 InfpFindOrAddSection(PINFCACHE Cache, in InfpFindOrAddSection() argument 204 (*Context)->Inf = Cache; in InfpFindOrAddSection() 206 CacheSection = InfpFindSection(Cache, Section); in InfpFindOrAddSection() 210 CacheSection = InfpAddSection(Cache, Section); in InfpFindOrAddSection()
|
H A D | infget.c | 173 InfpFindFirstLine(PINFCACHE Cache, in InfpFindFirstLine() argument 181 if (Cache == NULL || Section == NULL || Context == NULL) in InfpFindFirstLine() 187 CacheSection = InfpFindSection(Cache, Section); in InfpFindFirstLine() 215 (*Context)->Inf = (PVOID)Cache; in InfpFindFirstLine() 330 PINFCACHE Cache; in InfpGetLineCount() local 339 Cache = (PINFCACHE)InfHandle; in InfpGetLineCount() 342 CacheSection = Cache->FirstSection; in InfpGetLineCount()
|
H A D | infpriv.h | 86 extern PINFCACHESECTION InfpAddSection(PINFCACHE Cache, 95 extern PINFCACHESECTION InfpFindSection(PINFCACHE Cache, 142 extern INFSTATUS InfpFindOrAddSection(PINFCACHE Cache,
|
/reactos/ntoskrnl/fsrtl/ |
H A D | tunnel.c | 58 IN PTUNNEL Cache, in FsRtlRemoveNodeFromTunnel() argument 66 Cache->Cache = RtlDelete(&CurEntry->SplayInfo); in FsRtlRemoveNodeFromTunnel() 72 RtlDeleteNoSplay(&CurEntry->SplayInfo, &Cache->Cache); in FsRtlRemoveNodeFromTunnel() 87 IN PTUNNEL Cache, in FsRtlPruneTunnelCache() argument 412 CurEntry = Cache->Cache; in FsRtlAddToTunnelCache() 467 Cache->Cache = (struct _RTL_SPLAY_LINKS*)NodeEntry; in FsRtlAddToTunnelCache() 496 Cache->Cache = (struct _RTL_SPLAY_LINKS*)NodeEntry; in FsRtlAddToTunnelCache() 613 CurEntry = Cache->Cache; in FsRtlDeleteKeyFromTunnelCache() 727 Cache->Cache = NULL; in FsRtlDeleteTunnelCache() 799 CurEntry = (PTUNNEL_NODE_ENTRY)Cache->Cache; in FsRtlFindInTunnelCache() [all …]
|
/reactos/ntoskrnl/ke/arm/ |
H A D | kiinit.c | 229 Pcr->Prcb.Cache[FirstLevelDcache].Type = CacheData; in KiInitializePcr() 230 Pcr->Prcb.Cache[FirstLevelDcache].Level = 1; in KiInitializePcr() 236 Pcr->Prcb.Cache[SecondLevelDcache].Level = 2; in KiInitializePcr() 242 Pcr->Prcb.Cache[FirstLevelIcache].Level = 1; in KiInitializePcr() 248 Pcr->Prcb.Cache[SecondLevelIcache].Level = 2; in KiInitializePcr() 254 if (Pcr->Prcb.Cache[SecondLevelDcache].Size == 0) in KiInitializePcr() 257 Pcr->Prcb.Cache[GlobalDcache] = Pcr->Prcb.Cache[FirstLevelDcache]; in KiInitializePcr() 262 Pcr->Prcb.Cache[GlobalDcache] = Pcr->Prcb.Cache[SecondLevelDcache]; in KiInitializePcr() 269 if (Pcr->Prcb.Cache[SecondLevelIcache].Size == 0) in KiInitializePcr() 272 Pcr->Prcb.Cache[GlobalIcache] = Pcr->Prcb.Cache[FirstLevelIcache]; in KiInitializePcr() [all …]
|
/reactos/base/setup/lib/utils/ |
H A D | inicache.c | 56 _In_ PINICACHE Cache, in IniCacheFindSection() argument 488 PINICACHE *Cache, in IniCacheLoadFromMemory() argument 509 if (!*Cache) in IniCacheLoadFromMemory() 593 *Cache = NULL; in IniCacheLoadByHandle() 666 *Cache = NULL; in IniCacheLoad() 702 if (!Cache) in IniCacheDestroy() 921 PINICACHE Cache; in IniCacheCreate() local 927 if (!Cache) in IniCacheCreate() 934 return Cache; in IniCacheCreate() 939 PINICACHE Cache, in IniCacheSaveByHandle() argument [all …]
|
H A D | inicache.h | 47 PINICACHE *Cache, 54 PINICACHE *Cache, 60 PINICACHE *Cache, 66 _In_ PINICACHE Cache); 70 _In_ PINICACHE Cache, 97 _In_ PINICACHE Cache, 133 PINICACHE Cache, 138 PINICACHE Cache,
|
/reactos/boot/freeldr/freeldr/ntldr/ |
H A D | inffile.c | 197 PINFCACHE Cache, in InfpCacheFindSection() argument 227 PINFCACHE Cache, in InfpCacheAddSection() argument 927 PINFCACHE Cache; in InfOpenFile() local 989 if (!Cache) in InfOpenFile() 1010 Cache = NULL; in InfOpenFile() 1021 *InfHandle = (HINF)Cache; in InfOpenFile() 1030 PINFCACHE Cache; in InfCloseFile() local 1034 if (Cache == NULL) in InfCloseFile() 1041 Cache->FirstSection = InfpCacheFreeSection(Cache->FirstSection); in InfCloseFile() 1056 PINFCACHE Cache; in InfFindFirstLine() local [all …]
|
/reactos/drivers/network/tcpip/ip/network/ |
H A D | neighbor.c | 107 for (PrevNCE = &NeighborCache[i].Cache; in NBTimeout() 179 NeighborCache[i].Cache = NULL; in NBStartup() 201 CurNCE = NeighborCache[i].Cache; in NBShutdown() 213 NeighborCache[i].Cache = NULL; in NBShutdown() 249 for (PrevNCE = &NeighborCache[i].Cache; in NBDestroyNeighborsForInterface() 338 NCE->Next = NeighborCache[HashValue].Cache; in NBAddNeighbor() 339 NeighborCache[HashValue].Cache = NCE; in NBAddNeighbor() 403 for (NCE = NeighborCache[HashValue].Cache; in NBResetNeighborTimeout() 461 NCE = NeighborCache[HashValue].Cache; in NBLocateNeighbor() 482 NCE = NeighborCache[HashValue].Cache; in NBLocateNeighbor() [all …]
|
/reactos/win32ss/gdi/ntgdi/ |
H A D | freetype.c | 567 Cache->OutlineRequiredSize = 0; in SharedFaceCache_Init() 3089 PSHARED_FACE_CACHE Cache; in IntGetOutlineTextMetrics() local 3302 PSHARED_FACE_CACHE Cache; in IntGetFontLocalizedName() local 4927 Cache->dwHash = IntGetHash(&Cache->Hashed, sizeof(Cache->Hashed) / sizeof(DWORD)); in IntGetRealGlyph() 4933 error = FT_Load_Glyph(Cache->Hashed.Face, Cache->Hashed.GlyphIndex, FT_LOAD_DEFAULT); in IntGetRealGlyph() 4975 FONT_CACHE_ENTRY Cache; in TextIntGetTextExtentPoint() local 5027 glyph_index = FontLink_Chain_FindGlyph(&Chain, &Cache, &Cache.Hashed.Face, ch0, in TextIntGetTextExtentPoint() 6795 FONT_CACHE_ENTRY Cache; in IntExtTextOutW() local 6992 if (Cache.Hashed.matTransform.xy == 0 && Cache.Hashed.matTransform.yx == 0) in IntExtTextOutW() 7228 if (Cache.Hashed.matTransform.xy == 0 && Cache.Hashed.matTransform.yx == 0) in IntExtTextOutW() [all …]
|
/reactos/drivers/bus/acpi/acpica/include/ |
H A D | acpiosxf.h | 287 ACPI_CACHE_T *Cache); 293 ACPI_CACHE_T *Cache); 299 ACPI_CACHE_T *Cache); 305 ACPI_CACHE_T *Cache,
|
/reactos/drivers/bus/acpi/acpica/include/platform/ |
H A D | acdragonfly.h | 87 #define AcpiOsReleaseObject(Cache, Object) \ argument 88 _AcpiOsReleaseObject((Cache), (Object), __func__, __LINE__)
|
H A D | aclinuxex.h | 109 ACPI_CACHE_T *Cache) in AcpiOsAcquireObject() argument 111 return kmem_cache_zalloc (Cache, in AcpiOsAcquireObject()
|
H A D | acdragonflyex.h | 52 ACPI_CACHE_T *Cache,
|
/reactos/media/doc/ |
H A D | locks.txt | 9 1b. Cache-Aware Rundown Protection 33 4b. Cache-Aware Pushlocks
|
/reactos/modules/rosapps/applications/explorer-old/shell/ |
H A D | fatfs.h | 173 struct Cache { struct 244 Cache* _FATCache;
|
/reactos/base/applications/network/ipconfig/lang/ |
H A D | id-ID.rc | 86 IDS_DNSFLUSHERROR "Could not flush the DNS Resolver Cache: " 87 IDS_DNSFLUSHSUCCESS "Successfully flushed the DNS Resolver Cache.\n" 117 /displaydns Menampilkan isi DNS Resolver Cache.\n\
|
H A D | sk-SK.rc | 86 IDS_DNSFLUSHERROR "Could not flush the DNS Resolver Cache: " 87 IDS_DNSFLUSHSUCCESS "Successfully flushed the DNS Resolver Cache.\n" 117 /displaydns Display the contents of the DNS Resolver Cache.\n\
|