Home
last modified time | relevance | path

Searched refs:out_buf_len (Results 1 – 10 of 10) sorted by relevance

/AliOS-Things-master/components/genie_service/genie_port/hal/
A Dgenie_hal_flash.c43 int32_t hal_flash_read_otp(uint32_t off_set, void *out_buf, uint32_t out_buf_len) in hal_flash_read_otp() argument
63 int32_t hal_flash_read_xtalcap_params(void *out_buf, uint32_t out_buf_len) in hal_flash_read_xtalcap_params() argument
67 if (out_buf_len != sizeof(uint32_t)) { in hal_flash_read_xtalcap_params()
87 int32_t hal_flash_read_sn_params(void *out_buf, uint32_t out_buf_len) in hal_flash_read_sn_params() argument
89 return hal_flash_read_otp(SN_PARAMS_OFFSET, out_buf, out_buf_len); in hal_flash_read_sn_params()
97 int32_t hal_flash_read_mac_params(void *out_buf, uint32_t out_buf_len) in hal_flash_read_mac_params() argument
99 if (!out_buf || out_buf_len < 6) in hal_flash_read_mac_params()
113 int32_t hal_flash_read_triples(void *out_buf, uint32_t out_buf_len) in hal_flash_read_triples() argument
115 return hal_flash_read_otp(TRIPLE_OFFSET, out_buf, out_buf_len); in hal_flash_read_triples()
123 int32_t hal_flash_read_group_addr(void *out_buf, uint32_t out_buf_len) in hal_flash_read_group_addr() argument
[all …]
A Dflash.h26 int32_t hal_flash_read_triples(void *out_buf, uint32_t out_buf_len);
46 int32_t hal_flash_read_group_addr(void *out_buf, uint32_t out_buf_len);
50 int32_t hal_flash_read_xtalcap_params(void *out_buf, uint32_t out_buf_len);
52 int32_t hal_flash_read_mac_params(void *out_buf, uint32_t out_buf_len);
74 int32_t hal_flash_read_sn_params(void *out_buf, uint32_t out_buf_len);
/AliOS-Things-master/hardware/chip/rtl872xd/hal/
A Dflash.c73 …al_flash_read(hal_partition_t in_partition, uint32_t *off_set, void *out_buf, uint32_t out_buf_len) in hal_flash_read() argument
81 …if(off_set == NULL || out_buf == NULL || *off_set + out_buf_len > partition_info->partition_length… in hal_flash_read()
83 …offset 0x%x, size 0x%x\r\n", in_partition, partition_info->partition_length, off_set, out_buf_len); in hal_flash_read()
87 flash_stream_read(&flash_obj, start_addr, out_buf_len, out_buf); in hal_flash_read()
89 *off_set += out_buf_len; in hal_flash_read()
A Dota.c407 static int rtl8721d_ota_read_ota_cb(int* off_set, char* out_buf, int out_buf_len) in rtl8721d_ota_read_ota_cb() argument
410 return hal_flash_read(boot_part, (uint32_t*)off_set, out_buf, out_buf_len); in rtl8721d_ota_read_ota_cb()
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dqjsc.c180 size_t out_buf_len; in output_object_code() local
185 out_buf = JS_WriteObject(ctx, &out_buf_len, obj, flags); in output_object_code()
194 c_name, (unsigned int)out_buf_len); in output_object_code()
196 c_name, (unsigned int)out_buf_len); in output_object_code()
197 dump_hex(fo, out_buf, out_buf_len); in output_object_code()
/AliOS-Things-master/components/ota/hal/
A Dota_hal_plat.c184 int ota_hal_read(unsigned int *off, char *out_buf, unsigned int out_buf_len) in ota_hal_read() argument
187 ret = aos_hal_flash_read(boot_part, off, out_buf, out_buf_len); in ota_hal_read()
A Dota_hal_ctrl.c81 int ota_read(unsigned int *off, char *out_buf, unsigned int out_buf_len) in ota_read() argument
84 ret = ota_hal_read(off, out_buf, out_buf_len); in ota_read()
A Dota_hal_vfs_plat.c311 OTA_WEAK int ota_hal_read(unsigned int *off, char *out_buf, unsigned int out_buf_len) in ota_hal_read() argument
334 ret = read(temp_fd, (void *)out_buf, out_buf_len); in ota_hal_read()
/AliOS-Things-master/components/ota/include/
A Dota_import.h128 int ota_read(unsigned int *off, char *out_buf, unsigned int out_buf_len);
/AliOS-Things-master/components/SDL2/src/image/
A Dminiz.h720 MINIZ_STATIC size_t tinfl_decompress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSr…
831 MINIZ_STATIC size_t tdefl_compress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSrc_…
1746 size_t tinfl_decompress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSrc_buf, size_t… in tinfl_decompress_mem_to_mem() argument
1749 …t8*)pSrc_buf, &src_buf_len, (mz_uint8*)pOut_buf, (mz_uint8*)pOut_buf, &out_buf_len, (flags & ~TINF… in tinfl_decompress_mem_to_mem()
1750 return (status != TINFL_STATUS_DONE) ? TINFL_DECOMPRESS_MEM_TO_MEM_FAILED : out_buf_len; in tinfl_decompress_mem_to_mem()
2783 size_t tdefl_compress_mem_to_mem(void *pOut_buf, size_t out_buf_len, const void *pSrc_buf, size_t s… in tdefl_compress_mem_to_mem() argument
2787 out_buf.m_pBuf = (mz_uint8*)pOut_buf; out_buf.m_capacity = out_buf_len; in tdefl_compress_mem_to_mem()

Completed in 24 milliseconds