Searched refs:request (Results 351 - 375 of 1278) sorted by relevance

<<11121314151617181920>>

/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dsocks++5.cpp45 Byte request[] = { 5, 1, socksAuthPublic }; local
46 s.write(request, sizeof(request));
59 Message request(socksConnect, peer.address(), peer.port());
60 request.send(me);
86 Message request(socksConnect, host.name().c_str(), port);
87 request.send(me);
99 Message request(socksBind, peer, port);
100 request.send(me);
117 // Construct a request fro
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dsocks++5.cpp45 Byte request[] = { 5, 1, socksAuthPublic }; local
46 s.write(request, sizeof(request));
59 Message request(socksConnect, peer.address(), peer.port());
60 request.send(me);
86 Message request(socksConnect, host.name().c_str(), port);
87 request.send(me);
99 Message request(socksBind, peer, port);
100 request.send(me);
117 // Construct a request fro
[all...]
/macosx-10.10/WebCore-7600.1.25/loader/
H A DWorkerThreadableLoader.cpp53 WorkerThreadableLoader::WorkerThreadableLoader(WorkerGlobalScope* workerGlobalScope, ThreadableLoaderClient* client, const String& taskMode, const ResourceRequest& request, const ThreadableLoaderOptions& options) argument
56 , m_bridge(*(new MainThreadBridge(m_workerClientWrapper, m_workerGlobalScope->thread().workerLoaderProxy(), taskMode, request, options, workerGlobalScope->url().strippedForUseAsReferrer())))
65 void WorkerThreadableLoader::loadResourceSynchronously(WorkerGlobalScope* workerGlobalScope, const ResourceRequest& request, ThreadableLoaderClient& client, const ThreadableLoaderOptions& options) argument
73 RefPtr<WorkerThreadableLoader> loader = WorkerThreadableLoader::create(workerGlobalScope, &client, mode, request, options);
88 const ResourceRequest& request, const ThreadableLoaderOptions& options, const String& outgoingReferrer)
94 m_loaderProxy.postTaskToLoader(CrossThreadTask(&MainThreadBridge::mainThreadCreateLoader, AllowCrossThreadAccess(this), request, options, outgoingReferrer));
106 OwnPtr<ResourceRequest> request(ResourceRequest::adopt(requestData));
107 request->setHTTPReferrer(outgoingReferrer);
111 thisPtr->m_mainThreadLoader = DocumentThreadableLoader::create(*document, *thisPtr, *request, options);
87 MainThreadBridge(PassRefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, WorkerLoaderProxy& loaderProxy, const String& taskMode, const ResourceRequest& request, const ThreadableLoaderOptions& options, const String& outgoingReferrer) argument
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitAuthenticationDialog.cpp32 GRefPtr<WebKitAuthenticationRequest> request; member in struct:_WebKitAuthenticationDialogPrivate
45 webkit_authentication_request_authenticate(priv->request.get(), credential);
52 webkit_authentication_request_authenticate(authDialog->priv->request.get(), 0);
86 authDialog->priv->authWidget = webkitAuthenticationWidgetNew(webkitAuthenticationRequestGetAuthenticationChallenge(authDialog->priv->request.get())->core(), credentialStorageMode);
99 authDialog->priv->authenticationCancelledID = g_signal_connect(authDialog->priv->request.get(), "cancelled", G_CALLBACK(authenticationCancelled), authDialog);
140 g_signal_handler_disconnect(priv->request.get(), priv->authenticationCancelledID);
158 GtkWidget* webkitAuthenticationDialogNew(WebKitAuthenticationRequest* request, CredentialStorageMode mode) argument
161 authDialog->priv->request = request;
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Network/
H A DWebResourceLoadScheduler.cpp72 PassRefPtr<SubresourceLoader> WebResourceLoadScheduler::scheduleSubresourceLoad(Frame* frame, CachedResource* resource, const ResourceRequest& request, ResourceLoadPriority priority, const ResourceLoaderOptions& options) argument
74 RefPtr<SubresourceLoader> loader = SubresourceLoader::create(frame, resource, request, options);
80 PassRefPtr<NetscapePlugInStreamLoader> WebResourceLoadScheduler::schedulePluginStreamLoad(Frame* frame, NetscapePlugInStreamLoaderClient* client, const ResourceRequest& request) argument
82 RefPtr<NetscapePlugInStreamLoader> loader = NetscapePlugInStreamLoader::create(frame, client, request);
100 if (resourceLoader->documentLoader()->scheduleArchiveLoad(resourceLoader, resourceLoader->request())) {
107 if (resourceLoader->documentLoader()->applicationCacheHost()->maybeLoadResource(resourceLoader, resourceLoader->request(), resourceLoader->request().url())) {
138 loadParameters.request = resourceLoader->request();
195 // Loader may not be registered if we created it, but haven't scheduled yet (a bundle client can decide to cancel such request vi
[all...]
/macosx-10.10/postfix-255/postfix/src/virtual/
H A Dmailbox.c96 if (DEL_REQ_TRACE_ONLY(state.request->flags)) {
98 return (sent(BOUNCE_FLAGS(state.request),
154 (BOUNCE_FLAGS(state.request),
158 deliver_status = sent(BOUNCE_FLAGS(state.request),
203 *statusp = defer_append(BOUNCE_FLAGS(state.request),
221 *statusp = defer_append(BOUNCE_FLAGS(state.request),
229 *statusp = defer_append(BOUNCE_FLAGS(state.request),
244 *statusp = defer_append(BOUNCE_FLAGS(state.request),
252 *statusp = defer_append(BOUNCE_FLAGS(state.request),
/macosx-10.10/tcl-105/tcl_ext/tclsoap/tclsoap/
H A Djsonrpc.tcl77 [namespace parent]::JSONRPC::request] \
232 proc ::JSONRPC::request {procVarName args} {
325 # id - the id from the original request (currently ignored
357 # A list containing the context of the request as the first element,
366 if {[catch {set request [::json::json2dict $payload]}]} {
367 return -code error -errorcode [list JSONRPC local "JSON request received with invalid format"] \
368 "Client request is not well-formed JSON.\n\
372 if {! ([dict exists $request method] && [dict exists $request id])} {
374 "Client request i
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/network/mac/
H A DResourceHandleMac.mm95 -(id)_initWithRequest:(NSURLRequest *)request delegate:(id)delegate usesCache:(BOOL)usesCacheFlag maxContentLength:(long long)maxContentLength startImmediately:(BOOL)startImmediately connectionProperties:(NSDictionary *)connectionProperties;
102 static void applyBasicAuthorizationHeader(ResourceRequest& request, const Credential& credential)
106 request.setHTTPHeaderField(HTTPHeaderName::Authorization, authenticationHeader);
160 // If there is already a protection space known for the URL, update stored credentials before sending a request.
199 // If we are using all available connections for async requests, and make a sync request, then prior
201 // request won't start because there are no available connections.
394 void ResourceHandle::platformLoadResourceSynchronously(NetworkingContext* context, const ResourceRequest& request, StoredCredentials storedCredentials, ResourceError& error, ResourceResponse& response, Vector<char>& data)
396 LOG(Network, "ResourceHandle::platformLoadResourceSynchronously:%@ allowStoredCredentials:%u", request.nsURLRequest(DoNotUpdateHTTPBody), storedCredentials);
398 ASSERT(!request.isEmpty());
403 RefPtr<ResourceHandle> handle = adoptRef(new ResourceHandle(context, request, clien
[all...]
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.25/eg/
H A Dflv.pl15 my $uri = $message->request->uri;
H A Dpost.pl7 # NOTE: Body request filters always receive the request body in one pass
25 $proxy->push_filter( method => 'POST', request => $filter );
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.300/eg/
H A Dflv.pl15 my $uri = $message->request->uri;
H A Dpost.pl7 # NOTE: Body request filters always receive the request body in one pass
25 $proxy->push_filter( method => 'POST', request => $filter );
/macosx-10.10/CPANInternal-159.1/JSON-RPC-0.96/lib/JSON/RPC/Server/
H A DApache2.pm25 $s->request($r);
49 my $r = $self->request;
67 my $r = $self->request;
109 my $r = $self->request;
173 Gets a client request.
203 retrieves a JSON request from the body in POST method.
207 In the protocol v1.1, 'GET' request method is also allowable.
208 it retrieves a JSON request from the query string in GET method.
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Ddnssrv.c187 char *request; local
199 request = LDAP_MALLOC(strlen(domain) + sizeof("_ldap._tcp."));
200 if (request == NULL) {
203 sprintf(request, "_ldap._tcp.%s", domain);
210 len = res_query(request, ns_c_in, ns_t_srv, reply, sizeof(reply));
220 len = res_query(request, C_IN, T_SRV, reply, sizeof(reply));
308 if (request != NULL) {
309 LDAP_FREE(request);
/macosx-10.10/Security-57031.1.35/Security/sec/Security/
H A DSecSCEP.h44 @abstract generate a scep certificate request blob, to be presented to
46 @param subject distinguished name to be put in the request
49 @param privateKey accompanying private key signing the request (proof of possession)
50 @param signer identity to sign scep request with, if NULL the keypair to be
62 @abstract take a SCEP request and issue a cert
63 @param request the request; the ra/ca identity needed to decrypt it needs to be
70 SecSCEPCertifyRequest(CFDataRef request, SecIdentityRef ca_identity, CFDataRef serialno, bool pend_request) CF_RETURNS_RETAINED;
74 @abstract validate a reply for a sent request and retrieve the issued
75 request
[all...]
/macosx-10.10/WebCore-7600.1.25/loader/cache/
H A DCachedRawResource.h78 explicit RedirectPair(const ResourceRequest& request, const ResourceResponse& redirectResponse) argument
79 : m_request(request)
/macosx-10.10/WebCore-7600.1.25/page/
H A DPerformanceResourceTiming.h53 static PassRefPtr<PerformanceResourceTiming> create(const AtomicString& initiatorType, const ResourceRequest& request, const ResourceResponse& response, double initiationTime, double finishTime, Document* requestingDocument) argument
55 return adoptRef(new PerformanceResourceTiming(initiatorType, request, response, initiationTime, finishTime, requestingDocument));
/macosx-10.10/WebCore-7600.1.25/platform/network/
H A DBlobRegistryImpl.cpp57 static PassRefPtr<ResourceHandle> createResourceHandle(const ResourceRequest& request, ResourceHandleClient* client) argument
59 return static_cast<BlobRegistryImpl&>(blobRegistry()).createResourceHandle(request, client);
62 static void loadResourceSynchronously(NetworkingContext*, const ResourceRequest& request, StoredCredentials, ResourceError& error, ResourceResponse& response, Vector<char>& data) argument
64 BlobData* blobData = static_cast<BlobRegistryImpl&>(blobRegistry()).getBlobDataFromURL(request.url());
65 BlobResourceHandle::loadResourceSynchronously(blobData, request, error, response, data);
78 PassRefPtr<ResourceHandle> BlobRegistryImpl::createResourceHandle(const ResourceRequest& request, ResourceHandleClient* client) argument
80 RefPtr<BlobResourceHandle> handle = BlobResourceHandle::createAsync(getBlobDataFromURL(request.url()), request, client);
/macosx-10.10/WebCore-7600.1.25/platform/network/cf/
H A DResourceHandleCFURLConnectionDelegate.cpp127 // If the protocols of the new request and the current request match, this is not an HSTS redirect and we shouldn't synthesize a redirect response.
144 ResourceRequest request; local
162 request = mutableRequest.get();
166 if (request.isNull())
167 request = cfRequest;
169 if (!request.url().protocolIs("https") && protocolIs(request.httpReferrer(), "https") && m_handle->context()->shouldClearReferrerOnHTTPSToHTTPRedirect())
170 request.clearHTTPReferrer();
171 return request;
[all...]
/macosx-10.10/WebCore-7600.1.25/xml/
H A DXSLImportRule.cpp101 CachedResourceRequest request(ResourceRequest(cachedResourceLoader->document()->completeURL(absHref)));
104 m_cachedSheet = cachedResourceLoader->requestXSLStyleSheet(request);
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DConsoleMessage.js62 WebInspector.ConsoleMessage.create = function(source, level, message, type, url, line, column, repeatCount, parameters, stackTrace, request)
64 return new WebInspector.ConsoleMessageImpl(source, level, message, null, type, url, line, column, repeatCount, parameters, stackTrace, request);
/macosx-10.10/WebKit-7600.1.25/ios/DefaultDelegates/
H A DWebDefaultResourceLoadDelegate.m42 - (id)webView:(WebView *)sender identifierForInitialRequest:(NSURLRequest *)request fromDataSource:(WebDataSource *)dataSource
47 - (NSURLRequest *)webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource
49 return request;
90 - (void)webView:(WebView *)webView didLoadResourceFromMemoryCache:(NSURLRequest *)request response:(NSURLResponse *)response length:(NSInteger)length fromDataSource:(WebDataSource *)dataSource
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebDataSource.h56 @param request The request to use in creating a datasource.
59 - (instancetype)initWithRequest:(NSURLRequest *)request;
88 @abstract A reference to the original request that created the
89 datasource. This request will be unmodified by WebKit.
94 @property request
95 @abstract The request that was used to create this datasource.
97 @property (nonatomic, readonly, strong) NSMutableURLRequest *request; variable
H A DWebResourceLoadDelegatePrivate.h37 - (void)webView:(WebView *)webView didLoadResourceFromMemoryCache:(NSURLRequest *)request response:(NSURLResponse *)response length:(NSInteger)length fromDataSource:(WebDataSource *)dataSource;
57 - (id)webThreadWebView:(WebView *)sender identifierForInitialRequest:(NSURLRequest *)request fromDataSource:(WebDataSource *)dataSource;
58 - (NSURLRequest *)webThreadWebView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource;
61 - (void)webThreadWebView:(WebView *)webView didLoadResourceFromMemoryCache:(NSURLRequest *)request response:(NSURLResponse *)response length:(WebNSInteger)length fromDataSource:(WebDataSource *)dataSource;
/macosx-10.10/WebKit-7600.1.25/win/Interfaces/
H A DIWebDownload.idl89 - (id)initWithRequest:(NSURLRequest *)request delegate:(id)delegate
91 HRESULT initWithRequest([in] IWebURLRequest* request, [in] IWebDownloadDelegate* delegate);
104 - (NSURLRequest *)request
106 HRESULT request([out, retval] IWebURLRequest** request);
153 HRESULT willSendRequest([in] IWebDownload* download, [in] IWebMutableURLRequest* request, [in] IWebURLResponse* redirectResponse, [out] IWebMutableURLRequest** finalRequest);

Completed in 376 milliseconds

<<11121314151617181920>>