Home | History | Annotate | Download | only in ewk

Lines Matching refs:cookie

45  * @return @c EINA_FALSE if it wasn't possible to create the cookie jar,
77 * Clears all the cookies from the cookie jar.
95 * Returns a list of cookies in the cookie jar.
97 * @return an @c Eina_List with all the cookies in the cookie jar.
109 SoupCookie* cookie = static_cast<SoupCookie*>(p->data);
111 c->name = strdup(cookie->name);
112 c->value = strdup(cookie->value);
113 c->domain = strdup(cookie->domain);
114 c->path = strdup(cookie->path);
115 c->expires = soup_date_to_time_t(cookie->expires);
116 c->secure = static_cast<Eina_Bool>(cookie->secure);
117 c->http_only = static_cast<Eina_Bool>(cookie->http_only);
127 * Deletes a cookie from the cookie jar.
130 * cookie in the cookie jar.
132 * @param cookie an @c Ewk_Cookie that has the info relative to that cookie.
134 EAPI void ewk_cookies_cookie_del(Ewk_Cookie *cookie)
137 EINA_SAFETY_ON_NULL_RETURN(cookie);
142 cookie->name, cookie->value, cookie->domain, cookie->path, -1);
159 * Frees the memory used by a cookie.
161 * @param cookie the Ewk_Cookie struct that will be freed.
163 EAPI void ewk_cookies_cookie_free(Ewk_Cookie *cookie)
166 EINA_SAFETY_ON_NULL_RETURN(cookie);
167 free(cookie->name);
168 free(cookie->value);
169 free(cookie->domain);
170 free(cookie->path);
171 free(cookie);
205 * Gets the acceptance policy used in the current cookie jar.