Searched refs:cookieObj (Results 1 – 5 of 5) sorted by relevance
/third_party/cef/libcef_dll/cpptoc/ |
D | cookie_access_filter_cpptoc.cc | 47 CefCookie cookieObj; in cookie_access_filter_can_send_cookie() local 49 cookieObj.Set(*cookie, false); in cookie_access_filter_can_send_cookie() 54 CefRequestCToCpp::Wrap(request), cookieObj); in cookie_access_filter_can_send_cookie() 87 CefCookie cookieObj; in cookie_access_filter_can_save_cookie() local 89 cookieObj.Set(*cookie, false); in cookie_access_filter_can_save_cookie() 95 cookieObj); in cookie_access_filter_can_save_cookie()
|
D | cookie_visitor_cpptoc.cc | 44 CefCookie cookieObj; in cookie_visitor_visit() local 46 cookieObj.Set(*cookie, false); in cookie_visitor_visit() 52 cookieObj, count, total, deleteCookieBool); in cookie_visitor_visit()
|
D | cookie_manager_cpptoc.cc | 111 CefCookie cookieObj; in cookie_manager_set_cookie() local 113 cookieObj.Set(*cookie, false); in cookie_manager_set_cookie() 117 CefString(url), cookieObj, CefSetCookieCallbackCToCpp::Wrap(callback)); in cookie_manager_set_cookie()
|
/third_party/python/Modules/_io/ |
D | textio.c | 969 PyObject *cookieObj = PyObject_CallMethodNoArgs( in _textiowrapper_fix_encoder_state() local 971 if (cookieObj == NULL) { in _textiowrapper_fix_encoder_state() 975 int cmp = PyObject_RichCompareBool(cookieObj, _PyLong_GetZero(), Py_EQ); in _textiowrapper_fix_encoder_state() 976 Py_DECREF(cookieObj); in _textiowrapper_fix_encoder_state() 2359 textiowrapper_parse_cookie(cookie_type *cookie, PyObject *cookieObj) in textiowrapper_parse_cookie() argument 2362 PyLongObject *cookieLong = (PyLongObject *)PyNumber_Long(cookieObj); in textiowrapper_parse_cookie() 2453 _io_TextIOWrapper_seek_impl(textio *self, PyObject *cookieObj, int whence) in _io_TextIOWrapper_seek_impl() argument 2465 Py_INCREF(cookieObj); in _io_TextIOWrapper_seek_impl() 2477 cmp = PyObject_RichCompareBool(cookieObj, zero, Py_EQ); in _io_TextIOWrapper_seek_impl() 2489 Py_DECREF(cookieObj); in _io_TextIOWrapper_seek_impl() [all …]
|
/third_party/python/Modules/_io/clinic/ |
D | textio.c.h | 481 _io_TextIOWrapper_seek_impl(textio *self, PyObject *cookieObj, int whence); 487 PyObject *cookieObj; in _io_TextIOWrapper_seek() local 493 cookieObj = args[0]; in _io_TextIOWrapper_seek() 502 return_value = _io_TextIOWrapper_seek_impl(self, cookieObj, whence); in _io_TextIOWrapper_seek()
|