]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_MemStore.cc
Maintenance: Removed most NULLs using modernize-use-nullptr (#1075)
[thirdparty/squid.git] / src / tests / stub_MemStore.cc
CommitLineData
d5d5493b 1/*
bf95c10a 2 * Copyright (C) 1996-2022 The Squid Software Foundation and contributors
d5d5493b 3 *
4e0938ef
AJ
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
d5d5493b
DK
7 */
8
4e0938ef
AJ
9/* DEBUG: section 84 Helper process maintenance */
10
f7f3304a 11#include "squid.h"
d5d5493b
DK
12#include "MemStore.h"
13
14#define STUB_API "MemStore.cc"
15#include "tests/STUB.h"
16
17MemStore::MemStore() STUB
18MemStore::~MemStore() STUB
83a35d4b 19bool MemStore::keepInLocalMemory(const StoreEntry &) const STUB_RETVAL(false)
8b082ed9
FC
20void MemStore::write(StoreEntry &) STUB
21void MemStore::completeWriting(StoreEntry &) STUB
22void MemStore::disconnect(StoreEntry &) STUB
d5d5493b 23void MemStore::reference(StoreEntry &) STUB
abf396ec 24void MemStore::updateHeaders(StoreEntry *) STUB
d5d5493b 25void MemStore::maintain() STUB
36c84e19 26void MemStore::noteFreeMapSlice(const Ipc::StoreMapSliceId) STUB
d5d5493b 27void MemStore::init() STUB
93bc1434 28void MemStore::getStats(StoreInfoStats&) const STUB
d5d5493b 29void MemStore::stat(StoreEntry &) const STUB
aee3523a 30StoreEntry *MemStore::get(const cache_key *) STUB_RETVAL(nullptr)
0317d711
AR
31uint64_t MemStore::maxSize() const STUB_RETVAL(0)
32uint64_t MemStore::minSize() const STUB_RETVAL(0)
33uint64_t MemStore::currentSize() const STUB_RETVAL(0)
34uint64_t MemStore::currentCount() const STUB_RETVAL(0)
35int64_t MemStore::maxObjectSize() const STUB_RETVAL(0)
2745fea5 36bool MemStore::dereference(StoreEntry &) STUB_RETVAL(false)
4310f8b0
EB
37void MemStore::evictCached(StoreEntry&) STUB
38void MemStore::evictIfFound(const cache_key *) STUB
39bool MemStore::anchorToCache(StoreEntry&, bool&) STUB_RETVAL(false)
40bool MemStore::updateAnchored(StoreEntry&) STUB_RETVAL(false)
daed75a9 41int64_t MemStore::EntryLimit() STUB_RETVAL(0)
f53969cc 42