Lines Matching refs:si

109 	SetID si;  in add_msg()  local
111 if (si = lookup_setid(setid)) { in add_msg()
112 if (lookup_msgid(si, msgid, msg, file, line)) { in add_msg()
115 add_msgid(si, msgid, msg, file, line, no_write); in add_msg()
140 SetID si = setid_top; in write_msgfile() local
171 while (si) { in write_msgfile()
173 MsgID mi = si->top; in write_msgfile()
182 if (si->comment && in write_msgfile()
186 si->comment); in write_msgfile()
188 si->id); in write_msgfile()
191 si->id); in write_msgfile()
193 if (si->comment && in write_msgfile()
196 si->comment); in write_msgfile()
249 si = si->next; in write_msgfile()
258 SetID si = setid_top; in lookup_setid() local
259 while (si) { in lookup_setid()
260 if (si->id == id) { in lookup_setid()
261 return (si); in lookup_setid()
263 si = si->next; in lookup_setid()
269 lookup_msgid(SetID si, int msgid, char *msg, char *file, int line) in lookup_msgid() argument
271 MsgID mi = si->top; in lookup_msgid()
280 si->id, mi->id, in lookup_msgid()
292 add_msgid(SetID si, int msgid, char *msg, char *file, int line, int no_write) in add_msgid() argument
294 MsgID mi = si->top, newmi, prev = NULL; in add_msgid()
343 si->top = newmi; in add_msgid()
352 SetID si = setid_top, newsi, prev = NULL; in add_setid() local
354 while (si) { in add_setid()
355 if (si->id > setid) { in add_setid()
358 prev = si; in add_setid()
359 si = si->next; in add_setid()
369 newsi->next = si; in add_setid()
472 SetID si; in write_projfile() local
476 (si = lookup_setid(i)) && si->comment) { in write_projfile()
477 com = si->comment; in write_projfile()
498 SetID si = setid_top; in get_msgid() local
501 while (si) { in get_msgid()
502 if (si->id == setid) { in get_msgid()
503 MsgID mi = si->top; in get_msgid()
511 si = si->next; in get_msgid()