libiio
0.12
Library for interfacing with IIO devices
|
Data Structures | |
struct | iio_context_info |
The information related to a discovered context. More... | |
Functions | |
__api struct iio_scan_context * | iio_create_scan_context (const char *backend, unsigned int flags) |
Create a scan context. More... | |
__api void | iio_scan_context_destroy (struct iio_scan_context *ctx) |
Destroy the given scan context. More... | |
__api ssize_t | iio_scan_context_get_info_list (struct iio_scan_context *ctx, struct iio_context_info ***info) |
Enumerate available contexts. More... | |
__api void | iio_context_info_list_free (struct iio_context_info **info) |
Free a context info list. More... | |
__api __pure const char * | iio_context_info_get_description (const struct iio_context_info *info) |
Get a description of a discovered context. More... | |
__api __pure const char * | iio_context_info_get_uri (const struct iio_context_info *info) |
Get the URI of a discovered context. More... | |
__api __pure const char* iio_context_info_get_description | ( | const struct iio_context_info * | info | ) |
Get a description of a discovered context.
info | A pointer to an iio_context_info structure |
__api __pure const char* iio_context_info_get_uri | ( | const struct iio_context_info * | info | ) |
Get the URI of a discovered context.
info | A pointer to an iio_context_info structure |
__api void iio_context_info_list_free | ( | struct iio_context_info ** | info | ) |
Free a context info list.
info | A pointer to a 'const struct iio_context_info *' typed variable |
__api struct iio_scan_context* iio_create_scan_context | ( | const char * | backend, |
unsigned int | flags | ||
) |
Create a scan context.
backend | A NULL-terminated string containing the backend to use for scanning. If NULL, all the available backends are used. |
flags | Unused for now. Set to 0. |
__api void iio_scan_context_destroy | ( | struct iio_scan_context * | ctx | ) |
Destroy the given scan context.
ctx | A pointer to an iio_scan_context structure |
NOTE: After that function, the iio_scan_context pointer shall be invalid.
__api ssize_t iio_scan_context_get_info_list | ( | struct iio_scan_context * | ctx, |
struct iio_context_info *** | info | ||
) |
Enumerate available contexts.
ctx | A pointer to an iio_scan_context structure |
info | A pointer to a 'const struct iio_context_info **' typed variable. The pointed variable will be initialized on success. |