Lines Matching refs:tmp
131 char *tmp = in;
132 char *lastchar = (char *) &tmp[strlen(tmp) + 1];
144 pd->zone = tmp;
147 tmp = strchr(tmp, ' ');
149 if (tmp == NULL)
152 tmp[0] = '\0';
154 if (++tmp > lastchar)
158 pd->host = tmp;
161 tmp = strchr(tmp, ' ');
163 if (tmp == NULL)
166 tmp[0] = '\0';
168 if (++tmp > lastchar)
172 pd->type = tmp;
175 tmp = strchr(tmp, ' ');
177 if (tmp == NULL)
180 tmp[0] = '\0';
182 if (++tmp > lastchar)
186 ttlStr = tmp;
189 tmp = strchr(tmp, ' ');
191 if (tmp == NULL)
194 tmp[0] = '\0';
196 if (++tmp > lastchar)
200 pd->data = tmp;
299 char *tmp = NULL, *tmp_zone;
326 tmp = realloc(tmp, data.size + 1);
327 if (tmp == NULL)
330 strncpy(tmp, data.data, data.size);
331 tmp[data.size] = '\0';
333 if (bdb_parse_data(tmp, &pd) != ISC_R_SUCCESS)
345 if (tmp != NULL)
346 free(tmp);
467 char *tmp = NULL;
523 tmp = realloc(tmp, data.size + 1);
524 if (tmp == NULL)
527 strncpy(tmp, data.data, data.size);
528 tmp[data.size] = '\0';
530 if (bdb_parse_data(tmp, &pd) != ISC_R_SUCCESS)
541 if (tmp != NULL)
542 free(tmp);