Searched refs:prefix (Results 1 - 25 of 616) sorted by relevance

1234567891011>>

/freebsd-10.0-release/usr.sbin/faithd/
H A Dprefix.h1 /* $KAME: prefix.h,v 1.4 2001/09/05 03:04:21 itojun Exp $ */
33 struct prefix { struct
42 struct prefix match;
43 struct prefix dest;
44 struct prefix src; /* src to use for outgoing connection */
49 extern const char *prefix_string(const struct prefix *);
50 extern int prefix_match(const struct prefix *, const struct sockaddr *);
H A Dprefix.c1 /* $KAME: prefix.c,v 1.13 2003/09/02 22:50:17 itojun Exp $ */
48 #include "prefix.h"
50 static int prefix_set(const char *, struct prefix *, int);
61 prefix_set(const char *s, struct prefix *prefix, int slash) argument
83 if (res->ai_next || res->ai_addrlen > sizeof(prefix->a))
85 memcpy(&prefix->a, res->ai_addr, res->ai_addrlen);
87 switch (prefix->a.ss_family) {
101 prefix->l = (int)strtoul(q, &r, 10);
104 if (prefix
124 prefix_string(const struct prefix *prefix) argument
137 prefix_match(const struct prefix *prefix, const struct sockaddr *sa) argument
[all...]
/freebsd-10.0-release/contrib/wpa/src/eapol_auth/
H A Deapol_auth_dump.c121 void eapol_auth_dump_state(FILE *f, const char *prefix, argument
124 fprintf(f, "%sEAPOL state machine:\n", prefix);
125 fprintf(f, "%s aWhile=%d quietWhile=%d reAuthWhen=%d\n", prefix,
135 prefix, _SB(sm->authAbort), _SB(sm->authFail),
137 prefix, _SB(sm->authTimeout), _SB(sm->authSuccess),
139 prefix, _SB(sm->eap_if->eapSuccess),
142 prefix, _SB(sm->keyDone), _SB(sm->keyRun),
144 prefix, _SB(sm->eap_if->portEnabled), _SB(sm->portValid),
163 prefix, prefix, auth_pae_state_tx
[all...]
/freebsd-10.0-release/contrib/gdb/gdb/mi/
H A Dmi-console.h26 const char *prefix,
H A Dmi-getopt.h41 mi_getopt() calls ``error("%s: Unknown option %c", prefix,
45 extern int mi_getopt (const char *prefix, int argc, char **argv,
78 extern int mi_valid_noargs (const char *prefix, int argc, char **argv);
H A Dmi-getopt.c27 mi_getopt (const char *prefix, argument
63 error ("%s: Option %s requires an argument", prefix, arg);
75 error ("%s: Unknown option ``%s''", prefix, arg + 1);
79 mi_valid_noargs (const char *prefix, int argc, char **argv) argument
88 if (mi_getopt (prefix, argc, argv, opts, &optind, &optarg) == -1)
/freebsd-10.0-release/contrib/apr-util/
H A Dconfig.layout14 prefix: /usr/local/apr
15 exec_prefix: ${prefix}
20 mandir: ${prefix}/man
21 sysconfdir: ${prefix}/conf
22 datadir: ${prefix}
24 includedir: ${prefix}/include/apr-${APRUTIL_MAJOR_VERSION}
25 localstatedir: ${prefix}
31 prefix: /usr/local/apr
32 exec_prefix: ${prefix}
37 mandir: ${prefix}/ma
[all...]
/freebsd-10.0-release/contrib/apr/
H A Dconfig.layout14 prefix: /usr/local/apr
15 exec_prefix: ${prefix}
20 mandir: ${prefix}/man
21 sysconfdir: ${prefix}/conf
22 datadir: ${prefix}
24 includedir: ${prefix}/include/apr-${APR_MAJOR_VERSION}
25 localstatedir: ${prefix}
31 prefix: /usr/local/apr
32 exec_prefix: ${prefix}
37 mandir: ${prefix}/ma
[all...]
/freebsd-10.0-release/usr.bin/systat/
H A Dmode.c76 if (prefix(cmd, "mode")) {
81 } else if (prefix(args, "rate")) {
83 } else if (prefix(args, "delta")) {
85 } else if (prefix(args, "since")) {
87 } else if (prefix(args, "absolute")) {
94 if(prefix(cmd, "reset")) {
H A Difcmds.c50 if (prefix(cmd, "scale")) {
59 } else if (prefix(cmd, "match")) {
73 } else if (prefix(cmd, "pps"))
/freebsd-10.0-release/usr.sbin/rtadvd/
H A Dconfig.h39 extern void delete_prefix(struct prefix *);
40 extern void invalidate_prefix(struct prefix *);
41 extern void update_prefix(struct prefix *);
47 * it is highly unlikely to have 100 prefix information options,
/freebsd-10.0-release/etc/rc.d/
H A Dfaith27 for prefix in ${ipv6_faith_prefix}; do
28 prefixlen=`expr "${prefix}" : ".*/\(.*\)"`
34 prefix=`expr "${prefix}" : \
38 route add -inet6 ${prefix} -prefixlen ${prefixlen} ::1
39 route change -inet6 ${prefix} -prefixlen ${prefixlen} \
57 for prefix in ${ipv6_faith_prefix}; do
58 prefixlen=`expr "${prefix}" : ".*/\(.*\)"`
64 prefix=`expr "${prefix}"
[all...]
/freebsd-10.0-release/crypto/heimdal/tools/
H A Dkrb5-config.in57 --prefix=*)
58 prefix=`echo $i | sed 's/^--prefix=//'`
60 --prefix)
63 --exec-prefix=*)
64 exec_prefix=`echo $i | sed 's/^--exec-prefix=//'`
66 --exec-prefix)
99 echo "options: [--prefix[=dir]] [--exec-prefix[=dir]] [--libs] [--cflags]"
104 if test "$prefix"
[all...]
/freebsd-10.0-release/contrib/tcsh/
H A Dsvn9 def print_output(cmd, prefix):
15 print prefix + line.strip() + term
25 prefix = "file:/"
30 print_output("svn ls " + "file://" + dir, prefix + "/" + dir)
31 print_output("ls -d /" + dir + "*", prefix)
/freebsd-10.0-release/contrib/gcc/
H A Dmkmap-flat.awk25 prefix = "_";
27 prefix = "";
80 sym = prefix $1;
H A Dprefix.c23 the directory format and to handle any prefix translation.
25 This file must be compiled with -DPREFIX= to specify the "prefix"
27 prefix, it will not be affected other than by directory canonicalization.
30 a translation prefix and consist of the name of the package that contains
33 If the prefix is not specified, the filename will only undergo
37 by the specified prefix (with a '@' in front unless the prefix begins
75 #include "prefix.h"
94 const char *prefix = 0; local
98 prefix
190 const char *prefix; local
354 set_std_prefix(const char *prefix, int len) argument
[all...]
/freebsd-10.0-release/contrib/amd/scripts/
H A Dwait4amd.in20 prefix=@prefix@
/freebsd-10.0-release/contrib/gdb/gdb/cli/
H A Dcli-setshow.h36 char *prefix);
/freebsd-10.0-release/contrib/ncurses/misc/
H A Dncurses-config.in33 prefix="@prefix@"
62 --prefix=*)
63 prefix="$ARG"
66 --prefix)
67 echo "$prefix"
69 --exec-prefix=*)
72 --exec-prefix)
78 if test "${prefix}/include" != /usr/include ; then
79 INCS="-I${prefix}/includ
[all...]
/freebsd-10.0-release/contrib/dialog/
H A Ddialog-config.in31 prefix="@prefix@"
56 --prefix=*)
57 prefix="$ARG"
60 --prefix)
61 echo "$prefix"
63 --exec-prefix=*)
66 --exec-prefix)
72 if test "${prefix}/include" != /usr/include ; then
73 INCS="-I${prefix}/includ
[all...]
/freebsd-10.0-release/sys/cddl/compat/opensolaris/kern/
H A Dopensolaris_cmn_err.c35 const char *prefix; local
37 prefix = NULL; /* silence unwitty compilers */
40 prefix = "Solaris(cont): ";
43 prefix = "Solaris: NOTICE: ";
46 prefix = "Solaris: WARNING: ";
49 prefix = "Solaris(panic): ";
58 panic("%s%s", prefix, buf);
61 printf("%s", prefix);
/freebsd-10.0-release/contrib/com_err/
H A Dparse.y104 free(prefix);
105 asprintf (&prefix, "%s_", $2);
106 if (prefix == NULL)
112 prefix = realloc(prefix, 1);
113 if (prefix == NULL)
115 *prefix = '\0';
126 if(prefix && *prefix != '\0') {
127 asprintf (&ec->name, "%s%s", prefix,
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/com_err/
H A Dparse.y104 free(prefix);
105 asprintf (&prefix, "%s_", $2);
106 if (prefix == NULL)
112 prefix = realloc(prefix, 1);
113 if (prefix == NULL)
115 *prefix = '\0';
126 if(prefix && *prefix != '\0') {
127 asprintf (&ec->name, "%s%s", prefix,
[all...]
/freebsd-10.0-release/contrib/ipfilter/lib/
H A Dprintfraginfo.c15 printfraginfo(prefix, ifr)
16 char *prefix;
22 PRINTF("%s", prefix);
/freebsd-10.0-release/bin/sh/
H A Dmystring.h38 int prefix(const char *, const char *);

Completed in 124 milliseconds

1234567891011>>