Searched refs:m_handle (Results 1 - 25 of 38) sorted by relevance

12

/macosx-10.10/WebCore-7600.1.25/platform/win/
H A DWin32Handle.h37 Win32Handle() : m_handle(INVALID_HANDLE_VALUE) { }
38 explicit Win32Handle(HANDLE handle) : m_handle(handle) { }
46 CloseHandle(m_handle);
47 m_handle = INVALID_HANDLE_VALUE;
50 bool isValid() const { return m_handle != INVALID_HANDLE_VALUE; }
52 HANDLE get() const { return m_handle; }
53 HANDLE release() { HANDLE ret = m_handle; m_handle = INVALID_HANDLE_VALUE; return ret; }
58 m_handle = handle;
62 HANDLE m_handle; member in class:WebCore::Win32Handle
[all...]
H A DPathWalker.cpp36 m_handle = ::FindFirstFileW(path.charactersWithNullTermination().data(), &m_data);
43 ::FindClose(m_handle);
48 return ::FindNextFileW(m_handle, &m_data);
H A DPathWalker.h41 bool isValid() const { return m_handle != INVALID_HANDLE_VALUE; }
47 HANDLE m_handle; member in class:WebCore::PathWalker
/macosx-10.10/WebKit2-7600.1.25/Platform/gtk/
H A DModuleGtk.cpp38 m_handle = g_module_open(m_path.utf8().data(), G_MODULE_BIND_LAZY);
39 if (!m_handle)
41 return m_handle;
46 if (m_handle)
47 g_module_close(m_handle);
53 g_module_symbol(m_handle, functionName, &symbol);
/macosx-10.10/WebCore-7600.1.25/platform/network/cf/
H A DSynchronousResourceHandleCFURLConnectionDelegate.cpp91 LOG(Network, "CFNet - SynchronousResourceHandleCFURLConnectionDelegate::willSendRequest(handle=%p) (%s)", m_handle, m_handle->firstRequest().url().string().utf8().data());
94 m_handle->willSendRequest(request, redirectResponse.get());
116 LOG(Network, "CFNet - SynchronousResourceHandleCFURLConnectionDelegate::didReceiveResponse(handle=%p) (%s)", m_handle, m_handle->firstRequest().url().string().utf8().data());
118 if (!m_handle->client())
130 if (_CFURLRequestCopyProtocolPropertyForKey(m_handle->firstRequest().cfURLRequest(DoNotUpdateHTTPBody), CFSTR("ForceHTMLMIMEType")))
136 ASSERT(!m_handle->shouldContentSniff());
142 m_handle->setQuickLookHandle(QuickLookHandle::create(m_handle, thi
[all...]
H A DResourceHandleCFURLConnectionDelegateWithOperationQueue.cpp63 return !!m_handle;
103 LOG(Network, "CFNet - ResourceHandleCFURLConnectionDelegateWithOperationQueue::willSendRequest(handle=%p) (%s)", m_handle, m_handle->firstRequest().url().string().utf8().data());
109 m_handle->willSendRequest(request, redirectResponse.get());
127 LOG(Network, "CFNet - ResourceHandleCFURLConnectionDelegateWithOperationQueue::didReceiveResponse(handle=%p) (%s)", m_handle, m_handle->firstRequest().url().string().utf8().data());
137 if (_CFURLRequestCopyProtocolPropertyForKey(m_handle->firstRequest().cfURLRequest(DoNotUpdateHTTPBody), CFSTR("ForceHTMLMIMEType")))
148 m_handle->client()->didReceiveResponseAsync(m_handle, resourceResponse);
160 LOG(Network, "CFNet - ResourceHandleCFURLConnectionDelegateWithOperationQueue::didReceiveData(handle=%p) (%s)", m_handle, m_handl
[all...]
H A DResourceHandleCFURLConnectionDelegate.cpp46 : m_handle(handle)
56 m_handle = nullptr;
128 const ResourceRequest& currentRequest = m_handle->currentRequest();
147 RetainPtr<CFStringRef> lastHTTPMethod = m_handle->lastHTTPMethod().createCFString();
151 wkSetRequestStorageSession(m_handle->storageSession(), mutableRequest.get());
154 FormData* body = m_handle->firstRequest().httpBody();
155 if (!equalIgnoringCase(m_handle->firstRequest().httpMethod(), "GET") && body && !body->isEmpty())
158 String originalContentType = m_handle->firstRequest().httpContentType();
169 if (!request.url().protocolIs("https") && protocolIs(request.httpReferrer(), "https") && m_handle->context()->shouldClearReferrerOnHTTPSToHTTPRedirect())
/macosx-10.10/WebCore-7600.1.25/platform/network/mac/
H A DWebCoreResourceHandleAsDelegate.mm54 m_handle = handle;
60 m_handle = 0;
67 if (!m_handle)
78 LOG(Network, "Handle %p delegate connection:%p willSendRequest:%@ redirectResponse:%d, Location:<%@>", m_handle, connection, [newRequest description], static_cast<int>([(id)redirectResponse statusCode]), [[(id)redirectResponse allHeaderFields] objectForKey:@"Location"]);
80 LOG(Network, "Handle %p delegate connection:%p willSendRequest:%@ redirectResponse:non-HTTP", m_handle, connection, [newRequest description]);
85 m_handle->willSendRequest(request, redirectResponse);
94 LOG(Network, "Handle %p delegate connectionShouldUseCredentialStorage:%p", m_handle, connection);
99 if (!m_handle)
102 return m_handle->shouldUseCredentialStorage();
110 LOG(Network, "Handle %p delegate connection:%p didReceiveAuthenticationChallenge:%p", m_handle, connectio
[all...]
H A DWebCoreResourceHandleAsOperationQueueDelegate.mm56 m_handle = handle;
64 m_handle = 0;
114 LOG(Network, "Handle %p delegate connection:%p willSendRequest:%@ redirectResponse:%d, Location:<%@>", m_handle, connection, [newRequest description], static_cast<int>([(id)redirectResponse statusCode]), [[(id)redirectResponse allHeaderFields] objectForKey:@"Location"]);
116 LOG(Network, "Handle %p delegate connection:%p willSendRequest:%@ redirectResponse:non-HTTP", m_handle, connection, [newRequest description]);
122 if (!m_handle) {
130 m_handle->willSendRequest(request, redirectResponse);
142 LOG(Network, "Handle %p delegate connection:%p didReceiveAuthenticationChallenge:%p", m_handle, connection, challenge);
145 if (!m_handle) {
149 m_handle->didReceiveAuthenticationChallenge(core(challenge));
160 LOG(Network, "Handle %p delegate connection:%p didCancelAuthenticationChallenge:%p", m_handle, connectio
[all...]
H A DWebCoreResourceHandleAsDelegate.h36 WebCore::ResourceHandle* m_handle; member in namespace:NSObject
H A DWebCoreResourceHandleAsOperationQueueDelegate.h39 WebCore::ResourceHandle* m_handle; member in namespace:NSObject
/macosx-10.10/WebCore-7600.1.25/platform/
H A DFileStream.cpp41 : m_handle(invalidPlatformFileHandle)
49 ASSERT(!isHandleValid(m_handle));
83 if (isHandleValid(m_handle))
87 m_handle = openFile(path, OpenForRead);
88 if (!isHandleValid(m_handle))
93 if (seekFile(m_handle, offset, SeekFromBeginning) < 0)
111 if (isHandleValid(m_handle)) {
112 closeFile(m_handle);
113 m_handle = invalidPlatformFileHandle;
119 if (!isHandleValid(m_handle))
[all...]
H A DFileStream.h89 PlatformFileHandle m_handle; member in class:WebCore::FileStream
/macosx-10.10/WebKit2-7600.1.25/NetworkProcess/
H A DNetworkResourceLoader.cpp114 ASSERT(!m_handle);
141 m_handle = ResourceHandle::create(m_networkingContext.get(), m_request, this, false /* defersLoading */, m_contentSniffingPolicy == SniffContent);
147 if (m_handle)
148 m_handle->setDefersLoading(defers);
165 if (m_handle) {
168 m_handle = 0;
175 ASSERT(m_handle);
183 if (m_handle && !m_handleConvertedToDownload)
184 m_handle->cancel();
191 ASSERT_UNUSED(handle, handle == m_handle);
[all...]
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-run/
H A Dio.cpp58 m_handle(invalid_value())
63 m_handle(h)
65 PRE(m_handle != invalid_value());
69 m_handle(fh.m_handle)
71 fh.m_handle = invalid_value();
83 m_handle = fh.m_handle;
84 fh.m_handle = invalid_value();
93 return m_handle !
[all...]
H A Dio.hpp227 mutable handle_type m_handle; member in class:atf::atf_run::file_handle
283 handle_type m_handle; member in class:atf::atf_run::systembuf
/macosx-10.10/WebCore-7600.1.25/platform/network/curl/
H A DResourceHandleManager.cpp168 curl_easy_getinfo(d->m_handle, CURLINFO_NAMELOOKUP_TIME, &dnslookupTime);
169 curl_easy_getinfo(d->m_handle, CURLINFO_CONNECT_TIME, &connectTime);
170 curl_easy_getinfo(d->m_handle, CURLINFO_APPCONNECT_TIME, &appConnectTime);
171 curl_easy_getinfo(d->m_handle, CURLINFO_STARTTRANSFER_TIME, &startTransfertTime);
172 curl_easy_getinfo(d->m_handle, CURLINFO_PRETRANSFER_TIME, &preTransferTime);
313 CURL* h = d->m_handle;
472 CURL* h = d->m_handle;
525 if (getProtectionSpace(d->m_handle, d->m_response, protectionSpace)) {
563 curl_easy_getinfo(d->m_handle, CURLINFO_RESPONSE_CODE, &httpCode);
655 // find the node which has same d->m_handle a
[all...]
H A DResourceHandleCurl.cpp153 if (!d->m_handle)
157 CURLcode error = curl_easy_pause(d->m_handle, CURLPAUSE_ALL);
162 CURLcode error = curl_easy_pause(d->m_handle, CURLPAUSE_CONT);
205 curl_easy_setopt(d->m_handle, CURLOPT_USERPWD, userpass.utf8().data());
230 curl_easy_setopt(d->m_handle, CURLOPT_USERPWD, userpass.utf8().data());
260 curl_easy_setopt(d->m_handle, CURLOPT_USERPWD, userpass.utf8().data());
271 curl_easy_setopt(d->m_handle, CURLOPT_USERPWD, userpass.utf8().data());
H A DSSLHandle.cpp67 curl_easy_setopt(d->m_handle, CURLOPT_SSLCERT, std::get<0>(clientInfo).utf8().data());
68 curl_easy_setopt(d->m_handle, CURLOPT_SSLCERTTYPE, "P12");
69 curl_easy_setopt(d->m_handle, CURLOPT_SSLCERTPASSWD, std::get<1>(clientInfo).utf8().data());
213 curl_easy_setopt(d->m_handle, CURLOPT_SSL_VERIFYPEER, false);
228 curl_easy_setopt(d->m_handle, CURLOPT_SSL_CTX_DATA, handle);
229 curl_easy_setopt(d->m_handle, CURLOPT_SSL_CTX_FUNCTION, sslctxfun);
/macosx-10.10/WebCore-7600.1.25/loader/
H A DResourceLoader.cpp93 if (m_handle) {
96 if (m_handle->client() == this)
97 m_handle->setClient(0);
98 m_handle = 0;
107 ASSERT(!m_handle);
159 ASSERT(!m_handle);
177 m_handle = ResourceHandle::create(m_frame->loader().networkingContext(), m_request, this, m_defersLoading, m_options.sniffContent() == SniffContent);
183 if (m_handle)
184 m_handle->setDefersLoading(defers);
214 if (m_handle)
[all...]
/macosx-10.10/WebKit2-7600.1.25/Shared/
H A DShareableResource.cpp44 encoder << m_handle; local
51 if (!decoder.decode(handle.m_handle))
107 RefPtr<SharedMemory> sharedMemory = SharedMemory::create(handle.m_handle, SharedMemory::ReadOnly);
131 if (!m_sharedMemory->createHandle(handle.m_handle, SharedMemory::ReadOnly))
H A DShareableResource.h53 bool isNull() const { return m_handle.isNull(); }
67 mutable SharedMemory::Handle m_handle; member in class:WebKit::ShareableResource::Handle
H A DShareableBitmap.cpp44 encoder << m_handle; local
51 if (!decoder.decode(handle.m_handle))
62 m_handle.clear();
102 RefPtr<SharedMemory> sharedMemory = SharedMemory::create(handle.m_handle, protection);
113 if (!m_sharedMemory->createHandle(handle.m_handle, protection))
/macosx-10.10/WebKit2-7600.1.25/NetworkProcess/mac/
H A DNetworkResourceLoaderMac.mm115 ASSERT_UNUSED(handle, handle == m_handle);
120 m_handle->continueWillCacheResponse(cfResponse);
127 ASSERT_UNUSED(handle, handle == m_handle);
134 m_handle->continueWillCacheResponse(nsResponse);
/macosx-10.10/WebCore-7600.1.25/Modules/websockets/
H A DWebSocketChannel.cpp97 ASSERT(!m_handle);
106 m_handle = SocketStreamHandle::create(m_handshake->url(), this);
173 ASSERT(m_handle);
175 return m_handle->bufferedAmount();
182 if (!m_handle)
209 if (m_handle && !m_closed)
210 m_handle->disconnect(); // Will call didClose().
222 if (m_handle)
223 m_handle->disconnect();
246 ASSERT(handle == m_handle);
[all...]

Completed in 300 milliseconds

12