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

1 2 3

  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1-modules/test/
pkcs10.sh 4 -----BEGIN CERTIFICATE REQUEST-----
22 -----END CERTIFICATE REQUEST-----
  /system/connectivity/dhcp_client/
dhcp.h 37 REQUEST,
  /external/jetty/src/java/org/eclipse/jetty/servlet/
FilterMapping.java 36 public static final int REQUEST=1;
49 if ("request".equalsIgnoreCase(type))
50 return DispatcherType.REQUEST;
69 case REQUEST:
70 return REQUEST;
101 * @param type The type of request: __REQUEST,__FORWARD,__INCLUDE, __ASYNC or __ERROR.
118 * @param type The type of request:
119 * {@link Handler#REQUEST}, {@link Handler#FORWARD}, {@link Handler#INCLUDE} or {@link Handler#ERROR}.
125 return type==REQUEST || type==ASYNC && _holder.isAsyncSupported();
168 if (dispatcherTypes.contains(DispatcherType.REQUEST))
    [all...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMasObexClientSession.java 50 private static final int REQUEST = 2;
88 case REQUEST:
116 public boolean makeRequest(BluetoothMasRequest request) {
117 if (DBG) Log.d(TAG, "makeRequest called with: " + request);
119 boolean status = mHandler.sendMessage(mHandler.obtainMessage(REQUEST, request));
171 private void executeRequest(BluetoothMasRequest request) {
173 request.execute(mSession);
174 mSessionHandler.obtainMessage(MSG_REQUEST_COMPLETED, request).sendToTarget();
176 if (DBG) Log.d(TAG, "Request failed: " + request)
    [all...]
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
InternalServletModule.java 18 import static com.google.inject.servlet.ServletScopes.REQUEST;
83 bindScope(RequestScoped.class, REQUEST);
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.
cpp_service.cc 95 " const ::google::protobuf::Message* request,\n"
154 " const $input_type$* request,\n"
192 GenerateGetPrototype(REQUEST, printer);
238 " const ::google::protobuf::Message* request,\n"
257 " ::google::protobuf::down_cast<const $input_type$*>(request),\n"
274 if (which == REQUEST) {
290 (which == REQUEST) ? method->input_type() : method->output_type();
322 " const $input_type$* request,\n"
326 " controller, request, response, done);\n"
  /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().
java_service.cc 98 GenerateGetPrototype(REQUEST, printer);
146 " impl.$method$(controller, request, done);\n"
169 GenerateGetPrototype(REQUEST, printer);
193 " com.google.protobuf.Message request,\n"
216 " this.$method$(controller, ($input$)request,\n"
242 " com.google.protobuf.Message request)\n"
264 " return impl.$method$(controller, ($input$)request);\n");
296 "request_or_response", (which == REQUEST) ? "Request" : "Response");
305 (which == REQUEST) ? method->input_type() : method->output_type())
    [all...]
  /frameworks/av/services/camera/libcameraservice/utils/
TagMonitor.h 41 REQUEST,
TagMonitor.cpp 105 CameraMetadata &lastValues = (source == REQUEST) ?
164 int indentation = (event.source == REQUEST) ? 15 : 30;
168 event.source == REQUEST ? "REQ:" : "RES:",
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
TelephonyNetworkFactory.java 159 private static final boolean REQUEST = true;
167 if (action == REQUEST) {
183 applyRequests(mDefaultRequests, (mIsActive ? REQUEST : RELEASE), logString);
185 applyRequests(mSpecificRequests, (mIsActive ? REQUEST : RELEASE), logString);
211 applyRequests(mDefaultRequests, (mIsDefault ? REQUEST : RELEASE), logString);
227 // request only for the default network
267 // request only for the default network
  /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/chromium-trace/catapult/telemetry/third_party/web-page-replay/
httparchive_test.py 34 REQUEST = create_request(REQUEST_HEADERS)
51 self.archive[self.REQUEST] = self.RESPONSE
53 # Also add an identical POST request for testing
54 request = httparchive.ArchivedHttpRequest(
56 self.archive[request] = self.RESPONSE
66 request = httparchive.ArchivedHttpRequest
68 self.assertEqual(request._TrimHeaders(header1),
72 self.assertEqual(request._TrimHeaders(header2), [])
76 self.assertEqual(request._TrimHeaders(header3), [('hello', 'world')])
80 self.assertEqual(request._TrimHeaders(header4)
    [all...]
  /external/e2fsprogs/lib/ss/
ct_c.sed 11 #(for each request definition)
29 # It removes comments, and puts each command_table request onto a single
47 s/^unimplemented [A-Za-z_0-9]*/request ss_unimplemented/
51 s/^unknown /request ss_unknown, "", /
58 /^request /bREQUEST
73 # Handle the request keyword --- this is the heart of the sed script.
75 :REQUEST
76 s/^request *//
  /frameworks/base/core/java/android/net/
NetworkRequest.java 25 * Defines a request for a network, made through {@link NetworkRequest.Builder} and used
26 * to request a network via {@link ConnectivityManager#requestNetwork} or listen for changes
31 * The {@link NetworkCapabilities} that define this request.
37 * Identifies the request. NetworkRequests should only be constructed by
39 * the request.
57 * - REQUEST, capable of causing a specific network to be created
58 * first (e.g. a telephony DUN request), the framework will issue
65 * default Internet request (mDefaultRequest), but which cannot cause
67 * specific network. Note that from the point of view of the request
68 * matching code, TRACK_DEFAULT is identical to REQUEST: its specia
    [all...]
  /external/dhcpcd-6.8.2/
dhcp-common.h 43 #define REQUEST (1 << 0)
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
TransferRequestIntegrationTest.java 38 * Tests transferring of entire request scope.
65 bindScope(RequestScoped.class, ServletScopes.REQUEST);
  /external/jetty/src/java/org/eclipse/jetty/server/handler/
RequestLogHandler.java 31 import org.eclipse.jetty.server.Request;
57 public void handle(String target, final Request baseRequest, HttpServletRequest request, final HttpServletResponse response)
68 super.handle(target, baseRequest, request, response);
72 if (_requestLog != null && baseRequest.getDispatcherType().equals(DispatcherType.REQUEST))
100 //are we changing the request log impl?
116 //if we're already started, then start our request log
187 public void log(Request request, Response response)
  /external/oauth/core/src/main/java/net/oauth/client/
URLConnectionResponse.java 43 public URLConnectionResponse(HttpMessage request, String requestHeaders,
45 super(request.method, request.url);
48 this.requestEncoding = request.getContentCharset();
99 StringBuilder request = new StringBuilder(requestHeaders); local
100 request.append(EOL);
102 request.append(new String(requestExcerpt, requestEncoding));
104 into.put(REQUEST, request.toString());
  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpMethodResponse.java 51 public HttpMethodResponse(HttpRequestBase request, HttpResponse response, byte[] requestBody,
54 super(request.getMethod(), new URL(request.getURI().toString()));
55 this.httpRequest = request;
97 StringBuilder request = new StringBuilder(httpRequest.getMethod()); local
98 request.append(" ").append(httpRequest.getURI().getPath());
101 request.append("?").append(query);
103 request.append(EOL);
105 request.append(header.getName()).append(": ").append(header.getValue()).append(EOL);
111 request.append("Content-Length: ").append(contentLength).append(EOL)
    [all...]
  /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";
  /libcore/luni/src/main/java/java/util/concurrent/
SynchronousQueue.java 195 static final int REQUEST = 0;
198 /** Node is fulfilling another unfulfilled DATA or REQUEST */
322 int mode = (e == null) ? REQUEST : DATA;
340 return (E) ((mode == REQUEST) ? m.item : s.item);
356 return (E) ((mode == REQUEST) ? m.item : s.item);
    [all...]
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
SapSocketTest.java 150 msg.setType(SapApi.REQUEST);

Completed in 2082 milliseconds

1 2 3