Lines Matching refs:tmp
123 char *tmp = in;
124 char *lastchar = (char *) &tmp[strlen(tmp) + 1];
136 pd->zone = tmp;
139 tmp = strchr(tmp, ' ');
141 if (tmp == NULL)
144 tmp[0] = '\0';
146 if (++tmp > lastchar)
150 pd->host = tmp;
153 tmp = strchr(tmp, ' ');
155 if (tmp == NULL)
158 tmp[0] = '\0';
160 if (++tmp > lastchar)
164 pd->type = tmp;
167 tmp = strchr(tmp, ' ');
169 if (tmp == NULL)
172 tmp[0] = '\0';
174 if (++tmp > lastchar)
178 ttlStr = tmp;
181 tmp = strchr(tmp, ' ');
183 if (tmp == NULL)
186 tmp[0] = '\0';
188 if (++tmp > lastchar)
192 pd->data = tmp;
291 char *tmp = NULL, *tmp_zone;
318 tmp = realloc(tmp, data.size + 1);
319 if (tmp == NULL)
322 strncpy(tmp, data.data, data.size);
323 tmp[data.size] = '\0';
325 if (bdb_parse_data(tmp, &pd) != ISC_R_SUCCESS)
337 if (tmp != NULL)
338 free(tmp);
463 char *tmp = NULL;
521 tmp = realloc(tmp, data.size + 1);
522 if (tmp == NULL)
525 strncpy(tmp, data.data, data.size);
526 tmp[data.size] = '\0';
528 if (bdb_parse_data(tmp, &pd) != ISC_R_SUCCESS)
539 if (tmp != NULL)
540 free(tmp);