Ejemplo n.º 1
0
void bt_ctf_writer_get(struct bt_ctf_writer *writer)
{
	if (!writer) {
		return;
	}

	bt_ctf_ref_get(&writer->ref_count);
}
Ejemplo n.º 2
0
void bt_ctf_clock_get(struct bt_ctf_clock *clock)
{
	if (!clock) {
		return;
	}

	bt_ctf_ref_get(&clock->ref_count);
}
Ejemplo n.º 3
0
void bt_ctf_trace_get(struct bt_ctf_trace *trace)
{
	if (!trace) {
		return;
	}

	bt_ctf_ref_get(&trace->ref_count);
}
Ejemplo n.º 4
0
void bt_ctf_field_get(struct bt_ctf_field *field)
{
	if (field) {
		bt_ctf_ref_get(&field->ref_count);
	}
}