Searched refs:response (Results 26 - 50 of 788) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/platform/network/qt/
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/WebCore-7537.78.1/platform/network/win/
H A DAuthenticationChallenge.h38 AuthenticationChallenge(const ProtectionSpace& protectionSpace, const Credential& proposedCredential, unsigned previousFailureCount, const ResourceResponse& response, const ResourceError& error) argument
39 : AuthenticationChallengeBase(protectionSpace, proposedCredential, previousFailureCount, response, error)
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebResourcePrivate.h38 response:(NSURLResponse *)response
41 - (id)_initWithData:(NSData *)data URL:(NSURL *)URL response:(NSURLResponse *)response;
H A DWebNavigationData.h38 - (id)initWithURLString:(NSString *)url title:(NSString *)title originalRequest:(NSURLRequest *)request response:(NSURLResponse *)response hasSubstituteData:(BOOL)hasSubstituteData clientRedirectSource:(NSString *)redirectSource;
42 - (NSURLResponse *)response;
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Downloads/efl/
H A DDownloadSoupErrorsEfl.cpp41 ResourceError platformDownloadDestinationError(const ResourceResponse& response, const String& message) argument
43 return downloadDestinationError(response, message);
/macosx-10.9.5/WebKit2-7537.78.2/Shared/Downloads/gtk/
H A DDownloadSoupErrorsGtk.cpp41 ResourceError platformDownloadDestinationError(const ResourceResponse& response, const String& message) argument
43 return downloadDestinationError(response, message);
/macosx-10.9.5/ruby-104/ruby/lib/webrick/httpservlet/
H A Dprochandler.rb17 # Mounts a proc at a path that accepts a request and response.
37 def do_GET(request, response)
38 @proc.call(request, response)
/macosx-10.9.5/xnu-2422.115.4/tools/lldbmacros/plugins/
H A Dspeedtracer.py28 response = urllib2.urlopen(request)
30 status = response.info()['status']
32 outstr += "CrashTracer data found at " + response.info()['location']
33 newurl = response.info()['location']
38 outstr += "unknown response from server \n" + str(response.info())
/macosx-10.9.5/WebCore-7537.78.1/platform/efl/
H A DErrorsEfl.cpp59 ResourceError cannotShowMIMETypeError(const ResourceResponse& response) argument
61 return ResourceError(errorDomainPolicy, PolicyErrorCannotShowMimeType, response.url().string(), "Content with the specified MIME type cannot be shown");
64 ResourceError fileDoesNotExistError(const ResourceResponse& response) argument
66 return ResourceError(errorDomainNetwork, NetworkErrorFileDoesNotExist, response.url().string(), "File does not exist");
69 ResourceError pluginWillHandleLoadError(const ResourceResponse& response) argument
71 return ResourceError(errorDomainPlugin, PluginErrorWillHandleLoad, response.url().string(), "Plugin will handle load");
79 ResourceError downloadCancelledByUserError(const ResourceResponse& response) argument
81 return ResourceError(errorDomainDownload, DownloadErrorCancelledByUser, response.url().string(), "User cancelled the download");
84 ResourceError downloadDestinationError(const ResourceResponse& response, const String& errorMessage) argument
86 return ResourceError(errorDomainDownload, DownloadErrorDestination, response
[all...]
/macosx-10.9.5/WebKit-7537.78.2/gtk/webkit/
H A Dwebkitnetworkresponse.cpp36 * @short_description: the response given to a network request
40 * response.
65 WebKitNetworkResponse* response = WEBKIT_NETWORK_RESPONSE(object); local
66 WebKitNetworkResponsePrivate* priv = response->priv;
78 WebKitNetworkResponse* response = WEBKIT_NETWORK_RESPONSE(object); local
79 WebKitNetworkResponsePrivate* priv = response->priv;
89 WebKitNetworkResponse* response = WEBKIT_NETWORK_RESPONSE(object); local
93 g_value_set_string(value, webkit_network_response_get_uri(response));
96 g_value_set_object(value, webkit_network_response_get_message(response));
99 g_value_set_string(value, webkit_network_response_get_suggested_filename(response));
108 WebKitNetworkResponse* response = WEBKIT_NETWORK_RESPONSE(object); local
179 webkit_network_response_init(WebKitNetworkResponse* response) argument
213 webkit_network_response_set_uri(WebKitNetworkResponse* response, const gchar* uri) argument
242 webkit_network_response_get_uri(WebKitNetworkResponse* response) argument
267 webkit_network_response_get_message(WebKitNetworkResponse* response) argument
288 webkit_network_response_get_suggested_filename(WebKitNetworkResponse* response) argument
304 core(WebKitNetworkResponse* response) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/loader/appcache/
H A DApplicationCacheResource.cpp32 ApplicationCacheResource::ApplicationCacheResource(const KURL& url, const ResourceResponse& response, unsigned type, PassRefPtr<SharedBuffer> data, const String& path) argument
33 : SubstituteResource(url, response, data)
55 HTTPHeaderMap::const_iterator end = response().httpHeaderFields().end();
56 for (HTTPHeaderMap::const_iterator it = response().httpHeaderFields().begin(); it != end; ++it)
60 m_estimatedSizeInStorage += sizeof(int); // response().m_httpStatusCode
61 m_estimatedSizeInStorage += response().url().string().length() * sizeof(UChar);
63 m_estimatedSizeInStorage += response().mimeType().length() * sizeof(UChar);
64 m_estimatedSizeInStorage += response().textEncodingName().length() * sizeof(UChar);
/macosx-10.9.5/Heimdal-323.92.1/kuser/
H A Dntlm.c45 krb5_storage *request, *response; local
67 ret = krb5_kcm_call(context, request, &response, &response_data);
72 krb5_storage_free(response);
81 krb5_storage *request, *response; local
88 ret = krb5_kcm_call(context, request, &response, &response_data);
96 ret = krb5_ret_uint32(response, &morep);
103 ret = krb5_ret_stringz(response, &user);
106 ret = krb5_ret_stringz(response, &domain);
115 krb5_storage_free(response);
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DSubstituteResource.h44 const ResourceResponse& response() const { return m_response; } function in class:WebCore::SubstituteResource
48 SubstituteResource(const KURL& url, const ResourceResponse& response, PassRefPtr<SharedBuffer> data) argument
50 , m_response(response)
/macosx-10.9.5/ruby-104/ruby/lib/net/http/
H A Dexceptions.rb7 @response = res
9 attr_reader :response
10 alias data response #:nodoc: obsolete
19 # We cannot use the name "HTTPServerError", it is the name of the response.
/macosx-10.9.5/CPANInternal-140/HTTP-Proxy/eg/
H A Ddragon.pl21 response => HTTP::Proxy::HeaderFilter::simple->new(
23 my ( $self, $headers, $response ) = @_;
24 ($response->request->uri->query || '') =~ /reload=(\d+)/;
28 . $response->request->uri->path
33 response => HTTP::Proxy::BodyFilter::complete->new(),
34 response => HTTP::Proxy::BodyFilter::simple->new(
53 response => HTTP::Proxy::BodyFilter::complete->new(),
54 response => HTTP::Proxy::BodyFilter::simple->new(
H A Dfudd.pl14 response => HTTP::Proxy::BodyFilter::tags->new,
15 response => HTTP::Proxy::BodyFilter::htmltext->new(
H A Dtrim.pl12 response => HTTP::Proxy::BodyFilter::lines->new(),
13 response => HTTP::Proxy::BodyFilter::simple->new(
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/CPANInternal-140/HTTP-Proxy-0.25/eg/
H A Ddragon.pl21 response => HTTP::Proxy::HeaderFilter::simple->new(
23 my ( $self, $headers, $response ) = @_;
24 ($response->request->uri->query || '') =~ /reload=(\d+)/;
28 . $response->request->uri->path
33 response => HTTP::Proxy::BodyFilter::complete->new(),
34 response => HTTP::Proxy::BodyFilter::simple->new(
53 response => HTTP::Proxy::BodyFilter::complete->new(),
54 response => HTTP::Proxy::BodyFilter::simple->new(
H A Dfudd.pl14 response => HTTP::Proxy::BodyFilter::tags->new,
15 response => HTTP::Proxy::BodyFilter::htmltext->new(
H A Dtrim.pl12 response => HTTP::Proxy::BodyFilter::lines->new(),
13 response => HTTP::Proxy::BodyFilter::simple->new(
/macosx-10.9.5/WebKit2-7537.78.2/Shared/API/c/mac/
H A DWKURLResponseNS.mm37 RefPtr<WebURLResponse> response = WebURLResponse::create(copiedURLResponse.get());
38 return toAPI(response.release().leakRef());
/macosx-10.9.5/configd-596.15/SystemConfiguration.fproj/
H A DSNHelper.c37 xpc_object_t response = NULL; local
40 response = xpc_connection_send_message_with_reply_sync(connection, request);
47 return response;
55 xpc_object_t response; local
60 response = copy_response(request);
62 if (isa_xpc_dictionary(response)) {
68 xpc_release(response);
91 xpc_object_t response; local
95 response = copy_response(request);
97 if (isa_xpc_dictionary(response)) {
[all...]
/macosx-10.9.5/remote_cmds-41.90.1/talk.tproj/
H A Dinvite.c76 CTL_RESPONSE response; local
118 ctl_transact(my_machine_addr, msg, DELETE, &response);
120 ctl_transact(his_machine_addr, msg, DELETE, &response);
157 * Transmit the invitation and process the response
162 CTL_RESPONSE response; local
165 ctl_transact(his_machine_addr, msg, ANNOUNCE, &response);
166 remote_id = response.id_num;
167 if (response.answer != SUCCESS) {
168 if (response.answer < NANSWERS)
169 message(answers[response
[all...]
/macosx-10.9.5/postfix-252/postfix/src/smtpd/
H A Dsmtpd_imap.c345 VSTRING *request, VSTRING *response,
350 /* get capabilities if not already present in response */
351 cp = strcasestr(vstring_str(response), "[CAPABILITY ");
366 while (smtp_get(response, stream, 0, SMTP_GET_FLAG_NONE) == '\n') {
367 if (VSTRING_LEN(response) >= 13 &&
368 strncasecmp(vstring_str(response), "* CAPABILITY ", 13) == 0)
369 capabilities = mystrdup(vstring_str(response) + 13);
370 if (VSTRING_LEN(response) >= 2 &&
371 strncasecmp(vstring_str(response), "C ", 2) == 0)
374 if (VSTRING_LEN(response) <
344 imap_capable_of(VSTREAM *stream, const struct imap_server *is, VSTRING *request, VSTRING *response, const char *action, bool verbose) argument
409 VSTRING *request, *response; local
[all...]

Completed in 218 milliseconds

1234567891011>>