]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/stub_MemStore.cc
Merged from trunk (r13356).
[thirdparty/squid.git] / src / tests / stub_MemStore.cc
1 /*
2 * DEBUG: section 84 Helper process maintenance
3 *
4 */
5
6 #include "squid.h"
7 #include "MemStore.h"
8
9 #define STUB_API "MemStore.cc"
10 #include "tests/STUB.h"
11
12 MemStore::MemStore() STUB
13 MemStore::~MemStore() STUB
14 bool MemStore::keepInLocalMemory(const StoreEntry &) const STUB_RETVAL(false)
15 void MemStore::write(StoreEntry &e) STUB
16 void MemStore::completeWriting(StoreEntry &e) STUB
17 void MemStore::unlink(StoreEntry &e) STUB
18 void MemStore::disconnect(StoreEntry &e) STUB
19 void MemStore::reference(StoreEntry &) STUB
20 void MemStore::maintain() STUB
21 void MemStore::noteFreeMapSlice(const sfileno) STUB
22 void MemStore::get(String const, STOREGETCLIENT, void *) STUB
23 void MemStore::init() STUB
24 void MemStore::getStats(StoreInfoStats&) const STUB
25 void MemStore::stat(StoreEntry &) const STUB
26 int MemStore::callback() STUB_RETVAL(0)
27 StoreEntry *MemStore::get(const cache_key *) STUB_RETVAL(NULL)
28 uint64_t MemStore::maxSize() const STUB_RETVAL(0)
29 uint64_t MemStore::minSize() const STUB_RETVAL(0)
30 uint64_t MemStore::currentSize() const STUB_RETVAL(0)
31 uint64_t MemStore::currentCount() const STUB_RETVAL(0)
32 int64_t MemStore::maxObjectSize() const STUB_RETVAL(0)
33 StoreSearch *MemStore::search(String const, HttpRequest *) STUB_RETVAL(NULL)
34 bool MemStore::dereference(StoreEntry &, bool) STUB_RETVAL(false)
35 void MemStore::markForUnlink(StoreEntry&) STUB
36 bool MemStore::anchorCollapsed(StoreEntry&, bool&) STUB_RETVAL(false)
37 bool MemStore::updateCollapsed(StoreEntry&) STUB_RETVAL(false)