]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_MemStore.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / tests / stub_MemStore.cc
CommitLineData
d5d5493b 1/*
bde978a6 2 * Copyright (C) 1996-2015 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)
24ca4cdd
AR
20void MemStore::write(StoreEntry &e) STUB
21void MemStore::completeWriting(StoreEntry &e) STUB
22void MemStore::unlink(StoreEntry &e) STUB
23void MemStore::disconnect(StoreEntry &e) STUB
d5d5493b
DK
24void MemStore::reference(StoreEntry &) STUB
25void MemStore::maintain() STUB
36c84e19 26void MemStore::noteFreeMapSlice(const Ipc::StoreMapSliceId) STUB
d5d5493b
DK
27void MemStore::get(String const, STOREGETCLIENT, void *) STUB
28void MemStore::init() STUB
93bc1434 29void MemStore::getStats(StoreInfoStats&) const STUB
d5d5493b 30void MemStore::stat(StoreEntry &) const STUB
0317d711
AR
31int MemStore::callback() STUB_RETVAL(0)
32StoreEntry *MemStore::get(const cache_key *) STUB_RETVAL(NULL)
33uint64_t MemStore::maxSize() const STUB_RETVAL(0)
34uint64_t MemStore::minSize() const STUB_RETVAL(0)
35uint64_t MemStore::currentSize() const STUB_RETVAL(0)
36uint64_t MemStore::currentCount() const STUB_RETVAL(0)
37int64_t MemStore::maxObjectSize() const STUB_RETVAL(0)
38StoreSearch *MemStore::search(String const, HttpRequest *) STUB_RETVAL(NULL)
54347cbd 39bool MemStore::dereference(StoreEntry &, bool) STUB_RETVAL(false)
24ca4cdd
AR
40void MemStore::markForUnlink(StoreEntry&) STUB
41bool MemStore::anchorCollapsed(StoreEntry&, bool&) STUB_RETVAL(false)
42bool MemStore::updateCollapsed(StoreEntry&) STUB_RETVAL(false)
f53969cc 43