Home
last modified time | relevance | path

Searched refs:nativeWebHistoryListImpl (Results 1 – 1 of 1) sorted by relevance

/ohos5.0/base/web/webview/interfaces/kits/cj/src/
H A Dwebview_ffi.cpp627 auto nativeWebHistoryListImpl = FFIData::GetData<WebHistoryListImpl>(id); in FfiOHOSBackForwardListCurrentIndex() local
628 if (nativeWebHistoryListImpl == nullptr || !nativeWebHistoryListImpl) { in FfiOHOSBackForwardListCurrentIndex()
633 return nativeWebHistoryListImpl->GetCurrentIndex(); in FfiOHOSBackForwardListCurrentIndex()
638 auto nativeWebHistoryListImpl = FFIData::GetData<WebHistoryListImpl>(id); in FfiOHOSBackForwardListSize() local
639 if (nativeWebHistoryListImpl == nullptr || !nativeWebHistoryListImpl) { in FfiOHOSBackForwardListSize()
644 return nativeWebHistoryListImpl->GetListSize(); in FfiOHOSBackForwardListSize()
725 auto nativeWebHistoryListImpl = FFIData::GetData<WebHistoryListImpl>(id); in FfiOHOSGetItemAtIndex() local
726 if (nativeWebHistoryListImpl == nullptr || !nativeWebHistoryListImpl) { in FfiOHOSGetItemAtIndex()
730 if (index >= nativeWebHistoryListImpl->GetListSize() || index < 0) { in FfiOHOSGetItemAtIndex()
734 std::shared_ptr<NWebHistoryItem> item = nativeWebHistoryListImpl->GetItem(index); in FfiOHOSGetItemAtIndex()