Searched refs:timeToLive (Results 1 - 11 of 11) sorted by relevance
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/include/ |
H A D | ark_web_nweb.h | 1446 * @param timeToLive The time of the back forward cache page could stay. 1449 virtual void SetBackForwardCacheOptions(int32_t size, int32_t timeToLive) = 0;
|
/base/web/webview/interfaces/kits/cj/include/ |
H A D | webview_controller_impl.h | 202 void SetBackForwardCacheOptions(int32_t size, int32_t timeToLive);
|
/base/web/webview/interfaces/kits/napi/webviewcontroller/ |
H A D | webview_controller.h | 388 void SetBackForwardCacheOptions(int32_t size, int32_t timeToLive);
|
H A D | webview_controller.cpp | 2020 void WebviewController::SetBackForwardCacheOptions(int32_t size, int32_t timeToLive) in SetBackForwardCacheOptions() argument 2027 nweb_ptr->SetBackForwardCacheOptions(size, timeToLive); in SetBackForwardCacheOptions()
|
H A D | napi_webview_controller.cpp | 5804 int32_t timeToLive = BFCACHE_DEFAULT_TIMETOLIVE; in SetBackForwardCacheOptions() local 5813 if (napi_get_named_property(env, argv[INTEGER_ZERO], "timeToLive", &timeToLiveObj) == napi_ok) { in SetBackForwardCacheOptions() 5814 if (!NapiParseUtils::ParseInt32(env, timeToLiveObj, timeToLive)) { in SetBackForwardCacheOptions() 5815 timeToLive = BFCACHE_DEFAULT_TIMETOLIVE; in SetBackForwardCacheOptions() 5819 webviewController->SetBackForwardCacheOptions(size, timeToLive); in SetBackForwardCacheOptions()
|
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webcore/ |
H A D | ark_web_nweb_impl.h | 1284 * @param timeToLive The time of the back forward cache page could stay. 1287 void SetBackForwardCacheOptions(int32_t size, int32_t timeToLive) override;
|
H A D | ark_web_nweb_impl.cpp | 1119 void ArkWebNWebImpl::SetBackForwardCacheOptions(int32_t size, int32_t timeToLive) in SetBackForwardCacheOptions() argument 1121 nweb_nweb_->SetBackForwardCacheOptions(size, timeToLive); in SetBackForwardCacheOptions()
|
/base/web/webview/interfaces/kits/cj/src/ |
H A D | webview_controller_impl.cpp | 794 void WebviewControllerImpl::SetBackForwardCacheOptions(int32_t size, int32_t timeToLive) in SetBackForwardCacheOptions() argument 801 nweb_ptr->SetBackForwardCacheOptions(size, timeToLive); in SetBackForwardCacheOptions()
|
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webview/ |
H A D | ark_web_nweb_wrapper.cpp | 1278 void ArkWebNWebWrapper::SetBackForwardCacheOptions(int32_t size, int32_t timeToLive) in SetBackForwardCacheOptions() argument 1280 ark_web_nweb_->SetBackForwardCacheOptions(size, timeToLive); in SetBackForwardCacheOptions()
|
H A D | ark_web_nweb_wrapper.h | 1241 * @param timeToLive The time of the back forward cache page could stay. 1244 void SetBackForwardCacheOptions(int32_t size, int32_t timeToLive) override;
|
/base/web/webview/ohos_interface/include/ohos_nweb/ |
H A D | nweb.h | 1480 * @param timeToLive The time of the back forward cache page could stay. 1482 virtual void SetBackForwardCacheOptions(int32_t size, int32_t timeToLive) { return; } in SetBackForwardCacheOptions() argument
|
Completed in 32 milliseconds