Lines Matching refs:entry_p
2097 const struct function_table_entry *entry_p) in expand_builtin_function() argument
2099 if (argc < (int)entry_p->minimum_args) in expand_builtin_function()
2102 argc, entry_p->name); in expand_builtin_function()
2111 if (!entry_p->func_ptr) in expand_builtin_function()
2113 _("unimplemented on this platform: function `%s'"), entry_p->name); in expand_builtin_function()
2115 return entry_p->func_ptr (o, argv, entry_p->name); in expand_builtin_function()
2126 const struct function_table_entry *entry_p; in handle_function() local
2138 entry_p = lookup_function (beg); in handle_function()
2140 if (!entry_p) in handle_function()
2146 beg = next_token (beg + entry_p->len); in handle_function()
2164 entry_p->name, closeparen); in handle_function()
2179 if (!entry_p->expand_args) in handle_function()
2196 if (nargs == entry_p->maximum_args in handle_function()
2200 if (entry_p->expand_args) in handle_function()
2213 *op = expand_builtin_function (*op, nargs, argv, entry_p); in handle_function()
2216 if (entry_p->expand_args) in handle_function()
2240 const struct function_table_entry *entry_p; in func_call() local
2260 entry_p = lookup_function (fname); in func_call()
2262 if (entry_p) in func_call()
2268 return expand_builtin_function (o, i, argv+1, entry_p); in func_call()