HomeSort by relevance Sort by last modified time
    Searched full:m_handle (Results 1 - 25 of 36) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/win/
Win32Handle.h 37 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...]
PathWalker.cpp 36 m_handle = ::FindFirstFileW(path.charactersWithNullTermination(), &m_data);
43 ::FindClose(m_handle);
48 return ::FindNextFileW(m_handle, &m_data);
PathWalker.h 41 bool isValid() const { return m_handle != INVALID_HANDLE_VALUE; }
47 HANDLE m_handle; member in class:WebCore::PathWalker
  /external/webkit/Source/WebCore/bindings/v8/
OwnHandle.h 42 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.MakeWeak(this, &OwnHandle<T>::weakCallback)
75 v8::Persistent<T> m_handle; member in class:WebCore::OwnHandle
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
RefCountedGDIHandle.h 45 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/WebKit/chromium/src/
SocketStreamHandle.cpp 72 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 && m_socket.get())
    [all...]
WrappedResourceRequest.h 43 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
WrappedResourceResponse.h 43 reset(); // Need to drop reference to m_handle
60 m_handle.m_resourceResponse = &resourceResponse;
61 assign(&m_handle);
75 Handle m_handle; member in class:WebKit::WrappedResourceResponse
  /external/webkit/Source/WebCore/platform/
FileStream.cpp 42 : 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...]
  /external/webkit/Source/WebKit2/Platform/win/
SharedMemoryWin.cpp 36 : m_handle(0)
43 if (!m_handle)
46 ::CloseHandle(m_handle);
51 return !m_handle;
61 encoder->encodeUInt64(reinterpret_cast<uint64_t>(m_handle));
62 m_handle = 0;
89 ASSERT_ARG(handle, !handle.m_handle);
108 handle.m_handle = duplicatedHandle;
128 memory->m_handle = handle;
148 RefPtr<SharedMemory> memory = adopt(handle.m_handle, handle.m_size, protection)
    [all...]
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceHandleMac.mm 64 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->firstRequest().httpContentType()
    [all...]
  /external/webkit/Source/WebCore/websockets/
WebSocketChannel.cpp 89 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->close()
    [all...]
  /external/webkit/Source/WebCore/platform/network/curl/
ResourceHandleManager.cpp 193 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...]
ResourceHandleCurl.cpp 159 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);
  /external/webkit/Source/WebKit2/Platform/gtk/
ModuleGtk.cpp 38 m_handle = g_module_open(m_path.utf8().data(), G_MODULE_BIND_LAZY);
39 return !m_handle;
44 g_module_close(m_handle);
50 g_module_symbol(m_handle, functionName, &symbol);
  /frameworks/base/core/jni/
android_emoji_EmojiFactory.cpp 24 void *m_handle; member in class:android::EmojiFactoryCaller
31 m_handle = dlopen("libemoji.so", RTLD_LAZY | RTLD_LOCAL);
33 if (m_handle == NULL) {
40 dlsym(m_handle, "GetImplementation"));
48 dlsym(m_handle,"GetAvailableImplementation"));
63 if (m_handle != NULL) {
64 dlclose(m_handle);
65 m_handle = NULL;
71 if (m_handle) {
72 dlclose(m_handle);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
FontCustomPlatformDataQt.cpp 34 QFontDatabase::removeApplicationFont(m_handle);
40 font.setFamily(QFontDatabase::applicationFontFamilies(m_handle)[0]);
60 data->m_handle = id;
FontCustomPlatformData.h 45 int m_handle; member in struct:WebCore::FontCustomPlatformData
  /external/webkit/Source/WebCore/loader/
ResourceLoader.cpp 55 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...]
PingLoader.h 71 RefPtr<ResourceHandle> m_handle; member in class:WebCore::PingLoader
PingLoader.cpp 99 m_handle = ResourceHandle::create(frame->loader()->networkingContext(), request, this, false, false);
108 m_handle->cancel();
  /external/webkit/Source/WebKit2/Shared/
ShareableBitmap.cpp 44 encoder->encode(m_handle);
51 if (!decoder->decode(handle.m_handle))
95 RefPtr<SharedMemory> sharedMemory = SharedMemory::create(handle.m_handle, SharedMemory::ReadWrite);
106 if (!m_sharedMemory->createHandle(handle.m_handle, SharedMemory::ReadWrite))
  /external/webkit/Source/WebCore/platform/audio/mkl/
FFTFrameMKL.cpp 92 , 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/WebKit2/Platform/
SharedMemory.h 72 mutable HANDLE m_handle; member in class:WebKit::SharedMemory::Handle
105 HANDLE m_handle; member in class:WebKit::SharedMemory
Module.h 77 GModule* m_handle; member in class:WebKit::Module

Completed in 765 milliseconds

1 2