/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
AbstractSessionContext.java | 41 volatile int maximumSize; 54 return maximumSize > 0 && size() > maximumSize; 61 * @param maximumSize of cache 64 AbstractSessionContext(int maximumSize, int timeout) { 65 this.maximumSize = maximumSize; 110 return maximumSize; 118 * Makes sure cache size is < maximumSize. 123 if (size > maximumSize) { [all...] |
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
BinaryHprof.java | 89 public final int maximumSize; 96 this.maximumSize = size; 100 this.maximumSize = 0; 126 if (maximumSize == 0) { 129 if (actual > maximumSize) { 130 return "expected a maximum record size of " + maximumSize + " for " + this
|
BinaryHprofWriter.java | 93 BinaryHprof.Tag.CONTROL_SETTINGS.maximumSize); 116 BinaryHprof.Tag.START_THREAD.maximumSize); 128 BinaryHprof.Tag.END_THREAD.maximumSize); 220 BinaryHprof.Tag.LOAD_CLASS.maximumSize); 243 BinaryHprof.Tag.STACK_FRAME.maximumSize);
|
/dalvik/vm/alloc/ |
HeapSource.cpp | 74 size_t maximumSize; 113 size_t maximumSize; 289 static mspace createMspace(void *base, size_t startSize, size_t maximumSize) 303 maximumSize, /*locked=*/false, base); 314 startSize/2, maximumSize, strerror(errno)); 324 static bool addInitialHeap(HeapSource *hs, mspace msp, size_t maximumSize) 332 hs->heaps[0].maximumSize = maximumSize; 335 hs->heaps[0].limit = hs->heapBase + hs->heaps[0].maximumSize; 367 if (overhead + HEAP_MIN_FREE >= hs->maximumSize) { [all...] |
Copying.cpp | 225 size_t maximumSize; 229 * equivalent to the maximumSize. 452 heapSource->maximumSize = alignUp(absoluteMaxSize, BLOCK_SIZE); 454 heapSource->currentSize = heapSource->maximumSize; 457 heapSource->blockBase = virtualAlloc(heapSource->maximumSize); 460 heapSource->limitBlock = ((uintptr_t) heapSource->blockBase + heapSource->maximumSize) >> BLOCK_SHIFT; 465 assert(heapSource->totalBlocks = heapSource->maximumSize / BLOCK_SIZE); 485 heapSource->maximumSize, 523 (*gcHeap)->heapSource->maximumSize); 540 value = heapSource->maximumSize; [all...] |
HeapSource.h | 43 size_t maximumSize,
|
/external/webkit/Source/WebCore/storage/ |
IDBFactoryBackendImpl.cpp | 73 void IDBFactoryBackendImpl::open(const String& name, PassRefPtr<IDBCallbacks> callbacks, PassRefPtr<SecurityOrigin> securityOrigin, Frame*, const String& dataDir, int64_t maximumSize, BackingStoreType backingStoreType) 91 backingStore = IDBSQLiteBackingStore::open(securityOrigin.get(), dataDir, maximumSize, fileIdentifier, this); 94 backingStore = IDBLevelDBBackingStore::open(securityOrigin.get(), dataDir, maximumSize, fileIdentifier, this);
|
IDBFactoryBackendImpl.h | 58 virtual void open(const String& name, PassRefPtr<IDBCallbacks>, PassRefPtr<SecurityOrigin>, Frame*, const String& dataDir, int64_t maximumSize, BackingStoreType);
|
IDBFactoryBackendInterface.h | 59 virtual void open(const String& name, PassRefPtr<IDBCallbacks>, PassRefPtr<SecurityOrigin>, Frame*, const String& dataDir, int64_t maximumSize, BackingStoreType) = 0;
|
AbstractDatabase.h | 69 unsigned long long maximumSize() const;
|
Database.h | 77 unsigned long long maximumSize() const;
|
IDBLevelDBBackingStore.h | 42 static PassRefPtr<IDBBackingStore> open(SecurityOrigin*, const String& pathBase, int64_t maximumSize, const String& fileIdentifier, IDBFactoryBackendImpl*);
|
IDBSQLiteBackingStore.h | 37 static PassRefPtr<IDBBackingStore> open(SecurityOrigin*, const String& pathBase, int64_t maximumSize, const String& fileIdentifier, IDBFactoryBackendImpl*);
|
/external/webkit/Source/WebKit/chromium/src/ |
IDBFactoryBackendProxy.cpp | 64 void IDBFactoryBackendProxy::open(const String& name, PassRefPtr<IDBCallbacks> callbacks, PassRefPtr<SecurityOrigin> origin, Frame* frame, const String& dataDir, int64_t maximumSize, BackingStoreType backingStoreType) 67 m_webIDBFactory->open(name, new WebIDBCallbacksImpl(callbacks), origin, webFrame, dataDir, maximumSize, static_cast<WebIDBFactory::BackingStoreType>(backingStoreType));
|
WebIDBFactoryImpl.cpp | 61 void WebIDBFactoryImpl::open(const WebString& name, WebIDBCallbacks* callbacks, const WebSecurityOrigin& origin, WebFrame*, const WebString& dataDir, unsigned long long maximumSize, BackingStoreType backingStoreType) 63 m_idbFactoryBackend->open(name, IDBCallbacksProxy::create(callbacks), origin, 0, dataDir, maximumSize, static_cast<IDBFactoryBackendInterface::BackingStoreType>(backingStoreType));
|
WebIDBFactoryImpl.h | 47 virtual void open(const WebString& name, WebIDBCallbacks*, const WebSecurityOrigin&, WebFrame*, const WebString& dataDir, unsigned long long maximumSize, BackingStoreType);
|
IDBFactoryBackendProxy.h | 48 virtual void open(const String& name, PassRefPtr<WebCore::IDBCallbacks>, PassRefPtr<WebCore::SecurityOrigin>, WebCore::Frame*, const String& dataDir, int64_t maximumSize, BackingStoreType);
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
WebApplicationCache.mm | 40 + (long long)maximumSize 42 return cacheStorage().maximumSize();
|
WebApplicationCache.h | 32 + (long long)maximumSize;
|
/external/webkit/Source/WebKit/qt/Api/ |
qwebsettings.h | 135 static void setOfflineStorageDefaultQuota(qint64 maximumSize); 140 static void setOfflineWebApplicationCacheQuota(qint64 maximumSize);
|
/external/webkit/Source/WebKit/qt/tests/hybridPixmap/ |
widget.ui | 43 <property name="maximumSize">
|
/external/webkit/Source/WebKit/chromium/public/ |
WebIDBFactory.h | 60 virtual void open(const WebString& name, WebIDBCallbacks*, const WebSecurityOrigin&, WebFrame*, const WebString& dataDir, unsigned long long maximumSize, BackingStoreType) { WEBKIT_ASSERT_NOT_REACHED(); }
|
/external/webkit/Source/WebKit/gtk/webkit/ |
webkitapplicationcache.cpp | 45 return (cacheMaxSize = WebCore::cacheStorage().maximumSize());
|
/external/webkit/Source/WebCore/loader/appcache/ |
ApplicationCacheStorage.h | 62 int64_t maximumSize() const;
|
/external/webkit/Source/WebCore/platform/sql/ |
SQLiteDatabase.h | 88 int64_t maximumSize();
|