]> 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/*
2cd0bda2 2 * Copyright (C) 1996-2017 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 9#include "squid.h"
2745fea5 10#include "store/Disk.h"
003a3ee0 11
30025039 12#define STUB_API "store/Disk.cc"
003a3ee0
FC
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)
003a3ee0
FC
20void SwapDir::getStats(StoreInfoStats &) const STUB
21void SwapDir::stat(StoreEntry &) const STUB
22void SwapDir::statfs(StoreEntry &)const STUB
23void SwapDir::maintain() STUB
24uint64_t SwapDir::minSize() const STUB_RETVAL(0)
5ca027f0 25int64_t SwapDir::minObjectSize() const STUB_RETVAL(0)
003a3ee0
FC
26int64_t SwapDir::maxObjectSize() const STUB_RETVAL(0)
27void SwapDir::maxObjectSize(int64_t) STUB
28void SwapDir::reference(StoreEntry &) STUB
2745fea5 29bool SwapDir::dereference(StoreEntry &) STUB_RETVAL(false)
003a3ee0
FC
30bool SwapDir::canStore(const StoreEntry &, int64_t, int &) const STUB_RETVAL(false)
31bool SwapDir::canLog(StoreEntry const &)const STUB_RETVAL(false)
003a3ee0
FC
32void SwapDir::openLog() STUB
33void SwapDir::closeLog() STUB
34int SwapDir::writeCleanStart() STUB_RETVAL(0)
35void SwapDir::writeCleanDone() STUB
36void SwapDir::logEntry(const StoreEntry &, int) const STUB
37char const * SwapDir::type() const STUB_RETVAL("stub")
38bool SwapDir::active() const STUB_RETVAL(false)
39bool SwapDir::needsDiskStrand() const STUB_RETVAL(false)
40ConfigOption * SwapDir::getOptionTree() const STUB_RETVAL(NULL)
41void SwapDir::parseOptions(int) STUB
42void SwapDir::dumpOptions(StoreEntry *) const STUB
43bool SwapDir::optionReadOnlyParse(char const *, const char *, int) STUB_RETVAL(false)
44void SwapDir::optionReadOnlyDump(StoreEntry *) const STUB
45bool SwapDir::optionObjectSizeParse(char const *, const char *, int) STUB_RETVAL(false)
46void SwapDir::optionObjectSizeDump(StoreEntry *) const STUB
47StoreEntry * SwapDir::get(const cache_key *) STUB_RETVAL(NULL)
003a3ee0 48