Home
last modified time | relevance | path

Searched defs:lys_feature (Results 1 – 2 of 2) sorted by relevance

/dports/net/libyang/libyang-1.0.240/src/
H A Dtree_schema.h2029 struct lys_feature { struct
2030 const char *name; /**< feature name (mandatory) */
2031 const char *dsc; /**< description statement (optional) */
2032 const char *ref; /**< reference statement (optional) */
2035 uint8_t ext_size; /**< number of elements in #ext array */
2036 uint8_t iffeature_size; /**< number of elements in the #iffeature array */
2039 uint8_t padding[4]; /**< padding for 32b alignment */
2041 struct lys_ext_instance **ext; /**< array of pointers to the extension instances */
2042 struct lys_iffeature *iffeature; /**< array of if-feature expressions */
2043 struct lys_module *module; /**< link to the features's data model (mandatory) */
[all …]
H A Dprinter.c493 void (*clb_print_feature)(struct lyout*, const struct lys_feature*, int*), in lys_print_target()