Lines Matching refs:si

107 	SetID si;  in add_msg()  local
109 if (si = lookup_setid(setid)) { in add_msg()
110 if (lookup_msgid(si, msgid, msg, file, line)) { in add_msg()
113 add_msgid(si, msgid, msg, file, line, no_write); in add_msg()
138 SetID si = setid_top; in write_msgfile() local
169 while (si) { in write_msgfile()
171 MsgID mi = si->top; in write_msgfile()
180 if (si->comment && in write_msgfile()
184 si->comment); in write_msgfile()
186 si->id); in write_msgfile()
189 si->id); in write_msgfile()
191 if (si->comment && in write_msgfile()
194 si->comment); in write_msgfile()
247 si = si->next; in write_msgfile()
256 SetID si = setid_top; in lookup_setid() local
257 while (si) { in lookup_setid()
258 if (si->id == id) { in lookup_setid()
259 return (si); in lookup_setid()
261 si = si->next; in lookup_setid()
267 lookup_msgid(SetID si, int msgid, char *msg, char *file, int line) in lookup_msgid() argument
269 MsgID mi = si->top; in lookup_msgid()
278 si->id, mi->id, in lookup_msgid()
290 add_msgid(SetID si, int msgid, char *msg, char *file, int line, int no_write) in add_msgid() argument
292 MsgID mi = si->top, newmi, prev = NULL; in add_msgid()
341 si->top = newmi; in add_msgid()
350 SetID si = setid_top, newsi, prev = NULL; in add_setid() local
352 while (si) { in add_setid()
353 if (si->id > setid) { in add_setid()
356 prev = si; in add_setid()
357 si = si->next; in add_setid()
367 newsi->next = si; in add_setid()
470 SetID si; in write_projfile() local
474 (si = lookup_setid(i)) && si->comment) { in write_projfile()
475 com = si->comment; in write_projfile()
496 SetID si = setid_top; in get_msgid() local
499 while (si) { in get_msgid()
500 if (si->id == setid) { in get_msgid()
501 MsgID mi = si->top; in get_msgid()
509 si = si->next; in get_msgid()