Searched refs:broadcast (Results 1 - 25 of 88) sorted by relevance

1234

/freebsd-current/contrib/ntp/conf/
H A Dgrundoon.conf10 broadcast 128.4.2.255 key 5 # brpadcast on LAN shared key
11 broadcast 239.1.1.2 autokey # multicast on WAN autokey
H A Drackety.conf6 # clocks and providing service via multicast, broadcast, manycast and
28 broadcast 224.0.1.1 autokey # multicast
29 broadcast 128.4.1.255 autokey # local subnet broadcast
/freebsd-current/sys/compat/linuxkpi/common/include/net/
H A Dipv6.h51 ipv6_ib_mc_map(const struct in6_addr *addr, const unsigned char *broadcast, argument
56 scope = broadcast[5] & 0xF;
65 buf[8] = broadcast[8];
66 buf[9] = broadcast[9];
/freebsd-current/sys/ofed/drivers/infiniband/ulp/ipoib/
H A Dipoib_multicast.c164 /* Set the cached Q_Key before we attach if it's the broadcast group */
168 if (!priv->broadcast) {
172 priv->qkey = be32_to_cpu(priv->broadcast->mcmember.qkey);
370 if (mcast == priv->broadcast)
438 rec.qkey = priv->broadcast->mcmember.qkey;
440 rec.mtu = priv->broadcast->mcmember.mtu;
441 rec.traffic_class = priv->broadcast->mcmember.traffic_class;
443 rec.rate = priv->broadcast->mcmember.rate;
444 rec.sl = priv->broadcast->mcmember.sl;
445 rec.flow_label = priv->broadcast
505 struct ipoib_mcast *broadcast; local
718 ipoib_mcast_addr_is_valid(const u8 *addr, unsigned int addrlen, const u8 *broadcast) argument
[all...]
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/
H A Dget.ipv4remote.pl63 # assume output is "inet X ... broadcast Z":
64 if (/inet (\S+) .* broadcast (\S+)/) {
/freebsd-current/usr.sbin/bootparamd/callbootd/
H A Dcallbootd.c26 static int broadcast; variable
84 if ( ! strcmp(server , "all") ) broadcast = 1;
86 if ( ! broadcast ) {
100 if (! broadcast ) {
123 if (! broadcast ) {
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Utility/
H A DPredicate.h28 eBroadcastNever, ///< No broadcast will be sent when the value is modified.
29 eBroadcastAlways, ///< Always send a broadcast when the value is modified.
30 eBroadcastOnChange ///< Only broadcast if the value changes when the value is
80 /// way and broadcast if needed.
86 /// A value indicating when and if to broadcast. See the
202 /// Check to see if we need to broadcast to our condition variable
205 /// If \a broadcast_type is eBroadcastNever, no broadcast will be
209 /// will always be broadcast.
212 /// variable be broadcast if the owned value changes.
214 bool broadcast local
[all...]
/freebsd-current/contrib/libevent/include/event2/
H A Dthread.h151 /** Function to signal a condition variable. If 'broadcast' is 1, all
157 int (*signal_condition)(void *cond, int broadcast);
/freebsd-current/contrib/ntp/sntp/libevent/include/event2/
H A Dthread.h151 /** Function to signal a condition variable. If 'broadcast' is 1, all
157 int (*signal_condition)(void *cond, int broadcast);
/freebsd-current/share/examples/ipfilter/
H A Dmkfilters111 if (/broadcast/) {
112 ($bcast{$iface} = $_) =~ s/.*broadcast ([^ ]+).*/$1/;
/freebsd-current/contrib/ntp/libntp/lib/isc/include/isc/
H A Dinterfaceiter.h56 isc_netaddr_t broadcast; /*&< Broadcast address. */ member in struct:isc_interface
/freebsd-current/sys/ofed/include/rdma/
H A Dib_addr.h86 * @broadcast: Broadcast address of the device.
96 unsigned char broadcast[MAX_ADDR_LEN]; member in struct:rdma_dev_addr
157 return ((u16)dev_addr->broadcast[8] << 8) | (u16)dev_addr->broadcast[9];
162 dev_addr->broadcast[8] = pkey >> 8;
163 dev_addr->broadcast[9] = (unsigned char) pkey;
169 memcpy(gid, dev_addr->broadcast + 4, sizeof *gid);
/freebsd-current/contrib/libevent/
H A Devthread_pthread.c125 evthread_posix_cond_signal(void *cond_, int broadcast) argument
129 if (broadcast)
H A Devthread_win32.c146 evthread_win32_condvar_signal(void *cond, int broadcast) argument
149 if (broadcast)
218 evthread_win32_cond_signal(void *cond_, int broadcast) argument
222 if (broadcast)
/freebsd-current/contrib/ntp/sntp/libevent/
H A Devthread_pthread.c125 evthread_posix_cond_signal(void *cond_, int broadcast) argument
129 if (broadcast)
H A Devthread_win32.c146 evthread_win32_condvar_signal(void *cond, int broadcast) argument
149 if (broadcast)
218 evthread_win32_cond_signal(void *cond_, int broadcast) argument
222 if (broadcast)
/freebsd-current/lib/libifconfig/
H A Dlibifconfig_inet.c85 /* Set the broadcast */
87 addr->broadcast = (struct sockaddr_in *)ifa->ifa_broadaddr;
/freebsd-current/sys/net/
H A Dif_infiniband.c70 const uint8_t *broadcast, uint8_t *buf)
75 scope = broadcast[5] & 0xF;
85 buf[8] = broadcast[8];
86 buf[9] = broadcast[9];
103 const uint8_t *broadcast, uint8_t *buf)
107 scope = broadcast[5] & 0xF;
117 buf[8] = broadcast[8];
118 buf[9] = broadcast[9];
69 infiniband_ipv4_multicast_map(uint32_t addr, const uint8_t *broadcast, uint8_t *buf) argument
102 infiniband_ipv6_multicast_map(const struct in6_addr *addr, const uint8_t *broadcast, uint8_t *buf) argument
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Core/
H A DThreadedCommunication.h42 /// will broadcast a \b eBroadcastBitReadThreadGotBytes event. Clients that
45 /// broadcast parameter set to false. This will cause the \b
46 /// eBroadcastBitReadThreadGotBytes event not get broadcast, and then the
51 /// gets broadcast. If the read thread exits a \b
52 /// eBroadcastBitReadThreadDidExit event will be broadcast. Clients can also
166 /// broadcast);
178 /// size_t len, bool broadcast);
198 /// broadcast a \b eBroadcastBitReadThreadGotBytes event.
255 /// event to be broadcast if \a broadcast i
[all...]
/freebsd-current/crypto/openssl/crypto/bn/asm/
H A Dsparcv9-gf2m.pl96 srax $a4,63,@i[1] ! broadcast 61st bit
99 srax $a2,63,@i[0] ! broadcast 62nd bit
101 srax $a1,63,$lo ! broadcast 63rd bit
/freebsd-current/contrib/llvm-project/lldb/source/Core/
H A DThreadedCommunication.cpp240 bool broadcast,
245 "broadcast = {3})",
246 this, bytes, (uint64_t)len, broadcast); local
251 // If the user registered a callback, then call it and do not broadcast
256 if (broadcast)
239 AppendBytesToCache(const uint8_t *bytes, size_t len, bool broadcast, ConnectionStatus status) argument
/freebsd-current/contrib/netbsd-tests/lib/libpthread/
H A Dt_cond.c383 ATF_TC(broadcast); variable
384 ATF_TC_HEAD(broadcast, tc)
389 ATF_TC_BODY(broadcast, tc)
666 ATF_TP_ADD_TC(tp, broadcast);
/freebsd-current/sbin/dump/
H A Ddump.h90 void broadcast(const char *message);
/freebsd-current/sys/dev/enic/
H A Dvnic_dev.h96 int broadcast, int promisc, int allmulti);
98 int multicast, int broadcast, int promisc, int allmulti);
/freebsd-current/usr.sbin/ypbind/
H A Dypbind.c95 void broadcast(struct _dom_binding *);
482 broadcast(ypbindlist);
580 broadcast(ypdb);
659 broadcast(struct _dom_binding *ypdb) function
713 * gets to be our server. Note that this is not a broadcast
768 * we invalidate this binding entry and send out a broadcast to try to
799 broadcast(ypdb);
815 broadcast(ypdb);
884 broadcast(ypdb);

Completed in 178 milliseconds

1234