Lines Matching refs:palloc

146 static	PLAN   *palloc(enum ntype, int (*)(PLAN *, FTSENT *));
243 new = palloc(N_AMIN, f_amin); in c_amin()
275 new = palloc(N_ANEWER, f_anewer); in c_anewer()
300 new = palloc(N_ASINCE, f_asince); in c_asince()
328 new = palloc(N_ATIME, f_atime); in c_atime()
356 new = palloc(N_CMIN, f_cmin); in c_cmin()
388 new = palloc(N_CNEWER, f_cnewer); in c_cnewer()
413 new = palloc(N_CSINCE, f_csince); in c_csince()
441 new = palloc(N_CTIME, f_ctime); in c_ctime()
502 return palloc(N_DELETE, f_delete); in c_delete()
524 return (palloc(N_DEPTH, f_always_true)); in c_depth()
565 return (palloc(N_EMPTY, f_empty)); in c_empty()
729 new = palloc(N_EXEC, f_exec); in c_exec()
888 new = palloc(N_EXECDIR, f_execdir); in c_execdir()
930 new = palloc(N_EXIT, f_always_true); in c_exit()
955 return (palloc(N_FALSE, f_false)); in c_false()
985 new = palloc(N_FLAGS, f_flags); in c_flags()
1012 return (palloc(N_FOLLOW, f_always_true)); in c_follow()
1039 new = palloc(N_FPRINT, f_fprint); in c_fprint()
1123 new = palloc(N_FSTYPE, f_fstype); in c_fstype()
1172 new = palloc(N_GROUP, f_group); in c_group()
1210 new = palloc(N_INUM, f_inum); in c_inum()
1236 new = palloc(N_LINKS, f_links); in c_links()
1261 return (palloc(N_LS, f_ls)); in c_ls()
1287 new = palloc(N_MAXDEPTH, f_maxdepth); in c_maxdepth()
1311 new = palloc(N_MINDEPTH, f_mindepth); in c_mindepth()
1338 new = palloc(N_MMIN, f_mmin); in c_mmin()
1366 new = palloc(N_MTIME, f_mtime); in c_mtime()
1392 new = palloc(N_NAME, f_name); in c_name()
1416 new = palloc(N_INAME, f_iname); in c_iname()
1447 new = palloc(N_NEWER, f_newer); in c_newer()
1470 return (palloc(N_NOGROUP, f_nogroup)); in c_nogroup()
1491 return (palloc(N_NOUSER, f_nouser)); in c_nouser()
1514 new = palloc(N_NAME, f_path); in c_path()
1550 new = palloc(N_PERM, f_perm); in c_perm()
1612 return (palloc(N_PRINT, f_print)); in c_print()
1621 return (palloc(N_PRINT0, f_print0)); in c_print0()
1630 return (palloc(N_PRINTX, f_printx)); in c_printx()
1650 return (palloc(N_PRUNE, f_prune)); in c_prune()
1695 new = palloc(type, f_regex); in c_regex_common()
1734 new = palloc(N_SINCE, f_since); in c_since()
1770 new = palloc(N_SIZE, f_size); in c_size()
1837 new = palloc(N_TYPE, f_type); in c_type()
1867 new = palloc(N_USER, f_user); in c_user()
1895 return (palloc(N_XDEV, f_always_true)); in c_xdev()
1924 return (palloc(N_OPENPAREN, (int (*)(PLAN *, FTSENT *))-1)); in c_openparen()
1931 return (palloc(N_CLOSEPAREN, (int (*)(PLAN *, FTSENT *))-1)); in c_closeparen()
1955 return (palloc(N_NOT, f_not)); in c_not()
1986 return (palloc(N_OR, f_or)); in c_or()
2017 palloc(enum ntype t, int (*f)(PLAN *, FTSENT *)) in palloc() function