Home
last modified time | relevance | path

Searched refs:arg_prefix (Results 1 – 2 of 2) sorted by relevance

/freebsd-12-stable/crypto/openssl/apps/
DCA.pl.in54 my ($args_ref, $arg_prefix) = @_;
58 $arg =~ s/$arg_prefix//;
63 } reverse grep($$args_ref[$_] =~ /$arg_prefix/, 0..$#$args_ref);
/freebsd-12-stable/contrib/gdb/gdb/cli/
Dcli-cmds.c229 char **completions, *point, *arg_prefix; in complete_command() local
249 arg_prefix = alloca (point - arg + 1); in complete_command()
250 memcpy (arg_prefix, arg, point - arg); in complete_command()
251 arg_prefix[point - arg] = 0; in complete_command()
269 printf_unfiltered ("%s%s\n", arg_prefix, completions[item]); in complete_command()