]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/tests/stub_MemStore.cc
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / tests / stub_MemStore.cc
index 03bef5cfd01c5098d84a6f9e001f1c14f688c3f2..6a39a8bd498301251f11d39369f4ef67cf12d670 100644 (file)
@@ -1,11 +1,14 @@
 /*
- * $Id$
- *
- * DEBUG: section 84    Helper process maintenance
+ * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
  *
+ * Squid software is distributed under GPLv2+ license and includes
+ * contributions from numerous individuals and organizations.
+ * Please see the COPYING and CONTRIBUTORS files for details.
  */
 
-#include "config.h"
+/* DEBUG: section 84    Helper process maintenance */
+
+#include "squid.h"
 #include "MemStore.h"
 
 #define STUB_API "MemStore.cc"
 
 MemStore::MemStore() STUB
 MemStore::~MemStore() STUB
-void MemStore::considerKeeping(StoreEntry &) STUB
+bool MemStore::keepInLocalMemory(const StoreEntry &) const STUB_RETVAL(false)
+void MemStore::write(StoreEntry &e) STUB
+void MemStore::completeWriting(StoreEntry &e) STUB
+void MemStore::disconnect(StoreEntry &e) STUB
 void MemStore::reference(StoreEntry &) STUB
+void MemStore::updateHeaders(StoreEntry *) STUB
 void MemStore::maintain() STUB
-void MemStore::cleanReadable(const sfileno) STUB
-void MemStore::get(String const, STOREGETCLIENT, void *) STUB
+void MemStore::noteFreeMapSlice(const Ipc::StoreMapSliceId) STUB
 void MemStore::init() STUB
+void MemStore::getStats(StoreInfoStats&) const STUB
 void MemStore::stat(StoreEntry &) const STUB
-int MemStore::callback() STUB_RETVAL(0)
 StoreEntry *MemStore::get(const cache_key *) STUB_RETVAL(NULL)
 uint64_t MemStore::maxSize() const STUB_RETVAL(0)
 uint64_t MemStore::minSize() const STUB_RETVAL(0)
 uint64_t MemStore::currentSize() const STUB_RETVAL(0)
 uint64_t MemStore::currentCount() const STUB_RETVAL(0)
 int64_t MemStore::maxObjectSize() const STUB_RETVAL(0)
-StoreSearch *MemStore::search(String const, HttpRequest *) STUB_RETVAL(NULL)
 bool MemStore::dereference(StoreEntry &) STUB_RETVAL(false)
+void MemStore::evictCached(StoreEntry&) STUB
+void MemStore::evictIfFound(const cache_key *) STUB
+bool MemStore::anchorToCache(StoreEntry&, bool&) STUB_RETVAL(false)
+bool MemStore::updateAnchored(StoreEntry&) STUB_RETVAL(false)
+int64_t MemStore::EntryLimit() STUB_RETVAL(0)
+