Lines Matching refs:name

34 	SET_ALIAS /* alias name for above setting definition */
49 #define SETTING_DEFINE_STRUCT_BOOL(name, struct_name) \
51 ((struct struct_name *)0)->name, bool), \
52 #name, offsetof(struct struct_name, name), NULL }
53 #define SETTING_DEFINE_STRUCT_UINT(name, struct_name) \
55 ((struct struct_name *)0)->name, unsigned int), \
56 #name, offsetof(struct struct_name, name), NULL }
57 #define SETTING_DEFINE_STRUCT_SIZE(name, struct_name) \
59 ((struct struct_name *)0)->name, uoff_t), \
60 #name, offsetof(struct struct_name, name), NULL }
61 #define SETTING_DEFINE_STRUCT_TIME(name, struct_name) \
63 ((struct struct_name *)0)->name, unsigned int), \
64 #name, offsetof(struct struct_name, name), NULL }
65 #define SETTING_DEFINE_STRUCT_TIME_MSECS(name, struct_name) \
67 ((struct struct_name *)0)->name, unsigned int), \
68 #name, offsetof(struct struct_name, name), NULL }
69 #define SETTING_DEFINE_STRUCT_STR(name, struct_name) \
71 ((struct struct_name *)0)->name, const char *), \
72 #name, offsetof(struct struct_name, name), NULL }
73 #define SETTING_DEFINE_STRUCT_IN_PORT(name, struct_name) \
75 ((struct struct_name *)0)->name, in_port_t), \
76 #name, offsetof(struct struct_name, name), NULL }
97 /* name=NULL-terminated list of parsers. These follow the static settings.
100 const char *name;
142 /* If key is an alias, return the primary key name. If key exists, return key
220 /* parsers is a name=NULL -terminated list. The parsers are appended as
230 /* Return pointer to beginning of settings for given name, or NULL if there is
231 no such registered name. */
233 const void *base_set, const char *name);
237 key name. If it's NULL, the old setting is kept.
246 /* Return section name escaped */
247 const char *settings_section_escape(const char *name);