HomeSort by relevance Sort by last modified time
    Searched defs:REQUEST (Results 1 - 25 of 47) sorted by null

1 2

  /external/guice/extensions/servlet/src/com/google/inject/servlet/
ServletScopes.java 48 * A threadlocal scope map for non-http request scopes. The {@link #REQUEST}
49 * scope falls back to this scope map if no http request is available, and
59 * HTTP servlet request scope.
61 public static final Scope REQUEST = new Scope() {
65 /** Keys bound in request-scope which are handled directly by GuiceFilter. */
72 // Check if the alternate request scope should be used, if no HTTP
73 // request is in progress.
77 // unlike the HTTP request because we're the only ones who have
98 } // else: fall into normal HTTP request scope and out of scop
    [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_service.h 77 enum RequestOrResponse { REQUEST, RESPONSE };
101 // Generate the Get{Request,Response}Prototype() methods.
  /external/protobuf/src/google/protobuf/compiler/java/
java_service.h 65 enum RequestOrResponse { REQUEST, RESPONSE };
106 // Generate the implementations of Service.get{Request,Response}Prototype().
  /external/volley/src/test/java/com/android/volley/toolbox/
BaseHttpStackTest.java 5 import com.android.volley.Request;
29 private static final Request<?> REQUEST = new TestRequest.Get();
45 Request<?> request, Map<String, String> additionalHeaders)
47 assertSame(REQUEST, request);
52 org.apache.http.HttpResponse resp = stack.performRequest(REQUEST, ADDITIONAL_HEADERS);
63 Request<?> request, Map<String, String> additionalHeaders
    [all...]
AdaptedHttpStackTest.java 6 import com.android.volley.Request;
36 private static final Request<?> REQUEST = new TestRequest.Get();
61 when(mHttpStack.performRequest(REQUEST, ADDITIONAL_HEADERS))
64 mAdaptedHttpStack.executeRequest(REQUEST, ADDITIONAL_HEADERS);
69 when(mHttpStack.performRequest(REQUEST, ADDITIONAL_HEADERS)).thenReturn(mHttpResponse);
74 mAdaptedHttpStack.executeRequest(REQUEST, ADDITIONAL_HEADERS);
83 when(mHttpStack.performRequest(REQUEST, ADDITIONAL_HEADERS)).thenReturn(mHttpResponse);
91 mAdaptedHttpStack.executeRequest(REQUEST, ADDITIONAL_HEADERS);
101 when(mHttpStack.performRequest(REQUEST, ADDITIONAL_HEADERS)).thenReturn(mHttpResponse)
    [all...]
  /frameworks/av/services/camera/libcameraservice/utils/
TagMonitor.h 46 REQUEST,
  /external/oauth/core/src/main/java/net/oauth/http/
HttpMessage.java 31 * An HTTP request or response.
146 /** The name of a dump entry whose value is the HTTP request. */
147 public static final String REQUEST = "HTTP request";
  /packages/apps/Settings/src/com/android/settings/network/
VpnPreferenceController.java 56 private static final NetworkRequest REQUEST = new NetworkRequest.Builder()
113 mConnectivityManager.registerNetworkCallback(REQUEST, mNetworkCallback);
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
ServerSocketService.java 91 private enum Source { REQUEST, ACCEPT}
134 return getConnectionImpl(id, Source.REQUEST);
  /external/dhcpcd-6.8.2/
dhcp-common.h 43 #define REQUEST (1 << 0)
  /external/scapy/scapy/layers/
eap.py 179 1: "Request",
208 lambda pkt: pkt.code == EAP.REQUEST and hasattr(pkt, 'type') and pkt.type == 1)
218 REQUEST = 1
255 if self.code == self.REQUEST:
258 if ((other.code == self.REQUEST) and
  /frameworks/base/core/java/android/net/
NetworkRequest.java 32 * Defines a request for a network, made through {@link NetworkRequest.Builder} and used
33 * to request a network via {@link ConnectivityManager#requestNetwork} or listen for changes
38 * The {@link NetworkCapabilities} that define this request.
44 * Identifies the request. NetworkRequests should only be constructed by
46 * the request.
64 * - REQUEST, capable of causing a specific network to be created
65 * first (e.g. a telephony DUN request), the framework will issue
72 * default Internet request (mDefaultRequest), but which cannot cause
74 * specific network. Note that from the point of view of the request
75 * matching code, TRACK_DEFAULT is identical to REQUEST: its specia
    [all...]
ConnectivityManager.java 78 * <li>Provide an API that allows applications to request and select networks for their data
467 * {@link #requestNetwork(NetworkRequest, NetworkCallback)} to request an
477 * {@link #requestNetwork(NetworkRequest, NetworkCallback)} to request an
490 * {@link #requestNetwork(NetworkRequest, NetworkCallback)} to request a network that
503 * {@link #requestNetwork(NetworkRequest, NetworkCallback)} to request a network that
516 * {@link #requestNetwork(NetworkRequest, NetworkCallback)} to request a network that
528 * {@link #requestNetwork(NetworkRequest, NetworkCallback)} to request an
538 * {@link #requestNetwork(NetworkRequest, NetworkCallback)} to request an
548 * {@link #requestNetwork(NetworkRequest, NetworkCallback)} to request an
565 * {@link #requestNetwork(NetworkRequest, NetworkCallback)} to request a
1271 NetworkRequest request = null; local
2947 final NetworkRequest request = getObject(message, NetworkRequest.class); local
3029 final NetworkRequest request; local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
TelephonyNetworkFactory.java 158 private static final boolean REQUEST = true;
166 if (action == REQUEST) {
182 applyRequests(mDefaultRequests, (mIsActive ? REQUEST : RELEASE), logString);
184 applyRequests(mSpecificRequests, (mIsActive ? REQUEST : RELEASE), logString);
210 applyRequests(mDefaultRequests, (mIsDefault ? REQUEST : RELEASE), logString);
226 // request only for the default network
266 // request only for the default network
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/
MasClient.java 44 private static final int REQUEST = 2;
158 private void executeRequest(Request request) {
160 request.execute(mSession);
161 mCallback.sendMessage(MceStateMachine.MSG_MAS_REQUEST_COMPLETED, request);
164 Log.d(TAG, "Request failed: " + request);
171 public boolean makeRequest(Request request) {
173 Log.d(TAG, "makeRequest called with: " + request);
    [all...]
  /external/curl/tests/python_dependencies/impacket/
smb3.py 90 REQUEST = {
297 # The idea here is to receive multiple/single commands and create a compound request, and send it
304 # Check this is not a CANCEL request. If so, don't consume sequece numbers
314 # Standard credit request after negotiating protocol
437 # SMB2 NEGOTIATE request as described in section 3.2.4.2.2.2 with the only exception
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
SecurityControllerImpl.java 63 private static final NetworkRequest REQUEST = new NetworkRequest.Builder()
118 mConnectivityManager.registerNetworkCallback(REQUEST, mNetworkCallback);
  /libcore/ojluni/src/main/java/java/util/concurrent/
SynchronousQueue.java 224 static final int REQUEST = 0;
227 /** Node is fulfilling another unfulfilled DATA or REQUEST */
351 int mode = (e == null) ? REQUEST : DATA;
369 return (E) ((mode == REQUEST) ? m.item : s.item);
385 return (E) ((mode == REQUEST) ? m.item : s.item);
    [all...]
  /external/wpa_supplicant_8/src/ap/
wpa_auth.c 818 "received EAPOL-Key Error Request "
838 * Error report is not a request for a new key handshake, but since
904 enum { PAIRWISE_2, PAIRWISE_4, GROUP_2, REQUEST } msg;
984 msg = REQUEST;
985 msgtxt = "Request";
999 if (msg == REQUEST || msg == PAIRWISE_2 || msg == PAIRWISE_4 ||
1047 "received EAPOL-Key request with "
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
ConnectivityServiceMock.java 85 * used to add a network request
91 * used to add a network listener - no request
97 * used to remove a network request, either a listener or a real request
194 private boolean isRequest(NetworkRequest request) {
195 return mNetworkRequests.get(request).isRequest;
206 //NetworkAgentInfo nai = mNetworkForRequestId.get(nri.request.requestId);
209 (nai != null ? nai.getCurrentScore() : 0), 0, nri.request);
274 // NetworkRequest request = nai.networkRequests.valueAt(i);
275 // NetworkAgentInfo currentNetwork = mNetworkForRequestId.get(request.requestId)
345 final NetworkRequest request; field in class:ConnectivityServiceMock.NetworkRequestInfo
    [all...]
  /prebuilts/tools/common/m2/repository/javax/servlet/servlet-api/2.3/
servlet-api-2.3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/
netty-codec-socks-4.1.6.Final.jar 
  /external/guice/extensions/struts2/lib/
jsp-api-2.1.jar 
jetty-6.1.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/velocity/velocity/1.5/
velocity-1.5.jar 

Completed in 430 milliseconds

1 2