Searched refs:interface (Results 1 - 25 of 102) sorted by relevance

12345

/osnet-11/usr/src/lib/libsocket/inet/
H A Dsourcefilter.c41 getsourcefilter(int s, uint32_t interface, struct sockaddr *group, argument
56 gf->gf_interface = interface;
101 setsourcefilter(int s, uint32_t interface, struct sockaddr *group, argument
137 gf->gf_interface = interface;
158 getipv4sourcefilter(int s, struct in_addr interface, struct in_addr group, argument
172 imsf->imsf_interface = interface;
197 setipv4sourcefilter(int s, struct in_addr interface, struct in_addr group, argument
212 imsf->imsf_interface = interface;
/osnet-11/usr/src/lib/efcode/engine/
H A DMakefile.com28 OBJECTS = init.o interface.o signal.o forth.o fcode.o interp.o debug.o \
/osnet-11/usr/src/grub/grub2/grub-core/disk/
H A Dusbms.c58 int interface; member in struct:grub_usbms_dev
73 grub_usbms_reset (grub_usb_device_t dev, int interface) argument
76 u = grub_usb_control_msg (dev, 0x21, 255, 0, interface, 0, 0);
83 grub_usbms_detach (grub_usb_device_t usbdev, int config, int interface) argument
88 && grub_usbms_devices[i]->interface == interface
128 grub_usbms_devices[curnum]->interface = interfno;
132 /* Iterate over all endpoints of this interface, at least a
347 grub_usbms_reset (dev->dev, dev->interface);
364 grub_usbms_reset (dev->dev, dev->interface);
[all...]
/osnet-11/usr/src/cmd/cmd-inet/usr.bin/pppstats/
H A Dpppstats.c3 * pppstats [-a|-d] [-v|-r|-z] [-c count] [-w wait] [interface]
107 static char *interface; variable
134 "Usage: %s [-a|-d] [-v|-r|-z] [-c count] [-w wait] [interface]\n",
167 strncpy(req.ifr_name, interface, sizeof(req.ifr_name));
193 strncpy(creq.ifr_name, interface, sizeof(creq.ifr_name));
315 * Print a running summary of interface statistics.
489 interface = PPP_DRV_NAME "0";
541 interface = argv[0];
543 if (sscanf(interface, PPP_DRV_NAME "%d", &unit) != 1) {
544 (void) fprintf(stderr, "%s: invalid interface '
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Time/
H A Dtm.pm29 This class is an internal interface only.
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dsigtrap.pm38 elsif ($_ eq 'old-interface-signals') {
73 @_ = qw(old-interface-signals);
132 use sigtrap qw(stack-trace old-interface-signals); # equivalent
145 The B<sigtrap> pragma is a simple interface to installing signal
205 =item B<old-interface-signals>
208 B<sigtrap> interface, they are ABRT, BUS, EMT, FPE, ILL, PIPE, QUIT,
247 Provide a stack trace for the old-interface-signals:
253 use sigtrap qw(stack-trace old-interface-signals);
H A DDirHandle.pm22 The C<DirHandle> method provide an alternative interface to the
H A DDigest.pm96 stronger algorithms as the one used grow weaker. Using the interface
99 All C<Digest::> modules provide the same programming interface. A
100 functional interface for simple use, as well as an object oriented
101 interface that can handle messages of arbitrary length and which can
127 The functional interface is simply importable functions with the same
310 The C<Digest::> interface is based on the interface originally
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CPAN/bin/
H A Dcpan25 This script provides a command interface (not a shell) to CPAN.pm.
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/IO/lib/IO/Socket/
H A DUNIX.pm72 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
80 C<IO::Socket::UNIX> provides an object interface to creating and using sockets
81 in the AF_UNIX domain. It is built upon the L<IO::Socket> interface and
/osnet-11/usr/src/grub/grub2/grub-core/kern/efi/
H A Defi.c46 void *interface; local
50 protocol, registration, &interface);
54 return interface;
108 void *interface; local
113 &interface,
120 return interface;
493 (unsigned) usb.interface);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/IO/lib/IO/
H A DDir.pm173 The first interface is an object approach. C<IO::Dir> provides an object
206 C<IO::Dir> also provides an interface to reading directories via a tied
207 hash. The tied hash extends the interface beyond just the directory
H A DPoll.pm136 IO::Poll - Object interface to system poll call
153 C<IO::Poll> is a simple interface to the system level poll routine.
H A DSocket.pm308 IO::Socket - Object interface to socket communications
316 C<IO::Socket> provides an object interface to creating and using sockets. It
317 is built upon the L<IO::Handle> interface and inherits all the methods defined
366 in attempt to make the interface more flexible. These are
/osnet-11/usr/src/lib/libnsl/dial/
H A Dcallers.c38 static int interface(const char *);
209 if (interface(ca->CA_type)) {
210 DEBUG(5, "interface(%s) failed", ca->CA_type);
212 /* restore vanilla unix interface */
213 (void) interface("UNIX");
354 /* restore vanilla unix interface */
355 (void) interface("UNIX");
/osnet-11/usr/src/lib/libparted/
H A DMakefile.com71 $(LIBAMIGAFS)/interface.o \
72 $(LIBEXT2FS)/interface.o $(LIBEXT2FS)/ext2.o \
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/I18N/
H A DCollate.pm22 the I18N::Collate interface for comparing 8-bit scalar data
139 the I18N::Collate interface for comparing 8-bit scalar data
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Digest/MD5/
H A DMD5.pm35 push(@ISA, "Digest::Perl::MD5"); # make OO interface work
51 Digest::MD5 - Perl interface to the MD5 Algorithm
81 The C<Digest::MD5> module provide a procedural interface for simple
82 use, as well as an object oriented interface that can handle messages
123 The object oriented interface to C<Digest::MD5> is described in this
361 The original C<MD5> interface was written by Neil Winton
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Term/
H A DReadLine.pm3 Term::ReadLine - Perl interface to various C<readline> packages.
24 set up a common interface to whatever Readline emerges with time.
89 minimal interface: C<appname> should be present if the first argument
105 All these commands are callable via method interface and have names
143 loaded. If the value is false, a dummy interface is used. If the value
/osnet-11/usr/src/grub/grub2/include/grub/
H A Dusb.h145 /* A driver is handling this interface. Do we need to support multiple drivers
146 for single interface?
150 void (*detach_hook) (struct grub_usb_device *dev, int config, int interface);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
H A DTerse.pm86 scratchpad datastructure, but the C<terse> interface doesn't have any
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/File/
H A Dstat.pm67 File::stat - by-name interface to Perl's built-in stat() functions
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/
H A DTime.pm100 Net::Time - time and daytime network client interface
H A Dprotoent.pm49 Net::protoent - by-name interface to Perl's built-in getproto*() functions
H A Dservent.pm51 Net::servent - by-name interface to Perl's built-in getserv*() functions

Completed in 68 milliseconds

12345