Lines Matching defs:itemp
82 aliasitem_t *itemp);
307 aliasitem_t *itemp) {
313 if ((*itemp = malloc(size)) == NULL)
316 if (((*itemp)->pattern = malloc(strlen(pattern) + 1)) == NULL) {
317 free(*itemp);
318 *itemp = NULL;
322 if (((*itemp)->encoding = malloc(strlen(encoding) + 1)) == NULL) {
323 free((*itemp)->pattern);
324 free(*itemp);
325 *itemp = NULL;
329 (void)strcpy((*itemp)->pattern, pattern);
330 (void)strcpy((*itemp)->encoding, encoding);
331 (*itemp)->next = NULL;