Lines Matching refs:palloc
124 static PLAN *palloc(enum ntype, int (*)(PLAN *, FTSENT *));
204 new = palloc(N_AMIN, f_amin); in c_amin()
236 new = palloc(N_ANEWER, f_anewer); in c_anewer()
263 new = palloc(N_ATIME, f_atime); in c_atime()
291 new = palloc(N_CMIN, f_cmin); in c_cmin()
323 new = palloc(N_CNEWER, f_cnewer); in c_cnewer()
350 new = palloc(N_CTIME, f_ctime); in c_ctime()
413 return palloc(N_DELETE, f_delete); in c_delete()
435 return (palloc(N_DEPTH, f_always_true)); in c_depth()
476 return (palloc(N_EMPTY, f_empty)); in c_empty()
638 new = palloc(N_EXEC, f_exec); in c_exec()
794 new = palloc(N_EXECDIR, f_execdir); in c_execdir()
837 new = palloc(N_EXIT, f_always_true); in c_exit()
862 return (palloc(N_FALSE, f_false)); in c_false()
892 new = palloc(N_FLAGS, f_flags); in c_flags()
919 return (palloc(N_FOLLOW, f_always_true)); in c_follow()
946 new = palloc(N_FPRINT, f_fprint); in c_fprint()
1030 new = palloc(N_FSTYPE, f_fstype); in c_fstype()
1087 new = palloc(N_GROUP, f_group); in c_group()
1113 new = palloc(N_INUM, f_inum); in c_inum()
1139 new = palloc(N_LINKS, f_links); in c_links()
1164 return (palloc(N_LS, f_ls)); in c_ls()
1190 new = palloc(N_MAXDEPTH, f_maxdepth); in c_maxdepth()
1214 new = palloc(N_MINDEPTH, f_mindepth); in c_mindepth()
1241 new = palloc(N_MMIN, f_mmin); in c_mmin()
1269 new = palloc(N_MTIME, f_mtime); in c_mtime()
1295 new = palloc(N_NAME, f_name); in c_name()
1319 new = palloc(N_INAME, f_iname); in c_iname()
1350 new = palloc(N_NEWER, f_newer); in c_newer()
1373 return (palloc(N_NOGROUP, f_nogroup)); in c_nogroup()
1394 return (palloc(N_NOUSER, f_nouser)); in c_nouser()
1417 new = palloc(N_NAME, f_path); in c_path()
1453 new = palloc(N_PERM, f_perm); in c_perm()
1515 return (palloc(N_PRINT, f_print)); in c_print()
1524 return (palloc(N_PRINT0, f_print0)); in c_print0()
1533 return (palloc(N_PRINTX, f_printx)); in c_printx()
1553 return (palloc(N_PRUNE, f_prune)); in c_prune()
1598 new = palloc(type, f_regex); in c_regex_common()
1647 new = palloc(N_SIZE, f_size); in c_size()
1714 new = palloc(N_TYPE, f_type); in c_type()
1744 new = palloc(N_USER, f_user); in c_user()
1772 return (palloc(N_XDEV, f_always_true)); in c_xdev()
1801 return (palloc(N_OPENPAREN, (int (*)(PLAN *, FTSENT *))-1)); in c_openparen()
1808 return (palloc(N_CLOSEPAREN, (int (*)(PLAN *, FTSENT *))-1)); in c_closeparen()
1832 return (palloc(N_NOT, f_not)); in c_not()
1863 return (palloc(N_OR, f_or)); in c_or()
1894 palloc(enum ntype t, int (*f)(PLAN *, FTSENT *)) in palloc() function