Lines Matching defs:flt
49 Flt_desc *flt;
78 for (APLIST_TRAVERSE(crle->c_flt, idx, flt)) {
83 if ((strcmp(flt->f_fent->e_obj->o_path,
85 (strcmp(flt->f_str, str) != 0))
91 if (aplist_append(&(flt->f_filtee), flteent,
102 if (((flt = malloc(sizeof (Flt_desc))) == NULL) ||
103 ((flt->f_strsz = strlen(str) + 1) == 0) ||
104 ((flt->f_str = malloc(flt->f_strsz)) == NULL)) {
110 if ((aplist_append(&(crle->c_flt), flt, AL_CNT_CRLE) == NULL) ||
111 (aplist_append(&(flt->f_filtee), flteent, AL_CNT_CRLE) == NULL))
114 flt->f_fent = fltrent;
115 (void) memcpy((void *)flt->f_str, (void *)str, flt->f_strsz);
116 crle->c_strsize += flt->f_strsz;