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