Home
last modified time | relevance | path

Searched defs:handle (Results 1 – 25 of 144) sorted by relevance

123456

/device/qemu/SmartL_E802/liteos_m/board/hals/csky_driver/src/
Dck_usart.c91 int32_t csi_usart_config_baudrate(usart_handle_t handle, uint32_t baud) in csi_usart_config_baudrate()
128 int32_t csi_usart_config_mode(usart_handle_t handle, usart_mode_e mode) in csi_usart_config_mode()
145 int32_t csi_usart_config_parity(usart_handle_t handle, usart_parity_e parity) in csi_usart_config_parity()
184 int32_t csi_usart_config_stopbits(usart_handle_t handle, usart_stop_bits_e stopbit) in csi_usart_config_stopbits()
219 int32_t csi_usart_config_databits(usart_handle_t handle, usart_data_bits_e databits) in csi_usart_config_databits()
267 int32_t csi_usart_getchar(usart_handle_t handle, uint8_t *ch) in csi_usart_getchar()
288 int32_t csi_usart_putchar(usart_handle_t handle, uint8_t ch) in csi_usart_putchar()
581 int32_t csi_usart_uninitialize(usart_handle_t handle) in csi_usart_uninitialize()
607 int32_t csi_usart_config(usart_handle_t handle, in csi_usart_config()
663 int32_t csi_usart_send(usart_handle_t handle, const void *data, uint32_t num) in csi_usart_send()
[all …]
Ddw_timer.c81 static void manage_clock(timer_handle_t handle, uint8_t enable) in manage_clock()
90 static void do_prepare_sleep_action(timer_handle_t handle) in do_prepare_sleep_action()
98 static void do_wakeup_sleep_action(timer_handle_t handle) in do_wakeup_sleep_action()
158 int32_t csi_timer_uninitialize(timer_handle_t handle) in csi_timer_uninitialize()
180 int32_t csi_timer_power_control(timer_handle_t handle, csi_power_stat_e state) in csi_timer_power_control()
201 int32_t csi_timer_config(timer_handle_t handle, timer_mode_e mode) in csi_timer_config()
230 int32_t csi_timer_set_timeout(timer_handle_t handle, uint32_t timeout) in csi_timer_set_timeout()
244 int32_t csi_timer_start(timer_handle_t handle) in csi_timer_start()
288 int32_t csi_timer_stop(timer_handle_t handle) in csi_timer_stop()
306 int32_t csi_timer_suspend(timer_handle_t handle) in csi_timer_suspend()
[all …]
Ddw_gpio.c328 int32_t csi_gpio_port_uninitialize(gpio_port_handle_t handle) in csi_gpio_port_uninitialize()
354 int32_t csi_gpio_port_config(gpio_port_handle_t handle, uint32_t mask, gpio_mode_e mode, gpio_direc… in csi_gpio_port_config()
390 int32_t csi_gpio_port_write(gpio_port_handle_t handle, uint32_t mask, uint32_t value) in csi_gpio_port_write()
411 int32_t csi_gpio_port_read(gpio_port_handle_t handle, uint32_t mask, uint32_t *value) in csi_gpio_port_read()
426 static void manage_clock(gpio_pin_handle_t handle, uint8_t enable) in manage_clock()
434 static void do_prepare_sleep_action(void *handle) in do_prepare_sleep_action()
443 static void do_wakeup_sleep_action(void *handle) in do_wakeup_sleep_action()
502 int32_t csi_gpio_pin_uninitialize(gpio_pin_handle_t handle) in csi_gpio_pin_uninitialize()
522 int32_t csi_gpio_power_control(gpio_pin_handle_t handle, csi_power_stat_e state) in csi_gpio_power_control()
545 int32_t csi_gpio_pin_config_mode(gpio_pin_handle_t handle, in csi_gpio_pin_config_mode()
[all …]
/device/soc/hisilicon/common/hal/display/source/display_gralloc/src/
Ddisplay_gralloc.cpp20 static int32_t AllocMem(const AllocInfo *info, BufferHandle **handle) in AllocMem()
28 static void FreeMem(BufferHandle *handle) in FreeMem()
35 static void *Mmap(BufferHandle *handle) in Mmap()
42 static int32_t Unmap(BufferHandle *handle) in Unmap()
49 static int32_t FlushCache(BufferHandle *handle) in FlushCache()
56 static int32_t InvalidateCache(BufferHandle *handle) in InvalidateCache()
Dallocator.cpp153 int32_t Allocator::AllocMem(const AllocInfo &info, BufferHandle **handle) in AllocMem()
184 int32_t Allocator::Allocate(const BufferInfo &bufferInfo, BufferHandle &handle) in Allocate()
190 int32_t Allocator::FreeMem(BufferHandle *handle) in FreeMem()
211 int32_t Allocator::DmaBufferSync(const BufferHandle &handle, uint64_t flag) in DmaBufferSync()
243 int32_t Allocator::InvalidateCache(BufferHandle &handle) in InvalidateCache()
249 int32_t Allocator::FlushCache(BufferHandle &handle) in FlushCache()
255 void *Allocator::Mmap(BufferHandle &handle) in Mmap()
273 int32_t Allocator::Unmap(BufferHandle &handle) in Unmap()
Dframebuffer_allocator.cpp107 int32_t FramebufferAllocator::Allocate(const BufferInfo &bufferInfo, BufferHandle &handle) in Allocate()
141 void* FramebufferAllocator::Mmap(BufferHandle &handle) in Mmap()
166 int32_t FramebufferAllocator::Unmap(BufferHandle &handle) in Unmap()
181 int32_t FramebufferAllocator::FreeMem(BufferHandle *handle) in FreeMem()
/device/soc/rockchip/rk3568/hardware/display/src/display_gralloc/
Ddisplay_gralloc.c21 int32_t AllocMem(const AllocInfo *info, BufferHandle **handle) in AllocMem()
28 void FreeMem(BufferHandle *handle) in FreeMem()
34 void *Mmap(BufferHandle *handle) in Mmap()
40 int32_t Unmap(BufferHandle *handle) in Unmap()
46 int32_t FlushCache(BufferHandle *handle) in FlushCache()
52 int32_t InvalidateCache(BufferHandle *handle) in InvalidateCache()
Ddisplay_buffer_vdi_impl.cpp84 int32_t DisplayBufferVdiImpl::RegisterBuffer(const BufferHandle& handle) in RegisterBuffer()
90 int32_t DisplayBufferVdiImpl::SetMetadata(const BufferHandle& handle, uint32_t key, const std::vect… in SetMetadata()
96 int32_t DisplayBufferVdiImpl::GetMetadata(const BufferHandle& handle, uint32_t key, std::vector<uin… in GetMetadata()
102 int32_t DisplayBufferVdiImpl::ListMetadataKeys(const BufferHandle& handle, std::vector<uint32_t>& k… in ListMetadataKeys()
108 int32_t DisplayBufferVdiImpl::EraseMetadataKey(const BufferHandle& handle, uint32_t key) in EraseMetadataKey()
114 int32_t DisplayBufferVdiImpl::GetImageLayout(const BufferHandle& handle, ImageLayout& layout) const in GetImageLayout() argument
/device/soc/rockchip/rk3566/hardware/display/src/display_gralloc/
Ddisplay_gralloc.c21 int32_t AllocMem(const AllocInfo *info, BufferHandle **handle) in AllocMem()
28 void FreeMem(BufferHandle *handle) in FreeMem()
34 void *Mmap(BufferHandle *handle) in Mmap()
40 int32_t Unmap(BufferHandle *handle) in Unmap()
46 int32_t FlushCache(BufferHandle *handle) in FlushCache()
52 int32_t InvalidateCache(BufferHandle *handle) in InvalidateCache()
/device/soc/rockchip/rk3399/hardware/display/src/display_gralloc/
Ddisplay_gralloc.c22 int32_t AllocMem(const AllocInfo *info, BufferHandle **handle) in AllocMem()
35 void FreeMem(BufferHandle *handle) in FreeMem()
46 void *Mmap(BufferHandle *handle) in Mmap()
57 int32_t Unmap(BufferHandle *handle) in Unmap()
68 int32_t FlushCache(BufferHandle *handle) in FlushCache()
79 int32_t InvalidateCache(BufferHandle *handle) in InvalidateCache()
/device/soc/rockchip/common/hardware/display/src/display_gralloc/
Ddisplay_gralloc.c22 int32_t AllocMem(const AllocInfo *info, BufferHandle **handle) in AllocMem()
35 void FreeMem(BufferHandle *handle) in FreeMem()
46 void *Mmap(BufferHandle *handle) in Mmap()
57 int32_t Unmap(BufferHandle *handle) in Unmap()
68 int32_t FlushCache(BufferHandle *handle) in FlushCache()
79 int32_t InvalidateCache(BufferHandle *handle) in InvalidateCache()
/device/soc/rockchip/rk3568/hardware/omx_il/osal/
DRockchip_OSAL_SharedMemory.c92 unsigned int flags, ion_user_handle_t *handle) in ion_alloc()
115 static int ion_free(int fd, ion_user_handle_t handle) in ion_free()
123 static int ion_map(int fd, ion_user_handle_t handle, size_t length, int prot, in ion_map()
157 int ion_import(int fd, int share_fd, ion_user_handle_t *handle) in ion_import()
177 int ion_get_phys(int fd, ion_user_handle_t handle, unsigned long *phys) in ion_get_phys()
254 static int drm_handle_to_fd(int fd, RK_U32 handle, int *map_fd, RK_U32 flags) in drm_handle_to_fd()
283 static int drm_fd_to_handle(int fd, int map_fd, RK_U32 *handle, RK_U32 flags) in drm_fd_to_handle()
302 static int drm_map(int fd, RK_U32 handle, size_t length, int prot, in drm_map()
344 static int drm_alloc(int fd, size_t len, size_t align, RK_U32 *handle, int flag) in drm_alloc()
371 static int drm_free(int fd, RK_U32 handle) in drm_free()
[all …]
DRockchip_OSAL_Library.c38 void *Rockchip_OSAL_dlsym(void *handle, const char *symbol) in Rockchip_OSAL_dlsym()
43 int Rockchip_OSAL_dlclose(void *handle) in Rockchip_OSAL_dlclose()
DRockchip_OSAL_ion.h264 ion_user_handle_t handle; member
278 ion_user_handle_t handle; member
287 ion_user_handle_t handle; member
316 ion_user_handle_t handle; member
325 ion_user_handle_t handle; member
335 struct ion_handle *handle; member
/device/soc/rockchip/rk3588/hardware/codec/src/
Dhdi_mpp_component_manager.cpp30 uintptr_t handle = reinterpret_cast<uintptr_t>(codecHandle); in AddToMppComponentManager() local
41 uintptr_t handle = reinterpret_cast<uintptr_t>(codecHandle); in FindInMppComponentManager() local
53 uintptr_t handle = reinterpret_cast<uintptr_t>(codecHandle); in RemoveFromMppComponentManager() local
Dhdi_mpp.c102 int32_t CodecSetCallback(CODEC_HANDLETYPE handle, CodecCallback *cb, UINTPTR instance) in CodecSetCallback()
181 int32_t CodecCreate(const char* name, CODEC_HANDLETYPE *handle) in CodecCreate()
235 int32_t CodecDestroy(CODEC_HANDLETYPE handle) in CodecDestroy()
362 int32_t CodecSetParameter(CODEC_HANDLETYPE handle, Param *params, int32_t paramCnt) in CodecSetParameter()
465 int32_t CodecGetParameter(CODEC_HANDLETYPE handle, Param *params, int32_t paramCnt) in CodecGetParameter()
491 int32_t CodecStart(CODEC_HANDLETYPE handle) in CodecStart()
508 int32_t CodecStop(CODEC_HANDLETYPE handle) in CodecStop()
519 int32_t CodecFlush(CODEC_HANDLETYPE handle, DirectionType directType) in CodecFlush()
802 int32_t CodecDecode(CODEC_HANDLETYPE handle, CodecBuffer* inputData, CodecBuffer* outInfo, uint32_t… in CodecDecode()
1005 int32_t CodecEncode(CODEC_HANDLETYPE handle, CodecBuffer *inputData, CodecBuffer *outInfo, uint32_t… in CodecEncode()
[all …]
/device/soc/rockchip/rk3568/hardware/codec/src/
Dhdi_mpp_component_manager.cpp30 uintptr_t handle = reinterpret_cast<uintptr_t>(codecHandle); in AddToMppComponentManager() local
41 uintptr_t handle = reinterpret_cast<uintptr_t>(codecHandle); in FindInMppComponentManager() local
53 uintptr_t handle = reinterpret_cast<uintptr_t>(codecHandle); in RemoveFromMppComponentManager() local
Dhdi_mpp.c102 int32_t CodecSetCallback(CODEC_HANDLETYPE handle, CodecCallback *cb, UINTPTR instance) in CodecSetCallback()
181 int32_t CodecCreate(const char* name, CODEC_HANDLETYPE *handle) in CodecCreate()
235 int32_t CodecDestroy(CODEC_HANDLETYPE handle) in CodecDestroy()
362 int32_t CodecSetParameter(CODEC_HANDLETYPE handle, Param *params, int32_t paramCnt) in CodecSetParameter()
465 int32_t CodecGetParameter(CODEC_HANDLETYPE handle, Param *params, int32_t paramCnt) in CodecGetParameter()
491 int32_t CodecStart(CODEC_HANDLETYPE handle) in CodecStart()
508 int32_t CodecStop(CODEC_HANDLETYPE handle) in CodecStop()
519 int32_t CodecFlush(CODEC_HANDLETYPE handle, DirectionType directType) in CodecFlush()
802 int32_t CodecDecode(CODEC_HANDLETYPE handle, CodecBuffer* inputData, CodecBuffer* outInfo, uint32_t… in CodecDecode()
1005 int32_t CodecEncode(CODEC_HANDLETYPE handle, CodecBuffer *inputData, CodecBuffer *outInfo, uint32_t… in CodecEncode()
[all …]
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/component/tde/driver/src/src/
Dtde_handle.c66 hi_void tde_get_handle(hi_handle_mgr *res, hi_s32 *handle) in tde_get_handle()
89 hi_bool tde_query_handle(hi_s32 handle, hi_handle_mgr **res) in tde_query_handle()
123 hi_bool tde_release_handle(hi_s32 handle) in tde_release_handle()
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/component/tde/driver/include/
Ddrv_tde_ioctl.h57 hi_s32 handle; /* < TDE handle */ member
70 hi_s32 handle; /* < TDE handle */ member
82 hi_s32 handle; /* < TDE handle */ member
91 hi_s32 handle; /* < TDE handle */ member
99 hi_s32 handle; /* < TDE handle */ member
108 hi_s32 handle; /* < TDE handle */ member
117 hi_s32 handle; /* < TDE handle */ member
127 hi_s32 handle; /* < TDE handle */ member
142 hi_s32 handle; /* < TDE handle */ member
160 hi_s32 handle; /* < TDE handle */ member
[all …]
/device/board/hisilicon/hispark_taurus/audio_drivers/dsp/src/
Ddsp_ops.c218 static void DspSpiClose(DevHandle handle) in DspSpiClose()
227 static int32_t DspSpiTransfer(DevHandle handle, const uint8_t *msgs, const uint32_t count) in DspSpiTransfer()
236 static int32_t DspSpiRead(DevHandle handle, const uint8_t *buf, const uint32_t len) in DspSpiRead()
246 static int32_t DspSpiSetCfg(DevHandle handle, struct SpiCfg *cfg) in DspSpiSetCfg()
255 static int32_t DspSpiGetCfg(DevHandle handle, struct SpiCfg *cfg) in DspSpiGetCfg()
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
Ddbus_usb.c292 dbus_usb_disconnect(void *handle) in dbus_usb_disconnect()
304 dbus_usb_send_irb_timeout(void *handle, dbus_irb_tx_t *txirb) in dbus_usb_send_irb_timeout()
322 dbus_usb_send_irb_complete(void *handle, dbus_irb_tx_t *txirb, int status) in dbus_usb_send_irb_complete()
338 dbus_usb_recv_irb_complete(void *handle, dbus_irb_rx_t *rxirb, int status) in dbus_usb_recv_irb_complete()
351 dbus_usb_getirb(void *handle, bool send) in dbus_usb_getirb()
369 dbus_usb_rxerr_indicate(void *handle, bool on) in dbus_usb_rxerr_indicate()
385 dbus_usb_errhandler(void *handle, int err) in dbus_usb_errhandler()
401 dbus_usb_ctl_complete(void *handle, int type, int status) in dbus_usb_ctl_complete()
421 dbus_usb_state_change(void *handle, int state) in dbus_usb_state_change()
Ddbus.c248 dbus_if_rxerr_indicate(void *handle, bool on) in dbus_if_rxerr_indicate()
1027 dbus_disconnect(void *handle) in dbus_disconnect()
1040 dbus_if_send_irb_timeout(void *handle, dbus_irb_tx_t *txirb) in dbus_if_send_irb_timeout()
1059 dbus_if_send_irb_complete(void *handle, dbus_irb_tx_t *txirb, int status) in dbus_if_send_irb_complete()
1130 dbus_if_recv_irb_complete(void *handle, dbus_irb_rx_t *rxirb, int status) in dbus_if_recv_irb_complete()
1213 dbus_if_errhandler(void *handle, int err) in dbus_if_errhandler()
1251 dbus_if_ctl_complete(void *handle, int type, int status) in dbus_if_ctl_complete()
1274 dbus_if_state_change(void *handle, int state) in dbus_if_state_change()
1313 dbus_if_pktget(void *handle, uint len, bool send) in dbus_if_pktget()
1331 dbus_if_pktfree(void *handle, void *p, bool send) in dbus_if_pktfree()
[all …]
/device/soc/hisilicon/common/hal/display/source/utils/include/
Ddisplay_module_loader.h29 void *handle = dlopen(pathName.c_str(), RTLD_NOW | RTLD_NOLOAD); in Create() local
39 explicit DisplayModuleLoader(void *handle) : handle_(handle) {} in DisplayModuleLoader()
/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/
Ddrm_gem.c275 drm_gem_handle_delete(struct drm_file *filp, u32 handle) in drm_gem_handle_delete()
313 u32 handle, u64 *offset) in drm_gem_dumb_map_offset()
351 uint32_t handle) in drm_gem_dumb_destroy()
377 u32 handle; in drm_gem_handle_create_tail() local
663 static int objects_lookup(struct drm_file *filp, u32 *handle, int count, in objects_lookup()
755 drm_gem_object_lookup(struct drm_file *filp, u32 handle) in drm_gem_object_lookup()
777 long drm_gem_dma_resv_wait(struct drm_file *filep, u32 handle, in drm_gem_dma_resv_wait()
893 u32 handle; in drm_gem_open_ioctl() local

123456