Searched refs:gstr (Results 1 – 5 of 5) sorted by relevance
/scripts/kconfig/ |
D | util.c | 76 struct gstr str_new(void) in str_new() 78 struct gstr gs; in str_new() 86 struct gstr str_assign(const char *s) in str_assign() 88 struct gstr gs; in str_assign() 95 void str_free(struct gstr *gs) in str_free() 104 void str_append(struct gstr *gs, const char *s) in str_append() 118 void str_printf(struct gstr *gs, const char *fmt, ...) in str_printf() 129 const char *str_get(struct gstr *gs) in str_get()
|
D | lkc.h | 105 struct gstr { struct 109 struct gstr str_new(void); argument 110 struct gstr str_assign(const char *s); 111 void str_free(struct gstr *gs); 112 void str_append(struct gstr *gs, const char *s); 113 void str_printf(struct gstr *gs, const char *fmt, ...); 114 const char *str_get(struct gstr *gs);
|
D | mconf.c | 287 static void get_prompt_str(struct gstr *r, struct property *prop) in get_prompt_str() 318 static void get_symbol_str(struct gstr *r, struct symbol *sym) in get_symbol_str() 347 static struct gstr get_relations_str(struct symbol **sym_arr) in get_relations_str() 350 struct gstr res = str_new(); in get_relations_str() 385 struct gstr res; in search_conf() 701 struct gstr help = str_new(); in show_help()
|
D | expr.h | 210 struct gstr; /* forward */ 211 void expr_gstr_print(struct expr *e, struct gstr *gs);
|
D | expr.c | 1100 str_append((struct gstr*)data, str); in expr_print_gstr_helper() 1103 void expr_gstr_print(struct expr *e, struct gstr *gs) in expr_gstr_print()
|