Searched refs:cookieStr (Results 1 – 2 of 2) sorted by relevance
117 void setCookies(Document* document, const KURL& url, const String& cookieStr)123 if (cookieStr.isEmpty())128 String cookieString = cookieStr.contains('=') ? cookieStr : cookieStr + "=";
1510 const CString cookieStr = cookies(frame->document(), u).utf8(); in getValueForURL() local1511 if (!cookieStr.isNull()) { in getValueForURL()1512 const int size = cookieStr.length(); in getValueForURL()1516 memcpy(*value, cookieStr.data(), size+1); in getValueForURL()1569 const String cookieStr = String::fromUTF8(value, len); in setValueForURL() local1571 if (frame && !cookieStr.isEmpty()) in setValueForURL()1572 setCookies(frame->document(), u, cookieStr); in setValueForURL()