Home | History | Annotate | Download | only in win

Lines Matching refs:urlString

619     hr = entry->URLString(&urlBStr);
623 RetainPtr<CFStringRef> urlString(AdoptCF, MarshallingHelpers::BSTRToCFStringRef(urlBStr));
629 IWebHistoryItem *matchingEntry = (IWebHistoryItem*)CFDictionaryGetValue(m_entriesByURL.get(), urlString.get());
633 hr = removeItemForURLString(urlString.get());
652 hr = entry->URLString(&urlBStr);
656 RetainPtr<CFStringRef> urlString(AdoptCF, MarshallingHelpers::BSTRToCFStringRef(urlBStr));
660 m_entriesByURL.get(), urlString.get()));
669 removeItemForURLString(urlString.get());
685 CFDictionarySetValue(m_entriesByURL.get(), urlString.get(), entry);
699 RetainPtr<CFStringRef> urlString(AdoptCF, url.string().createCFString());
701 IWebHistoryItem* entry = (IWebHistoryItem*) CFDictionaryGetValue(m_entriesByURL.get(), urlString.get());
729 CFDictionarySetValue(m_entriesByURL.get(), urlString.get(), entry);
751 /* [in] */ CFStringRef urlString,
758 IWebHistoryItem* foundItem = (IWebHistoryItem*) CFDictionaryGetValue(m_entriesByURL.get(), urlString);
771 RetainPtr<CFStringRef> urlString(AdoptCF, MarshallingHelpers::BSTRToCFStringRef(url));
772 return itemForURLString(urlString.get(), item);
775 HRESULT WebHistory::removeItemForURLString(CFStringRef urlString)
777 IWebHistoryItem* entry = (IWebHistoryItem*) CFDictionaryGetValue(m_entriesByURL.get(), urlString);
782 CFDictionaryRemoveValue(m_entriesByURL.get(), urlString);
790 COMPtr<IWebHistoryItem> WebHistory::itemForURLString(const String& urlString) const
792 RetainPtr<CFStringRef> urlCFString(AdoptCF, urlString.createCFString());