Searched refs:response (Results 51 - 75 of 788) sorted by relevance

1234567891011>>

/macosx-10.9.5/CPANInternal-140/HTTP-Proxy-0.25/eg/
H A Dpdf.pl24 response => HTTP::Proxy::BodyFilter::save->new(
29 response => HTTP::Proxy::BodyFilter::simple->new(
41 # change the response Content-Type
42 response => HTTP::Proxy::HeaderFilter::simple->new(
44 my ( $self, $headers, $response ) = @_;
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DLoaderStrategy.cpp40 void LoaderStrategy::loadResourceSynchronously(NetworkingContext* context, unsigned long, const ResourceRequest& request, StoredCredentials storedCredentials, ClientCredentialPolicy, ResourceError& error, ResourceResponse& response, Vector<char>& data) argument
42 ResourceHandle::loadResourceSynchronously(context, request, storedCredentials, error, response, data);
/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DDataURL.cpp68 ResourceResponse response; local
69 response.setMimeType(mimeType);
70 response.setTextEncodingName(charset);
71 response.setURL(handle->firstRequest().url());
75 handle->client()->didReceiveResponse(handle, response);
79 response.setExpectedContentLength(out.size());
85 handle->client()->didReceiveResponse(handle, response);
88 response.setExpectedContentLength(encodedData.length());
/macosx-10.9.5/WebCore-7537.78.1/platform/network/blackberry/
H A DAuthenticationChallenge.h33 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) argument
34 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
/macosx-10.9.5/WebCore-7537.78.1/platform/network/curl/
H A DAuthenticationChallenge.h40 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) argument
41 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
/macosx-10.9.5/WebKit2-7537.78.2/Shared/API/c/cf/
H A DWKURLResponseCF.cpp40 RefPtr<WebURLResponse> response = WebURLResponse::create(copiedURLResponse); local
41 return toAPI(response.release().leakRef());
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/digest/
H A Diter_cred.c46 krb5_storage *request, *response; local
57 ret = krb5_kcm_call(context, request, &response, &response_data);
68 ret = krb5_ret_uint32(response, &morep);
73 ret = krb5_ret_stringz(response, &user);
76 sret = krb5_storage_read(response, uuid, sizeof(uuid));
83 krb5_storage_free(response);
/macosx-10.9.5/Heimdal-323.92.1/lib/ntlm/
H A Dheim-auth.h21 heim_apop_verify(const char *challenge, const char *password, const char *response);
38 heim_cram_md5_verify(const char *challenge, const char *password, const char *response);
47 heim_cram_md5_verify_ctx(heim_cram_md5 ctx, const char *challenge, const char *response);
61 * response = read_from_client();
63 * heim_digest_parse_response(d, response);
67 * if (heim_digest_verify(d, &response)) abort();
69 * send_to_client(response);
101 heim_digest_parse_response(heim_digest_t context, const char *response);
116 heim_digest_verify(heim_digest_t context, char **response);
119 heim_digest_create_response(heim_digest_t context, char **response);
[all...]
/macosx-10.9.5/WebKit-7537.78.2/mac/Misc/
H A DWebDownloadInternal.h38 response:(NSURLResponse *)r
49 response:(CFURLResponseRef)response
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/mac/
H A DSecItemShimProxy.cpp61 SecItemResponseData response; local
71 response = SecItemResponseData(resultCode, adoptCF(resultObject).get());
78 response = SecItemResponseData(resultCode, adoptCF(resultObject).get());
84 response = SecItemResponseData(resultCode, 0);
90 response = SecItemResponseData(resultCode, 0);
95 connection->send(Messages::SecItemShim::SecItemResponse(requestID, response), 0);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebCoreSupport/qt/
H A DWebErrorsQt.cpp69 ResourceError cannotShowMIMETypeError(const ResourceResponse& response) argument
71 return ResourceError(WebError::webKitErrorDomain(), kWKErrorCodeCannotShowMIMEType, response.url().string(),
75 ResourceError fileDoesNotExistError(const ResourceResponse& response) argument
77 return ResourceError("QtNetwork", QNetworkReply::ContentNotFoundError, response.url().string(),
81 ResourceError pluginWillHandleLoadError(const ResourceResponse& response) argument
83 return ResourceError(WebError::webKitErrorDomain(), kWKErrorCodePlugInWillHandleLoad, response.url().string(),
/macosx-10.9.5/ppp-727.90.1/Helpers/pppd/
H A Dchap-md5.c84 unsigned char *challenge, unsigned char *response,
93 response_len = *response++;
102 /* Test if our hash matches the peer's response */
103 if (memcmp(hash, response, MD5_HASH_SIZE) == 0) {
113 chap_md5_make_response(unsigned char *response, int id, char *our_name, argument
125 MD5_Final(&response[1], &ctx);
126 response[0] = MD5_HASH_SIZE;
82 chap_md5_verify_response(int id, char *name, unsigned char *secret, int secret_len, unsigned char *challenge, unsigned char *response, char *message, int message_space) argument
/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DErrorsGtk.cpp58 ResourceError cannotShowMIMETypeError(const ResourceResponse& response) argument
61 response.url().string(), _("Content with the specified MIME type cannot be shown"));
64 ResourceError fileDoesNotExistError(const ResourceResponse& response) argument
67 response.url().string(), _("File does not exist"));
70 ResourceError pluginWillHandleLoadError(const ResourceResponse& response) argument
73 response.url().string(), _("Plugin will handle load"));
82 ResourceError downloadCancelledByUserError(const ResourceResponse& response) argument
85 response.url().string(), _("User cancelled the download"));
88 ResourceError downloadDestinationError(const ResourceResponse& response, const String& errorMessage) argument
91 response
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DNetworkManager.js154 * @param {NetworkAgent.Response=} response
156 _updateNetworkRequestWithResponse: function(networkRequest, response)
158 if (!response)
161 if (response.url && networkRequest.url !== response.url)
162 networkRequest.url = response.url;
163 networkRequest.mimeType = response.mimeType;
164 networkRequest.statusCode = response.status;
165 networkRequest.statusText = response.statusText;
166 networkRequest.responseHeaders = this._headersMapToHeadersArray(response
[all...]
/macosx-10.9.5/DiskArbitration-266/diskarbitrationd/
H A DDAQueue.h38 typedef void ( *DAResponseCallback )( CFTypeRef response, void * context );
40 extern Boolean _DAResponseDispatch( CFTypeRef response, SInt32 responseID );
44 extern void DADiskClaimReleaseCallback( DADiskRef disk, DACallbackRef callback, DAResponseCallback response, void * responseContext );
52 extern void DADiskEjectApprovalCallback( DADiskRef disk, DAResponseCallback response, void * responseContext );
56 extern void DADiskMountApprovalCallback( DADiskRef disk, DAResponseCallback response, void * responseContext );
60 extern void DADiskPeekCallback( DADiskRef disk, DACallbackRef callback, DAResponseCallback response, void * responseContext );
68 extern void DADiskUnmountApprovalCallback( DADiskRef disk, DAResponseCallback response, void * responseContext );
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/ntlm/
H A Diter_cred.c46 krb5_storage *request, *response; local
57 ret = krb5_kcm_call(context, request, &response, &response_data);
69 ret = krb5_ret_uint32(response, &morep);
74 ret = krb5_ret_stringz(response, &user);
76 ret = krb5_ret_stringz(response, &domain);
81 sret = krb5_storage_read(response, uuid, sizeof(uuid));
102 krb5_storage_free(response);
/macosx-10.9.5/ruby-104/ruby/test/xmlrpc/
H A Dtest_cookie.rb20 def s.response singleton method in class:TestCookie.create_servlet
21 @response
23 def s.service(request, response)
25 @response = response
29 @response = nil
39 cookies = s.response.cookies
/macosx-10.9.5/cups-372.4/cups/cups/
H A Dgetdevices.c50 *response; /* CUPS-Get-Devices response */ local
61 ipp_state_t state; /* IPP response state */
117 DEBUG_puts("2cupsGetDevices: Waiting for response status...");
171 * Read the response in non-blocking mode...
177 response = ippNew();
186 DEBUG_puts("2cupsGetDevices: Reading response...");
190 if ((state = ippRead(http, response)) == IPP_STATE_ERROR)
193 DEBUG_printf(("2cupsGetDevices: state=%d, response->last=%p", state,
194 response
[all...]
/macosx-10.9.5/security_dotmac_tp-55107.1/lib/
H A DdotMacXmlRpc.cpp45 /* dump contents of XMLRPC response dictionary */
51 static UInt32 getHTTPStatusCodeFromWSInvokationResponse(CFDictionaryRef response) argument
54 (CFHTTPMessageRef)CFDictionaryGetValue(response, kWSHTTPResponseMessage);
71 CFDictionaryRef response)
74 (CFHTTPMessageRef)CFDictionaryGetValue(response, kWSHTTPResponseMessage);
134 CFDictionaryRef response = WSMethodInvocationInvoke(wsRef); local
137 * Since we can't reuse the Invocation dump it as we have our response
148 if (WSMethodResultIsFault(response)) {
150 response, kWSFaultString);
156 getHTTPStatusCodeFromWSInvokationResponse(response);
67 addAuthenticationToWSInvokation( WSMethodInvocationRef wsRef, CFStringRef username, CFStringRef password, CFDictionaryRef response) argument
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DWebKitURIResponse.h63 webkit_uri_response_get_uri (WebKitURIResponse *response);
66 webkit_uri_response_get_status_code (WebKitURIResponse *response);
69 webkit_uri_response_get_content_length (WebKitURIResponse *response);
72 webkit_uri_response_get_mime_type (WebKitURIResponse *response);
75 webkit_uri_response_get_suggested_filename (WebKitURIResponse *response);
/macosx-10.9.5/cups-372.4/cups/notifier/
H A Dmailto.c216 char response[1024]; /* SMTP response buffer */ local
269 if (!cupsFileGets(fp, response, sizeof(response)) || atoi(response) >= 500)
271 fprintf(stderr, "DEBUG: <<< %s\n", response);
276 if (!cupsFileGets(fp, response, sizeof(response)) || atoi(response) >= 500)
278 fprintf(stderr, "DEBUG: <<< %s\n", response);
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/lwres/
H A Dgetrrset.c148 lwres_grbnresponse_t *response = NULL; local
184 lwflags, &response);
196 rrset->rri_rdclass = response->rdclass;
197 rrset->rri_rdtype = response->rdtype;
198 rrset->rri_ttl = response->ttl;
205 rrset->rri_name = sane_malloc(response->realnamelen + 1);
210 strncpy(rrset->rri_name, response->realname, response->realnamelen);
211 rrset->rri_name[response->realnamelen] = 0;
213 if ((response
[all...]
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/lib/SOAP/Transport/
H A DLOCAL.pm48 my $response = $self->SUPER::handle($envelope);
49 SOAP::Trace::debug($response);
51 $response;
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.715/lib/SOAP/Transport/
H A DLOCAL.pm59 my $response = $self->SUPER::handle($envelope);
60 SOAP::Trace::debug($response);
62 return $response;
/macosx-10.9.5/CPANInternal-140/SOAP-Lite_new/lib/SOAP/Transport/
H A DLOCAL.pm54 my $response = $self->SUPER::handle($envelope);
55 SOAP::Trace::debug($response);
57 return $response;

Completed in 185 milliseconds

1234567891011>>