Home | History | Annotate | Download | only in cookie

Lines Matching defs:cookie

17 package test.instant.cookie;
40 // The max cookie size is greater than zero
43 // Initially there is no cookie
44 byte[] cookie = pm.getInstantAppCookie();
45 assertTrue(cookie != null && cookie.length == 0);
47 // Setting a cookie below max size should work
50 // // Setting a cookie above max size should not work
54 // // Ensure cookie not modified
62 // // Set a cookie to later check when reinstalled as instant app
70 // // After the upgrade the cookie should be the same
81 // // Set a cookie to later check when upgrade to a normal app
92 // // The cookie survives the upgrade to a normal app
100 // // Set a cookie to later check when reinstalled as normal app
108 // // The cookie should have been wiped if non-instant app is uninstalled
109 // byte[] cookie = pm.getInstantAppCookie();
110 // assertTrue(cookie != null && cookie.length == 0);