Lines Matching refs:free_ptr
149 char* free_ptr = in copy_sdp_records() local
162 out_record->hdr.service_name = free_ptr; // Update service_name pointer in copy_sdp_records()
164 memcpy(free_ptr, in_record->hdr.service_name, in copy_sdp_records()
166 free_ptr += in_record->hdr.service_name_length; in copy_sdp_records()
167 *(free_ptr) = '\0'; // Set '\0' termination of string in copy_sdp_records()
168 free_ptr++; in copy_sdp_records()
171 out_record->hdr.user1_ptr = (uint8_t*)free_ptr; // Update pointer in copy_sdp_records()
172 memcpy(free_ptr, in_record->hdr.user1_ptr, in copy_sdp_records()
174 free_ptr += in_record->hdr.user1_ptr_len; in copy_sdp_records()
177 out_record->hdr.user2_ptr = (uint8_t*)free_ptr; // Update pointer in copy_sdp_records()
178 memcpy(free_ptr, in_record->hdr.user2_ptr, in copy_sdp_records()
180 free_ptr += in_record->hdr.user2_ptr_len; in copy_sdp_records()