HomeSort by relevance Sort by last modified time
    Searched refs:response (Results 51 - 75 of 2555) sorted by null

1 23 4 5 6 7 8 91011>>

  /system/nvram/core/include/nvram/core/
nvram_manager.h 37 // and output parameters in |response|.
38 void Dispatch(const Request& request, Response* response);
41 GetInfoResponse* response);
43 CreateSpaceResponse* response);
45 GetSpaceInfoResponse* response);
47 DeleteSpaceResponse* response);
49 DisableCreateResponse* response);
51 WriteSpaceResponse* response);
53 ReadSpaceResponse* response);
    [all...]
  /external/selinux/libsepol/include/sepol/
roles.h 9 const char *role, int *response);
  /external/tensorflow/tensorflow/contrib/verbs/
grpc_verbs_client.cc 26 GetRemoteAddressResponse* response) {
30 return FromGrpcStatus(stub_->GetRemoteAddress(&ctx, *request, response));
34 GetRemoteAddressResponse* response) {
37 return GetRemoteAddress(&call_options, request, response);
  /frameworks/support/webkit-codegen/src/test/resources/codegen/
WebKitTypeAsMethodParameter.java 21 public void methodX(SafeBrowsingResponse response) {
  /system/netd/server/dns/
IDnsTlsSocketObserver.h 30 virtual void onResponse(std::vector<uint8_t> response) = 0;
  /external/libese/libese-cpp/tests/include/esecpp/
MockEseInterface.h 39 inline auto EseReceive(const std::vector<uint8_t>& response) {
40 return Invoke([response](const std::vector<uint8_t>& /* tx */, std::vector<uint8_t>& rx) {
41 const auto end = (rx.size() >= response.size())
42 ? response.end() : (response.begin() + rx.size());
43 std::copy(response.begin(), end, rx.begin());
44 return (int) response.size();
48 // Returns a mocked device that expects a command, will pass the response to the
52 const std::vector<uint8_t>& command, const std::vector<uint8_t>& response) {
54 EXPECT_CALL(*mockEse, transceive(ContainerEq(command), _)).WillOnce(EseReceive(response));
    [all...]
  /external/libmicrohttpd/doc/examples/
responseheaders.c 28 struct MHD_Response *response; local
45 response =
49 if (NULL != response)
53 response);
54 MHD_destroy_response (response);
61 response =
63 MHD_add_response_header (response, "Content-Type", MIMETYPE);
64 ret = MHD_queue_response (connection, MHD_HTTP_OK, response);
65 MHD_destroy_response (response);
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
Authenticate.java 22 import com.squareup.okhttp.Response;
31 @Override public Request authenticate(Proxy proxy, Response response) {
32 System.out.println("Authenticating for response: " + response);
33 System.out.println("Challenges: " + response.challenges());
35 return response.request().newBuilder()
40 @Override public Request authenticateProxy(Proxy proxy, Response response) {
49 Response response = client.newCall(request).execute() local
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/
master_interface.h 37 CreateSessionResponse* response) = 0;
41 ExtendSessionResponse* response) = 0;
45 PartialRunSetupResponse* response) {
51 MutableRunStepResponseWrapper* response) = 0;
55 RunStepResponse* response) {
59 new NonOwnedProtoRunStepResponse(response));
72 // Returns a response object for use in calls to
83 CloseSessionResponse* response) = 0;
87 ListDevicesResponse* response) = 0;
90 ResetResponse* response) = 0
    [all...]
  /system/tpm/attestation/server/
dbus_service.cc 70 response,
73 // Convert |response| to a shared_ptr so |service_| can safely copy the
78 auto callback = [](const SharedResponsePointer& response,
80 response->Return(reply);
84 base::Bind(callback, SharedResponsePointer(std::move(response))));
88 std::unique_ptr<DBusMethodResponse<const GetKeyInfoReply&>> response,
91 // Convert |response| to a shared_ptr so |service_| can safely copy the
96 auto callback = [](const SharedResponsePointer& response,
97 const GetKeyInfoReply& reply) { response->Return(reply); };
100 base::Bind(callback, SharedResponsePointer(std::move(response))));
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
HttpService.java 81 * @param responseFactory the response factory
109 throw new IllegalArgumentException("Response factory may not be null");
136 HttpResponse response = null; local
154 response = this.responseFactory.newHttpResponse(ver,
156 response.setParams(
157 new DefaultedHttpParams(response.getParams(), this.params));
161 this.expectationVerifier.verify(request, response, context);
163 response = this.responseFactory.newHttpResponse(HttpVersion.HTTP_1_0,
165 response.setParams(
166 new DefaultedHttpParams(response.getParams(), this.params))
    [all...]
  /device/generic/goldfish/gatekeeper/
SoftGateKeeperDevice.cpp 56 EnrollResponse response; local
58 impl_->Enroll(request, &response);
60 if (response.error == ERROR_RETRY) {
61 return response.retry_timeout;
62 } else if (response.error != ERROR_NONE) {
66 *enrolled_password_handle = response.enrolled_password_handle.buffer.release();
72 *enrolled_password_handle_length = response.enrolled_password_handle.length;
94 VerifyResponse response; local
96 impl_->Verify(request, &response);
98 if (response.error == ERROR_RETRY)
    [all...]
  /device/google/cuttlefish_common/guest/hals/gatekeeper/
SoftGateKeeperDevice.cpp 56 EnrollResponse response; local
58 impl_->Enroll(request, &response);
60 if (response.error == ERROR_RETRY) {
61 return response.retry_timeout;
62 } else if (response.error != ERROR_NONE) {
66 *enrolled_password_handle = response.enrolled_password_handle.buffer.release();
72 *enrolled_password_handle_length = response.enrolled_password_handle.length;
94 VerifyResponse response; local
96 impl_->Verify(request, &response);
98 if (response.error == ERROR_RETRY)
    [all...]
  /system/core/gatekeeperd/
SoftGateKeeperDevice.cpp 56 EnrollResponse response; local
58 impl_->Enroll(request, &response);
60 if (response.error == ERROR_RETRY) {
61 return response.retry_timeout;
62 } else if (response.error != ERROR_NONE) {
66 *enrolled_password_handle = response.enrolled_password_handle.buffer.release();
67 *enrolled_password_handle_length = response.enrolled_password_handle.length;
89 VerifyResponse response; local
91 impl_->Verify(request, &response);
93 if (response.error == ERROR_RETRY)
    [all...]
  /external/libmicrohttpd/src/examples/
digest_auth_example.c 43 struct MHD_Response *response; local
52 response = MHD_create_response_from_buffer(strlen (DENIED),
57 response,
59 MHD_destroy_response(response);
70 response = MHD_create_response_from_buffer(strlen (DENIED),
73 if (NULL == response)
77 response,
79 MHD_destroy_response(response);
82 response = MHD_create_response_from_buffer(strlen(PAGE), PAGE,
84 ret = MHD_queue_response(connection, MHD_HTTP_OK, response);
    [all...]
  /external/protobuf/conformance/
conformance_ruby.rb 40 response = Conformance::ConformanceResponse.new
49 response.parse_error = err.message.encode('utf-8')
50 return response
57 response.parse_error = err.message.encode('utf-8')
58 return response
70 response.protobuf_payload = test_message.to_proto
73 response.json_payload = test_message.to_json
79 response.runtime_error = err.message.encode('utf-8')
82 response
99 response = do_test(request
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
UsimDataDownloadCommands.java.broken 46 private int mExpectingSendEnvelopeResponseSw1; // SW1/SW2 response status
47 private int mExpectingSendEnvelopeResponseSw2; // SW1/SW2 response status
48 private String mExpectingSendEnvelopeResponse; // Response string for Send Envelope
83 * @param response simulated envelope response to return
85 synchronized void expectSendEnvelope(String contents, int sw1, int sw2, String response) {
91 mExpectingSendEnvelopeResponse = response;
108 Message response) {
114 if (response != null) {
115 AsyncResult.forMessage(response);
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_remote_worker.cc 64 GetStatusResponse* response,
66 IssueRequest(request, response, getstatus_, std::move(done));
70 CreateWorkerSessionResponse* response,
72 IssueRequest(request, response, createworkersession_, std::move(done));
76 DeleteWorkerSessionResponse* response,
78 IssueRequest(request, response, deleteworkersession_, std::move(done));
82 RegisterGraphResponse* response,
84 IssueRequest(request, response, registergraph_, std::move(done));
88 DeregisterGraphResponse* response,
90 IssueRequest(request, response, deregistergraph_, std::move(done))
    [all...]
  /device/google/cuttlefish_common/guest/libs/remoter/
remoter_framework_pkt.h 45 /* Set to '1' if a response packet is desired */
171 int socket, struct remoter_response_packet* response) {
178 sizeof(response->length));
181 read(socket, response, sizeof(response->length)))) < 0) {
182 ALOGE("%s: Failed to read remoter response (%s)",
187 } else if (len != sizeof(response->length)) {
188 ALOGE("%s: Failed to read remoter response (Short read)", __FUNCTION__);
193 if (response->length != sizeof(*response)) {
    [all...]
  /external/nanohttpd/webserver/src/test/java/fi/iki/elonen/
TestHttpServer.java 94 CloseableHttpResponse response = httpclient.execute(httpget); local
95 Assert.assertEquals(404, response.getStatusLine().getStatusCode());
96 response.close();
103 CloseableHttpResponse response = httpclient.execute(httpget); local
104 String string = new String(readContents(response.getEntity()), "UTF-8");
106 response.close();
109 response = httpclient.execute(httpget);
110 string = new String(readContents(response.getEntity()), "UTF-8");
112 response.close();
119 CloseableHttpResponse response = httpclient.execute(httpget) local
    [all...]
  /external/nanohttpd/nanolets/src/test/java/fi/iki/elonen/router/
TestNanolets.java 111 CloseableHttpResponse response = httpclient.execute(httpget); local
112 HttpEntity entity = response.getEntity();
116 response.close();
119 response = httpclient.execute(httppost);
120 entity = response.getEntity();
124 response.close();
127 response = httpclient.execute(httpgput);
128 entity = response.getEntity();
132 response.close();
135 response = httpclient.execute(httpdelete)
148 CloseableHttpResponse response = httpclient.execute(httpget); local
160 CloseableHttpResponse response = httpclient.execute(httpget); local
172 CloseableHttpResponse response = httpclient.execute(httpget); local
184 CloseableHttpResponse response = httpclient.execute(httpget); local
196 CloseableHttpResponse response = httpclient.execute(httpget); local
241 CloseableHttpResponse response = httpclient.execute(httpget); local
253 CloseableHttpResponse response = httpclient.execute(httpget); local
265 CloseableHttpResponse response = httpclient.execute(httpget); local
284 CloseableHttpResponse response = httpclient.execute(httphead); local
326 CloseableHttpResponse response = httpclient.execute(httphead); local
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/arm/css/drivers/scp/
css_pm_scpi.c 121 uint32_t response; local
130 response = scpi_sys_power_state(scpi_system_shutdown);
132 if (response != SCP_OK) {
133 ERROR("CSS System Off: SCP error %u.\n", response);
146 uint32_t response; local
155 response = scpi_sys_power_state(scpi_system_reboot);
157 if (response != SCP_OK) {
158 ERROR("CSS System Reset: SCP error %u.\n", response);
  /external/apache-http/src/org/apache/http/
HttpServerConnection.java 77 * Sends the response line and headers of a response over this connection.
78 * @param response the response whose headers to send.
82 void sendResponseHeader(HttpResponse response)
86 * Sends the response entity of a response over this connection.
87 * @param response the response whose entity to send.
91 void sendResponseEntity(HttpResponse response)
    [all...]
  /external/apache-http/src/org/apache/http/impl/
NoConnectionReuseStrategy.java 59 public boolean keepAlive(final HttpResponse response, final HttpContext context) {
60 if (response == null) {
61 throw new IllegalArgumentException("HTTP response may not be null");
  /external/nos/host/android/citadel/citadeld/aidl/android/hardware/citadel/
ICitadeld.aidl 26 * @param response Buffer to receive data from the app.
29 int callApp(int appId, int arg, in byte[] request, out byte[] response);

Completed in 673 milliseconds

1 23 4 5 6 7 8 91011>>