Home
last modified time | relevance | path

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

/systemd-251/src/libsystemd/sd-bus/
Dbus-message.c2993 m->root_container.offset_index = 0; in sd_bus_message_seal()
3192 if (c->offset_index+1 >= c->n_offsets) in container_next_item()
3200 *rindex = ALIGN_TO(c->offsets[c->offset_index], alignment); in container_next_item()
3201 assert(c->offsets[c->offset_index+1] >= *rindex); in container_next_item()
3202 c->item_size = c->offsets[c->offset_index+1] - *rindex; in container_next_item()
3205 if (c->offset_index+1 >= (c->end-c->begin)/sz) in container_next_item()
3209 *rindex = c->begin + (c->offset_index+1) * sz; in container_next_item()
3213 c->offset_index++; in container_next_item()
3220 if (c->offset_index+1 >= c->n_offsets) in container_next_item()
3240 *rindex = ALIGN_TO(c->offsets[c->offset_index], alignment); in container_next_item()
[all …]
Dbus-message.h29 size_t *offsets, n_offsets, offset_index; member