Home | History | Annotate | Download | only in pax

Lines Matching refs:rep

105 	REPLACE *rep;
138 if ((rep = (REPLACE *)malloc(sizeof(REPLACE))) == NULL) {
144 if ((res = regcomp(&(rep->rcmp), str+1, 0)) != 0) {
145 regerror(res, &(rep->rcmp), rebuf, sizeof(rebuf));
148 (void)free((char *)rep);
167 regfree(&(rep->rcmp));
168 (void)free((char *)rep);
176 if ((rep->nstr = strdup(pt1)) == NULL) {
177 regfree(&(rep->rcmp));
178 (void)free((char *)rep);
184 rep->flgs = 0;
193 rep->flgs |= GLOB;
197 rep->flgs |= PRNT;
201 rep->flgs |= SYML;
204 regfree(&(rep->rcmp));
205 (void)free((char *)rep);
217 rep->fow = NULL;
219 reptail = rephead = rep;
222 reptail->fow = rep;
223 reptail = rep;