HomeSort by relevance Sort by last modified time
    Searched refs:interface (Results 1 - 25 of 262) sorted by null

1 2 3 4 5 6 7 8 91011

  /onnv/onnv-gate/usr/src/stand/lib/crypto/
README 40 output from the link-editor is not considered a 'stable interface' and may
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.lib/in.ripngd/
interface.h 37 struct interface { struct
38 struct interface *int_next;
45 char *int_ifbase; /* name of physical interface */
47 int int_ifindex; /* interface index */
55 #define RIP6_IFF_UP 0x1 /* interface is up */
56 #define RIP6_IFF_POINTOPOINT 0x2 /* interface is p-to-p link */
59 #define RIP6_IFF_PRIVATE 0x10 /* interface is private */
64 extern struct interface *if_ifwithname(char *);
65 extern void if_purge(struct interface *);
table.h 56 struct interface *rt_ifp; /* interface to take */
71 #define RTS_INTERFACE 0x2 /* route is for network interface */
83 boolean_t, struct interface *);
85 struct interface *);
92 extern void rtpurgeif(struct interface *);
defs.h 76 #include "interface.h"
132 extern struct interface *ifnet;
149 extern void dynamic_update(struct interface *);
150 extern void in_data(struct interface *);
152 extern void sendpacket(struct sockaddr_in6 *, struct interface *,
156 extern void supply(struct sockaddr_in6 *, struct interface *,
159 struct interface *, boolean_t);
if.c 43 * Find the interface with given name.
45 struct interface *
48 struct interface *ifp;
59 * An interface has declared itself down - remove it completely
60 * from our routing tables but keep the interface structure around.
63 if_purge(struct interface *pifp)
72 struct interface *ifp;
92 (void) fprintf(fp, "interface %s:\n",
output.c 47 supplyall(struct sockaddr_in6 *sin6, int rtstate, struct interface *skipif,
50 struct interface *ifp;
59 "on %s (no route exchange on interface)\n",
76 solicit(struct sockaddr_in6 *sin6, struct interface *ifp)
89 struct interface *ifp;
98 "on %s (no route exchange on interface)\n",
116 sendpacket(struct sockaddr_in6 *sin6, struct interface *ifp, int size,
133 supply(struct sockaddr_in6 *sin6, struct interface *ifp, int rtstate,
147 * on the outgoing interface.
  /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/include/
Hash.h 8 #pragma interface
ConsoleOutput.h 9 #pragma interface
MessageTable.h 9 #pragma interface
SOEntityCatalog.h 9 #pragma interface
LiteralStorage.h 8 #pragma interface
NotationStorage.h 8 #pragma interface
Win32CodingSystem.h 9 #pragma interface
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/sbin/netstrategy/
netstrategy.c 37 * stdout: <root fs type> <interface name> <net config strategy>.
40 * <interface name> - "hme0" or "none"
50 * <interface name> is the 16 char name of the root interface, and is only
51 * set if rarp/dhcp was used to configure the interface.
55 * interface. Is "none" if no interface was configured using a
123 * interface in the case of a diskless boot.
126 * XXX non-diskless case requires "network-interface"?
170 static char interface[LIFNAMSIZ] local
257 char *root, *interface, *strategy, dummy; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.routed/
defs.h 59 * use of per-interface ip_forwarding state.
112 #define CHECK_BAD_INTERVAL 5 /* when an interface is known bad */
169 * IF_NAME_LEN is the maximum size of interface names represented within
174 * interface names as well.
192 RO_IF, /* interface route */
200 struct interface *rts_ifp;
222 #define RS_IF 0x0001 /* for network interface */
252 * not unbroken interface routes but not broken interfaces
296 * number. This will consist of zero or one "main" interface plus
302 struct interface *phyi_interface
317 struct interface { struct
    [all...]
  /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/generic/
EventGenerator.h 9 #pragma interface
ParserEventGeneratorKit.h 9 #pragma interface
  /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/lib/
StringVectorMessageArg.h 9 #pragma interface
NumericCharRefOrigin.h 5 #pragma interface
TokenMessageArg.h 8 #pragma interface
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/lib/nwamd/
functions.h 30 /* door.c: door-based control/status interface */
58 /* interface.c: interface and upper layer profile handling */
60 extern struct interface *add_interface(sa_family_t, const char *, uint64_t);
62 extern struct interface *get_interface(const char *);
63 extern void walk_interface(void (*)(struct interface *, void *), void *);
68 extern boolean_t interface_is_active(const struct interface *);
75 extern void start_if_info_collect(struct interface *, void *);
  /onnv/onnv-gate/usr/src/lib/
README.mapfiles 33 typically occur as libraries are evolved, and shows how interface
37 1. Make interface additions to an existing library
38 - add a Public interface
39 - add a Private interface
40 2. Update an interface in an existing library
41 - remove an existing interface
42 - promote a Private interface to Public
43 - scope a Private interface to local
44 - move an interface from one library to another
66 for ABI (Application Binary Interface) purposes. For these purposes, w
    [all...]
  /onnv/onnv-gate/usr/src/cmd/lp/lib/printers/
okprinter.c 56 * A printer can't be remote and have device, interface,
63 || prbufp->interface
84 * A local printer must have an interface program. This is
86 * interface program came from) AND is used by "putprinter()"
87 * to copy the interface program. We must be able to read it.
126 ** okinterface() - CHECK THAT THE INTERFACE PROGRAM IS OKAY
143 if (prbufp->interface)
144 ret = canread(prbufp->interface);
  /onnv/onnv-gate/usr/src/cmd/abi/spectrans/spec2map/
bucket.c 54 static void print_iface(const Interface *);
204 * add_by_name -- look up bucket and add an interface to it.
213 * if interface ore version is NULL, then
222 add_by_name(const char *version, const Interface *interface)
228 assert(interface != NULL, "passed a null interface to add_by_name");
231 print_iface(interface);
248 (void) snprintf(buffer, sizeof (buffer), "%s", interface->IF_name);
250 if (interface->IF_filter && interface->IF_auxiliary)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/etc/init.d/
ncakmod 36 # Function used to parse the interface names from /etc/hostname.* entries
72 # Need to expand interface (ie. iprb)
73 interface="`echo /etc/hostname.$i*[0-9] \
76 interfaces="$interfaces $interface"

Completed in 3420 milliseconds

1 2 3 4 5 6 7 8 91011