/system/core/libion/tests/ |
formerly_valid_handle_test.cpp | 29 ion_user_handle_t m_handle; member in class:FormerlyValidHandle 35 ASSERT_EQ(0, ion_alloc(m_ionFd, 4096, 0, 1/* ion_env->m_firstHeap */, 0, &m_handle)); 36 ASSERT_TRUE(m_handle != 0); 37 ASSERT_EQ(0, ion_free(m_ionFd, m_handle)); 42 m_handle = 0; 47 ASSERT_EQ(-EINVAL, ion_free(m_ionFd, m_handle)); 55 ASSERT_EQ(-EINVAL, ion_map(m_ionFd, m_handle, 4096, PROT_READ, 0, 0, &ptr, &map_fd)); 62 ASSERT_EQ(-EINVAL, ion_share(m_ionFd, m_handle, &share_fd));
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
ScopedPersistent.h | 46 : 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 == other 100 v8::Persistent<T> m_handle; member in class:WebCore::ScopedPersistent [all...] |
V8GarbageCollected.h | 46 RELEASE_ASSERT(result->m_handle == value); 53 , m_handle(isolate, v8::External::New(isolate, static_cast<T*>(this))) 60 ASSERT(!m_handle.isWeak()); // Call this exactly once. 62 v8::Handle<v8::External> result = m_handle.newLocal(m_isolate); 63 m_handle.setWeak(static_cast<T*>(this), &weakCallback); 69 ASSERT(!m_releasedToV8GarbageCollector || m_handle.isEmpty()); 78 self->m_handle.clear(); 83 ScopedPersistent<v8::External> m_handle; member in class:WebCore::V8GarbageCollected
|
/external/lldb/source/Host/common/ |
DynamicLibrary.cpp | 18 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/deqp/framework/delibs/decpp/ |
deDirectoryIterator.cpp | 43 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...] |
deDirectoryIterator.hpp | 72 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/network/ |
SocketStreamHandle.cpp | 49 : m_handle(handle) 58 m_handle = 0; 105 if (m_handle && m_socket) { 108 m_handle->m_state = SocketStreamHandle::Open; 109 if (m_handle->m_client) { 110 m_handle->m_client->didOpenSocketStream(m_handle); 114 WTF_LOG(Network, "SocketStreamHandleInternal %p didOpenStream() m_handle or m_socket is NULL", this); 121 if (m_handle && m_socket) { 125 m_handle->sendPendingData() [all...] |
SocketStreamHandleInternal.h | 76 SocketStreamHandle* m_handle; member in class:WebCore::SocketStreamHandleInternal
|
/external/lldb/include/lldb/Host/ |
DynamicLibrary.h | 31 if (!m_handle) 33 void* symbol = Host::DynamicLibraryGetSymbol (m_handle, name, err); 44 void* m_handle; member in class:lldb_private::DynamicLibrary
|
/frameworks/base/core/jni/ |
android_emoji_EmojiFactory.cpp | 25 void *m_handle; member in class:android::EmojiFactoryCaller 32 m_handle = dlopen("libemoji.so", RTLD_LAZY | RTLD_LOCAL); 34 if (m_handle == NULL) { 41 dlsym(m_handle, "GetImplementation")); 49 dlsym(m_handle,"GetAvailableImplementation")); 64 if (m_handle != NULL) { 65 dlclose(m_handle); 66 m_handle = NULL; 72 if (m_handle) { 73 dlclose(m_handle); [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
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:blink::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:blink::WrappedResourceResponse
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebPrivatePtr.h | 110 if (!m_handle) 111 m_handle = new WebCore::Persistent<T>(); 113 (*m_handle) = val; 121 T* get() const { return m_handle ? m_handle->get() : 0; } 125 delete m_handle; 126 m_handle = 0; 130 WebCore::Persistent<T>* m_handle; member in class:blink::PtrStorageImpl
|
/external/pdfium/core/src/fxcrt/ |
fx_basic_util.cpp | 283 HANDLE m_Handle;
308 pData->m_Handle = FindFirstFileA(CFX_ByteString(path) + "/*.*", &pData->m_FindData);
310 pData->m_Handle = FindFirstFileExA(CFX_ByteString(path) + "/*.*", FindExInfoStandard, &pData->m_FindData, FindExSearchNameMatch, NULL, 0);
317 pData->m_Handle = FindFirstFileW(CFX_WideString::FromLocal(path) + L"/*.*", &pData->m_FindData);
319 if (pData->m_Handle == INVALID_HANDLE_VALUE) {
338 pData->m_Handle = FindFirstFileW(CFX_WideString(path) + L"/*.*", &pData->m_FindData);
340 pData->m_Handle = FindFirstFileExW(CFX_WideString(path) + L"/*.*", FindExInfoStandard, &pData->m_FindData, FindExSearchNameMatch, NULL, 0);
342 if (pData->m_Handle == INVALID_HANDLE_VALUE) {
366 if (!FindNextFileA(pData->m_Handle, &pData->m_FindData)) {
377 if (!FindNextFileW(pData->m_Handle, &pData->m_FindData)) { [all...] |
/external/chromium_org/content/shell/renderer/test_runner/ |
MockWebSpeechRecognizer.h | 45 blink::WebSpeechRecognitionHandle& handle() { return m_handle; } 62 blink::WebSpeechRecognitionHandle m_handle; member in class:content::MockWebSpeechRecognizer
|
MockWebSpeechRecognizer.cpp | 109 m_handle = handle; 136 m_handle = handle; 145 m_handle = handle;
|
/external/chromium_org/third_party/WebKit/Source/modules/websockets/ |
NewWebSocketChannelImpl.cpp | 113 , m_handle(adoptPtr(blink::Platform::current()->createWebSocketHandle())) 134 if (!m_handle) 159 document()->frame()->loader().client()->dispatchWillOpenWebSocket(m_handle.get()); 160 m_handle->connect(url, webProtocols, *executionContext()->securityOrigin(), this); 234 ASSERT(m_handle); 236 m_handle->close(codeToSend, reason); 242 // m_handle and m_client can be null here. 267 m_handle.clear(); 300 ASSERT(m_handle); 311 m_handle->send(final, type, message->text.data() + m_sentSizeOfTopMessage, size) [all...] |
MainThreadWebSocketChannel.cpp | 95 ASSERT(!m_handle); 117 m_handle = SocketStreamHandle::create(this); 118 ASSERT(m_handle); 120 m_document->frame()->loader().client()->dispatchWillOpenSocketStream(m_handle.get()); 122 m_handle->connect(m_handshake->url()); 167 if (!m_handle) 183 if (!m_handle) 186 m_handle->disconnect(); 253 ASSERT(handle == m_handle); 276 ASSERT_UNUSED(handle, handle == m_handle || !m_handle) [all...] |
NewWebSocketChannelImpl.h | 151 // m_handle is a handle of the connection. 152 // m_handle == 0 means this channel is closed. 153 OwnPtr<blink::WebSocketHandle> m_handle; member in class:WebCore::FINAL
|
MainThreadWebSocketChannel.h | 176 // m_handle->close() will be called as soon as the queue is cleared. It is not 205 RefPtr<SocketStreamHandle> m_handle; member in class:WebCore::FINAL 211 // Set to true iff this instance called disconnect() on m_handle.
|
/external/deqp/execserver/ |
xsWin32TestProcess.cpp | 78 : 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, &overlapped, &numBytesRead, FALSE) [all...] |
xsWin32TestProcess.hpp | 67 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
|
/device/asus/flo/camera/QCamera2/HAL/ |
QCameraChannel.h | 65 uint32_t getMyHandle() const {return m_handle;}; 75 uint32_t m_handle; member in class:qcamera::QCameraChannel
|
/device/lge/hammerhead/camera/QCamera2/HAL/ |
QCameraChannel.h | 65 uint32_t getMyHandle() const {return m_handle;}; 75 uint32_t m_handle; member in class:qcamera::QCameraChannel
|
/device/moto/shamu/camera/QCamera2/HAL/ |
QCameraChannel.h | 68 uint32_t getMyHandle() const {return m_handle;}; 81 uint32_t m_handle; member in class:qcamera::QCameraChannel
|