Searched defs:handle (Results 76 - 100 of 380) sorted by relevance

1234567891011>>

/hardware/intel/common/libva/va/wayland/
H A Dva_wayland_drm.c45 void *handle; member in struct:va_wayland_drm_context
131 if (wl_drm_ctx->handle) {
132 dlclose(wl_drm_ctx->handle);
133 wl_drm_ctx->handle = NULL;
180 wl_drm_ctx->handle = NULL;
194 wl_drm_ctx->handle = dlopen(LIBWAYLAND_DRM_NAME, RTLD_LAZY|RTLD_LOCAL);
195 if (!wl_drm_ctx->handle)
199 dlsym(wl_drm_ctx->handle, "wl_drm_interface");
/hardware/intel/common/utils/ISV/base/
H A Disv_bufmanager.cpp165 status_t ISVBufferManager::freeBuffer(unsigned long handle) argument
170 if (isvBuffer->getHandle() == handle) {
173 ALOGD_IF(ISV_BUFFER_MANAGER_DEBUG, "%s: remove handle 0x%08lx, and then mBuffers.size() %d", __func__,
174 handle, mBuffers.size());
179 ALOGW("%s: can't find buffer %lu", __func__, handle);
183 status_t ISVBufferManager::useBuffer(unsigned long handle) argument
186 if (handle == 0 || mBuffers.size() >= mBuffers.capacity())
191 if (isvBuffer->getHandle() == handle) {
192 ALOGE("%s: this buffer 0x%08lx has already been registered", __func__, handle);
197 ISVBuffer* isvBuffer = new ISVBuffer(mWorker, handle,
240 mapBuffer(unsigned long handle) argument
[all...]
/hardware/intel/common/wrs_omxil_core/utils/src/
H A Dmodule.c63 const void *handle)
68 if (module->handle == handle)
148 new->handle = NULL;
150 new->handle = dlopen(file, flag);
151 if (!(new->handle)) {
158 existing = module_find_with_handle(g_module_head, new->handle);
160 LOGE("found opened module %s with handle\n", existing->name);
174 new->init = dlsym(new->handle, "module_init");
187 new->exit = dlsym(new->handle, "module_exi
62 module_find_with_handle(struct module *head, const void *handle) argument
[all...]
/hardware/intel/img/hwcomposer/merrifield/common/buffers/
H A DBufferManager.cpp120 d.append("Buffer %d: handle %#x, (%dx%d), format %d, refCount %d\n",
131 DataBuffer* BufferManager::lockDataBuffer(buffer_handle_t handle) argument
134 mDataBuffer->resetBuffer(handle);
143 DataBuffer* BufferManager::get(buffer_handle_t handle) argument
145 return createDataBuffer(handle);
236 buffer_handle_t handle = 0; local
243 &handle,
255 buffer = lockDataBuffer(handle);
257 ETRACE("failed to get data buffer, handle = %p", handle);
305 buffer_handle_t handle = mapper->getHandle(); local
327 buffer_handle_t handle = 0; local
345 freeGrallocBuffer(buffer_handle_t handle) argument
[all...]
/hardware/intel/img/hwcomposer/merrifield/ips/anniedale/
H A DAnnCursorPlane.cpp72 bool AnnCursorPlane::setDataBuffer(buffer_handle_t handle) argument
76 if (!handle) {
77 ETRACE("handle is NULL");
81 ret = DisplayPlane::setDataBuffer(handle);
/hardware/intel/img/hwcomposer/merrifield/ips/common/
H A DWsbmWrapper.c233 int psbWsbmWrapTTMBuffer(uint64_t handle, void **buf) argument
252 ret = wsbmBOSetReferenced(wsbmBuf, handle);
260 VTRACE("wrap buffer %p for handle %#x", wsbmBuf, handle);
264 int psbWsbmWrapTTMBuffer2(uint64_t handle, void **buf) argument
284 VTRACE("wrap buffer %p for handle %#x", wsbmBuf, handle);
/hardware/intel/img/hwcomposer/merrifield/ips/tangier/
H A DTngCursorPlane.cpp66 bool TngCursorPlane::setDataBuffer(buffer_handle_t handle) argument
70 if (!handle) {
71 ETRACE("handle is NULL");
75 ret = DisplayPlane::setDataBuffer(handle);
/hardware/intel/img/hwcomposer/moorefield_hdmi/common/buffers/
H A DBufferManager.cpp120 d.append("Buffer %d: handle %#x, (%dx%d), format %d, refCount %d\n",
131 DataBuffer* BufferManager::lockDataBuffer(uint32_t handle) argument
134 mDataBuffer->resetBuffer(handle);
143 DataBuffer* BufferManager::get(uint32_t handle) argument
145 return createDataBuffer(handle);
236 uint32_t handle = 0; local
243 (buffer_handle_t *)&handle,
255 buffer = lockDataBuffer(handle);
257 ELOGTRACE("failed to get data buffer, handle = %#x", handle);
305 uint32_t handle = mapper->getHandle(); local
327 uint32_t handle = 0; local
345 freeGrallocBuffer(uint32_t handle) argument
[all...]
/hardware/intel/img/hwcomposer/moorefield_hdmi/ips/anniedale/
H A DAnnCursorPlane.cpp71 bool AnnCursorPlane::setDataBuffer(uint32_t handle) argument
75 if (!handle) {
76 ELOGTRACE("handle is NULL");
80 ret = DisplayPlane::setDataBuffer(handle);
/hardware/intel/img/hwcomposer/moorefield_hdmi/ips/common/
H A DWsbmWrapper.c232 int psbWsbmWrapTTMBuffer(uint32_t handle, void **buf) argument
251 ret = wsbmBOSetReferenced(wsbmBuf, handle);
259 VLOGTRACE("wrap buffer %p for handle %#x", wsbmBuf, handle);
263 int psbWsbmWrapTTMBuffer2(uint32_t handle, void **buf) argument
283 VLOGTRACE("wrap buffer %p for handle %#x", wsbmBuf, handle);
/hardware/intel/img/psb_video/src/
H A Dpsb_surface.h77 void *handle; member in struct:psb_surface_s
/hardware/invensense/6515/libsensors_iio/
H A DPressureSensor.IIO.secondary.cpp81 * @param[in] handle
88 int PressureSensor::enable(int32_t handle, int en) argument
101 int PressureSensor::setDelay(int32_t handle, int64_t ns) argument
130 int PressureSensor::getEnable(int32_t handle) argument
140 int64_t PressureSensor::getDelay(int32_t handle) argument
H A DSensorBase.cpp134 int SensorBase::setDelay(int32_t handle, int64_t ns) argument
192 int SensorBase::enable(int32_t handle, int enabled)
202 int SensorBase::batch(int handle, int flags, int64_t period_ns, int64_t timeout)
207 int SensorBase::flush(int handle)
/hardware/invensense/65xx/libsensors_iio/
H A DSensorBase.cpp128 int SensorBase::setDelay(int32_t handle, int64_t ns) argument
189 int SensorBase::enable(int32_t handle, int enabled)
199 int SensorBase::batch(int handle, int flags, int64_t period_ns, int64_t timeout)
204 int SensorBase::flush(int handle)
/hardware/qcom/audio/legacy/alsa_sound/
H A DALSAStreamOps.cpp48 ALSAStreamOps::ALSAStreamOps(AudioHardwareALSA *parent, alsa_handle_t *handle) : argument
50 mHandle(handle)
269 //Do not handle stereo output in Multi-channel cases
H A DAudioStreamOutALSA.cpp53 AudioStreamOutALSA::AudioStreamOutALSA(AudioHardwareALSA *parent, alsa_handle_t *handle) : argument
54 ALSAStreamOps(parent, handle),
123 if((mHandle->handle == NULL) && (mHandle->rxHandle == NULL) &&
197 if(mHandle->handle == NULL) {
246 } else if (mHandle->handle != 0){
247 n = pcm_write(mHandle->handle,
253 if (mHandle->handle != NULL) {
255 pcm_close(mHandle->handle);
256 mHandle->handle = NULL;
265 if(mHandle->handle
[all...]
/hardware/qcom/audio/msm8909/post_proc/
H A Dbundle.h43 /* io handle */
44 audio_io_handle_t handle; member in struct:output_context_s
81 /* io handle of the output the effect is attached to */
/hardware/qcom/audio/post_proc/
H A Dbundle.h40 /* io handle */
41 audio_io_handle_t handle; member in struct:output_context_s
78 /* io handle of the output the effect is attached to */
/hardware/qcom/camera/mm-image-codec/qomx_core/
H A Dqomx_core.c165 if (NULL == p_comp->handle[i]) {
175 * Parameters: handle, componentName, appData, callbacks
180 OMX_OUT OMX_HANDLETYPE* handle,
193 if (NULL == handle) {
208 *handle = NULL;
258 *handle = p_core_comp->handle[inst_idx] = (OMX_HANDLETYPE)p_comp;
260 ALOGD("%s:%d] handle = %p Instanceindex = %d,"
262 p_core_comp->handle[inst_idx], inst_idx,
283 * Parameters: handle,
179 OMX_GetHandle( OMX_OUT OMX_HANDLETYPE* handle, OMX_IN OMX_STRING componentName, OMX_IN OMX_PTR appData, OMX_IN OMX_CALLBACKTYPE* callBacks) argument
[all...]
/hardware/qcom/gps/loc_api/libloc_api-rpc/gen-1240/
H A Dloc_api_rpc_glue.c112 LOGD("Callback received: %x (handle=%d ret_ptr=%d)\n",
208 int32 loc_close(rpc_loc_client_handle_type handle) argument
213 args.handle = handle;
224 int32 loc_start_fix(rpc_loc_client_handle_type handle) argument
229 args.handle = handle;
240 int32 loc_stop_fix(rpc_loc_client_handle_type handle) argument
245 args.handle = handle;
256 loc_ioctl( rpc_loc_client_handle_type handle, rpc_loc_ioctl_e_type ioctl_type, rpc_loc_ioctl_data_u_type* ioctl_data ) argument
[all...]
/hardware/qcom/gps/loc_api/libloc_api-rpc/gen-3200/
H A Dloc_api_rpc_glue.c112 LOGD("Callback received: %x (handle=%d ret_ptr=%d)\n",
208 int32 loc_close(rpc_loc_client_handle_type handle) argument
213 args.handle = handle;
224 int32 loc_start_fix(rpc_loc_client_handle_type handle) argument
229 args.handle = handle;
240 int32 loc_stop_fix(rpc_loc_client_handle_type handle) argument
245 args.handle = handle;
256 loc_ioctl( rpc_loc_client_handle_type handle, rpc_loc_ioctl_e_type ioctl_type, rpc_loc_ioctl_data_u_type* ioctl_data ) argument
[all...]
/hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/
H A Dloc_api_sync_call.c193 rpc_loc_client_handle_type loc_handle, /* handle of the client */
370 rpc_loc_client_handle_type loc_handle, /* Client handle */
495 rpc_loc_client_handle_type handle,
518 loc_api_save_callback(select_id, handle, 0, ioctl_type);
525 rc = loc_ioctl(handle, ioctl_type, ioctl_data_ptr);
493 loc_api_sync_ioctl( rpc_loc_client_handle_type handle, rpc_loc_ioctl_e_type ioctl_type, rpc_loc_ioctl_data_u_type* ioctl_data_ptr, uint32 timeout_msec, rpc_loc_ioctl_callback_s_type *cb_data_ptr ) argument
/hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc/gen-1240/
H A Dloc_api_rpc_glue.c112 LOGD("Callback received: %x (handle=%d ret_ptr=%d)\n",
208 int32 loc_close(rpc_loc_client_handle_type handle) argument
213 args.handle = handle;
224 int32 loc_start_fix(rpc_loc_client_handle_type handle) argument
229 args.handle = handle;
240 int32 loc_stop_fix(rpc_loc_client_handle_type handle) argument
245 args.handle = handle;
256 loc_ioctl( rpc_loc_client_handle_type handle, rpc_loc_ioctl_e_type ioctl_type, rpc_loc_ioctl_data_u_type* ioctl_data ) argument
[all...]
/hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc/gen-3200/
H A Dloc_api_rpc_glue.c112 LOGD("Callback received: %x (handle=%d ret_ptr=%d)\n",
208 int32 loc_close(rpc_loc_client_handle_type handle) argument
213 args.handle = handle;
224 int32 loc_start_fix(rpc_loc_client_handle_type handle) argument
229 args.handle = handle;
240 int32 loc_stop_fix(rpc_loc_client_handle_type handle) argument
245 args.handle = handle;
256 loc_ioctl( rpc_loc_client_handle_type handle, rpc_loc_ioctl_e_type ioctl_type, rpc_loc_ioctl_data_u_type* ioctl_data ) argument
[all...]
/hardware/qcom/gps/msm8084/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/
H A Dloc_api_sync_call.c193 rpc_loc_client_handle_type loc_handle, /* handle of the client */
370 rpc_loc_client_handle_type loc_handle, /* Client handle */
495 rpc_loc_client_handle_type handle,
518 loc_api_save_callback(select_id, handle, 0, ioctl_type);
525 rc = loc_ioctl(handle, ioctl_type, ioctl_data_ptr);
493 loc_api_sync_ioctl( rpc_loc_client_handle_type handle, rpc_loc_ioctl_e_type ioctl_type, rpc_loc_ioctl_data_u_type* ioctl_data_ptr, uint32 timeout_msec, rpc_loc_ioctl_callback_s_type *cb_data_ptr ) argument

Completed in 1731 milliseconds

1234567891011>>