Lines Matching refs:ucl_object_t
47 static int uclparse_toplevel(const ucl_object_t *);
48 static int uclparse_chap(struct auth_group *, const ucl_object_t *);
49 static int uclparse_chap_mutual(struct auth_group *, const ucl_object_t *);
50 static int uclparse_lun(const char *, const ucl_object_t *);
51 static int uclparse_auth_group(const char *, const ucl_object_t *);
52 static int uclparse_portal_group(const char *, const ucl_object_t *);
53 static int uclparse_target(const char *, const ucl_object_t *);
54 static int uclparse_target_portal_group(struct target *, const ucl_object_t *);
55 static int uclparse_target_lun(struct target *, const ucl_object_t *);
58 uclparse_chap(struct auth_group *auth_group, const ucl_object_t *obj) in uclparse_chap()
61 const ucl_object_t *user, *secret; in uclparse_chap()
88 uclparse_chap_mutual(struct auth_group *auth_group, const ucl_object_t *obj) in uclparse_chap_mutual()
91 const ucl_object_t *user, *secret, *mutual_user; in uclparse_chap_mutual()
92 const ucl_object_t *mutual_secret; in uclparse_chap_mutual()
136 uclparse_target_portal_group(struct target *target, const ucl_object_t *obj) in uclparse_target_portal_group()
141 const ucl_object_t *portal_group, *auth_group; in uclparse_target_portal_group()
187 uclparse_target_lun(struct target *target, const ucl_object_t *obj) in uclparse_target_lun()
213 const ucl_object_t *num = ucl_object_find_key(obj, "number"); in uclparse_target_lun()
214 const ucl_object_t *name = ucl_object_find_key(obj, "name"); in uclparse_target_lun()
245 uclparse_toplevel(const ucl_object_t *top) in uclparse_toplevel()
248 const ucl_object_t *obj = NULL, *child = NULL; in uclparse_toplevel()
392 uclparse_auth_group(const char *name, const ucl_object_t *top) in uclparse_auth_group()
398 const ucl_object_t *obj = NULL, *tmp = NULL; in uclparse_auth_group()
495 uclparse_portal_group(const char *name, const ucl_object_t *top) in uclparse_portal_group()
499 const ucl_object_t *obj = NULL, *tmp = NULL; in uclparse_portal_group()
694 uclparse_target(const char *name, const ucl_object_t *top) in uclparse_target()
698 const ucl_object_t *obj = NULL, *tmp = NULL; in uclparse_target()
886 uclparse_lun(const char *name, const ucl_object_t *top) in uclparse_lun()
890 const ucl_object_t *obj = NULL, *child = NULL; in uclparse_lun()
984 ucl_object_t *top; in uclparse_conf()