Searched defs:response (Results 276 - 300 of 714) sorted by relevance

<<11121314151617181920>>

/external/libsepol/src/
H A Dnodes.c148 const sepol_policydb_t * p, unsigned int *response)
163 *response = count;
172 const sepol_node_key_t * key, int *response)
194 *response = 1;
209 *response = 1;
220 *response = 0;
232 const sepol_node_key_t * key, sepol_node_t ** response)
256 response) < 0)
275 response) < 0)
285 *response
147 sepol_node_count(sepol_handle_t * handle __attribute__ ((unused)), const sepol_policydb_t * p, unsigned int *response) argument
170 sepol_node_exists(sepol_handle_t * handle, const sepol_policydb_t * p, const sepol_node_key_t * key, int *response) argument
230 sepol_node_query(sepol_handle_t * handle, const sepol_policydb_t * p, const sepol_node_key_t * key, sepol_node_t ** response) argument
[all...]
H A Dports.c144 const sepol_policydb_t * p, unsigned int *response)
155 *response = count;
164 const sepol_port_key_t * key, int *response)
185 *response = 1;
190 *response = 0;
202 const sepol_port_key_t * key, sepol_port_t ** response)
223 if (port_to_record(handle, policydb, c, response) < 0)
229 *response = NULL;
143 sepol_port_count(sepol_handle_t * handle __attribute__ ((unused)), const sepol_policydb_t * p, unsigned int *response) argument
162 sepol_port_exists(sepol_handle_t * handle, const sepol_policydb_t * p, const sepol_port_key_t * key, int *response) argument
200 sepol_port_query(sepol_handle_t * handle, const sepol_policydb_t * p, const sepol_port_key_t * key, sepol_port_t ** response) argument
H A Dusers.c289 const sepol_user_key_t * key, int *response)
297 *response = (hashtab_search(policydb->p_users.table,
305 const sepol_policydb_t * p, unsigned int *response)
309 *response = policydb->p_users.nprim;
317 const sepol_user_key_t * key, sepol_user_t ** response)
330 *response = NULL;
334 if (user_to_record(handle, policydb, usrdatum->s.value - 1, response) <
287 sepol_user_exists(sepol_handle_t * handle __attribute__ ((unused)), const sepol_policydb_t * p, const sepol_user_key_t * key, int *response) argument
304 sepol_user_count(sepol_handle_t * handle __attribute__ ((unused)), const sepol_policydb_t * p, unsigned int *response) argument
315 sepol_user_query(sepol_handle_t * handle, const sepol_policydb_t * p, const sepol_user_key_t * key, sepol_user_t ** response) argument
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAuthenticationInfo.java194 * AuthenticationInfoHeader to the new <var>response</var>
197 * @param response - the new response String of this
203 public void setResponse(String response) throws ParseException { argument
204 this.setParameter(ParameterNames.RESPONSE_AUTH, response);
/external/okhttp/src/main/java/com/squareup/okhttp/
H A DResponse.java29 * An HTTP response. Instances of this class are not immutable: the response
52 * The wire-level request that initiated this HTTP response. This is usually
57 * response compression.
58 * <li>It may be the request generated in response to an HTTP redirect.
105 * Returns the response for the HTTP redirect that triggered this response, or
106 * null if this response wasn't triggered by an automatic redirect. The body
107 * of the returned response should not be read because it has already been
146 * Returns the response byte
166 onResponse(Response response) argument
[all...]
/external/okhttp/src/test/java/com/squareup/okhttp/internal/mockspdyserver/
H A DMockSpdyServer.java143 public void enqueue(MockResponse response) { argument
144 dispatcher.enqueueResponse(response);
193 MockResponse response;
195 response = dispatcher.dispatch(request);
199 writeResponse(stream, response);
200 logger.info("Received request: " + request + " and responded: " + response);
237 private void writeResponse(SpdyStream stream, MockResponse response) throws IOException { argument
239 String[] statusParts = response.getStatus().split(" ", 2);
241 throw new AssertionError("Unexpected status: " + response.getStatus());
247 for (String header : response
[all...]
/external/openssh/
H A Dauth-rsa.c91 auth_rsa_verify_response(Key *key, BIGNUM *challenge, u_char response[16]) argument
104 /* The response is MD5 of decrypted challenge plus session id. */
115 /* Verify that the response is the original challenge. */
116 if (timingsafe_bcmp(response, mdbuf, 16) != 0) {
125 * Performs the RSA authentication challenge-response dialog with the client,
134 u_char response[16]; local
152 /* Wait for a response. */
155 response[i] = (u_char)packet_get_char();
158 success = PRIVSEP(auth_rsa_verify_response(key, challenge, response));
180 * found, perform a challenge-response dialo
[all...]
H A Dauth1.c77 SSH_CMSG_AUTH_TIS, "challenge-response",
82 SSH_CMSG_AUTH_TIS_RESPONSE, "challenge-response",
225 char *response; local
228 response = packet_get_string(&dlen);
230 authenticated = verify_response(authctxt, response);
231 memset(response, 'r', dlen);
232 xfree(response);
287 * If we started challenge-response authentication but the
288 * next packet is not a response to our challenge, release
291 * received such a response)
[all...]
H A Dauth2-chall.c186 * try challenge-response, set authctxt->postponed if we have to
187 * wait for the response.
286 char **response = NULL, *method; local
303 response = xcalloc(nresp, sizeof(char *));
305 response[i] = packet_get_string(NULL);
309 res = kbdintctxt->device->respond(kbdintctxt->ctxt, nresp, response);
312 memset(response[i], 'r', strlen(response[i]));
313 xfree(response[i]);
315 if (response)
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/macrom/
H A DSDL_romaudio.c368 long response; local
373 if ( Gestalt(gestaltSoundAttr, &response) == noErr ) {
374 if ( (response & (1 << gestaltSndPlayDoubleBuffer)) ) {
379 if ( Gestalt(gestaltSoundAttr, &response) == noErr ) {
380 if ( (response & (1 << gestaltHasASC)) ) {
/external/apache-http/src/org/apache/http/impl/client/
H A DDefaultRequestDirector.java302 HttpResponse response = null;
375 response = ex.getResponse();
428 response = requestExec.execute(wrapper, managedConn, context);
462 // Run response protocol interceptors
463 response.setParams(params);
464 requestExec.postProcess(response, httpProcessor, context);
468 reuse = reuseStrategy.keepAlive(response, context);
471 long duration = keepAliveStrategy.getKeepAliveDuration(response, context);
475 RoutedRequest followup = handleResponse(roureq, response, context);
481 // Make sure the response bod
904 handleResponse(RoutedRequest roureq, HttpResponse response, HttpContext context) argument
1047 processChallenges( final Map<String, Header> challenges, final AuthState authState, final AuthenticationHandler authHandler, final HttpResponse response, final HttpContext context) argument
[all...]
/external/apache-http/src/org/apache/http/impl/conn/
H A DAbstractClientConnAdapter.java238 public void receiveResponseEntity(HttpResponse response) argument
246 conn.receiveResponseEntity(response);
/external/chromium/chrome/browser/autofill/
H A Dautofill_download_unittest.cc72 ResponseData response; local
73 response.response = heuristic_xml;
74 response.type_of_response = QUERY_SUCCESSFULL;
75 responses_.push_back(response);
78 ResponseData response; local
79 response.type_of_response = UPLOAD_SUCCESSFULL;
80 responses_.push_back(response);
86 ResponseData response; local
87 response
106 std::string response; member in struct:AutofillDownloadTestHelper::ResponseData
[all...]
/external/chromium/chrome/browser/debugger/
H A Ddebugger_remote_service.cc54 // Otherwise the corresponding response is received through IPC from the
76 DictionaryValue response; local
79 response.SetString(kCommandKey, command);
84 response.SetInteger(kResultKey, RESULT_UNKNOWN_COMMAND);
85 SendResponse(response, message.tool(), message.destination());
93 response.SetString(kCommandKey, DebuggerRemoteServiceCommand::kAttach);
94 AttachToTab(destination, &response);
96 response.SetString(kCommandKey, DebuggerRemoteServiceCommand::kDetach);
97 DetachFromTab(destination, &response);
99 send_response = DispatchDebuggerCommand(tab_uid, content, &response);
119 SendResponse(const Value& response, const std::string& tool, const std::string& destination) argument
195 AttachToTab(const std::string& destination, DictionaryValue* response) argument
239 DetachFromTab(const std::string& destination, DictionaryValue* response) argument
269 DispatchDebuggerCommand(int tab_uid, DictionaryValue* content, DictionaryValue* response) argument
309 DispatchEvaluateJavascript( int tab_uid, DictionaryValue* content, DictionaryValue* response) argument
[all...]
H A Dextension_ports_remote_service.cc60 // a response from the extension.
160 DictionaryValue response; local
163 response.SetString(kCommandKey, command);
169 response.SetInteger(kResultKey, RESULT_NO_SERVICE);
170 SendResponse(response, message.tool(), message.destination());
180 response.SetInteger(kResultKey, RESULT_UNKNOWN_COMMAND);
182 ConnectCommand(content, &response);
185 response.SetInteger(kResultKey, RESULT_UNKNOWN_COMMAND);
187 DisconnectCommand(destination, &response);
190 response
212 SendResponse( const Value& response, const std::string& tool, const std::string& destination) argument
286 ConnectCommand( DictionaryValue* content, DictionaryValue* response) argument
347 DisconnectCommand( int port_id, DictionaryValue* response) argument
362 PostMessageCommand( int port_id, DictionaryValue* content, DictionaryValue* response) argument
[all...]
/external/chromium/chrome/browser/extensions/
H A Duser_script_listener_unittest.cc43 ResourceResponse* response,
50 ResourceResponse* response) {
42 OnRequestRedirected(int request_id, const GURL& url, ResourceResponse* response, bool* defer) argument
49 OnResponseStarted(int request_id, ResourceResponse* response) argument
/external/chromium/chrome/browser/policy/
H A Dcloud_policy_controller.cc106 const em::DevicePolicyResponse& response) {
107 if (response.response_size() > 0) {
108 if (response.response_size() > 1) {
109 LOG(WARNING) << "More than one policy in the response of the device "
112 if (response.response(0).error_code() !=
114 cache_->SetPolicy(response.response(0));
105 HandlePolicyResponse( const em::DevicePolicyResponse& response) argument
H A Ddevice_management_service_unittest.cc30 // Encoded empty response messages for testing the error code paths.
85 const std::string& response)
89 response_(response) {}
97 // A parameterized test case for erroneous response situations, they're mostly
309 // Generate the response.
351 // Generate the response.
82 FailedRequestParams(DeviceManagementBackend::ErrorCode expected_error, net::URLRequestStatus::Status request_status, int http_status, const std::string& response) argument
H A Duser_policy_cache_unittest.cc83 em::PolicyFetchResponse* response = new em::PolicyFetchResponse; local
84 response->set_policy_data(serialized_signed_response);
87 response->set_policy_data_signature("TODO");
88 response->set_new_public_key("TODO");
89 return response;
/external/chromium/chrome/browser/prerender/
H A Dprerender_resource_handler.cc37 bool ShouldPrerender(const ResourceResponse* response) { argument
38 if (!response)
40 const ResourceResponseHead& rrh = response->response_head;
118 ResourceResponse* response,
121 request_id, url, response, defer);
132 ResourceResponse* response) {
133 if (ShouldPrerender(response)) {
147 return next_handler_->OnResponseStarted(request_id, response);
116 OnRequestRedirected(int request_id, const GURL& url, ResourceResponse* response, bool* defer) argument
131 OnResponseStarted(int request_id, ResourceResponse* response) argument
H A Dprerender_resource_handler_unittest.cc26 ResourceResponse* response,
33 ResourceResponse* response) {
128 scoped_refptr<ResourceResponse> response(new ResourceResponse);
129 response->response_head.mime_type = mime_type;
130 response->response_head.headers = CreateResponseHeaders(headers);
133 // Start the response. If it is able to prerender, a task will
135 EXPECT_TRUE(pre_handler_->OnResponseStarted(request_id, response));
187 scoped_refptr<ResourceResponse> response(new ResourceResponse);
188 response->response_head.mime_type = "text/html";
189 response
25 OnRequestRedirected(int request_id, const GURL& url, ResourceResponse* response, bool* defer) argument
32 OnResponseStarted(int request_id, ResourceResponse* response) argument
[all...]
/external/chromium/chrome/browser/renderer_host/
H A Ddownload_resource_handler.cc59 ResourceResponse* response,
66 ResourceResponse* response) {
74 set_content_length(response->response_head.content_length);
95 info->mime_type = response->response_head.mime_type;
100 if (!response->response_head.headers ||
101 !response->response_head.headers->GetMimeType(&content_type_header))
57 OnRequestRedirected(int request_id, const GURL& url, ResourceResponse* response, bool* defer) argument
65 OnResponseStarted(int request_id, ResourceResponse* response) argument
H A Dsafe_browsing_resource_handler.cc56 ResourceResponse* response,
67 request_id, new_url, response, defer);
77 deferred_redirect_response_ = response;
84 int request_id, ResourceResponse* response) {
87 return next_handler_->OnResponseStarted(request_id, response);
53 OnRequestRedirected( int request_id, const GURL& new_url, ResourceResponse* response, bool* defer) argument
83 OnResponseStarted( int request_id, ResourceResponse* response) argument
/external/chromium/chrome/browser/safe_browsing/
H A Dclient_side_detection_service_unittest.cc236 // Invalid response body from the server.
237 SetClientReportPhishingResponse("invalid proto response", true /* success */);
241 ClientPhishingResponse response; local
242 response.set_phishy(true);
243 SetClientReportPhishingResponse(response.SerializeAsString(),
249 response.set_phishy(false);
250 SetClientReportPhishingResponse(response.SerializeAsString(),
/external/chromium/chrome/browser/sync/engine/
H A Dprocess_commit_response_command.cc70 const ClientToServerResponse& response(status->commit_response());
73 if (!response.has_commit()) {
75 LOG(WARNING) << "Commit response has no commit body!";
80 const CommitResponse& cr = response.commit();
83 LOG(ERROR) << "Commit response has wrong number of entries! Expected:" <<
121 const ClientToServerResponse& response(status->commit_response());
122 const CommitResponse& cr = response.commit();
223 CommitResponse::ResponseType response = (CommitResponse::ResponseType) local
225 if (!CommitResponse::ResponseType_IsValid(response)) {
226 LOG(ERROR) << "Commit response ha
[all...]

Completed in 606 milliseconds

<<11121314151617181920>>