Searched refs:maddr (Results 1 – 7 of 7) sorted by relevance
/external/nist-sip/java/gov/nist/javax/sip/address/ |
D | SipUri.java | 768 NameValue maddr = uriParms.getNameValue(MADDR); in getMAddrParam() local 769 if (maddr == null) in getMAddrParam() 771 String host = (String) maddr.getValueAsObject(); in getMAddrParam() 912 public void setMAddrParam(String maddr) throws ParseException { in setMAddrParam() argument 913 if (maddr == null) in setMAddrParam() 915 setParameter("maddr", maddr); in setMAddrParam()
|
/external/mdnsresponder/mDNSShared/ |
D | DebugServices.c | 2829 mDNSAddr maddr; in DebugServicesTest() local 2831 memset( &maddr, 0, sizeof( maddr ) ); in DebugServicesTest() 2832 maddr.type = mDNSAddrType_IPv4; in DebugServicesTest() 2833 maddr.ip.v4.b[ 0 ] = 127; in DebugServicesTest() 2834 maddr.ip.v4.b[ 1 ] = 0; in DebugServicesTest() 2835 maddr.ip.v4.b[ 2 ] = 0; in DebugServicesTest() 2836 maddr.ip.v4.b[ 3 ] = 1; in DebugServicesTest() 2837 DebugSNPrintF( s, sizeof( s ), "%#a", &maddr ); in DebugServicesTest() 2840 memset( &maddr, 0, sizeof( maddr ) ); in DebugServicesTest() 2841 maddr.type = mDNSAddrType_IPv6; in DebugServicesTest() [all …]
|
/external/iptables/extensions/ |
D | libxt_cluster.man | 40 ip maddr add 01:00:5e:00:01:01 dev eth1 42 ip maddr add 01:00:5e:00:01:02 dev eth2
|
/external/llvm/test/CodeGen/Mips/msa/ |
D | 3rf_4rf_q.ll | 67 %3 = tail call <8 x i16> @llvm.mips.maddr.q.h(<8 x i16> %0, <8 x i16> %1, <8 x i16> %2) 72 declare <8 x i16> @llvm.mips.maddr.q.h(<8 x i16>, <8 x i16>, <8 x i16>) nounwind 92 %3 = tail call <4 x i32> @llvm.mips.maddr.q.w(<4 x i32> %0, <4 x i32> %1, <4 x i32> %2) 97 declare <4 x i32> @llvm.mips.maddr.q.w(<4 x i32>, <4 x i32>, <4 x i32>) nounwind
|
/external/autotest/client/bin/net/ |
D | net_utils.py | 328 def add_maddr(self, maddr): argument 329 utils.system('ip maddr add %s dev %s' % (maddr, self._name)) 332 def del_maddr(self, maddr): argument 333 utils.system('ip maddr del %s dev %s' % (maddr, self._name))
|
D | net_utils_unittest.py | 732 maddr = '01:00:5e:00:00:01' 733 cmd = 'ip maddr add %s dev %s' % (maddr, mock_netif._name) 735 mock_netif.add_maddr(maddr) 741 maddr = '01:00:5e:00:00:01' 742 cmd = 'ip maddr del %s dev %s' % (maddr, mock_netif._name) 744 mock_netif.del_maddr(maddr)
|
/external/iproute2/doc/ |
D | ip-cref.tex | 512 \verb|ip maddr ls| in~Sec.\ref{IP-MADDR} (p.\pageref{IP-MADDR} of this 2311 kuznet@alisa:~ $ ip maddr ls dummy 2330 with \verb|ip maddr add|. See the following subsection. 2362 netadm@alisa:~ # ip maddr add 33:33:00:00:00:01 dev dummy 2363 netadm@alisa:~ # ip -0 maddr ls dummy 2367 netadm@alisa:~ # ip maddr del 33:33:00:00:00:01 dev dummy
|