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

/external/lldb/source/Host/common/
H A DDynamicLibrary.cpp18 m_handle = Host::DynamicLibraryOpen (spec,options,err);
20 m_handle = NULL;
26 return m_handle != NULL;
31 if (m_handle)
32 Host::DynamicLibraryClose (m_handle);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScopedPersistent.h46 : m_handle(isolate, handle)
57 return v8::Local<T>::New(isolate, m_handle);
63 m_handle.SetWeak(parameters, callback);
66 bool isEmpty() const { return m_handle.IsEmpty(); }
67 bool isWeak() const { return m_handle.IsWeak(); }
71 m_handle.Reset(isolate, handle);
77 m_handle.Reset();
82 return m_handle == other.m_handle;
88 return m_handle
100 v8::Persistent<T> m_handle; member in class:blink::ScopedPersistent
[all...]
/external/deqp/framework/delibs/decpp/
H A DdeDirectoryIterator.cpp43 m_handle = _findfirst32((std::string(m_path.getPath()) + "/*").c_str(), &m_fileInfo);
44 m_hasItem = m_handle != -1;
51 if (m_handle != -1)
52 _findclose(m_handle);
68 m_hasItem = (_findnext32(m_handle, &m_fileInfo) == 0);
75 m_hasItem = (_findnext32(m_handle, &m_fileInfo) == 0);
82 , m_handle (DE_NULL)
88 m_handle = opendir(m_path.getPath());
89 DE_CHECK_RUNTIME_ERR(m_handle);
97 closedir(m_handle);
[all...]
H A DdeDirectoryIterator.hpp72 deIntptr m_handle; member in class:de::DirectoryIterator
76 DIR* m_handle; member in class:de::DirectoryIterator
/external/chromium_org/third_party/WebKit/Source/platform/exported/
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:blink::WrappedResourceRequest
H A DWrappedResourceResponse.h43 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:blink::WrappedResourceResponse
/external/lldb/include/lldb/Host/
H A DDynamicLibrary.h31 if (!m_handle)
33 void* symbol = Host::DynamicLibraryGetSymbol (m_handle, name, err);
44 void* m_handle; member in class:lldb_private::DynamicLibrary
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DSocketStreamHandle.cpp49 : m_handle(handle)
59 m_handle = nullptr;
107 if (m_handle && m_socket) {
110 m_handle->m_state = SocketStreamHandle::Open;
111 if (m_handle->m_client) {
112 m_handle->m_client->didOpenSocketStream(m_handle);
116 WTF_LOG(Network, "SocketStreamHandleInternal %p didOpenStream() m_handle or m_socket is NULL", this);
123 if (m_handle && m_socket) {
127 m_handle
[all...]
H A DSocketStreamHandleInternal.h76 Member<SocketStreamHandle> m_handle; member in class:blink::SocketStreamHandleInternal
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebPrivatePtr.h105 if (!m_handle)
106 m_handle = new Persistent<T>();
108 (*m_handle) = val;
116 T* get() const { return m_handle ? m_handle->get() : 0; }
120 delete m_handle;
121 m_handle = 0;
125 Persistent<T>* m_handle; member in class:blink::PtrStorageImpl
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DNewWebSocketChannelImpl.cpp114 , m_handle(adoptPtr(handle ? handle : Platform::current()->createWebSocketHandle()))
135 if (!m_handle)
162 document()->frame()->loader().client()->dispatchWillOpenWebSocket(m_handle.get());
163 m_handle->connect(url, webProtocols, *executionContext()->securityOrigin(), this);
233 ASSERT(m_handle);
242 // m_handle and m_client can be null here.
267 m_handle.clear();
305 ASSERT(m_handle);
318 m_handle->send(final, type, message->text.data() + m_sentSizeOfTopMessage, size);
333 m_handle
[all...]
H A DMainThreadWebSocketChannel.cpp94 ASSERT(!m_handle);
116 m_handle = SocketStreamHandle::create(this);
117 ASSERT(m_handle);
119 m_document->frame()->loader().client()->dispatchWillOpenSocketStream(m_handle.get());
121 m_handle->connect(m_handshake->url());
159 if (!m_handle)
175 if (!m_handle)
178 m_handle->disconnect();
244 ASSERT(handle == m_handle);
267 ASSERT_UNUSED(handle, handle == m_handle || !m_handl
[all...]
H A DNewWebSocketChannelImpl.h156 ASSERT(!m_handle);
162 // m_handle is a handle of the connection.
163 // m_handle == 0 means this channel is closed.
164 OwnPtr<WebSocketHandle> m_handle; member in class:blink::FINAL
H A DMainThreadWebSocketChannel.h178 // m_handle->close() will be called as soon as the queue is cleared. It is not
207 Member<SocketStreamHandle> m_handle; member in class:blink::FINAL
213 // Set to true iff this instance called disconnect() on m_handle.
H A DNewWebSocketChannelImplTest.cpp95 , m_handle(MockWebSocketHandle::create())
127 return m_handle;
150 MockWebSocketHandle* m_handle; member in class:blink::__anon11226::NewWebSocketChannelImplTest
/external/deqp/execserver/
H A DxsWin32TestProcess.hpp67 HANDLE getHandle (void) const { return m_handle; }
73 HANDLE m_handle; member in class:xs::win32::Event
106 HANDLE m_handle; member in class:xs::win32::FileReader
H A DxsWin32TestProcess.cpp78 : m_handle(0)
80 m_handle = CreateEvent(NULL, manualReset ? TRUE : FALSE, initialState ? TRUE : FALSE, NULL);
81 if (!m_handle)
87 CloseHandle(m_handle);
92 if (!SetEvent(m_handle))
98 if (!ResetEvent(m_handle))
204 , m_handle (INVALID_HANDLE_VALUE)
217 m_handle = file;
243 if (!ReadFile(m_handle, &tmpBuf[0], (DWORD)tmpBuf.size(), NULL, &overlapped))
270 if (!GetOverlappedResult(m_handle,
[all...]

Completed in 2533 milliseconds