Lines Matching defs:lepp
58 * '*lepp' points to the new entry if successful.
65 logtab_getent(FILE *fd, struct logtab_ent **lepp)
123 *lepp = lep;
165 * If found, '*lepp' points to the matching entry, otherwise '*lepp' is
170 struct logtab_ent **lepp)
174 while (!found && (logtab_getent(fd, lepp) > 0)) {
177 found = strcmp(buffer, (*lepp)->le_buffer) == 0;
179 found = found && (strcmp(path, (*lepp)->le_path) == 0);
181 found = found && (strcmp(tag, (*lepp)->le_tag) == 0);
183 found = found && (state == (*lepp)->le_state);
185 logtab_ent_free(*lepp);