HomeSort by relevance Sort by last modified time
    Searched refs:COOKIE (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/apache-http/src/org/apache/http/cookie/
SM.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/cookie/SM.java $
32 package org.apache.http.cookie;
48 public static final String COOKIE = "Cookie";
50 public static final String SET_COOKIE = "Set-Cookie";
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
ContactsAsyncHelperTest.java 53 private static final Object COOKIE = new Object();
59 Bitmap photoIcon, Object cookie) {
93 cah.startObtainPhotoAsync(TOKEN, mContext, null, mListener, COOKIE);
104 cah.startObtainPhotoAsync(TOKEN, mContext, SAMPLE_CONTACT_PHOTO_URI, mListener, COOKIE);
107 isNull(Drawable.class), isNull(Bitmap.class), eq(COOKIE));
113 cah.startObtainPhotoAsync(TOKEN, mContext, SAMPLE_CONTACT_PHOTO_URI, mListener, COOKIE);
119 photoCaptor.capture(), iconCaptor.capture(), eq(COOKIE));
133 mListener, COOKIE);
139 photoCaptor.capture(), iconCaptor.capture(), eq(COOKIE));
  /external/nist-sip/java/gov/nist/javax/sip/header/
ParameterNames.java 75 public static final String COOKIE = "cookie";
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
bugTools.jar 
  /system/connectivity/dhcp_client/
dhcp_message_unittest.cc 53 #define COOKIE 0x63, 0x82, 0x53, 0x63
103 COOKIE, // cookie
125 COOKIE, // cookie
147 COOKIE, // cookie
  /external/guava/guava/src/com/google/common/net/
HttpHeaders.java 75 /** The HTTP {@code Cookie} header field name. */
76 public static final String COOKIE = "Cookie";
186 /** The HTTP {@code Set-Cookie} header field name. */
187 public static final String SET_COOKIE = "Set-Cookie";
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
SerializedGrammar.java 39 public static final String COOKIE = "$ANTLR";
99 String cookie = readString(in); // get $ANTLR local
100 if ( !cookie.equals(COOKIE) ) throw new IOException("not a serialized grammar file");
  /external/jetty/src/java/org/eclipse/jetty/http/
HttpHeaders.java 106 public final static String COOKIE= "Cookie",
107 SET_COOKIE= "Set-Cookie",
233 COOKIE_BUFFER=CACHE.add(COOKIE,COOKIE_ORDINAL),
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSerializerFoo.java 63 writeString(out, SerializedGrammar.COOKIE);
  /external/apache-http/src/org/apache/http/impl/cookie/
BrowserCompatSpec.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/BrowserCompatSpec.java $
32 package org.apache.http.impl.cookie;
41 import org.apache.http.cookie.ClientCookie;
42 import org.apache.http.cookie.Cookie;
43 import org.apache.http.cookie.CookieOrigin;
44 import org.apache.http.cookie.MalformedCookieException;
45 import org.apache.http.cookie.SM;
51 * Cookie specification that strives to closely mimic (mis)behavior of
108 public List<Cookie> parse(final Header header, final CookieOrigin origin)
169 Cookie cookie = cookies.get(i); local
    [all...]
NetscapeDraftSpec.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/NetscapeDraftSpec.java $
32 package org.apache.http.impl.cookie;
40 import org.apache.http.cookie.ClientCookie;
41 import org.apache.http.cookie.Cookie;
42 import org.apache.http.cookie.CookieOrigin;
43 import org.apache.http.cookie.MalformedCookieException;
44 import org.apache.http.cookie.SM;
50 * Netscape cookie draft compliant cookie polic
163 Cookie cookie = cookies.get(i); local
    [all...]
RFC2109Spec.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/impl/cookie/RFC2109Spec.java $
32 package org.apache.http.impl.cookie;
40 import org.apache.http.cookie.ClientCookie;
41 import org.apache.http.cookie.Cookie;
42 import org.apache.http.cookie.CookieOrigin;
43 import org.apache.http.cookie.CookiePathComparator;
44 import org.apache.http.cookie.MalformedCookieException;
45 import org.apache.http.cookie.SM;
50 * RFC 2109 compliant cookie polic
170 Cookie cookie = cooky; local
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/server/session/
SessionHandler.java 27 import javax.servlet.http.Cookie;
48 public final static EnumSet<SessionTrackingMode> DEFAULT_TRACKING = EnumSet.of(SessionTrackingMode.COOKIE,SessionTrackingMode.URL);
172 HttpCookie cookie = _sessionManager.access(session,request.isSecure()); local
173 if (cookie != null) // Handle changed ID or max-age refresh
174 baseRequest.getResponse().addCookie(cookie);
261 // Look for session id cookie
264 Cookie[] cookies = request.getCookies();
275 LOG.debug("Got Session ID {} from cookie",requested_session_id);
288 LOG.warn("null session id from cookie");
AbstractSessionManager.java 75 Arrays.asList(new SessionTrackingMode[]{SessionTrackingMode.COOKIE,SessionTrackingMode.URL})));
190 // Do we need to refresh the cookie?
197 HttpCookie cookie=getSessionCookie(session,_context==null?"/":(_context.getContextPath()),secure); local
200 return cookie;
252 // Look for a session cookie name
263 // set up the max session cookie age if it isn't already
406 * cookies are ALWAYS marked as secure. If false, a session cookie is
416 * @return true if session cookie is to be marked as secure only on HTTPS requests
426 * @return if true, session cookie will be marked as secure only iff
428 * in which case the session cookie will be marked as secure on both HTTPS and HTTP
476 HttpCookie cookie = null; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_bugzilla/org/eclipse/releng/services/bugzilla/
UpdateBugStateTask.java 49 private static final String COOKIE = "Cookie"; //$NON-NLS-1$
510 // trap for invalid login cookie
572 private HttpsURLConnection getConn(String url, String method, boolean in, boolean out, String cookie)
610 if (!cookie.equals(EMPTY))
612 sconn.setRequestProperty(COOKIE, cookie);
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
UIProvider.java 533 * Optional URI for querying for the cookie needed for accessing inline content. The cookie
706 AccountCookieColumns.COOKIE
711 * String column containing the cookie string for this account
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/client/
HttpDestination.java 161 public void addCookie(HttpCookie cookie)
167 _cookies.add(cookie);
530 for (HttpCookie cookie : _cookies)
536 buf.append(cookie.getName()); // TODO quotes
538 buf.append(cookie.getValue()); // TODO quotes
541 ex.addRequestHeader(HttpHeaders.COOKIE, buf.toString());
  /external/caliper/lib/
jsr311-api-1.1.1.jar 
  /external/curl/include/curl/
curl.h     [all...]
  /external/google-breakpad/src/third_party/curl/
curl.h 743 /* Set cookie in request: */
744 CINIT(COOKIE, OBJECTPOINT, 22),
769 "cookie awareness" */
    [all...]
  /external/jetty/lib/
javax.servlet-3.0.0.v201112011016.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-http/8.1.14.v20131031/
jetty-http-8.1.14.v20131031.jar 
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationViewFragment.java 352 // Set the cookie for this base url
1759 final String cookie = cookieCursor.getString( local
    [all...]
  /prebuilts/tools/common/m2/repository/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 

Completed in 883 milliseconds

1 2 3 4