HomeSort by relevance Sort by last modified time
    Searched refs:IP (Results 126 - 150 of 595) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/go/linux-x86/src/net/
platform_test.go 20 case "ip+nopriv":
25 case "ip", "ip4", "ip6":
91 case "ip", "ip4", "ip6":
92 addr, err = ResolveIPAddr("ip", address)
99 var ip IP
103 ip = addr.IP
106 ip = addr.IP
    [all...]
hosts.go 15 var ip IP
17 ip = parseIPv4(addr)
18 if ip == nil {
19 ip, zone = parseIPv6(addr, true)
21 if ip == nil {
25 return ip.String()
27 return ip.String() + "%" + zone
34 // Key for the list of literal IP addresses must be a host
40 // Key for the list of host names must be a literal IP addres
    [all...]
ipsock_posix.go 45 {laddr: TCPAddr{IP: ParseIP("::1")}, value: 1},
47 {laddr: TCPAddr{IP: IPv4(127, 0, 0, 1)}, value: 0},
148 // Internet sockets (TCP, UDP, IP)
157 func ipToSockaddr(family int, ip IP, port int, zone string) (syscall.Sockaddr, error) {
160 if len(ip) == 0 {
161 ip = IPv4zero
163 ip4 := ip.To4()
165 return nil, &AddrError{Err: "non-IPv4 address", Addr: ip.String()}
171 // In general, an IP wildcard address, which is eithe
    [all...]
dial_test.go 215 if ParseIP(slowDst4).Equal(raddr.IP) || ParseIP(slowDst6).Equal(raddr.IP) {
331 // Convert a list of IP strings into TCPAddrs.
334 for _, ip := range ips {
335 addr, err := ResolveTCPAddr("tcp", JoinHostPort(ip, port))
417 {IP: ParseIP(slowDst6)},
418 {IP: ParseIP("127.0.0.1")},
548 makeAddr := func(ip string) addrList {
549 addr, err := ResolveTCPAddr("tcp", JoinHostPort(ip, dss.port))
615 {"tcp4", "127.0.0.1", &TCPAddr{IP: ParseIP("0.0.0.0")}, nil}
    [all...]
listen_test.go 512 if ln, err := ListenIP("ip:icmp", nil); err == nil {
521 {"udp", &UDPAddr{IP: IPv4(224, 0, 0, 254), Port: 12345}},
523 {"udp4", &UDPAddr{IP: IPv4(224, 0, 0, 254), Port: 12345}},
565 if err := checkMulticastListener(cs[0], tt.gaddr.IP); err != nil {
573 if err := checkMulticastListener(cs[1], tt.gaddr.IP); err != nil {
586 {"udp", &UDPAddr{IP: ParseIP("ff01::114"), Port: 12345}},
587 {"udp", &UDPAddr{IP: ParseIP("ff02::114"), Port: 12345}},
588 {"udp", &UDPAddr{IP: ParseIP("ff04::114"), Port: 12345}},
589 {"udp", &UDPAddr{IP: ParseIP("ff05::114"), Port: 12345}},
590 {"udp", &UDPAddr{IP: ParseIP("ff08::114"), Port: 12345}}
    [all...]
  /external/llvm/lib/CodeGen/
GCRootLowering.cpp 155 BasicBlock::iterator IP = F.getEntryBlock().begin();
156 while (isa<AllocaInst>(IP))
157 ++IP;
161 for (; !CouldBecomeSafePoint(&*IP); ++IP)
162 if (StoreInst *SI = dyn_cast<StoreInst>(IP))
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
GCStrategy.cpp 177 BasicBlock::iterator IP = F.getEntryBlock().begin();
178 while (isa<AllocaInst>(IP)) ++IP;
182 for (; !CouldBecomeSafePoint(IP); ++IP)
183 if (StoreInst *SI = dyn_cast<StoreInst>(IP))
  /kernel/tests/net/test/
packets.py 45 return {4: scapy.IP, 6: scapy.IPv6}[version]
50 elif isinstance(packet, scapy.IP):
56 ip = _GetIpLayer(version)
61 ip(src=srcaddr, dst=dstaddr) /
66 packet = (scapy.IP(src=srcaddr, dst=dstaddr, ttl=39, tos=0x83) /
77 ip = _GetIpLayer(version)
83 ip(src=srcaddr, dst=dstaddr) /
89 ip = _GetIpLayer(version)
93 ip(src=srcaddr, dst=dstaddr) /
99 ip = _GetIpLayer(version
    [all...]
  /external/clang/test/FixIt/
fixit-cxx0x.cpp 91 int *ip; char *kp; member in namespace:TestMisplacedEllipsisRecovery
97 int e = me.e(&ip, &kp);
106 template<int *ip> struct IP { }; // expected-note{{declared here}}
107 IP<0> ip0; // expected-error{{null non-type template argument must be cast to template parameter type 'int *'}}
  /external/curl/docs/cmdline-opts/
data-urlencode.d 15 .IP "content"
19 .IP "=content"
22 .IP "name=content"
25 .IP "@filename"
28 .IP "name@filename"
  /external/mesa3d/docs/specs/
MESA_pack_invert.spec 45 IP Status
  /prebuilts/go/darwin-x86/src/net/
hosts.go 15 var ip IP
17 ip = parseIPv4(addr)
18 if ip == nil {
19 ip, zone = parseIPv6(addr, true)
21 if ip == nil {
25 return ip.String()
27 return ip.String() + "%" + zone
34 // Key for the list of literal IP addresses must be a host
40 // Key for the list of host names must be a literal IP addres
    [all...]
ipsock_posix.go 45 {laddr: TCPAddr{IP: ParseIP("::1")}, value: 1},
47 {laddr: TCPAddr{IP: IPv4(127, 0, 0, 1)}, value: 0},
148 // Internet sockets (TCP, UDP, IP)
157 func ipToSockaddr(family int, ip IP, port int, zone string) (syscall.Sockaddr, error) {
160 if len(ip) == 0 {
161 ip = IPv4zero
163 ip4 := ip.To4()
165 return nil, &AddrError{Err: "non-IPv4 address", Addr: ip.String()}
171 // In general, an IP wildcard address, which is eithe
    [all...]
dial_test.go 215 if ParseIP(slowDst4).Equal(raddr.IP) || ParseIP(slowDst6).Equal(raddr.IP) {
331 // Convert a list of IP strings into TCPAddrs.
334 for _, ip := range ips {
335 addr, err := ResolveTCPAddr("tcp", JoinHostPort(ip, port))
417 {IP: ParseIP(slowDst6)},
418 {IP: ParseIP("127.0.0.1")},
548 makeAddr := func(ip string) addrList {
549 addr, err := ResolveTCPAddr("tcp", JoinHostPort(ip, dss.port))
615 {"tcp4", "127.0.0.1", &TCPAddr{IP: ParseIP("0.0.0.0")}, nil}
    [all...]
listen_test.go 512 if ln, err := ListenIP("ip:icmp", nil); err == nil {
521 {"udp", &UDPAddr{IP: IPv4(224, 0, 0, 254), Port: 12345}},
523 {"udp4", &UDPAddr{IP: IPv4(224, 0, 0, 254), Port: 12345}},
565 if err := checkMulticastListener(cs[0], tt.gaddr.IP); err != nil {
573 if err := checkMulticastListener(cs[1], tt.gaddr.IP); err != nil {
586 {"udp", &UDPAddr{IP: ParseIP("ff01::114"), Port: 12345}},
587 {"udp", &UDPAddr{IP: ParseIP("ff02::114"), Port: 12345}},
588 {"udp", &UDPAddr{IP: ParseIP("ff04::114"), Port: 12345}},
589 {"udp", &UDPAddr{IP: ParseIP("ff05::114"), Port: 12345}},
590 {"udp", &UDPAddr{IP: ParseIP("ff08::114"), Port: 12345}}
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/route/
address_test.go 51 &Inet4Addr{IP: [4]byte{172, 16, 220, 180}},
56 &Inet4Addr{IP: [4]byte{172, 16, 220, 255}},
75 &Inet4Addr{IP: [4]byte{255, 255, 255, 0}},
78 &Inet4Addr{IP: [4]byte{169, 254, 0, 1}},
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/route/
address_test.go 51 &Inet4Addr{IP: [4]byte{172, 16, 220, 180}},
56 &Inet4Addr{IP: [4]byte{172, 16, 220, 255}},
75 &Inet4Addr{IP: [4]byte{255, 255, 255, 0}},
78 &Inet4Addr{IP: [4]byte{169, 254, 0, 1}},
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program.h 148 unsigned int IP;
  /external/valgrind/include/
pub_tool_addrinfo.h 128 // IP is the address of an instruction of the function where the
138 Addr IP;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
ScalarEvolutionExpander.h 265 void setInsertPoint(Instruction *IP) {
266 assert(IP);
267 Builder.SetInsertPoint(IP);
315 /// Arrange for there to be a cast of V to Ty at IP, reusing an existing
320 BasicBlock::iterator IP);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
ScalarEvolutionExpander.h 265 void setInsertPoint(Instruction *IP) {
266 assert(IP);
267 Builder.SetInsertPoint(IP);
315 /// Arrange for there to be a cast of V to Ty at IP, reusing an existing
320 BasicBlock::iterator IP);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
ScalarEvolutionExpander.h 265 void setInsertPoint(Instruction *IP) {
266 assert(IP);
267 Builder.SetInsertPoint(IP);
315 /// Arrange for there to be a cast of V to Ty at IP, reusing an existing
320 BasicBlock::iterator IP);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
ScalarEvolutionExpander.h 265 void setInsertPoint(Instruction *IP) {
266 assert(IP);
267 Builder.SetInsertPoint(IP);
315 /// Arrange for there to be a cast of V to Ty at IP, reusing an existing
320 BasicBlock::iterator IP);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
ScalarEvolutionExpander.h 265 void setInsertPoint(Instruction *IP) {
266 assert(IP);
267 Builder.SetInsertPoint(IP);
315 /// Arrange for there to be a cast of V to Ty at IP, reusing an existing
320 BasicBlock::iterator IP);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
ScalarEvolutionExpander.h 265 void setInsertPoint(Instruction *IP) {
266 assert(IP);
267 Builder.SetInsertPoint(IP);
315 /// Arrange for there to be a cast of V to Ty at IP, reusing an existing
320 BasicBlock::iterator IP);

Completed in 1719 milliseconds

1 2 3 4 56 7 8 91011>>