Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
wmem_array.h
Go to the documentation of this file.
1
12#ifndef __WMEM_ARRAY_H__
13#define __WMEM_ARRAY_H__
14
15#include <string.h>
16#include <glib.h>
17
18#include "wmem_core.h"
19
20#ifdef __cplusplus
21extern "C" {
22#endif /* __cplusplus */
23
33struct _wmem_array_t;
34
43
56WS_DLL_PUBLIC
58wmem_array_sized_new(wmem_allocator_t *allocator, size_t elem_size,
59 unsigned alloc_count);
60
71WS_DLL_PUBLIC
73wmem_array_new(wmem_allocator_t *allocator, const size_t elem_size);
74
84WS_DLL_PUBLIC
85bool
86wmem_array_grow(wmem_array_t *array, const unsigned to_add);
87
97WS_DLL_PUBLIC
98void
100
108WS_DLL_PUBLIC
109void
111
127WS_DLL_PUBLIC
128bool
129wmem_array_append(wmem_array_t *array, const void *in, unsigned count);
130
140#define wmem_array_append_one(ARRAY, VAL) \
141 wmem_array_append((ARRAY), &(VAL), 1)
142
154WS_DLL_PUBLIC
155void *
156wmem_array_index(const wmem_array_t *array, unsigned array_index);
157
170WS_DLL_PUBLIC
171int
172wmem_array_try_index(const wmem_array_t *array, unsigned array_index, void *val);
173
185WS_DLL_PUBLIC
186void
187wmem_array_sort(wmem_array_t *array, int (*compar)(const void*,const void*));
188
198WS_DLL_PUBLIC
199void *
200wmem_array_get_raw(const wmem_array_t *array);
201
211WS_DLL_PUBLIC
212unsigned
214
224WS_DLL_PUBLIC
227
243WS_DLL_PUBLIC
244void *
246
256WS_DLL_PUBLIC
257void
259
263#ifdef __cplusplus
264}
265#endif /* __cplusplus */
266
267#endif /* __WMEM_ARRAY_H__ */
268
269/*
270 * Editor modelines - https://www.wireshark.org/tools/modelines.html
271 *
272 * Local variables:
273 * c-basic-offset: 4
274 * tab-width: 8
275 * indent-tabs-mode: nil
276 * End:
277 *
278 * vi: set shiftwidth=4 tabstop=8 expandtab:
279 * :indentSize=4:tabSize=8:noTabs=true:
280 */
WS_DLL_PUBLIC wmem_allocator_t * wmem_array_get_allocator(const wmem_array_t *array)
Retrieve the memory allocator associated with a dynamic array.
Definition wmem_array.c:195
WS_DLL_PUBLIC wmem_array_t * wmem_array_new(wmem_allocator_t *allocator, const size_t elem_size)
Create a new dynamically sized array with default initial capacity.
Definition wmem_array.c:63
WS_DLL_PUBLIC void wmem_destroy_array(wmem_array_t *array)
Destroy a dynamic array and free its associated memory.
Definition wmem_array.c:218
WS_DLL_PUBLIC void * wmem_array_index(const wmem_array_t *array, unsigned array_index)
Retrieve a pointer to an element in a dynamic array by index.
Definition wmem_array.c:158
WS_DLL_PUBLIC void wmem_array_bzero(wmem_array_t *array)
Zero out the contents of a dynamic array.
Definition wmem_array.c:137
WS_DLL_PUBLIC unsigned wmem_array_get_count(const wmem_array_t *array)
Get the number of elements currently stored in a dynamic array.
Definition wmem_array.c:186
WS_DLL_PUBLIC void * wmem_array_get_raw(const wmem_array_t *array)
Retrieve a raw pointer to the internal buffer of a dynamic array.
Definition wmem_array.c:180
WS_DLL_PUBLIC wmem_array_t * wmem_array_sized_new(wmem_allocator_t *allocator, size_t elem_size, unsigned alloc_count)
Create a new dynamically sized array with a specified element size and initial capacity.
Definition wmem_array.c:43
WS_DLL_PUBLIC int wmem_array_try_index(const wmem_array_t *array, unsigned array_index, void *val)
Safely retrieve an element from a dynamic array by index.
Definition wmem_array.c:165
WS_DLL_PUBLIC void wmem_array_sort(wmem_array_t *array, int(*compar)(const void *, const void *))
Sort the elements of a dynamic array.
Definition wmem_array.c:174
WS_DLL_PUBLIC void wmem_array_set_null_terminator(wmem_array_t *array)
Set a null terminator at the end of a dynamic array.
Definition wmem_array.c:130
WS_DLL_PUBLIC void * wmem_array_finalize(wmem_array_t *array)
Finalize a dynamic array and retrieve its underlying buffer.
Definition wmem_array.c:204
WS_DLL_PUBLIC bool wmem_array_append(wmem_array_t *array, const void *in, unsigned count)
Append elements to a dynamic array.
Definition wmem_array.c:143
WS_DLL_PUBLIC bool wmem_array_grow(wmem_array_t *array, const unsigned to_add)
Increase the capacity of a dynamic array by a specified number of elements.
Definition wmem_array.c:73
Internal memory allocator interface used by the wmem subsystem.
Definition wmem_allocator.h:34
Definition wmem_array.c:29