Searched refs:ctl (Results 1 - 25 of 147) sorted by relevance

123456

/freebsd-9.3-release/lib/libc/db/test/hash.tests/
H A Dtread2.c64 HASHINFO ctl; local
69 ctl.nelem = INITIAL;
70 ctl.hash = NULL;
71 ctl.bsize = 64;
72 ctl.ffactor = 1;
73 ctl.cachesize = atoi(*argv++);
74 ctl.lorder = 0;
75 if (!(dbp = dbopen( "hashtest", O_RDONLY, 0400, DB_HASH, &ctl))) {
H A Dtverify.c64 HASHINFO ctl; local
70 ctl.nelem = INITIAL;
71 ctl.hash = NULL;
72 ctl.bsize = 64;
73 ctl.ffactor = 1;
74 ctl.cachesize = 1024 * 1024; /* 1 MEG */
75 ctl.lorder = 0;
76 if (!(dbp = dbopen( "hashtest", O_RDONLY, 0400, DB_HASH, &ctl))) {
H A Dtcreat3.c60 HASHINFO ctl; local
67 ctl.hash = NULL;
68 ctl.bsize = atoi(*argv++);
69 ctl.ffactor = atoi(*argv++);
70 ctl.nelem = atoi(*argv++);
71 ctl.lorder = 0;
73 O_CREAT|O_TRUNC|O_RDWR, 0600, DB_HASH, &ctl))){
H A Dtdel.c61 HASHINFO ctl; local
68 ctl.nelem = INITIAL;
69 ctl.hash = NULL;
70 ctl.bsize = atoi(*argv++);
71 ctl.ffactor = atoi(*argv++);
72 ctl.cachesize = 1024 * 1024; /* 1 MEG */
73 ctl.lorder = 0;
75 if (!(dbp = dbopen( NULL, O_CREAT|O_RDWR, 0400, DB_HASH, &ctl))) {
H A Dthash4.c63 HASHINFO ctl; local
71 ctl.hash = NULL;
72 ctl.bsize = atoi(*argv++);
73 ctl.ffactor = atoi(*argv++);
74 ctl.nelem = atoi(*argv++);
75 ctl.cachesize = atoi(*argv++);
76 ctl.lorder = 0;
77 if (!(dbp = dbopen( NULL, O_CREAT|O_RDWR, 0400, DB_HASH, &ctl))) {
/freebsd-9.3-release/tools/tools/netmap/
H A DMakefile6 PROGS = pkt-gen bridge vale-ctl
31 vale-ctl: vale-ctl.o
32 $(CC) $(CFLAGS) -o vale-ctl vale-ctl.o
/freebsd-9.3-release/contrib/amd/scripts/
H A DMakefile.am11 ctl-amd \
12 ctl-hlfsd \
35 ctl-amd.in \
36 ctl-hlfsd.in \
H A Dctl-amd.in3 # usage: ctl-amd [start|stop|status|restart|condrestart|reload]
111 ctl-amd stop
118 ctl-amd start
124 ctl-amd stop
125 ctl-amd start
/freebsd-9.3-release/sys/cam/ctl/
H A Dctl_backend.c30 * $Id: //depot/users/kenm/FreeBSD-test2/sys/cam/ctl/ctl_backend.c#3 $
54 #include <cam/ctl/ctl_io.h>
55 #include <cam/ctl/ctl.h>
56 #include <cam/ctl/ctl_frontend.h>
57 #include <cam/ctl/ctl_backend.h>
58 #include <cam/ctl/ctl_frontend_internal.h>
59 #include <cam/ctl/ctl_ioctl.h>
60 #include <cam/ctl/ctl_ha.h>
61 #include <cam/ctl/ctl_privat
[all...]
H A Dctl_frontend.c30 * $Id: //depot/users/kenm/FreeBSD-test2/sys/cam/ctl/ctl_frontend.c#4 $
55 #include <cam/ctl/ctl_io.h>
56 #include <cam/ctl/ctl.h>
57 #include <cam/ctl/ctl_frontend.h>
58 #include <cam/ctl/ctl_frontend_internal.h>
59 #include <cam/ctl/ctl_backend.h>
61 #include <cam/ctl/ctl_ioctl.h>
62 #include <cam/ctl/ctl_ha.h>
63 #include <cam/ctl/ctl_privat
[all...]
/freebsd-9.3-release/contrib/ipfilter/ipsend/
H A Ddlcommon.c49 struct strbuf ctl; local
54 ctl.maxlen = 0;
55 ctl.len = sizeof (info_req);
56 ctl.buf = (char *) &info_req;
60 if (putmsg(fd, &ctl, (struct strbuf*) NULL, flags) < 0)
70 struct strbuf ctl; local
73 ctl.maxlen = MAXDLBUF;
74 ctl.len = 0;
75 ctl.buf = bufp;
77 strgetmsg(fd, &ctl, (struc
99 struct strbuf ctl; local
123 struct strbuf ctl; local
152 struct strbuf ctl; local
179 struct strbuf ctl; local
202 struct strbuf ctl; local
224 struct strbuf ctl; local
248 struct strbuf ctl; local
274 struct strbuf ctl; local
299 struct strbuf ctl; local
330 struct strbuf data, ctl; local
359 struct strbuf ctl; local
380 struct strbuf ctl; local
409 struct strbuf ctl; local
438 struct strbuf ctl; local
464 struct strbuf ctl; local
[all...]
/freebsd-9.3-release/sys/dev/sound/pci/hda/
H A Dhdaa.h209 struct hdaa_audio_ctl *ctl; member in struct:hdaa_devinfo
243 #define MINQDB(ctl) \
244 ((0 - (ctl)->offset) * ((ctl)->size + 1))
246 #define MAXQDB(ctl) \
247 (((ctl)->step - (ctl)->offset) * ((ctl)->size + 1))
249 #define RANGEQDB(ctl) \
250 ((ctl)
[all...]
H A Dhdaa.c203 index == NULL || devinfo->ctl == NULL ||
207 return (&devinfo->ctl[(*index)++]);
214 struct hdaa_audio_ctl *ctl; local
217 if (devinfo == NULL || devinfo->ctl == NULL)
221 while ((ctl = hdaa_audio_ctl_each(devinfo, &i)) != NULL) {
222 if (ctl->enable == 0)
224 if (ctl->widget->nid != nid)
226 if (dir && ctl->ndir != dir)
228 if (index >= 0 && ctl->ndir == HDAA_CTL_IN &&
229 ctl
248 struct hdaa_audio_ctl *ctl; local
1283 hdaa_audio_ctl_amp_set(struct hdaa_audio_ctl *ctl, uint32_t mute, int left, int right) argument
1927 hdaa_audio_ctl_dev_set(struct hdaa_audio_ctl *ctl, int ossdev, int mute, int *left, int *right) argument
1961 struct hdaa_audio_ctl *ctl; local
2038 struct hdaa_audio_ctl *ctl; local
2288 struct hdaa_audio_ctl *ctl; local
2364 struct hdaa_audio_ctl *ctl; local
3758 struct hdaa_audio_ctl *ctl; local
3892 struct hdaa_audio_ctl *ctl; local
4021 struct hdaa_audio_ctl *ctl; local
4123 struct hdaa_audio_ctl *ctl; local
4230 struct hdaa_audio_ctl *ctl; local
4711 struct hdaa_audio_ctl *ctl; local
5157 struct hdaa_audio_ctl *ctl; local
5744 struct hdaa_audio_ctl *ctl; local
[all...]
/freebsd-9.3-release/sys/modules/ctl/
H A DMakefile3 .PATH: ${.CURDIR}/../../cam/ctl
5 KMOD= ctl
7 SRCS= ctl.c
/freebsd-9.3-release/contrib/libpcap/
H A Dpcap-enet.c154 struct eniocb ctl; local
174 if (ioctl(if_fd, EIOCGETP, (char *)&ctl) == -1) {
182 ctl.en_rtout = 1 * ctl.en_hz;
183 ctl.en_tr_etherhead = 1;
184 ctl.en_tap_network = 1;
185 ctl.en_multi_packet = 1;
186 ctl.en_maxlen = BUFSPACE;
188 ctl.en_rtout = 64; /* randomly picked value for HZ */
190 if (ioctl(if_fd, EIOCSETP, &ctl)
[all...]
H A Dpcap-dlpi.c176 static struct strbuf ctl = { variable in typeref:struct:strbuf
221 if (getmsg(p->fd, &ctl, &data, &flags) < 0) {
960 struct strbuf ctl; local
963 ctl.maxlen = 0;
964 ctl.len = len;
965 ctl.buf = ptr;
968 if (putmsg(fd, &ctl, (struct strbuf *) NULL, flags) < 0) {
981 struct strbuf ctl; local
991 ctl.maxlen = MAXDLBUF;
992 ctl
1336 struct strbuf ctl, data; local
1445 struct strbuf ctl; local
[all...]
/freebsd-9.3-release/usr.sbin/mount_portalfs/
H A Dactivate.c102 } ctl; local
123 ctl.cmsg.cmsg_len = CMSG_LEN(sizeof(int));
124 ctl.cmsg.cmsg_level = SOL_SOCKET;
125 ctl.cmsg.cmsg_type = SCM_RIGHTS;
126 *((int *)CMSG_DATA(&ctl.cmsg)) = fd;
127 msg.msg_control = (caddr_t) &ctl;
128 msg.msg_controllen = ctl.cmsg.cmsg_len;
/freebsd-9.3-release/sys/x86/x86/
H A Dmca.c493 uint64_t ctl; local
499 ctl = rdmsr(MSR_MC_CTL2(bank));
510 limit = ctl & MC_CTL2_THRESHOLD;
514 ctl &= ~MC_CTL2_THRESHOLD;
515 ctl |= limit;
546 if ((ctl & MC_CTL2_THRESHOLD) != limit) {
547 ctl &= ~MC_CTL2_THRESHOLD;
548 ctl |= limit;
764 uint64_t ctl; local
768 ctl
776 wrmsr(MSR_MC_CTL2(i), ctl); local
787 wrmsr(MSR_MC_CTL2(i), ctl); local
794 wrmsr(MSR_MC_CTL2(i), ctl); local
808 uint64_t ctl; local
821 wrmsr(MSR_MC_CTL2(i), ctl); local
833 uint64_t ctl, mask; local
884 wrmsr(MSR_MC_CTL(i), ctl); local
[all...]
/freebsd-9.3-release/sys/boot/i386/libi386/
H A Dbiosmem.c56 v86.ctl = V86_FLAGS;
98 v86.ctl = 0;
107 v86.ctl = V86_FLAGS;
116 v86.ctl = 0;
H A Dtime.c47 v86.ctl = 0;
101 v86.ctl = 0;
H A Dvidconsole.c127 v86.ctl = 0;
200 v86.ctl = 0;
214 v86.ctl = 0;
225 v86.ctl = 0;
246 v86.ctl = 0;
260 v86.ctl = 0;
282 v86.ctl = 0;
294 v86.ctl = 0;
501 v86.ctl = 0;
515 v86.ctl
[all...]
/freebsd-9.3-release/usr.bin/talk/
H A DMakefile5 SRCS= ctl.c ctl_transact.c display.c get_addrs.c get_iface.c get_names.c \
/freebsd-9.3-release/usr.sbin/ctladm/
H A DMakefile5 .PATH: ${.CURDIR}/../../sys/cam/ctl
/freebsd-9.3-release/tools/tools/net80211/wesside/dics/
H A Ddics.c115 } ctl; local
121 memset(&ctl, 0, sizeof(ctl));
126 msg.msg_control = &ctl;
127 msg.msg_controllen = sizeof(ctl);
138 if ( ctl.hdr.cmsg_level != IPPROTO_IP ||
140 ctl.hdr.cmsg_type != IP_TTL
142 ctl.hdr.cmsg_type != IP_RECVTTL
147 ctl.hdr.cmsg_len, ctl
[all...]
/freebsd-9.3-release/sys/boot/i386/common/
H A Ddrv.c40 v86.ctl = V86_FLAGS;
72 v86.ctl = V86_FLAGS;
79 v86.ctl = V86_ADDR | V86_CALLF | V86_FLAGS;
106 v86.ctl = V86_FLAGS;

Completed in 224 milliseconds

123456