/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 | 232 std::string ip; local 235 IPEndPointToStringAndPort(address->data, &ip, &port); 237 recv_from_callback_.Run(result, io_buffer, ip, port); 252 net::IPAddressNumber ip; local 253 if (!net::ParseIPLiteralToNumber(address, &ip)) 256 std::string normalized_address = net::IPAddressToString(ip); 264 int rv = socket_.JoinGroup(ip); 271 net::IPAddressNumber ip; local 272 if (!net::ParseIPLiteralToNumber(address, &ip)) 275 std::string normalized_address = net::IPAddressToString(ip); [all...] |
/external/chromium_org/net/quic/crypto/ |
quic_crypto_server_config_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); 160 IPAddressNumber ip; local 161 CHECK(ParseIPLiteralToNumber("192.0.2.33", &ip)); 162 IPEndPoint ip4 = IPEndPoint(ip, 1); 163 CHECK(ParseIPLiteralToNumber("2001:db8:0::42", &ip)); 164 IPEndPoint ip6 = IPEndPoint(ip, 2);
|
/external/chromium_org/sandbox/linux/seccomp-bpf/ |
sandbox_bpf.h | 34 void* ip; member in struct:sandbox::arch_sigsys
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
network_unittest.cc | 134 IPAddress ip = (*it)->ip(); local 135 SocketAddress bindaddress(ip, 0); 138 int fd = static_cast<int>(socket(ip.family(), SOCK_STREAM, IPPROTO_TCP)); 257 IPAddress ip; local 259 EXPECT_TRUE(IPFromString("fe80::1234:5678:abcd:ef12", &ip)); 264 ipv6_eth0_linklocalnetwork.AddIP(ip); 265 EXPECT_TRUE(IPFromString("fe80::5678:abcd:ef12:3456", &ip)); 268 ipv6_eth1_linklocalnetwork.AddIP(ip); 270 EXPECT_TRUE(IPFromString("2401:fa00:4:1000:be30:5bff:fee5:c3", &ip)); 351 IPAddress ip; local 391 IPAddress ip; local 449 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:__anon19655 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::__anon22778 39 __u32 ip; member in struct:ip_conntrack_old_tuple::__anon22780
|
/external/kernel-headers/original/linux/netfilter_ipv4/ |
ip_conntrack_tuple.h | 42 u_int32_t ip; member in struct:ip_conntrack_manip 53 u_int32_t ip; member in struct:ip_conntrack_tuple::__anon22793 97 NIPQUAD((tp)->src.ip), ntohs((tp)->src.u.all), \ 98 NIPQUAD((tp)->dst.ip), ntohs((tp)->dst.u.all)) 116 return t1->src.ip == t2->src.ip 123 return t1->dst.ip == t2->dst.ip 138 return !(((t->src.ip ^ tuple->src.ip) & mask->src.ip [all...] |
/external/libvpx/libvpx/vp8/common/mips/dspr2/ |
idctllm_dspr2.c | 49 short *ip = input; local 59 prefetch_load_short(ip + 8); 62 a1 = ip[0] + ip[8]; 63 b1 = ip[0] - ip[8]; 65 temp1 = (ip[4] * sinpi8sqrt2) >> 16; 66 temp2 = ip[12] + ((ip[12] * cospi8sqrt2minus1) >> 16); 69 temp1 = ip[4] + ((ip[4] * cospi8sqrt2minus1) >> 16) 287 short *ip = input; local [all...] |
/external/linux-tools-perf/util/ |
sort.h | 64 u64 ip; member in struct:hist_entry
|