Searched refs:quota (Results 76 - 88 of 88) sorted by relevance

1234

/external/webkit/Tools/DumpRenderTree/mac/
H A DLayoutTestControllerMac.mm375 void LayoutTestController::setApplicationCacheOriginQuota(unsigned long long quota)
378 [[origin applicationCacheQuotaManager] setQuota:quota];
405 void LayoutTestController::setDatabaseQuota(unsigned long long quota)
408 [[origin databaseQuotaManager] setQuota:quota];
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DLayoutTestController.cpp298 void LayoutTestController::setDatabaseQuota(uint64_t quota) argument
300 return WKBundleSetDatabaseQuota(InjectedBundle::shared().bundle(), quota);
/external/webkit/Tools/DumpRenderTree/gtk/
H A DLayoutTestControllerGtk.cpp649 void LayoutTestController::setApplicationCacheOriginQuota(unsigned long long quota) argument
670 void LayoutTestController::setDatabaseQuota(unsigned long long quota) argument
673 webkit_security_origin_set_web_database_quota(origin, quota);
/external/bluetooth/bluedroid/stack/l2cap/
H A Dl2c_utils.c1195 /* Initialize quota of this priority group based on its priority */
1196 p_ccb->p_lcb->rr_serv[p_ccb->ccb_priority].quota = L2CAP_GET_PRIORITY_QUOTA(p_ccb->ccb_priority);
1326 p_ccb->p_lcb->rr_serv[p_ccb->ccb_priority].quota = L2CAP_GET_PRIORITY_QUOTA(p_ccb->ccb_priority);
2976 /* decrease quota of its priority group */
2977 p_lcb->rr_serv[p_lcb->rr_pri].quota--;
2980 /* if there is no more quota of the priority group or no channel to have data to send */
2981 if ((p_lcb->rr_serv[p_lcb->rr_pri].quota == 0)||(!p_serve_ccb))
2985 /* initialize its quota */
2986 p_lcb->rr_serv[p_lcb->rr_pri].quota = L2CAP_GET_PRIORITY_QUOTA(p_lcb->rr_pri);
2992 L2CAP_TRACE_DEBUG3("RR service pri=%d, quota
[all...]
H A Dl2c_int.h316 UINT16 buff_quota; /* Buffer quota before sending congestion */
359 #define L2CAP_CHNL_PRIORITY_WEIGHT 5 /* weight per priority for burst transmission quota */
372 UINT8 quota; /* burst transmission quota */ member in struct:__anon1501
467 UINT16 round_robin_quota; /* Round-robin link quota */
H A Dl2c_csm.c1321 &&( p_ccb->p_lcb->rr_serv[p_ccb->ccb_priority].quota > 0))
/external/webkit/Tools/DumpRenderTree/win/
H A DLayoutTestControllerWin.cpp960 void LayoutTestController::setApplicationCacheOriginQuota(unsigned long long quota) argument
1004 void LayoutTestController::setDatabaseQuota(unsigned long long quota) argument
1014 databaseManager->setQuota(TEXT("file:///"), quota);
/external/webkit/Tools/DumpRenderTree/chromium/
H A DWebViewHost.h116 virtual WebKit::WebStorageNamespace* createSessionStorageNamespace(unsigned quota);
H A DWebViewHost.cpp249 WebStorageNamespace* WebViewHost::createSessionStorageNamespace(unsigned quota) argument
251 return WebKit::WebStorageNamespace::createSessionStorageNamespace(quota);
/external/webkit/Tools/DumpRenderTree/qt/
H A DDumpRenderTreeQt.cpp452 // clean up cache by resetting quota.
453 qint64 quota = webPage()->settings()->offlineWebApplicationCacheQuota(); local
454 webPage()->settings()->setOfflineWebApplicationCacheQuota(quota);
/external/webkit/Tools/DumpRenderTree/
H A DLayoutTestController.cpp1193 double quota = JSValueToNumber(context, arguments[0], NULL); local
1194 if (!isnan(quota))
1195 controller->setDatabaseQuota(static_cast<unsigned long long>(quota));
/external/kernel-headers/original/linux/
H A Dfs.h234 #define S_NOQUOTA 32 /* Inode is not counted to quota */
481 #include <linux/quota.h>
824 * 3: quota file
827 * parent -> child -> normal -> xattr -> quota
/external/webkit/Source/WebKit/android/jni/
H A DWebViewCore.cpp3672 * as quota. This means the value we returned here won't reflect the actual database size.
4830 // Called from the Java side to set a new quota for the origin or new appcache
4831 // max size in response to a notification that the original quota was exceeded or
4834 jlong quota)
4843 chromeC->wakeUpMainThreadWithNewQuota(quota);
4833 SetNewStorageLimit(JNIEnv* env, jobject obj, jint nativeClass, jlong quota) argument

Completed in 1817 milliseconds

1234