Searched refs:current_size (Results 1 – 1 of 1) sorted by relevance
29 static enum err buffer_append(uint8_t *buffer, uint32_t *current_size, in buffer_append() argument34 &buffer[*current_size]; //pointer to current end of the content in buffer_append()37 (*current_size); //how many bytes in the buffer are still available in buffer_append()39 *current_size += substring_size; in buffer_append()154 uint32_t current_size = 0; in uri_path_create() local170 TRY(buffer_append(uri_path, ¤t_size, max_size, in uri_path_create()172 TRY(buffer_append(uri_path, ¤t_size, max_size, &delimiter, in uri_path_create()177 if (current_size > 0) { in uri_path_create()178 uri_path[current_size] = 0; in uri_path_create()179 current_size--; in uri_path_create()[all …]