store_key_md5.cc \
swap_log_op.cc \
swap_log_op.h \
- SwapDir.cc \
+ tests/stub_SwapDir.cc \
SwapDir.h \
log/access_log.h \
tests/stub_access_log.cc \
tools.h \
tools.cc \
tunnel.cc \
- SwapDir.cc \
+ tests/stub_SwapDir.cc \
MemStore.cc \
$(UNLINKDSOURCE) \
url.cc \
String.cc \
StrList.h \
StrList.cc \
- SwapDir.cc \
+ tests/stub_SwapDir.cc \
log/access_log.h \
tests/stub_access_log.cc \
tests/stub_acl.cc \
StoreMetaVary.cc \
StoreSwapLogData.cc \
String.cc \
- SwapDir.cc \
+ tests/stub_SwapDir.cc \
tests/CapturingStoreEntry.h \
tests/testEvent.cc \
tests/testEvent.h \
String.cc \
StrList.h \
StrList.cc \
- SwapDir.cc \
+ tests/stub_SwapDir.cc \
tests/testEventLoop.cc \
tests/testEventLoop.h \
tests/testMain.cc \
String.cc \
StrList.h \
StrList.cc \
- SwapDir.cc \
+ tests/stub_SwapDir.cc \
tests/test_http_range.cc \
tests/stub_external_acl.cc \
tests/stub_ipc_Forwarder.cc \
tools.h \
tools.cc \
tunnel.cc \
- SwapDir.cc \
+ tests/stub_SwapDir.cc \
MemStore.cc \
url.cc \
URLScheme.cc \
--- /dev/null
+#include "squid.h"
+#include "SwapDir.h"
+
+#define STUB_API "SwapDir.cc"
+#include "tests/STUB.h"
+
+SwapDir::SwapDir(char const *) STUB
+SwapDir::~SwapDir() STUB
+void SwapDir::create() STUB
+void SwapDir::dump(StoreEntry &) const STUB
+bool SwapDir::doubleCheck(StoreEntry &) STUB_RETVAL(false)
+void SwapDir::unlink(StoreEntry &) STUB
+void SwapDir::getStats(StoreInfoStats &) const STUB
+void SwapDir::stat(StoreEntry &) const STUB
+void SwapDir::statfs(StoreEntry &)const STUB
+void SwapDir::maintain() STUB
+uint64_t SwapDir::minSize() const STUB_RETVAL(0)
+int64_t SwapDir::maxObjectSize() const STUB_RETVAL(0)
+void SwapDir::maxObjectSize(int64_t) STUB
+void SwapDir::reference(StoreEntry &) STUB
+bool SwapDir::dereference(StoreEntry &, bool) STUB_RETVAL(false)
+int SwapDir::callback() STUB_RETVAL(0)
+bool SwapDir::canStore(const StoreEntry &, int64_t, int &) const STUB_RETVAL(false)
+bool SwapDir::canLog(StoreEntry const &)const STUB_RETVAL(false)
+void SwapDir::sync() STUB
+void SwapDir::openLog() STUB
+void SwapDir::closeLog() STUB
+int SwapDir::writeCleanStart() STUB_RETVAL(0)
+void SwapDir::writeCleanDone() STUB
+void SwapDir::logEntry(const StoreEntry &, int) const STUB
+char const * SwapDir::type() const STUB_RETVAL("stub")
+bool SwapDir::active() const STUB_RETVAL(false)
+bool SwapDir::needsDiskStrand() const STUB_RETVAL(false)
+ConfigOption * SwapDir::getOptionTree() const STUB_RETVAL(NULL)
+void SwapDir::parseOptions(int) STUB
+void SwapDir::dumpOptions(StoreEntry *) const STUB
+bool SwapDir::optionReadOnlyParse(char const *, const char *, int) STUB_RETVAL(false)
+void SwapDir::optionReadOnlyDump(StoreEntry *) const STUB
+bool SwapDir::optionObjectSizeParse(char const *, const char *, int) STUB_RETVAL(false)
+void SwapDir::optionObjectSizeDump(StoreEntry *) const STUB
+StoreEntry * SwapDir::get(const cache_key *) STUB_RETVAL(NULL)
+void SwapDir::get(String const, STOREGETCLIENT , void *) STUB
+