Home
last modified time | relevance | path

Searched refs:rec (Results 1 – 15 of 15) sorted by relevance

/hal_espressif-3.5.0/components/heap/
Dheap_trace_standalone.c135 heap_trace_record_t *rec = &buffer[i]; in heap_trace_dump() local
137 if (rec->address != NULL) { in heap_trace_dump()
139 rec->size, rec->address, rec->ccount & 1, rec->ccount & ~3); in heap_trace_dump()
140 for (int j = 0; j < STACK_DEPTH && rec->alloced_by[j] != 0; j++) { in heap_trace_dump()
141 printf("%p%s", rec->alloced_by[j], in heap_trace_dump()
145 if (mode != HEAP_TRACE_ALL || STACK_DEPTH == 0 || rec->freed_by[0] == NULL) { in heap_trace_dump()
146 delta_size += rec->size; in heap_trace_dump()
152 printf("%p%s", rec->freed_by[j], in heap_trace_dump()
/hal_espressif-3.5.0/components/heap/test/
Dtest_heap_trace.c87 heap_trace_record_t rec; variable
88 heap_trace_get(i, &rec);
89 if (rec.address == ptrs[N-1]) {
108 heap_trace_record_t rec; variable
109 heap_trace_get(i, &rec);
113 TEST_ASSERT_NOT_EQUAL(ptrs[j], rec.address);
115 if (rec.address == other) {
/hal_espressif-3.5.0/tools/unit-test-app/components/test_utils/
Dtest_utils.c159 … test_utils_exhaust_memory_rec rec = calloc(1, sizeof(struct test_utils_exhaust_memory_record_s)); in test_utils_exhaust_memory() local
160 …TEST_ASSERT_NOT_NULL_MESSAGE(rec, "test_utils_exhaust_memory: not enough free memory to allocate r… in test_utils_exhaust_memory()
165 return rec; // done! in test_utils_exhaust_memory()
167 rec->entries[idx] = heap_caps_malloc(free_caps - limit, caps); in test_utils_exhaust_memory()
168 TEST_ASSERT_NOT_NULL_MESSAGE(rec->entries[idx], in test_utils_exhaust_memory()
178 void test_utils_free_exhausted_memory(test_utils_exhaust_memory_rec rec) in test_utils_free_exhausted_memory() argument
181 free(rec->entries[i]); in test_utils_free_exhausted_memory()
183 free(rec); in test_utils_free_exhausted_memory()
/hal_espressif-3.5.0/components/heap/include/
Dheap_trace.inc98 heap_trace_record_t rec = {
103 get_call_stack(rec.alloced_by);
104 record_allocation(&rec);
140 heap_trace_record_t rec = {
145 memcpy(rec.alloced_by, callers, sizeof(void *) * STACK_DEPTH);
146 record_allocation(&rec);
/hal_espressif-3.5.0/components/bt/host/bluedroid/stack/sdp/
Dsdp_api.c1006 SDP_AttrStringCopy( p_device_info->rec.client_executable_url, p_curr_attr, in SDP_GetDiRecord()
1011 SDP_AttrStringCopy( p_device_info->rec.service_description, p_curr_attr, SDP_MAX_ATTR_LEN ); in SDP_GetDiRecord()
1015 SDP_AttrStringCopy( p_device_info->rec.documentation_url, p_curr_attr, SDP_MAX_ATTR_LEN ); in SDP_GetDiRecord()
1026 p_device_info->rec.vendor = p_curr_attr->attr_value.v.u16; in SDP_GetDiRecord()
1033 p_device_info->rec.vendor_id_source = p_curr_attr->attr_value.v.u16; in SDP_GetDiRecord()
1040 p_device_info->rec.product = p_curr_attr->attr_value.v.u16; in SDP_GetDiRecord()
1047 p_device_info->rec.version = p_curr_attr->attr_value.v.u16; in SDP_GetDiRecord()
1054 p_device_info->rec.primary_record = (BOOLEAN)p_curr_attr->attr_value.v.u8; in SDP_GetDiRecord()
/hal_espressif-3.5.0/components/hal/esp32/include/hal/
Dcan_ll.h185 static inline void can_ll_set_rec(can_dev_t *hw, uint32_t rec) in can_ll_set_rec() argument
187 twai_ll_set_rec(hw, rec); in can_ll_set_rec()
Dtwai_ll.h533 static inline void twai_ll_set_rec(twai_dev_t *hw, uint32_t rec) in twai_ll_set_rec() argument
535 HAL_FORCE_MODIFY_U32_REG_FIELD(hw->rx_error_counter_reg, rxerr, rec); in twai_ll_set_rec()
/hal_espressif-3.5.0/components/hal/
Dtwai_hal_iram.c38 uint32_t rec = twai_ll_get_rec(hal_ctx->dev); local
82 if (tec >= TWAI_ERR_PASS_THRESH || rec >= TWAI_ERR_PASS_THRESH) {
/hal_espressif-3.5.0/components/hal/esp32s3/include/hal/
Dtwai_ll.h441 static inline void twai_ll_set_rec(twai_dev_t *hw, uint32_t rec) in twai_ll_set_rec() argument
443 HAL_FORCE_MODIFY_U32_REG_FIELD(hw->rx_error_counter_reg, rxerr, rec); in twai_ll_set_rec()
/hal_espressif-3.5.0/components/hal/esp32c3/include/hal/
Dtwai_ll.h441 static inline void twai_ll_set_rec(twai_dev_t *hw, uint32_t rec) in twai_ll_set_rec() argument
443 HAL_FORCE_MODIFY_U32_REG_FIELD(hw->rx_error_counter_reg, rxerr, rec); in twai_ll_set_rec()
/hal_espressif-3.5.0/components/hal/esp32h2/include/hal/
Dtwai_ll.h441 static inline void twai_ll_set_rec(twai_dev_t *hw, uint32_t rec) in twai_ll_set_rec() argument
443 HAL_FORCE_MODIFY_U32_REG_FIELD(hw->rx_error_counter_reg, rxerr, rec); in twai_ll_set_rec()
/hal_espressif-3.5.0/components/hal/esp32s2/include/hal/
Dtwai_ll.h441 static inline void twai_ll_set_rec(twai_dev_t *hw, uint32_t rec) in twai_ll_set_rec() argument
443 HAL_FORCE_MODIFY_U32_REG_FIELD(hw->rx_error_counter_reg, rxerr, rec); in twai_ll_set_rec()
/hal_espressif-3.5.0/tools/unit-test-app/components/test_utils/include/
Dtest_utils.h298 void test_utils_free_exhausted_memory(test_utils_exhaust_memory_rec rec);
/hal_espressif-3.5.0/components/bt/host/bluedroid/bta/hh/
Dbta_hh_act.c276 … bta_hh_update_di_info(p_cb, di_rec.rec.vendor, di_rec.rec.product, di_rec.rec.version, 0); in bta_hh_di_sdp_cback()
/hal_espressif-3.5.0/components/bt/host/bluedroid/stack/include/stack/
Dsdp_api.h164 tSDP_DI_RECORD rec; member