HomeSort by relevance Sort by last modified time
    Searched defs:ip (Results 151 - 175 of 571) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
GeneralNameTest.java 153 String ip = negatives[n]; local
155 byte[] bts = GeneralName.ipStrToBytes(ip);
160 System.out.println(ip);
  /external/chromium/third_party/libjingle/source/talk/base/
network.h 84 uint32 ip, uint32 gateway_ip);
94 // Identifies the current IP address used by this network.
95 uint32 ip() const { return ip_; } function in class:talk_base::Network
96 void set_ip(uint32 ip) { ip_ = ip; }
98 // Identifies the current gateway IP address used by this network.
100 void set_gateway_ip(uint32 ip) { gateway_ip_ = ip; }
103 // IP/gateway is 0, or the interface is one we know is invalid.
  /external/chromium_org/chrome/browser/extensions/api/socket/
udp_socket.cc 216 std::string ip; local
219 IPEndPointToStringAndPort(address->data, &ip, &port);
221 recv_from_callback_.Run(result, io_buffer, ip, port);
232 net::IPAddressNumber ip; local
233 if (!net::ParseIPLiteralToNumber(address, &ip))
236 std::string normalized_address = net::IPAddressToString(ip);
244 int rv = socket_.JoinGroup(ip);
251 net::IPAddressNumber ip; local
252 if (!net::ParseIPLiteralToNumber(address, &ip))
255 std::string normalized_address = net::IPAddressToString(ip);
    [all...]
  /external/chromium_org/net/dns/
dns_config_service_win_unittest.cc 102 IPAddressNumber ip; local
103 CHECK(ParseIPLiteralToNumber(info.dns_server_addresses[j], &ip));
104 IPEndPoint ipe(ip, info.ports[j]);
181 IPAddressNumber ip; local
182 ASSERT_TRUE(ParseIPLiteralToNumber(t.expected_nameservers[j], &ip));
186 expected_nameservers.push_back(IPEndPoint(ip, port));
  /external/chromium_org/net/quic/crypto/
crypto_handshake_test.cc 34 string NewSourceAddressToken(IPEndPoint ip,
37 return server_config_->NewSourceAddressToken(ip, rand, now);
41 IPEndPoint ip,
43 return server_config_->ValidateSourceAddressToken(srct, ip, now);
165 IPAddressNumber ip; local
166 CHECK(ParseIPLiteralToNumber("192.0.2.33", &ip));
167 IPEndPoint ip4 = IPEndPoint(ip, 1);
168 CHECK(ParseIPLiteralToNumber("2001:db8:0::42", &ip));
169 IPEndPoint ip6 = IPEndPoint(ip, 2);
  /external/chromium_org/ppapi/tests/
test_network_monitor_private.cc 106 char ip[16] = { 0 }; local
108 addresses[i], ip, sizeof(ip)));
112 for (j = 0; j < sizeof(ip); ++j) {
113 if (ip[j] != 0)
  /external/chromium_org/sandbox/linux/seccomp-bpf/
sandbox_bpf.h 35 void *ip; member in struct:playground2::arch_sigsys
  /external/chromium_org/third_party/libjingle/source/talk/base/
network_unittest.cc 113 IPAddress ip = (*it)->ip(); local
114 SocketAddress bindaddress(ip, 0);
117 int fd = static_cast<int>(socket(ip.family(), SOCK_STREAM, IPPROTO_TCP));
233 IPAddress ip; local
235 EXPECT_TRUE(IPFromString("fe80::1234:5678:abcd:ef12", &ip));
240 ipv6_eth0_linklocalnetwork.AddIP(ip);
241 EXPECT_TRUE(IPFromString("fe80::5678:abcd:ef12:3456", &ip));
244 ipv6_eth1_linklocalnetwork.AddIP(ip);
246 EXPECT_TRUE(IPFromString("2401:fa00:4:1000:be30:5bff:fee5:c3", &ip));
327 IPAddress ip; local
367 IPAddress ip; local
425 IPAddress ip; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
r300_fragprog_emit.c 153 int ip; local
162 ip = code->alu.length++;
164 code->alu.inst[ip].rgb_inst = translate_rgb_opcode(c, inst->RGB.Opcode);
165 code->alu.inst[ip].alpha_inst = translate_alpha_opcode(c, inst->Alpha.Opcode);
172 code->alu.inst[ip].r400_ext_addr |= R400_ADDR_EXT_RGB_MSB_BIT(j);
174 code->alu.inst[ip].rgb_addr |= src << (6*j);
179 code->alu.inst[ip].r400_ext_addr |= R400_ADDR_EXT_A_MSB_BIT(j);
181 code->alu.inst[ip].alpha_addr |= src << (6*j);
186 code->alu.inst[ip].rgb_inst |= arg << (7*j);
191 code->alu.inst[ip].alpha_inst |= arg << (7*j)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bio/
bss_acpt.c 343 int *ip; local
398 ip=(int *)ptr;
399 if (ip != NULL)
400 *ip=data->accept_sock;
bss_conn.c 87 unsigned char ip[4]; member in struct:bio_connect_st
183 if (BIO_get_host_ip(c->param_hostname,&(c->ip[0])) <= 0)
205 ((unsigned long)c->ip[0]<<24L)|
206 ((unsigned long)c->ip[1]<<16L)|
207 ((unsigned long)c->ip[2]<< 8L)|
208 ((unsigned long)c->ip[3]);
332 ret->ip[0]=0;
333 ret->ip[1]=0;
334 ret->ip[2]=0;
335 ret->ip[3]=0
455 int *ip; local
    [all...]
  /external/chromium_org/third_party/re2/re2/
bitstate.cc 93 // Should the search visit the pair ip, p?
156 // the loop simply updates ip, p, and arg
167 // Visit ip, p.
168 // VLOG(0) << "Job: " << ip->id() << " "
170 Prog::Inst* ip = prog_->inst(id); local
171 switch (ip->opcode()) {
174 LOG(DFATAL) << "Unexpected opcode: " << ip->opcode() << " arg " << arg;
179 // Push(ip->out1(), p, 0);
180 // Push(ip->out(), p, 0);
181 // If, during the processing of ip->out(), we encounte
    [all...]
prog.cc 139 Prog::Inst* ip = prog->inst(id); local
140 StringAppendF(&s, "%d. %s\n", id, ip->Dump().c_str());
141 AddToQueue(q, ip->out());
142 if (ip->opcode() == kInstAlt || ip->opcode() == kInstAltMatch)
143 AddToQueue(q, ip->out1());
184 Inst* ip = inst(id); local
185 int j = ip->out();
190 ip->set_out(j);
191 AddToQueue(&q, ip->out())
214 Inst* ip = inst(id); local
    [all...]
  /external/clang/test/Analysis/
nullptr.cpp 26 int *ip = &(((struct foo *)np)->f); local
27 *ip = 0; // expected-warning{{Dereference of null pointer}}
  /external/clang/test/Sema/
conditional-expr.c 11 int *ip; local
16 ip = dp; // expected-warning {{incompatible pointer types assigning to 'int *' from 'double *'}}
17 dp = ip; // expected-warning {{incompatible pointer types assigning to 'double *' from 'int *'}}
20 ip = 0 ? (double *)0 : (void *)0; // expected-warning {{incompatible pointer types assigning to 'int *' from 'double *'}}
function-redecl.c 87 int* ip = outer6(x); // expected-warning{{use of out-of-scope declaration of 'outer6'}} local
transparent-union.c 3 int *ip; member in union:__anon18742
11 void g(int *ip, float *fp, char *cp) {
12 f(ip);
17 TU tu_ip = ip; // expected-error{{incompatible type}}
19 tu.ip = ip;
  /external/clang/test/SemaCXX/
nullptr.cpp 70 int *ip = *pn; local
  /external/clang/test/SemaTemplate/
nested-template.cpp 14 S::A<int>::Nested::type *ip = &i; variable
  /external/grub/netboot/
misc.c 226 unsigned long ip = 0; local
240 ip = (ip << 8) | val;
243 addr->s_addr = htonl (ip);
  /external/iproute2/include/linux/
netfilter.h 63 __be32 ip; member in union:nf_inet_addr
  /external/iptables/extensions/
libipt_DNAT.c 71 const struct in_addr *ip; local
117 /* Starts with a colon? No IP info...*/
133 ip = xtables_numeric_to_ipaddr(arg);
134 if (!ip)
135 xtables_error(PARAMETER_PROBLEM, "Bad IP address \"%s\"\n",
137 range.min_ip = ip->s_addr;
139 ip = xtables_numeric_to_ipaddr(dash+1);
140 if (!ip)
141 xtables_error(PARAMETER_PROBLEM, "Bad IP address \"%s\"\n",
143 range.max_ip = ip->s_addr
    [all...]
libipt_SNAT.c 71 const struct in_addr *ip; local
117 /* Starts with a colon? No IP info...*/
133 ip = xtables_numeric_to_ipaddr(arg);
134 if (!ip)
135 xtables_error(PARAMETER_PROBLEM, "Bad IP address \"%s\"\n",
137 range.min_ip = ip->s_addr;
139 ip = xtables_numeric_to_ipaddr(dash+1);
140 if (!ip)
141 xtables_error(PARAMETER_PROBLEM, "Bad IP address \"%s\"\n",
143 range.max_ip = ip->s_addr
    [all...]
  /external/iptables/include/linux/
netfilter.h 53 __be32 ip; member in union:nf_inet_addr
  /external/kernel-headers/original/linux/netfilter/
xt_conntrack.h 32 __u32 ip; member in struct:ip_conntrack_old_tuple::__anon21865
39 __u32 ip; member in struct:ip_conntrack_old_tuple::__anon21867

Completed in 1451 milliseconds

1 2 3 4 5 67 8 91011>>