Searched defs:handle (Results 1 - 12 of 12) sorted by path

/hardware/libhardware/
H A Dhardware.c58 * return the dlopen handle and the hmi.
66 void *handle; local
74 handle = dlopen(path, RTLD_NOW);
75 if (handle == NULL) {
84 hmi = (struct hw_module_t *)dlsym(handle, sym);
98 hmi->dso = handle;
106 if (handle != NULL) {
107 dlclose(handle);
108 handle = NULL;
111 ALOGV("loaded HAL id=%s path=%s hmi=%p handle
[all...]
/hardware/libhardware/include/hardware/
H A Dcamera.h47 void *handle; member in struct:camera_memory
H A Dhwcomposer.h96 * handle the background color.
121 * handle the layer.
149 /* handle of buffer to compose. This handle is guaranteed to have been
151 * the layer's handle is unchanged across two consecutive prepare calls and
155 buffer_handle_t handle; member in struct:hwc_layer_1::__anon92::__anon93
380 * SurfaceFlinger to determine what composition steps the HWC can handle.
387 * in the later case, the HWC will have to handle the layer's composition.
H A Dhwcomposer_v0.h69 * it will handle the layer.
76 * it CANNOT handle the background color
92 /* handle of buffer to compose. This handle is guaranteed to have been
94 * the layer's handle is unchanged across two consecutive prepare calls and
98 buffer_handle_t handle; member in struct:hwc_layer::__anon109::__anon110
127 * The handle members of hwLayers elements must be unique.
142 * SurfaceFlinger to determine what composition steps the HWC can handle.
149 * case, the HWC will have to handle this layer's composition.
H A Dsensors.h41 * A Handle identifies a given sensors. The handle is used to activate
408 /* handle that identifies this sensors. This handle is used to activate
409 * and deactivate this sensor. The value of the handle must be 8 bits
412 int handle; member in struct:sensor_t
439 * @param handle is the handle of the sensor to change.
445 int handle, int enabled);
457 int handle, int64_t ns);
/hardware/libhardware/modules/audio/
H A Daudio_hw.c217 audio_io_handle_t handle,
327 audio_io_handle_t handle,
216 adev_open_output_stream(struct audio_hw_device *dev, audio_io_handle_t handle, audio_devices_t devices, audio_output_flags_t flags, struct audio_config *config, struct audio_stream_out **stream_out) argument
326 adev_open_input_stream(struct audio_hw_device *dev, audio_io_handle_t handle, audio_devices_t devices, struct audio_config *config, struct audio_stream_in **stream_in) argument
/hardware/libhardware/modules/audio_remote_submix/
H A Daudio_hw.cpp67 // Pipe variables: they handle the ring buffer that "pipes" audio:
517 audio_io_handle_t handle,
679 audio_io_handle_t handle,
516 adev_open_output_stream(struct audio_hw_device *dev, audio_io_handle_t handle, audio_devices_t devices, audio_output_flags_t flags, struct audio_config *config, struct audio_stream_out **stream_out) argument
678 adev_open_input_stream(struct audio_hw_device *dev, audio_io_handle_t handle, audio_devices_t devices, struct audio_config *config, struct audio_stream_in **stream_in) argument
/hardware/libhardware/modules/gralloc/
H A Dgralloc.cpp59 buffer_handle_t handle, int usage,
64 buffer_handle_t handle);
67 buffer_handle_t handle);
70 buffer_handle_t handle);
248 buffer_handle_t handle)
250 if (private_handle_t::validate(handle) < 0)
253 private_handle_t const* hnd = reinterpret_cast<private_handle_t const*>(handle);
247 gralloc_free(alloc_device_t* dev, buffer_handle_t handle) argument
H A Dmapper.cpp47 buffer_handle_t handle,
50 private_handle_t* hnd = (private_handle_t*)handle;
68 buffer_handle_t handle)
70 private_handle_t* hnd = (private_handle_t*)handle;
90 buffer_handle_t handle)
92 if (private_handle_t::validate(handle) < 0)
95 // if this handle was created in this process, then we keep it as is.
97 private_handle_t* hnd = (private_handle_t*)handle;
100 err = gralloc_map(module, handle, &vaddr);
106 buffer_handle_t handle)
46 gralloc_map(gralloc_module_t const* module, buffer_handle_t handle, void** vaddr) argument
67 gralloc_unmap(gralloc_module_t const* module, buffer_handle_t handle) argument
89 gralloc_register_buffer(gralloc_module_t const* module, buffer_handle_t handle) argument
105 gralloc_unregister_buffer(gralloc_module_t const* module, buffer_handle_t handle) argument
139 gralloc_lock(gralloc_module_t const* module, buffer_handle_t handle, int usage, int l, int t, int w, int h, void** vaddr) argument
160 gralloc_unlock(gralloc_module_t const* module, buffer_handle_t handle) argument
[all...]
/hardware/libhardware/modules/usbaudio/
H A Daudio_hw.c247 audio_io_handle_t handle,
356 audio_io_handle_t handle,
246 adev_open_output_stream(struct audio_hw_device *dev, audio_io_handle_t handle, audio_devices_t devices, audio_output_flags_t flags, struct audio_config *config, struct audio_stream_out **stream_out) argument
355 adev_open_input_stream(struct audio_hw_device *dev, audio_io_handle_t handle, audio_devices_t devices, struct audio_config *config, struct audio_stream_in **stream_in) argument
/hardware/libhardware_legacy/audio/
H A Daudio_hw_hal.cpp487 audio_io_handle_t handle,
551 audio_io_handle_t handle,
486 adev_open_output_stream(struct audio_hw_device *dev, audio_io_handle_t handle, audio_devices_t devices, audio_output_flags_t flags, struct audio_config *config, struct audio_stream_out **stream_out) argument
550 adev_open_input_stream(struct audio_hw_device *dev, audio_io_handle_t handle, audio_devices_t devices, struct audio_config *config, struct audio_stream_in **stream_in) argument
/hardware/ril/mock-ril/src/cpp/
H A Dnode_object_wrap.h49 static inline T* Unwrap (v8::Handle<v8::Object> handle) argument
51 assert(!handle.IsEmpty());
52 assert(handle->InternalFieldCount() > 0);
54 handle->GetInternalField(0))->Value());
60 inline void Wrap (v8::Handle<v8::Object> handle) argument
63 assert(handle->InternalFieldCount() > 0);
64 handle_ = v8::Persistent<v8::Object>::New(handle);
89 * persistant handle.)

Completed in 853 milliseconds