Searched refs:url (Results 226 - 250 of 2019) sorted by relevance

1234567891011>>

/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-CFNetwork/PyObjCTest/
H A Dtest_cfftpstream.py31 url = CFURLCreateWithString(None, "ftp://ftp.python.org/", None)
32 self.assertIsInstance(url, CFURLRef)
33 ftp = CFReadStreamCreateWithFTPURL(None, url)
46 url = CFURLCreateWithString(None, "ftp://www.rivm.nl/incoming/test.txt", None)
47 self.assertIsInstance(url, CFURLRef)
48 ftp = CFWriteStreamCreateWithFTPURL(None, url)
/macosx-10.9.5/tcl-102/tcl_ext/tclvfs/tclvfs/library/
H A Dhttpvfs.tcl37 # Break the url into parts, verifying url
41 return -code error "invalid url \"$dirurl\":\
55 set token [::http::geturl $parts(url) -validate 1 -headers $headers]
61 return -code error "received status \"$status\" for \"$parts(url)\""
64 # Add a / to make sure the url and names are clearly separated later
65 if {[string index $parts(url) end] ne "/"} {
66 append parts(url) "/"
69 if {![catch {vfs::filesystem info $parts(url)}]} {
71 ::vfs::log "ftp-vfs: unmounted old mount point at $parts(url)"
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-dnssrv/
H A Dreferral.c94 struct berval url; local
96 url.bv_len = STRLENOF( "ldap://" ) + strlen( hosts[i] );
97 url.bv_val = ch_malloc( url.bv_len + 1 );
99 strcpy( url.bv_val, "ldap://" );
100 strcpy( &url.bv_val[STRLENOF( "ldap://" )], hosts[i] );
102 if ( ber_bvarray_add( &urls, &url ) < 0 ) {
103 free( url.bv_val );
110 "%s DNSSRV p=%d dn=\"%s\" url=\"%s\"\n",
114 Debug( LDAP_DEBUG_TRACE, "DNSSRV: dn=\"%s\" -> url
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/xpc-tsa/
H A Dtimestampclient.h39 NSURL *url; variable
43 @property (retain) id url; variable
/macosx-10.9.5/WebCore-7537.78.1/Modules/filesystem/
H A DDOMWindowFileSystem.idl35 void webkitResolveLocalFileSystemURL(DOMString url,
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DWebKitCSSSVGDocumentValue.cpp39 WebKitCSSSVGDocumentValue::WebKitCSSSVGDocumentValue(const String& url) argument
41 , m_url(url)
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DIconURL.h64 IconURL(const KURL& url, const String& sizes, const String& mimeType, IconType type) argument
68 , m_iconURL(url)
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DHTMLParserOptions.cpp48 useThreading = settings && settings->threadedHTMLParser() && !document->url().isBlankURL()
49 && (settings->useThreadedHTMLParserForDataURLs() || !document->url().protocolIsData());
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DSSLKeyGeneratorMac.cpp44 String signedPublicKeyAndChallengeString(unsigned keySizeIndex, const String& challengeString, const KURL& url) argument
63 return adoptCF(wkSignedPublicKeyAndChallengeString(keySize, challengeString.createCFString().get(), keygenKeychainItemName(url.host()).createCFString().get())).get();
/macosx-10.9.5/WebCore-7537.78.1/platform/network/blackberry/
H A DResourceResponse.h33 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename) argument
34 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename)
/macosx-10.9.5/WebCore-7537.78.1/platform/network/curl/
H A DSocketStreamHandleCurl.cpp42 SocketStreamHandle::SocketStreamHandle(const KURL& url, SocketStreamHandleClient* client) argument
43 : SocketStreamHandleBase(url, client)
/macosx-10.9.5/WebCore-7537.78.1/platform/network/qt/
H A DResourceResponse.h39 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename) argument
40 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename)
/macosx-10.9.5/WebCore-7537.78.1/platform/network/win/
H A DResourceResponse.h38 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename) argument
39 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename)
H A DSocketStreamHandleWin.cpp42 SocketStreamHandle::SocketStreamHandle(const KURL& url, SocketStreamHandleClient* client) argument
43 : SocketStreamHandleBase(url, client)
/macosx-10.9.5/WebCore-7537.78.1/workers/
H A DSharedWorkerRepository.cpp44 void SharedWorkerRepository::connect(PassRefPtr<SharedWorker> worker, PassOwnPtr<MessagePortChannel> port, const KURL& url, const String& name, ExceptionCode& ec) argument
46 DefaultSharedWorkerRepository::instance().connectToWorker(worker, port, url, name, ec);
/macosx-10.9.5/WebKit-7537.78.2/blackberry/Api/
H A DWebCookieJar.h47 std::vector<BlackBerry::Platform::String> cookies(const BlackBerry::Platform::String& url);
58 void setCookies(const BlackBerry::Platform::String& url, const std::vector<BlackBerry::Platform::String>& cookies);
/macosx-10.9.5/WebKit-7537.78.2/efl/tests/UnitTestUtils/
H A DEWKTestBase.cpp57 void EWKTestBase::loadUrl(const char* url) argument
59 ASSERT_TRUE(ewk_view_uri_set(webView(), url));
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebNavigationData.h38 - (id)initWithURLString:(NSString *)url title:(NSString *)title originalRequest:(NSURLRequest *)request response:(NSURLResponse *)response hasSubstituteData:(BOOL)hasSubstituteData clientRedirectSource:(NSString *)redirectSource;
39 - (NSString *)url;
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebNavigationData.cpp64 WebNavigationData::WebNavigationData(const String& url, const String& title, IWebURLRequest* request, IWebURLResponse* response, bool hasSubstituteData, const String& clientRedirectSource) argument
66 , m_url(url)
84 WebNavigationData* WebNavigationData::createInstance(const String& url, const String& title, IWebURLRequest* request, IWebURLResponse* response, bool hasSubstituteData, const String& clientRedirectSource) argument
86 WebNavigationData* instance = new WebNavigationData(url, title, request, response, hasSubstituteData, clientRedirectSource);
93 HRESULT WebNavigationData::url(BSTR* url) argument
95 if (!url)
97 *url = BString(m_url).release();
H A DWebResource.cpp38 WebResource::WebResource(IStream* data, const WebCore::KURL& url, const WTF::String& mimeType, const WTF::String& textEncodingName, const WTF::String& frameName) argument
41 , m_url(url)
60 WebResource* instance = new WebResource(memoryStream.get(), response.url(), response.mimeType(), response.textEncodingName(), String());
99 /* [in] */ BSTR url,
105 m_url = MarshallingHelpers::BSTRToKURL(url);
121 /* [retval][out] */ BSTR *url)
123 if (!url) {
128 *url = BString(String(m_url.string())).release();
97 initWithData( IStream *data, BSTR url, BSTR mimeType, BSTR textEncodingName, BSTR frameName) argument
120 URL( BSTR *url) argument
/macosx-10.9.5/WebKit2-7537.78.2/NetworkProcess/
H A DNetworkConnectionToWebProcess.cpp185 void NetworkConnectionToWebProcess::cookiesForDOM(bool privateBrowsingEnabled, const KURL& firstParty, const KURL& url, String& result) argument
187 result = WebCore::cookiesForDOM(storageSession(privateBrowsingEnabled), firstParty, url);
190 void NetworkConnectionToWebProcess::setCookiesFromDOM(bool privateBrowsingEnabled, const KURL& firstParty, const KURL& url, const String& cookieString) argument
192 WebCore::setCookiesFromDOM(storageSession(privateBrowsingEnabled), firstParty, url, cookieString); local
195 void NetworkConnectionToWebProcess::cookiesEnabled(bool privateBrowsingEnabled, const KURL& firstParty, const KURL& url, bool& result) argument
197 result = WebCore::cookiesEnabled(storageSession(privateBrowsingEnabled), firstParty, url);
200 void NetworkConnectionToWebProcess::cookieRequestHeaderFieldValue(bool privateBrowsingEnabled, const KURL& firstParty, const KURL& url, String& result) argument
202 result = WebCore::cookieRequestHeaderFieldValue(storageSession(privateBrowsingEnabled), firstParty, url);
205 void NetworkConnectionToWebProcess::getRawCookies(bool privateBrowsingEnabled, const KURL& firstParty, const KURL& url, Vector<Cookie>& result) argument
207 WebCore::getRawCookies(storageSession(privateBrowsingEnabled), firstParty, url, resul local
210 deleteCookie(bool privateBrowsingEnabled, const KURL& url, const String& cookieName) argument
212 WebCore::deleteCookie(storageSession(privateBrowsingEnabled), url, cookieName); local
215 registerBlobURL(const KURL& url, const BlobRegistrationData& data) argument
226 registerBlobURLFromURL(const KURL& url, const KURL& srcURL) argument
231 unregisterBlobURL(const KURL& url) argument
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DWebURLRequest.cpp19 PassRefPtr<WebURLRequest> WebURLRequest::create(const KURL& url) argument
21 return adoptRef(new WebURLRequest(ResourceRequest(url)));
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKNavigationData.cpp48 return toCopiedURLAPI(toImpl(navigationDataRef)->originalRequest().url());
53 return toCopiedURLAPI(toImpl(navigationDataRef)->url());
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A Dewk_url_request.cpp39 const char* EwkUrlRequest::url() const function in class:EwkUrlRequest
58 return impl->url();
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebNavigationData.h45 String url() const { return m_store.url; } function in class:WebKit::WebNavigationData

Completed in 213 milliseconds

1234567891011>>