Searched refs:response (Results 1 - 25 of 704) sorted by relevance

1234567891011>>

/macosx-10.10/WebKit2-7600.1.25/Shared/
H A DAPIURLResponse.cpp35 URLResponse::URLResponse(const WebCore::ResourceResponse& response) argument
36 : m_response(response)
47 ResourceResponse response; local
48 if (!decoder.decode(response))
51 result = create(response);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/
H A Dewk_url_response.cpp34 EwkUrlResponse::EwkUrlResponse(WKURLResponseRef response) argument
35 : m_response(response)
36 , m_url(AdoptWK, WKURLResponseCopyURL(response))
37 , m_mimeType(AdoptWK, WKURLResponseCopyMIMEType(response))
60 const char* ewk_url_response_url_get(const Ewk_Url_Response* response) argument
62 EWK_OBJ_GET_IMPL_OR_RETURN(const EwkUrlResponse, response, impl, nullptr);
67 int ewk_url_response_status_code_get(const Ewk_Url_Response* response) argument
69 EWK_OBJ_GET_IMPL_OR_RETURN(const EwkUrlResponse, response, impl, 0);
74 const char* ewk_url_response_mime_type_get(const Ewk_Url_Response* response) argument
76 EWK_OBJ_GET_IMPL_OR_RETURN(const EwkUrlResponse, response, imp
81 ewk_url_response_content_length_get(const Ewk_Url_Response* response) argument
[all...]
H A Dewk_url_response.h28 * @brief Describes the Ewk URL response API.
48 * Query URL for this response.
50 * @param response response object to query.
58 EAPI const char *ewk_url_response_url_get(const Ewk_Url_Response *response);
61 * Query HTTP status code for this response.
66 * @param response response object to query.
70 EAPI int ewk_url_response_status_code_get(const Ewk_Url_Response *response);
73 * Query MIME type for this response
[all...]
/macosx-10.10/CPANInternal-159.1/SOAP-Lite-1.11/examples/
H A Dterraserver.pl20 my $response = $terra->GetTheme(SOAP::Data->name(theme => 'Photo'));
22 if ($response->fault) {
23 die $response->faultstring;
25 my %result = %{$response->result};
38 $response = $terra->call($method => @params);
40 if ($response->fault) {
41 print $response->faultcode, " ", $response->faultstring, "\n";
43 foreach ($response->valueof('//PlaceFacts')) {
/macosx-10.10/WebCore-7600.1.25/Modules/mediastream/
H A DRTCStatsCallback.idl28 boolean handleEvent(RTCStatsResponse response);
/macosx-10.10/gnutar-453/gnutar/lib/
H A Drpmatch.c1 /* Determine whether string value is affirmation or negative response
34 try (const char *response, const char *pattern, const int match, argument
53 return regexec (re, response, 0, NULL, 0) == 0 ? match : nomatch;
59 rpmatch (const char *response) argument
62 /* Match against one of the response patterns, compiling the pattern
65 /* We cache the response patterns and compiled regexps here. */
70 return ((result = try (response, _("^[yY]"), 1, 0,
73 : try (response, _("^[nN]"), 0, -1, &noexpr, &nore));
76 return (*response == 'y' || *response
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitURIResponse.cpp33 * @Short_description: Represents a URI response
63 WebKitURIResponse* response = WEBKIT_URI_RESPONSE(object); local
67 g_value_set_string(value, webkit_uri_response_get_uri(response));
70 g_value_set_uint(value, webkit_uri_response_get_status_code(response));
73 g_value_set_uint64(value, webkit_uri_response_get_content_length(response));
76 g_value_set_string(value, webkit_uri_response_get_mime_type(response));
79 g_value_set_string(value, webkit_uri_response_get_suggested_filename(response));
94 * The URI for which the response was made.
100 _("The URI for which the response was made."),
106 * The status code of the response a
162 webkit_uri_response_get_uri(WebKitURIResponse* response) argument
181 webkit_uri_response_get_status_code(WebKitURIResponse* response) argument
197 webkit_uri_response_get_content_length(WebKitURIResponse* response) argument
210 webkit_uri_response_get_mime_type(WebKitURIResponse* response) argument
229 webkit_uri_response_get_suggested_filename(WebKitURIResponse* response) argument
[all...]
/macosx-10.10/configd-699.1.5/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)) {
63 result = (int)xpc_dictionary_get_int64(response, kSNHelperMessageResult);
68 xpc_release(response);
91 xpc_object_t response; local
95 response
114 xpc_object_t response; local
[all...]
/macosx-10.10/ruby-106/ruby/test/net/imap/
H A Dtest_imap_response_parser.rb23 response = lambda {
29 assert_equal [:Haschildren], response.data.attr
61 response = parser.parse(<<EOF.gsub(/\n/, "\r\n").taint)
64 assert_equal [:Inbox], response.data.attr
69 response = parser.parse(<<EOF.gsub(/\n/, "\r\n").taint)
72 assert_equal "CLOSED", response.data.code.name
77 response = parser.parse(<<EOF.gsub(/\n/, "\r\n").taint)
80 assert_equal [], response.data
81 response = parser.parse(<<EOF.gsub(/\n/, "\r\n").taint)
84 assert_equal [1], response
[all...]
/macosx-10.10/ruby-106/ruby/test/rubygems/
H A Dtest_gem_commands_owner_command.rb17 response = <<EOF
23 @fetcher.data["#{Gem.host}/api/v1/gems/freewill/owners.yaml"] = [response, 200, 'OK']
38 response = "You don't have permission to push to this gem"
39 @fetcher.data["#{Gem.host}/api/v1/gems/freewill/owners.yaml"] = [response, 403, 'Forbidden']
47 assert_match response, @ui.output
51 response = "- email: user1@example.com\n"
52 @fetcher.data["#{Gem.host}/api/v1/gems/freewill/owners.yaml"] = [response, 200, 'OK']
65 response = "Owner added successfully."
66 @fetcher.data["#{Gem.host}/api/v1/gems/freewill/owners"] = [response, 200, 'OK']
76 assert_match response,
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebCoreSupport/efl/
H A DWebErrorsEfl.cpp60 ResourceError cannotShowMIMETypeError(const ResourceResponse& response) argument
62 return WebCore::cannotShowMIMETypeError(response);
65 ResourceError fileDoesNotExistError(const ResourceResponse& response) argument
67 return WebCore::fileDoesNotExistError(response);
70 ResourceError pluginWillHandleLoadError(const ResourceResponse& response) argument
72 return WebCore::pluginWillHandleLoadError(response);
/macosx-10.10/WebCore-7600.1.25/loader/archive/cf/
H A DLegacyWebArchiveMac.mm44 NSURLResponse *response = nil;
49 response = responseObject;
52 response = nil;
56 return ResourceResponse(response);
59 RetainPtr<CFDataRef> LegacyWebArchive::createPropertyListRepresentation(const ResourceResponse& response)
61 NSURLResponse *nsResponse = response.nsURLResponse();
/macosx-10.10/WebCore-7600.1.25/loader/archive/
H A DArchiveResource.cpp36 inline ArchiveResource::ArchiveResource(PassRefPtr<SharedBuffer> data, const URL& url, const String& mimeType, const String& textEncoding, const String& frameName, const ResourceResponse& response) argument
37 : SubstituteResource(url, response, data)
45 PassRefPtr<ArchiveResource> ArchiveResource::create(PassRefPtr<SharedBuffer> data, const URL& url, const String& mimeType, const String& textEncoding, const String& frameName, const ResourceResponse& response) argument
49 if (response.isNull()) {
54 return adoptRef(new ArchiveResource(data, url, mimeType, textEncoding, frameName, response));
57 PassRefPtr<ArchiveResource> ArchiveResource::create(PassRefPtr<SharedBuffer> data, const URL& url, const ResourceResponse& response) argument
59 return create(data, url, response.mimeType(), response.textEncodingName(), String(), response);
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebNavigationData.mm34 NSURLResponse *response;
48 [response release];
58 - (id)initWithURLString:(NSString *)url title:(NSString *)title originalRequest:(NSURLRequest *)request response:(NSURLResponse *)response hasSubstituteData:(BOOL)hasSubstituteData clientRedirectSource:(NSString *)redirectSource
68 _private->response = [response retain];
90 - (NSURLResponse *)response
92 return _private->response;
H A DWebResourcePrivate.h38 response:(NSURLResponse *)response
41 - (id)_initWithData:(NSData *)data URL:(NSURL *)URL response:(NSURLResponse *)response;
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.25/eg/
H A Dproxy-auth.pl28 my $response = HTTP::Response->new(407);
29 $response->header(
31 $self->proxy->response($response);
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.300/eg/
H A Dproxy-auth.pl28 my $response = HTTP::Response->new(407);
29 $response->header(
31 $self->proxy->response($response);
/macosx-10.10/WebCore-7600.1.25/loader/cf/
H A DResourceLoaderCFNet.cpp43 CFURLResponseRef response = CFCachedURLResponseGetWrappedResponse(cachedResponse);
45 return frameLoader()->client().shouldCacheResponse(documentLoader(), identifier(), response, CFDataGetBytePtr(data), CFDataGetLength(data));
/macosx-10.10/WebCore-7600.1.25/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.10/WebKit2-7600.1.25/Shared/Downloads/efl/
H A DDownloadSoupErrorsEfl.cpp41 ResourceError platformDownloadDestinationError(const ResourceResponse& response, const String& message) argument
43 return downloadDestinationError(response, message);
/macosx-10.10/WebKit2-7600.1.25/Shared/Downloads/gtk/
H A DDownloadSoupErrorsGtk.cpp41 ResourceError platformDownloadDestinationError(const ResourceResponse& response, const String& message) argument
43 return downloadDestinationError(response, message);
/macosx-10.10/ruby-106/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.10/xnu-2782.1.97/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.10/WebCore-7600.1.25/platform/efl/
H A DErrorsEfl.cpp55 ResourceError cannotShowMIMETypeError(const ResourceResponse& response) argument
57 return ResourceError(errorDomainPolicy, PolicyErrorCannotShowMimeType, response.url().string(), ASCIILiteral("Content with the specified MIME type cannot be shown"));
60 ResourceError fileDoesNotExistError(const ResourceResponse& response) argument
62 return ResourceError(errorDomainNetwork, NetworkErrorFileDoesNotExist, response.url().string(), ASCIILiteral("File does not exist"));
65 ResourceError pluginWillHandleLoadError(const ResourceResponse& response) argument
67 return ResourceError(errorDomainPlugin, PluginErrorWillHandleLoad, response.url().string(), ASCIILiteral("Plugin will handle load"));
75 ResourceError downloadCancelledByUserError(const ResourceResponse& response) argument
77 return ResourceError(errorDomainDownload, DownloadErrorCancelledByUser, response.url().string(), ASCIILiteral("User cancelled the download"));
80 ResourceError downloadDestinationError(const ResourceResponse& response, const String& errorMessage) argument
82 return ResourceError(errorDomainDownload, DownloadErrorDestination, response
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/gtk/
H A DErrorsGtk.cpp54 ResourceError cannotShowMIMETypeError(const ResourceResponse& response) argument
57 response.url().string(), _("Content with the specified MIME type cannot be shown"));
60 ResourceError fileDoesNotExistError(const ResourceResponse& response) argument
63 response.url().string(), _("File does not exist"));
66 ResourceError pluginWillHandleLoadError(const ResourceResponse& response) argument
69 response.url().string(), _("Plugin will handle load"));
78 ResourceError downloadCancelledByUserError(const ResourceResponse& response) argument
81 response.url().string(), _("User cancelled the download"));
84 ResourceError downloadDestinationError(const ResourceResponse& response, const String& errorMessage) argument
87 response
[all...]

Completed in 335 milliseconds

1234567891011>>