tap-driver.sh: flush stdout after each test result
[babeltrace.git] / bindings / python / bt2 / bt2 / native_bt_packet.i
CommitLineData
81447b5b
PP
1/*
2 * The MIT License (MIT)
3 *
4 * Copyright (c) 2016-2017 Philippe Proulx <pproulx@efficios.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
6945df9a
SM
25/* From packet-const.h */
26
27typedef enum bt_packet_status {
28 BT_PACKET_STATUS_OK = 0,
29 BT_PACKET_STATUS_NOMEM = -12,
30} bt_packet_status;
31
32extern const bt_stream *bt_packet_borrow_stream_const(
33 const bt_packet *packet);
34
35extern
36const bt_field *bt_packet_borrow_context_field_const(
37 const bt_packet *packet);
38
39extern void bt_packet_get_ref(const bt_packet *packet);
40
41extern void bt_packet_put_ref(const bt_packet *packet);
42
43/* From packet.h */
44
45extern bt_packet *bt_packet_create(const bt_stream *stream);
46
47extern bt_stream *bt_packet_borrow_stream(bt_packet *packet);
48
49extern
50bt_field *bt_packet_borrow_context_field(bt_packet *packet);
51
52extern
53bt_packet_status bt_packet_move_context_field(bt_packet *packet,
54 bt_packet_context_field *context);
This page took 0.037972 seconds and 4 git commands to generate.