Searched refs:cookieVal (Results 1 – 1 of 1) sorted by relevance
571 ContentValues cookieVal = new ContentValues(); in addCookie() local572 cookieVal.put(COOKIES_DOMAIN_COL, cookie.domain); in addCookie()573 cookieVal.put(COOKIES_PATH_COL, cookie.path); in addCookie()574 cookieVal.put(COOKIES_NAME_COL, cookie.name); in addCookie()575 cookieVal.put(COOKIES_VALUE_COL, cookie.value); in addCookie()577 cookieVal.put(COOKIES_EXPIRES_COL, cookie.expires); in addCookie()579 cookieVal.put(COOKIES_SECURE_COL, cookie.secure); in addCookie()580 mDatabase.insert(mTableNames[TABLE_COOKIES_ID], null, cookieVal); in addCookie()