Searched refs:m_handle (Results 1 - 25 of 34) sorted by path

12

/external/webkit/Source/WebCore/bindings/v8/
H A DOwnHandle.h42 explicit OwnHandle(v8::Handle<T> handle) : m_handle(v8::Persistent<T>::New(handle)) { }
45 v8::Handle<T> get() const { return m_handle; }
46 void set(v8::Handle<T> handle) { clear(); m_handle = v8::Persistent<T>::New(handle); }
51 if (m_handle.IsEmpty())
53 if (m_handle.IsWeak())
54 m_handle.ClearWeak();
55 m_handle.Dispose();
56 m_handle.Clear();
63 if (m_handle.IsEmpty())
65 m_handle
75 v8::Persistent<T> m_handle; member in class:WebCore::OwnHandle
[all...]
/external/webkit/Source/WebCore/loader/
H A DMainResourceLoader.cpp262 // m_handle can be null, e.g. when loading a substitute resource from application cache.
263 if (!m_handle) {
268 frameLoader()->client()->download(m_handle.get(), request(), m_handle.get()->firstRequest(), r);
551 ASSERT(!m_handle);
576 m_handle = ResourceHandle::create(m_frame->loader()->networkingContext(), r, this, false, true);
583 ASSERT(!m_handle);
H A DPingLoader.cpp99 m_handle = ResourceHandle::create(frame->loader()->networkingContext(), request, this, false, false);
108 m_handle->cancel();
H A DPingLoader.h71 RefPtr<ResourceHandle> m_handle; member in class:WebCore::PingLoader
H A DResourceLoader.cpp55 if (ResourceHandle::supportsBufferedData() && m_handle)
56 return m_handle->bufferedData();
101 if (m_handle) {
104 if (m_handle->client() == this)
105 m_handle->setClient(0);
106 m_handle = 0;
115 ASSERT(!m_handle);
144 ASSERT(!m_handle);
164 m_handle = ResourceHandle::create(m_frame->loader()->networkingContext(), m_request, this, m_defersLoading, m_shouldContentSniff);
170 if (m_handle)
[all...]
H A DResourceLoader.h136 ResourceHandle* handle() const { return m_handle.get(); }
161 RefPtr<ResourceHandle> m_handle; member in class:WebCore::ResourceLoader
H A DSubresourceLoader.cpp194 m_handle = 0;
214 m_handle = 0;
/external/webkit/Source/WebCore/platform/
H A DFileStream.cpp42 : m_handle(invalidPlatformFileHandle)
50 ASSERT(!isHandleValid(m_handle));
84 if (isHandleValid(m_handle))
88 m_handle = openFile(path, OpenForRead);
89 if (!isHandleValid(m_handle))
94 if (seekFile(m_handle, offset, SeekFromBeginning) < 0)
112 if (isHandleValid(m_handle)) {
113 closeFile(m_handle);
114 m_handle = invalidPlatformFileHandle;
120 if (!isHandleValid(m_handle))
[all...]
H A DFileStream.h91 PlatformFileHandle m_handle; member in class:WebCore::FileStream
/external/webkit/Source/WebCore/platform/audio/
H A DFFTFrame.h121 DFTI_DESCRIPTOR_HANDLE m_handle; member in class:WebCore::FFTFrame
/external/webkit/Source/WebCore/platform/audio/mkl/
H A DFFTFrameMKL.cpp92 , m_handle(0)
100 m_handle = descriptorHandleForSize(fftSize);
107 , m_handle(0)
115 , m_handle(0)
120 m_handle = descriptorHandleForSize(m_FFTSize);
176 MKL_LONG status = DftiComputeForward(m_handle, data, m_complexData.data());
201 MKL_LONG status = DftiComputeBackward(m_handle, interleavedData, data);
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DFontCustomPlatformData.h45 int m_handle; member in struct:WebCore::FontCustomPlatformData
H A DFontCustomPlatformDataQt.cpp34 QFontDatabase::removeApplicationFont(m_handle);
40 font.setFamily(QFontDatabase::applicationFontFamilies(m_handle)[0]);
60 data->m_handle = id;
/external/webkit/Source/WebCore/platform/graphics/win/
H A DRefCountedGDIHandle.h45 if (m_handle != reinterpret_cast<T>(-1))
46 WTF::deleteOwnedPtr(m_handle);
51 return m_handle;
56 return WTF::PtrHash<T>::hash(m_handle);
61 : m_handle(handle)
65 T m_handle; member in class:WebCore::RefCountedGDIHandle
/external/webkit/Source/WebCore/platform/network/
H A DResourceHandleInternal.h108 , m_handle(0)
178 CURL* m_handle; member in class:WebCore::ResourceHandleInternal
/external/webkit/Source/WebCore/platform/network/curl/
H A DResourceHandleCurl.cpp159 if (!d->m_handle)
163 CURLcode error = curl_easy_pause(d->m_handle, CURLPAUSE_ALL);
168 CURLcode error = curl_easy_pause(d->m_handle, CURLPAUSE_CONT);
H A DResourceHandleManager.cpp193 CURL* h = d->m_handle;
244 CURL* h = d->m_handle;
370 // find the node which has same d->m_handle as completed transfer
380 ASSERT(d->m_handle == handle);
392 handleLocalReceiveResponse(d->m_handle, job, d);
403 curl_easy_getinfo(d->m_handle, CURLINFO_EFFECTIVE_URL, &url);
442 ASSERT(d->m_handle);
443 if (!d->m_handle)
446 curl_multi_remove_handle(m_curlMultiHandle, d->m_handle);
447 curl_easy_cleanup(d->m_handle);
[all...]
/external/webkit/Source/WebCore/platform/network/mac/
H A DResourceHandleMac.mm64 ResourceHandle* m_handle;
755 m_handle = handle;
761 m_handle = 0;
771 if (!m_handle || !m_handle->client())
780 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"]);
782 LOG(Network, "Handle %p delegate connection:%p willSendRequest:%@ redirectResponse:non-HTTP", m_handle, connection, [newRequest description]);
786 String lastHTTPMethod = m_handle->lastHTTPMethod();
791 FormData* body = m_handle->firstRequest().httpBody();
795 String originalContentType = m_handle
[all...]
/external/webkit/Source/WebCore/platform/win/
H A DPathWalker.cpp36 m_handle = ::FindFirstFileW(path.charactersWithNullTermination(), &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
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...]
/external/webkit/Source/WebCore/websockets/
H A DWebSocketChannel.cpp89 ASSERT(!m_handle);
93 m_handle = SocketStreamHandle::create(m_handshake.url(), this);
99 ASSERT(m_handle);
106 return m_handle->send(buf.data(), buf.size());
112 ASSERT(m_handle);
114 return m_handle->bufferedAmount();
121 if (m_handle)
122 m_handle->close(); // will call didClose()
133 if (m_handle)
134 m_handle
[all...]
H A DWebSocketChannel.h91 RefPtr<SocketStreamHandle> m_handle; member in class:WebCore::WebSocketChannel
/external/webkit/Source/WebKit/chromium/src/
H A DSocketStreamHandle.cpp72 SocketStreamHandle* m_handle; member in class:WebCore::SocketStreamHandleInternal
79 : m_handle(handle)
87 m_handle = 0;
128 if (m_handle && m_socket.get()) {
131 m_handle->m_state = SocketStreamHandleBase::Open;
132 if (m_handle->m_client) {
133 m_handle->m_client->didOpen(m_handle);
137 LOG(Network, "no m_handle or m_socket?");
144 if (m_handle
[all...]
H A DWrappedResourceRequest.h43 reset(); // Need to drop reference to m_handle
60 m_handle.m_resourceRequest = &resourceRequest;
61 assign(&m_handle);
75 Handle m_handle; member in class:WebKit::WrappedResourceRequest

Completed in 265 milliseconds

12