/hal_espressif-latest/tools/esptool_py/flasher_stub/include/ |
D | stub_write_flash.h | 21 void handle_flash_data(void *data_buf, uint32_t length); 24 void handle_flash_encrypt_data(void *data_buf, uint32_t length); 27 void handle_flash_deflated_data(void *data_buf, uint32_t length);
|
D | stub_flasher.h | 74 uint8_t data_buf[32]; /* actually variable length, determined by data_len */ member
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/gatt/ |
D | gatt_sr_hash.c | 170 UINT8 *data_buf = NULL; in gatts_calculate_datebase_hash() local 174 data_buf = (UINT8 *)osi_malloc(len); in gatts_calculate_datebase_hash() 175 if (data_buf == NULL) { in gatts_calculate_datebase_hash() 180 fill_database_info(data_buf); in gatts_calculate_datebase_hash() 184 tmp = data_buf[i]; in gatts_calculate_datebase_hash() 185 data_buf[i] = data_buf[j]; in gatts_calculate_datebase_hash() 186 data_buf[j] = tmp; in gatts_calculate_datebase_hash() 191 aes_cipher_msg_auth_code(key, data_buf, len, 16, hash); in gatts_calculate_datebase_hash() 195 osi_free(data_buf); in gatts_calculate_datebase_hash()
|
/hal_espressif-latest/tools/esptool_py/flasher_stub/ |
D | stub_write_flash.c | 323 void handle_flash_data(void *data_buf, uint32_t length) { in handle_flash_data() argument 350 res = SPIWrite4B(1, fs.next_write, data_buf, length); in handle_flash_data() 352 res = SPIWrite(fs.next_write, data_buf, length); in handle_flash_data() 355 res = SPIWrite(fs.next_write, data_buf, length); in handle_flash_data() 369 void handle_flash_encrypt_data(void *data_buf, uint32_t length) { in handle_flash_encrypt_data() argument 399 res = esp_rom_spiflash_write_encrypted(fs.next_write, data_buf, length); in handle_flash_encrypt_data() 401 res = SPI_Encrypt_Write(fs.next_write, data_buf, length); in handle_flash_encrypt_data() 417 void handle_flash_deflated_data(void *data_buf, uint32_t length) { in handle_flash_deflated_data() argument 441 status = tinfl_decompress(&fs.inflator, data_buf, &in_bytes, in handle_flash_deflated_data() 447 data_buf += in_bytes; in handle_flash_deflated_data()
|
D | stub_flasher.c | 184 uint32_t *data_words = (uint32_t *)command->data_buf; in cmd_loop() 322 uint8_t data_checksum = calculate_checksum(command->data_buf + 16, payload_len); in cmd_loop() 359 error = handle_mem_data(command->data_buf + 16, command->data_len - 16); in cmd_loop() 389 handle_flash_data(command->data_buf + 16, command->data_len - 16); in cmd_loop() 394 handle_flash_encrypt_data(command->data_buf + 16, command->data_len -16); in cmd_loop() 398 handle_flash_deflated_data(command->data_buf + 16, command->data_len - 16); in cmd_loop()
|
/hal_espressif-latest/components/hal/ |
D | adc_hal.c | 233 static void adc_hal_digi_dma_link_descriptors(dma_descriptor_t *desc, uint8_t *data_buf, uint32_t p… in adc_hal_digi_dma_link_descriptors() argument 235 HAL_ASSERT(((uint32_t)data_buf % 4) == 0); in adc_hal_digi_dma_link_descriptors() 254 .buffer = data_buf, in adc_hal_digi_dma_link_descriptors() 258 data_buf += this_len; in adc_hal_digi_dma_link_descriptors() 265 void adc_hal_digi_start(adc_hal_dma_ctx_t *hal, uint8_t *data_buf) in adc_hal_digi_start() argument 277 …adc_hal_digi_dma_link_descriptors(hal->rx_desc, data_buf, hal->eof_num * SOC_ADC_DIGI_DATA_BYTES_P… in adc_hal_digi_start()
|
/hal_espressif-latest/components/hal/esp32s3/include/hal/ |
D | gpspi_flash_ll.h | 89 memcpy(buffer, (void *)dev->data_buf, read_len); in gpspi_flash_ll_get_buffer_data() 95 uint32_t word = dev->data_buf[i]; in gpspi_flash_ll_get_buffer_data() 111 dev->data_buf[0] = word; in gpspi_flash_ll_write_word() 129 dev->data_buf[i] = word; in gpspi_flash_ll_set_buffer_data()
|
D | spimem_flash_ll.h | 258 memcpy(buffer, (void *)dev->data_buf, read_len); in spimem_flash_ll_get_buffer_data() 264 uint32_t word = dev->data_buf[i]; in spimem_flash_ll_get_buffer_data() 287 dev->data_buf[i] = word; in spimem_flash_ll_set_buffer_data()
|
D | spi_ll.h | 377 hw->data_buf[(x / 32)] = word; in spi_ll_write_buffer() 405 word = hw->data_buf[byte_id / 4]; //read in spi_ll_write_buffer_byte() 408 hw->data_buf[byte_id / 4] = word; //write in spi_ll_write_buffer_byte() 427 uint32_t word = hw->data_buf[x / 32]; in spi_ll_read_buffer() 447 uint32_t word = hw->data_buf[byte_id / 4]; in spi_ll_read_buffer_byte()
|
/hal_espressif-latest/components/hal/esp32s2/include/hal/ |
D | gpspi_flash_ll.h | 80 memcpy(buffer, (void *)dev->data_buf, read_len); in gpspi_flash_ll_get_buffer_data() 86 uint32_t word = dev->data_buf[i]; in gpspi_flash_ll_get_buffer_data() 102 dev->data_buf[0] = word; in gpspi_flash_ll_write_word() 120 dev->data_buf[i] = word; in gpspi_flash_ll_set_buffer_data()
|
D | spimem_flash_ll.h | 258 memcpy(buffer, (void *)dev->data_buf, read_len); in spimem_flash_ll_get_buffer_data() 264 uint32_t word = dev->data_buf[i]; in spimem_flash_ll_get_buffer_data() 287 dev->data_buf[i] = word; in spimem_flash_ll_set_buffer_data()
|
D | spi_ll.h | 353 hw->data_buf[(x / 32)] = word; in spi_ll_write_buffer() 368 uint32_t word = hw->data_buf[x / 32]; in spi_ll_read_buffer() 380 uint32_t word = hw->data_buf[byte_addr / 4]; in spi_ll_read_buffer_byte() 412 word = hw->data_buf[byte_addr / 4]; in spi_ll_write_buffer_byte() 416 hw->data_buf[byte_addr / 4] = word; in spi_ll_write_buffer_byte()
|
/hal_espressif-latest/components/hal/esp32c6/include/hal/ |
D | gpspi_flash_ll.h | 84 memcpy(buffer, (void *)dev->data_buf, read_len); in gpspi_flash_ll_get_buffer_data() 90 uint32_t word = dev->data_buf[i].buf; in gpspi_flash_ll_get_buffer_data() 106 dev->data_buf[0].buf = word; in gpspi_flash_ll_write_word() 124 dev->data_buf[i].buf = word; in gpspi_flash_ll_set_buffer_data()
|
D | spimem_flash_ll.h | 263 memcpy(buffer, (void *)dev->data_buf, read_len); in spimem_flash_ll_get_buffer_data() 269 uint32_t word = dev->data_buf[i]; in spimem_flash_ll_get_buffer_data() 292 dev->data_buf[i] = word; in spimem_flash_ll_set_buffer_data()
|
D | spi_ll.h | 379 hw->data_buf[(x / 32)].buf = word; in spi_ll_write_buffer() 407 word = hw->data_buf[byte_id / 4].buf; //read in spi_ll_write_buffer_byte() 410 hw->data_buf[byte_id / 4].buf = word; //write in spi_ll_write_buffer_byte() 429 uint32_t word = hw->data_buf[x / 32].buf; in spi_ll_read_buffer() 449 uint32_t word = hw->data_buf[byte_id / 4].buf; in spi_ll_read_buffer_byte()
|
/hal_espressif-latest/components/hal/esp32/include/hal/ |
D | spi_flash_ll.h | 137 memcpy(buffer, (void *)dev->data_buf, read_len); in spi_flash_ll_get_buffer_data() 143 uint32_t word = dev->data_buf[i]; in spi_flash_ll_get_buffer_data() 159 dev->data_buf[0] = word; in spi_flash_ll_write_word() 177 dev->data_buf[i] = word; in spi_flash_ll_set_buffer_data()
|
/hal_espressif-latest/components/hal/esp32c2/include/hal/ |
D | gpspi_flash_ll.h | 93 memcpy(buffer, (void *)dev->data_buf, read_len); in gpspi_flash_ll_get_buffer_data() 99 uint32_t word = dev->data_buf[i]; in gpspi_flash_ll_get_buffer_data() 115 dev->data_buf[0] = word; in gpspi_flash_ll_write_word() 133 dev->data_buf[i] = word; in gpspi_flash_ll_set_buffer_data()
|
D | spimem_flash_ll.h | 262 memcpy(buffer, (void *)dev->data_buf, read_len); in spimem_flash_ll_get_buffer_data() 268 uint32_t word = dev->data_buf[i]; in spimem_flash_ll_get_buffer_data() 291 dev->data_buf[i] = word; in spimem_flash_ll_set_buffer_data()
|
D | spi_ll.h | 375 hw->data_buf[(x / 32)] = word; in spi_ll_write_buffer() 403 word = hw->data_buf[byte_id / 4]; //read in spi_ll_write_buffer_byte() 406 hw->data_buf[byte_id / 4] = word; //write in spi_ll_write_buffer_byte() 425 uint32_t word = hw->data_buf[x / 32]; in spi_ll_read_buffer() 445 uint32_t word = hw->data_buf[byte_id / 4]; in spi_ll_read_buffer_byte()
|
/hal_espressif-latest/components/hal/esp32c3/include/hal/ |
D | gpspi_flash_ll.h | 84 memcpy(buffer, (void *)dev->data_buf, read_len); in gpspi_flash_ll_get_buffer_data() 90 uint32_t word = dev->data_buf[i]; in gpspi_flash_ll_get_buffer_data() 106 dev->data_buf[0] = word; in gpspi_flash_ll_write_word() 124 dev->data_buf[i] = word; in gpspi_flash_ll_set_buffer_data()
|
D | spimem_flash_ll.h | 262 memcpy(buffer, (void *)dev->data_buf, read_len); in spimem_flash_ll_get_buffer_data() 268 uint32_t word = dev->data_buf[i]; in spimem_flash_ll_get_buffer_data() 291 dev->data_buf[i] = word; in spimem_flash_ll_set_buffer_data()
|
D | spi_ll.h | 375 hw->data_buf[(x / 32)] = word; in spi_ll_write_buffer() 403 word = hw->data_buf[byte_id / 4]; //read in spi_ll_write_buffer_byte() 406 hw->data_buf[byte_id / 4] = word; //write in spi_ll_write_buffer_byte() 425 uint32_t word = hw->data_buf[x / 32]; in spi_ll_read_buffer() 445 uint32_t word = hw->data_buf[byte_id / 4]; in spi_ll_read_buffer_byte()
|
/hal_espressif-latest/components/hal/esp32h2/include/hal/ |
D | spimem_flash_ll.h | 264 memcpy(buffer, (void *)dev->data_buf, read_len); in spimem_flash_ll_get_buffer_data() 270 uint32_t word = dev->data_buf[i]; in spimem_flash_ll_get_buffer_data() 293 dev->data_buf[i] = word; in spimem_flash_ll_set_buffer_data()
|
D | spi_ll.h | 381 hw->data_buf[(x / 32)].buf0 = word; in spi_ll_write_buffer() 409 word = hw->data_buf[byte_id / 4].buf0; //read in spi_ll_write_buffer_byte() 412 hw->data_buf[byte_id / 4].buf0 = word; //write in spi_ll_write_buffer_byte() 431 uint32_t word = hw->data_buf[x / 32].buf0; in spi_ll_read_buffer() 451 uint32_t word = hw->data_buf[byte_id / 4].buf0; in spi_ll_read_buffer_byte()
|
/hal_espressif-latest/components/hal/include/hal/ |
D | adc_hal.h | 152 void adc_hal_digi_start(adc_hal_dma_ctx_t *hal, uint8_t *data_buf);
|