2 * Copyright (C) 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * SPDX-License-Identifier: GPL-2.0-only
8 #ifndef LTTNG_COMMON_FILTER_H
9 #define LTTNG_COMMON_FILTER_H
11 #include <common/sessiond-comm/sessiond-comm.hpp>
13 struct bytecode_symbol_iterator;
16 * Create an iterator on a bytecode's symbols. The iterator points to the
17 * first element after creation.
19 struct bytecode_symbol_iterator *bytecode_symbol_iterator_create(struct lttng_bytecode *bytecode);
22 * Advance iterator of one element.
24 * Returns 0 if a next element exists or a negative value at the end.
26 int bytecode_symbol_iterator_next(struct bytecode_symbol_iterator *it);
28 int bytecode_symbol_iterator_get_type(struct bytecode_symbol_iterator *it);
30 const char *bytecode_symbol_iterator_get_name(struct bytecode_symbol_iterator *it);
32 void bytecode_symbol_iterator_destroy(struct bytecode_symbol_iterator *it);
34 #endif /* LTTNG_COMMON_FILTER_H */