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

  /external/dhcpcd/
showlease.c 13 #define REQUEST (1 << 0)
34 { 1, IPV4 | REQUEST, "subnet_mask" },
36 { 3, IPV4 | ARRAY | REQUEST, "routers" },
61 { 28, IPV4 | REQUEST, "broadcast_address" },
66 { 33, IPV4 | ARRAY | REQUEST, "static_routes" },
84 { 51, UINT32 | REQUEST, "dhcp_lease_time" },
91 { 58, UINT32 | REQUEST, "dhcp_renewal_time" },
92 { 59, UINT32 | REQUEST, "dhcp_rebinding_time" },
120 { 121, RFC3442 | REQUEST, "classless_static_routes" },
dhcp.c 40 #define REQUEST (1 << 0)
55 #define IPV4R IPV4 | REQUEST
71 { 1, IPV4 | REQUEST, "subnet_mask" },
77 { 33, IPV4 | ARRAY | REQUEST, "static_routes" },
78 { 3, IPV4 | ARRAY | REQUEST, "routers" },
82 /* Explicitly include DNS in the list of parameters requested in the DNS request.
84 { 6, IPV4 | ARRAY | REQUEST, "domain_name_servers" },
93 /* Explicitly include DNS in the list of parameters requested in the DNS request.
95 { 15, STRING | REQUEST, "domain_name" },
108 { 28, IPV4 | REQUEST, "broadcast_address" }
    [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 82 // Generate the implementations of Service.get{Request,Response}Prototype().
83 enum RequestOrResponse { REQUEST, RESPONSE };
java_service.cc 84 GenerateGetPrototype(REQUEST, printer);
125 " impl.$method$(controller, request, done);\n"
148 GenerateGetPrototype(REQUEST, printer);
171 " com.google.protobuf.Message request,\n"
192 " this.$method$(controller, ($input$)request,\n"
217 " com.google.protobuf.Message request)\n"
237 " return impl.$method$(controller, ($input$)request);\n");
269 "request_or_response", (which == REQUEST) ? "Request" : "Response");
278 (which == REQUEST) ? method->input_type() : method->output_type())
    [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 *//
  /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 190 static final int REQUEST = 0;
193 /** Node is fulfilling another unfulfilled DATA or REQUEST */
318 int mode = (e == null) ? REQUEST : DATA;
336 return (mode == REQUEST) ? m.item : s.item;
352 return (mode == REQUEST) ? m.item : s.item;
    [all...]
  /external/wpa_supplicant_8/src/eapol_auth/
eapol_auth_sm.c 111 "TxReq called, but there is no EAP request "
451 SM_STATE(BE_AUTH, REQUEST)
453 SM_ENTRY_MA(BE_AUTH, REQUEST, be_auth);
462 * EAP response would not be valid anymore after the new EAP request
467 * EAP-Request from the main EAP method. This can be avoided by
546 SM_ENTER(BE_AUTH, REQUEST);
555 SM_ENTER(BE_AUTH, REQUEST);
579 SM_ENTER(BE_AUTH, REQUEST);
587 SM_ENTER(BE_AUTH, REQUEST);
  /external/wpa_supplicant_8/src/eapol_supp/
eapol_supp_sm.c 448 SM_STATE(SUPP_BE, REQUEST)
450 SM_ENTRY(SUPP_BE, REQUEST);
549 * IEEE Std 802.1X-2004 has transitions from REQUEST to FAIL
563 wpa_printf(MSG_DEBUG, "EAPOL: SUPP_BE REQUEST: both "
591 SM_ENTER(SUPP_BE, REQUEST);
600 SM_ENTER(SUPP_BE, REQUEST);
971 return "REQUEST";
    [all...]
  /external/wpa_supplicant_8/src/ap/
wpa_auth.c 711 "received EAPOL-Key Error Request "
731 * Error report is not a request for a new key handshake, but since
746 enum { PAIRWISE_2, PAIRWISE_4, GROUP_2, REQUEST,
820 msg = REQUEST;
821 msgtxt = "Request";
834 if (msg == REQUEST || msg == PAIRWISE_2 || msg == PAIRWISE_4 ||
865 "received EAPOL-Key request with "
982 /* MLME-DEAUTHENTICATE.request */
1035 case REQUEST:
1073 "received EAPOL-Key request with
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
javax.servlet.jsp_2.0.0.v200806031607.jar 
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
  /external/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 239 milliseconds