Lines Matching full:entry_p
2106 const struct function_table_entry *entry_p)
2108 if (argc < (int)entry_p->minimum_args)
2111 argc, entry_p->name);
2120 if (!entry_p->func_ptr)
2122 _("unimplemented on this platform: function `%s'"), entry_p->name);
2124 return entry_p->func_ptr (o, argv, entry_p->name);
2135 const struct function_table_entry *entry_p;
2147 entry_p = lookup_function (beg);
2149 if (!entry_p)
2155 beg = next_token (beg + entry_p->len);
2173 entry_p->name, closeparen);
2188 if (!entry_p->expand_args)
2205 if (nargs == entry_p->maximum_args
2209 if (entry_p->expand_args)
2222 *op = expand_builtin_function (*op, nargs, argv, entry_p);
2225 if (entry_p->expand_args)
2250 const struct function_table_entry *entry_p;
2270 entry_p = lookup_function (fname);
2272 if (entry_p)
2278 return expand_builtin_function (o, i, argv+1, entry_p);