1QB_HDB_HANDLE_GET(3) libqb Programmer's Manual QB_HDB_HANDLE_GET(3)
2
3
4
6 qb_hdb_handle_get - Get the instance associated with this handle and
7 increase it's refcount.
8
9
11 #include <qb/qbhdb.h>
12
13 int32_t qb_hdb_handle_get(
14 struct qb_hdb *hdb, /* the database instance */
15 qb_handle_t handle_in, /* the handle */
16 void **instance /* (out) pointer to the desired object. */
17 );
18
20 hdb the database instance
21
22 handle_in the handle
23
24 instance (out) pointer to the desired object.
25
28 struct qb_hdb {
29 uint32_t handle_count;
30 qb_array_t handles;
31 uint32_t iterator;
32 void (*destructor)(void *);
33 uint32_t first_run;
34 };
35
37 (0 == ok, -errno failure)
38
40 qb_hdb_iterator_reset(3), qb_hdb_handle_create(3),
41 qb_hdb_handle_destroy(3), qb_hdb_handle_refcount_get(3),
42 qb_hdb_iterator_next(3), qb_hdb_nocheck_convert(3), qb_hdb_create(3),
43 qb_hdb_destroy(3), qb_hdb_base_convert(3), qb_hdb_handle_get_always(3),
44 qb_hdb_handle_put(3)
45
47 Copyright (C) 2010-2020 Red Hat, Inc.
48
49
50
51LIBQB 2022-03-23 QB_HDB_HANDLE_GET(3)