HomeSort by relevance Sort by last modified time
    Searched refs:m_handle (Results 1 - 21 of 21) sorted by null

  /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/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
  /hardware/qcom/camera/QCamera2/HAL/
QCameraChannel.cpp 65 m_handle = 0;
83 m_handle = 0;
102 if (m_handle == mStreams[i]->getChannelHandle()) {
108 m_camOps->delete_channel(m_camHandle, m_handle);
109 m_handle = 0;
127 if ((mStreams[i] != NULL) && (m_handle == mStreams[i]->getChannelHandle())) {
131 m_camOps->delete_channel(m_camHandle, m_handle);
178 m_handle = m_camOps->add_channel(m_camHandle,
182 if (m_handle == 0) {
227 m_camHandle, m_handle, m_camOps, paddingInfo, bDeffAlloc
    [all...]
QCameraChannel.h 68 uint32_t getMyHandle() const {return m_handle;};
83 uint32_t m_handle; member in class:qcamera::QCameraChannel
  /device/huawei/angler/camera/QCamera2/HAL/
QCameraChannel.cpp 60 m_handle = 0;
78 m_handle = 0;
97 if (m_handle == mStreams[i]->getChannelHandle()) {
103 m_camOps->delete_channel(m_camHandle, m_handle);
104 m_handle = 0;
122 if ((mStreams[i] != NULL) && (m_handle == mStreams[i]->getChannelHandle())) {
126 m_camOps->delete_channel(m_camHandle, m_handle);
147 m_handle = m_camOps->add_channel(m_camHandle,
151 if (m_handle == 0) {
196 m_camHandle, m_handle, m_camOps, paddingInfo, bDeffAlloc
    [all...]
QCameraChannel.h 66 uint32_t getMyHandle() const {return m_handle;};
79 uint32_t m_handle; member in class:qcamera::QCameraChannel
  /device/lge/bullhead/camera/QCamera2/HAL/
QCameraChannel.cpp 60 m_handle = 0;
78 m_handle = 0;
97 if (m_handle == mStreams[i]->getChannelHandle()) {
103 m_camOps->delete_channel(m_camHandle, m_handle);
104 m_handle = 0;
122 if ((mStreams[i] != NULL) && (m_handle == mStreams[i]->getChannelHandle())) {
126 m_camOps->delete_channel(m_camHandle, m_handle);
147 m_handle = m_camOps->add_channel(m_camHandle,
151 if (m_handle == 0) {
196 m_camHandle, m_handle, m_camOps, paddingInfo, bDeffAlloc
    [all...]
QCameraChannel.h 66 uint32_t getMyHandle() const {return m_handle;};
79 uint32_t m_handle; member in class:qcamera::QCameraChannel
  /external/deqp/execserver/
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
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...]
  /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
QCameraChannel.cpp 60 m_handle = 0;
80 m_handle = 0;
107 m_camOps->delete_channel(m_camHandle, m_handle);
108 m_handle = 0;
131 m_camOps->delete_channel(m_camHandle, m_handle);
152 m_handle = m_camOps->add_channel(m_camHandle,
156 if (m_handle == 0) {
198 m_handle,
264 rc = m_camOps->get_bundle_info(m_camHandle, m_handle, &bundleInfo);
298 rc = m_camOps->start_channel(m_camHandle, m_handle);
    [all...]
  /device/moto/shamu/camera/QCamera2/HAL3/
QCamera3Channel.h 93 uint32_t getMyHandle() const {return m_handle;};
116 uint32_t m_handle; member in class:qcamera::QCamera3Channel
QCamera3Channel.cpp 90 m_handle = 0;
122 m_handle = 0;
154 if (m_handle) {
155 m_camOps->delete_channel(m_camHandle, m_handle);
156 ALOGE("%s: deleting channel %d", __func__, m_handle);
157 m_handle = 0;
179 m_handle = m_camOps->add_channel(m_camHandle,
183 if (m_handle == 0) {
225 m_handle,
278 rc = m_camOps->start_channel(m_camHandle, m_handle);
    [all...]
  /device/huawei/angler/camera/QCamera2/HAL3/
QCamera3Channel.h 93 uint32_t getMyHandle() const {return m_handle;};
123 uint32_t m_handle; member in class:qcamera::QCamera3Channel
QCamera3Channel.cpp 81 m_handle = channel_handle;
166 m_handle,
    [all...]
  /device/lge/bullhead/camera/QCamera2/HAL3/
QCamera3Channel.h 93 uint32_t getMyHandle() const {return m_handle;};
123 uint32_t m_handle; member in class:qcamera::QCamera3Channel
QCamera3Channel.cpp 81 m_handle = channel_handle;
166 m_handle,
    [all...]
  /hardware/qcom/camera/QCamera2/HAL3/
QCamera3Channel.h 111 uint32_t getMyHandle() const {return m_handle;};
144 uint32_t m_handle; member in class:qcamera::QCamera3Channel
QCamera3Channel.cpp 75 m_handle = channel_handle;
176 m_handle,
    [all...]

Completed in 946 milliseconds