Lines Matching refs:tmp
148 char *tmp = in;
149 char *lastchar = (char *) &tmp[strlen(tmp)];
176 tmp = strchr(tmp, ' ');
178 if (tmp == NULL)
181 if (++tmp > lastchar)
185 pd->host = tmp;
188 tmp = strchr(tmp, ' ');
190 if (tmp == NULL)
193 tmp[0] = '\0';
195 if (++tmp > lastchar)
199 ttlStr = tmp;
202 tmp = strchr(tmp, ' ');
204 if (tmp == NULL)
207 tmp[0] = '\0';
209 if (++tmp > lastchar)
213 pd->type = tmp;
216 tmp = strchr(tmp, ' ');
218 if (tmp == NULL)
221 tmp[0] = '\0';
223 if (++tmp > lastchar)
227 pd->data = tmp;
342 char *tmp = NULL, *tmp_zone, *tmp_zone_host = NULL;
402 tmp = realloc(tmp, dns_data.size + 1);
403 if (tmp == NULL)
406 /* copy data to tmp string, and append null term. */
407 strncpy(tmp, dns_data.data, dns_data.size);
408 tmp[dns_data.size] = '\0';
411 if (bdbhpt_parse_data(tmp, &pd) != ISC_R_SUCCESS)
431 if (tmp != NULL)
432 free(tmp);
547 char *tmp = NULL;
580 tmp = realloc(tmp, data.size + 1);
581 if (tmp == NULL)
584 strncpy(tmp, data.data, data.size);
585 tmp[data.size] = '\0';
587 if (bdbhpt_parse_data(tmp, &pd) != ISC_R_SUCCESS)
604 if (tmp != NULL)
605 free(tmp);