Lines Matching defs:tsp
149 register struct sactab *tsp, *savtsp; /* scratch pointers */
155 savtsp = tsp = Sactab;
161 while (tsp) {
162 ret = strcmp(sp->sc_tag, tsp->sc_tag);
164 (void) sprintf(Scratch, "sp->sc_tag <%s> tsp->sc_tag <%s>, ret is %d", sp->sc_tag, tsp->sc_tag, ret);
169 savtsp = tsp;
170 tsp = tsp->sc_next;
180 if (tsp->sc_valid) {
182 (void) sprintf(Scratch, "Ignoring duplicate entry for <%s>", tsp->sc_tag);
187 tsp->sc_rsmax = sp->sc_rsmax;
188 tsp->sc_flags = sp->sc_flags;
194 tsp->sc_valid = 1;
203 if (tsp == Sactab) {
255 register struct sactab *savesp, *tsp; /* scratch pointers */
297 tsp = sp;
298 if (tsp == Sactab) {
309 free(tsp->sc_cmd);
310 free(tsp->sc_comment);
311 free(tsp);