OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MemoryCache
(Results
1 - 25
of
33
) sorted by null
1
2
/external/webkit/Source/WebKit/chromium/src/
WebCache.cpp
34
// Instead of providing accessors, we make all members of
MemoryCache
public.
35
// This will make it easier to track WebCore changes to the
MemoryCache
class.
36
// FIXME: We should introduce public getters on the
MemoryCache
class.
38
#include "
MemoryCache
.h"
45
// A helper method for coverting a
MemoryCache
::TypeStatistic to a
47
static void ToResourceTypeStat(const
MemoryCache
::TypeStatistic& from,
59
MemoryCache
* cache = WebCore::
memoryCache
();
68
MemoryCache
* cache = WebCore::
memoryCache
();
[
all
...]
/external/webkit/Source/WebCore/loader/cache/
MemoryCache.h
75
class
MemoryCache
{
76
WTF_MAKE_NONCOPYABLE(
MemoryCache
); WTF_MAKE_FAST_ALLOCATED;
78
friend
MemoryCache
*
memoryCache
();
181
MemoryCache
();
182
~
MemoryCache
(); // Not implemented to make sure nobody accidentally calls delete -- WebCore does not delete singletons.
224
inline bool
MemoryCache
::shouldMakeResourcePurgeableOnEviction()
234
MemoryCache
*
memoryCache
();
MemoryCache.cpp
24
#include "
MemoryCache
.h"
54
MemoryCache
*
memoryCache
()
56
static
MemoryCache
* staticCache = new
MemoryCache
;
60
MemoryCache
::
MemoryCache
()
73
KURL
MemoryCache
::removeFragmentIdentifierIfNeeded(const KURL& originalURL)
86
bool
MemoryCache
::add(CachedResource* resource)
96
LOG(ResourceLoading, "
MemoryCache
::add Added '%s', resource %p\n", resource->url().latin1().data(), resource)
[
all
...]
CachedFont.h
44
class
MemoryCache
;
83
friend class
MemoryCache
;
CachedImage.h
35
class
MemoryCache
;
38
friend class
MemoryCache
;
CachedResource.h
40
class
MemoryCache
;
55
friend class
MemoryCache
;
CachedCSSStyleSheet.cpp
30
#include "
MemoryCache
.h"
61
if (!
MemoryCache
::shouldMakeResourcePurgeableOnEviction() && isSafeToMakePurgeable())
CachedScript.cpp
30
#include "
MemoryCache
.h"
68
if (double interval =
memoryCache
()->deadDecodedDataDeletionInterval())
126
if (!
MemoryCache
::shouldMakeResourcePurgeableOnEviction() && isSafeToMakePurgeable())
CachedResourceLoader.cpp
45
#include "
MemoryCache
.h"
117
KURL url =
MemoryCache
::removeFragmentIdentifierIfNeeded(resourceURL);
165
KURL url =
MemoryCache
::removeFragmentIdentifierIfNeeded(KURL(KURL(), requestURL));
167
if (CachedResource* existing =
memoryCache
()->resourceForURL(url)) {
170
memoryCache
()->remove(existing);
174
bool inCache =
memoryCache
()->add(userSheet);
303
url =
MemoryCache
::removeFragmentIdentifierIfNeeded(url);
319
if (
memoryCache
()->disabled()) {
328
CachedResource* resource =
memoryCache
()->resourceForURL(url);
335
memoryCache
()->remove(resource)
[
all
...]
CachedImage.cpp
28
#include "
MemoryCache
.h"
116
if (double interval =
memoryCache
()->deadDecodedDataDeletionInterval())
298
memoryCache
()->remove(this);
336
if (!
MemoryCache
::shouldMakeResourcePurgeableOnEviction())
/external/chromium/net/tools/flip_server/
acceptor_thread.h
22
class
MemoryCache
;
48
SMAcceptorThread(FlipAcceptor *acceptor,
MemoryCache
* memory_cache);
89
MemoryCache
* memory_cache_;
sm_connection.h
24
class
MemoryCache
;
51
MemoryCache
* memory_cache,
62
MemoryCache
* memory_cache() { return memory_cache_; }
125
MemoryCache
* memory_cache,
140
MemoryCache
* memory_cache_;
mem_cache.cc
64
MemoryCache
::
MemoryCache
() {}
66
MemoryCache
::~
MemoryCache
() {}
68
void
MemoryCache
::CloneFrom(const
MemoryCache
& mc) {
79
void
MemoryCache
::AddFiles() {
124
void
MemoryCache
::ReadToString(const char* filename, std::string* output) {
140
void
MemoryCache
::ReadAndStoreFileContents(const char* filename) {
206
FileData*
MemoryCache
::GetFileData(const std::string& filename)
[
all
...]
mem_cache.h
107
class
MemoryCache
{
112
MemoryCache
();
113
~
MemoryCache
();
115
void CloneFrom(const
MemoryCache
& mc);
http_interface.h
22
class
MemoryCache
;
30
MemoryCache
* memory_cache,
128
MemoryCache
* memory_cache_;
spdy_interface.h
24
class
MemoryCache
;
32
MemoryCache
* memory_cache,
129
MemoryCache
* memory_cache_;
flip_in_mem_edsm_server.cc
332
net::
MemoryCache
spdy_memory_cache;
351
net::
MemoryCache
http_memory_cache;
376
(net::
MemoryCache
*)acceptor->memory_cache_));
379
// we either must make the
MemoryCache
threadsafe, or use
380
// a separate
MemoryCache
for each thread.
acceptor_thread.cc
24
MemoryCache
* memory_cache)
sm_connection.cc
28
MemoryCache
* memory_cache,
654
MemoryCache
* memory_cache,
/external/webkit/Source/WebKit2/WebProcess/ResourceCache/
WebResourceCacheManager.cpp
36
#include <WebCore/
MemoryCache
.h>
68
MemoryCache
::SecurityOriginSet origins;
69
memoryCache
()->getOriginsWithCache(origins);
86
MemoryCache
::SecurityOriginSet::iterator end = origins.end();
87
for (
MemoryCache
::SecurityOriginSet::iterator it = origins.begin(); it != end; ++it) {
115
memoryCache
()->removeResourcesWithOrigin(origin.get());
/external/webkit/Source/WebKit/mac/Misc/
WebCache.mm
34
#import <WebCore/
MemoryCache
.h>
46
WebCore::
MemoryCache
::Statistics s = WebCore::
memoryCache
()->getStatistics();
133
WebCore::
memoryCache
()->setDisabled(disabled);
138
return WebCore::
memoryCache
()->disabled();
/external/webkit/Source/WebKit/efl/ewk/
ewk_settings.cpp
32
#include "
MemoryCache
.h"
336
WebCore::
MemoryCache
* cache = WebCore::
memoryCache
();
350
WebCore::
MemoryCache
* cache = WebCore::
memoryCache
();
365
WebCore::
MemoryCache
* cache = WebCore::
memoryCache
();
/external/webkit/Source/WebKit/win/
WebCache.cpp
32
#include <WebCore/
MemoryCache
.h>
100
WebCore::
MemoryCache
::Statistics stat = WebCore::
memoryCache
()->getStatistics();
204
if (WebCore::
memoryCache
()->disabled())
206
WebCore::
memoryCache
()->setDisabled(true);
207
WebCore::
memoryCache
()->setDisabled(false);
221
WebCore::
memoryCache
()->setDisabled(!!disabled);
230
*disabled = WebCore::
memoryCache
()->disabled();
/external/webkit/Source/WebKit2/WebProcess/win/
WebProcessWin.cpp
33
#include <WebCore/
MemoryCache
.h>
93
memoryCache
()->setCapacities(cacheMinDeadCapacity, cacheMaxDeadCapacity, cacheTotalCapacity);
94
memoryCache
()->setDeadDecodedDataDeletionInterval(deadDecodedDataDeletionInterval);
/external/webkit/Source/WebKit2/WebProcess/mac/
WebProcessMac.mm
34
#import <WebCore/
MemoryCache
.h>
104
memoryCache
()->setCapacities(cacheMinDeadCapacity, cacheMaxDeadCapacity, cacheTotalCapacity);
105
memoryCache
()->setDeadDecodedDataDeletionInterval(deadDecodedDataDeletionInterval);
Completed in 847 milliseconds
1
2