Home
last modified time | relevance | path

Searched refs:cpy_len (Results 1 – 2 of 2) sorted by relevance

/hal_espressif-latest/components/newlib/
Dassert.c72 uint32_t cpy_len = MIN(len, rem_len); in __assert_func()
73 memcpy(buff + off, str[i], cpy_len); in __assert_func()
74 rem_len -= cpy_len; in __assert_func()
75 off += cpy_len; in __assert_func()
/hal_espressif-latest/components/bt/host/bluedroid/stack/sdp/
Dsdp_discovery.c333 unsigned int cpy_len; in sdp_copy_raw_data() local
349 cpy_len = p_ccb->p_db->raw_size - p_ccb->p_db->raw_used; in sdp_copy_raw_data()
357 if (list_len < cpy_len ) { in sdp_copy_raw_data()
358 cpy_len = list_len; in sdp_copy_raw_data()
362 list_len, cpy_len, p_ccb->p_db->raw_size, p_ccb->p_db->raw_used); in sdp_copy_raw_data()
364 if (cpy_len != 0){ in sdp_copy_raw_data()
365 memcpy (&p_ccb->p_db->raw_data[p_ccb->p_db->raw_used], p, cpy_len); in sdp_copy_raw_data()
366 p_ccb->p_db->raw_used += cpy_len; in sdp_copy_raw_data()