]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_SwapDir.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / tests / stub_SwapDir.cc
CommitLineData
4e0938ef 1/*
bde978a6 2 * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
4e0938ef
AJ
3 *
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.
7 */
8
003a3ee0
FC
9#include "squid.h"
10#include "SwapDir.h"
11
12#define STUB_API "SwapDir.cc"
13#include "tests/STUB.h"
14
71ccd3e8
FC
15// SwapDir::SwapDir(char const *) STUB
16// SwapDir::~SwapDir() STUB
003a3ee0
FC
17void SwapDir::create() STUB
18void SwapDir::dump(StoreEntry &) const STUB
19bool SwapDir::doubleCheck(StoreEntry &) STUB_RETVAL(false)
20void SwapDir::unlink(StoreEntry &) STUB
21void SwapDir::getStats(StoreInfoStats &) const STUB
22void SwapDir::stat(StoreEntry &) const STUB
23void SwapDir::statfs(StoreEntry &)const STUB
24void SwapDir::maintain() STUB
25uint64_t SwapDir::minSize() const STUB_RETVAL(0)
26int64_t SwapDir::maxObjectSize() const STUB_RETVAL(0)
27void SwapDir::maxObjectSize(int64_t) STUB
28void SwapDir::reference(StoreEntry &) STUB
29bool SwapDir::dereference(StoreEntry &, bool) STUB_RETVAL(false)
30int SwapDir::callback() STUB_RETVAL(0)
31bool SwapDir::canStore(const StoreEntry &, int64_t, int &) const STUB_RETVAL(false)
32bool SwapDir::canLog(StoreEntry const &)const STUB_RETVAL(false)
33void SwapDir::sync() STUB
34void SwapDir::openLog() STUB
35void SwapDir::closeLog() STUB
36int SwapDir::writeCleanStart() STUB_RETVAL(0)
37void SwapDir::writeCleanDone() STUB
38void SwapDir::logEntry(const StoreEntry &, int) const STUB
39char const * SwapDir::type() const STUB_RETVAL("stub")
40bool SwapDir::active() const STUB_RETVAL(false)
41bool SwapDir::needsDiskStrand() const STUB_RETVAL(false)
42ConfigOption * SwapDir::getOptionTree() const STUB_RETVAL(NULL)
43void SwapDir::parseOptions(int) STUB
44void SwapDir::dumpOptions(StoreEntry *) const STUB
45bool SwapDir::optionReadOnlyParse(char const *, const char *, int) STUB_RETVAL(false)
46void SwapDir::optionReadOnlyDump(StoreEntry *) const STUB
47bool SwapDir::optionObjectSizeParse(char const *, const char *, int) STUB_RETVAL(false)
48void SwapDir::optionObjectSizeDump(StoreEntry *) const STUB
49StoreEntry * SwapDir::get(const cache_key *) STUB_RETVAL(NULL)
50void SwapDir::get(String const, STOREGETCLIENT , void *) STUB
51