Lines Matching refs:pragma_entry

42 struct pragma_entry  struct
44 struct pragma_entry *next; argument
52 struct pragma_entry *space; argument
110 static struct pragma_entry *lookup_pragma_entry (struct pragma_entry *,
112 static int count_registered_pragmas (struct pragma_entry *);
113 static char ** save_registered_pragmas (struct pragma_entry *, char **);
114 static char ** restore_registered_pragmas (cpp_reader *, struct pragma_entry *,
1186 static struct pragma_entry *
1187 lookup_pragma_entry (struct pragma_entry *chain, const cpp_hashnode *pragma) in lookup_pragma_entry()
1197 static struct pragma_entry *
1198 new_pragma_entry (cpp_reader *pfile, struct pragma_entry **chain) in new_pragma_entry()
1200 struct pragma_entry *new_entry; in new_pragma_entry()
1202 new_entry = (struct pragma_entry *) in new_pragma_entry()
1203 _cpp_aligned_alloc (pfile, sizeof (struct pragma_entry)); in new_pragma_entry()
1205 memset (new_entry, 0, sizeof (struct pragma_entry)); in new_pragma_entry()
1214 static struct pragma_entry *
1218 struct pragma_entry **chain = &pfile->pragmas; in register_pragma_1()
1219 struct pragma_entry *entry; in register_pragma_1()
1281 struct pragma_entry *entry; in register_pragma_internal()
1297 struct pragma_entry *entry; in cpp_register_pragma()
1321 struct pragma_entry *entry; in cpp_register_deferred_pragma()
1353 count_registered_pragmas (struct pragma_entry *pe) in count_registered_pragmas()
1369 save_registered_pragmas (struct pragma_entry *pe, char **sd) in save_registered_pragmas()
1398 restore_registered_pragmas (cpp_reader *pfile, struct pragma_entry *pe, in restore_registered_pragmas()
1431 const struct pragma_entry *p = NULL; in do_pragma()