/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/ |
generator_test.py | 74 proto = unittest_pb2.TestAllTypes() 75 self.assertEqual(1, proto.FOO) 77 self.assertEqual(2, proto.BAR) 79 self.assertEqual(3, proto.BAZ) 144 proto = unittest_mset_pb2.TestMessageSet() 145 self.assertTrue(proto.DESCRIPTOR.GetOptions().message_set_wire_format) 148 proto = unittest_custom_options_pb2.TestMessageWithCustomOptions() 149 enum_options = proto.DESCRIPTOR.enum_types_by_name['AnEnum'].GetOptions() 217 'google/protobuf/unittest.proto')
|
/external/chromium_org/third_party/tlslite/tlslite/integration/ |
POP3_TLS.py | 113 af, socktype, proto, canonname, sa = res 115 self.sock = socket.socket(af, socktype, proto)
|
/external/chromium_org/v8/test/webkit/ |
reentrant-caching.js | 61 var proto = { 71 var o = Object.create(proto); 89 var proto = { 99 var o = Object.create(Object.create(proto));
|
/external/qemu/slirp-android/ |
libslirp.h | 44 int dst_hport, u_int8_t proto); 51 u_int8_t proto);
|
/packages/apps/Launcher3/ |
Android.mk | 31 $(call all-proto-files-under, protos) 58 $(call all-proto-files-under, protos)
|
/external/chromium_org/net/http/ |
http_stream_factory.cc | 239 NextProto proto = value[i]; local 242 if (proto != kProtoQUIC1SPDY3) { 243 next_protos_->push_back(SSLClientSocket::NextProtoToString(proto)); 248 if (proto != kProtoHTTP11) { 249 AlternateProtocol alternate = AlternateProtocolFromNextProto(proto); 251 NOTREACHED() << "Invalid next proto: " << proto;
|
/external/ipsec-tools/src/libipsec/ |
ipsec_dump_policy.c | 281 const char *proto, *mode, *level; local 291 proto = "esp"; 294 proto = "ah"; 297 proto = "ipcomp"; 358 snprintf(buf, len, "%s/%s/%s/%s", proto, mode, abuf, level); 366 snprintf(buf, len, "%s/%s/%s/%s%c%u", proto, mode, abuf, level,
|
test-policy.c | 156 int proto = 0, optname = 0; local 162 proto = IPPROTO_IP; 166 proto = IPPROTO_IPV6; 179 if (setsockopt(so, proto, optname, policy, len) < 0) { 187 if (getsockopt(so, proto, optname, getbuf, &len) < 0) {
|
/external/protobuf/python/google/protobuf/internal/ |
generator_test.py | 71 proto = unittest_pb2.TestAllTypes() 72 self.assertEqual(1, proto.FOO) 74 self.assertEqual(2, proto.BAR) 76 self.assertEqual(3, proto.BAZ) 140 proto = unittest_mset_pb2.TestMessageSet() 141 self.assertTrue(proto.DESCRIPTOR.GetOptions().message_set_wire_format) 206 'google/protobuf/unittest.proto') 211 # unittest_no_generic_services.proto should contain defs for everything
|
/external/smack/src/org/xbill/DNS/ |
KEYRecord.java | 302 * @param proto The protocol that the key was created for 307 KEYRecord(Name name, int dclass, long ttl, int flags, int proto, int alg, 310 super(name, Type.KEY, dclass, ttl, flags, proto, alg, key); 316 * @param proto The protocol that the key was created for 323 KEYRecord(Name name, int dclass, long ttl, int flags, int proto, int alg, 326 super(name, Type.KEY, dclass, ttl, flags, proto, alg, 338 proto = Protocol.value(protoString); 339 if (proto < 0)
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
xfrm.h | 27 __u8 proto; member in struct:xfrm_id 59 __u8 proto; member in struct:xfrm_selector 337 __u8 proto; member in struct:xfrm_usersa_id 396 __u8 proto; member in struct:xfrm_usersa_flush 400 __u8 proto; member in struct:xfrm_user_report 409 __u8 proto; member in struct:xfrm_user_migrate
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
xfrm.h | 27 __u8 proto; member in struct:xfrm_id 59 __u8 proto; member in struct:xfrm_selector 337 __u8 proto; member in struct:xfrm_usersa_id 396 __u8 proto; member in struct:xfrm_usersa_flush 400 __u8 proto; member in struct:xfrm_user_report 409 __u8 proto; member in struct:xfrm_user_migrate
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
xfrm.h | 27 __u8 proto; member in struct:xfrm_id 59 __u8 proto; member in struct:xfrm_selector 337 __u8 proto; member in struct:xfrm_usersa_id 396 __u8 proto; member in struct:xfrm_usersa_flush 400 __u8 proto; member in struct:xfrm_user_report 409 __u8 proto; member in struct:xfrm_user_migrate
|
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
relayport.cc | 61 return protocol_address_->proto; 215 if (addr.proto == PROTO_SSLTCP && 225 std::string proto_name = ProtoToString(addr.proto); 450 LOG(LS_INFO) << "Connecting to relay via " << ProtoToString(ra->proto) << 455 if (ra->proto == PROTO_UDP) { 460 } else if (ra->proto == PROTO_TCP || ra->proto == PROTO_SSLTCP) { 463 port_->proxy(), port_->user_agent(), ra->proto == PROTO_SSLTCP); 465 LOG(LS_WARNING) << "Unknown protocol (" << ra->proto << ")"; 488 if ((ra->proto == PROTO_TCP) || (ra->proto == PROTO_SSLTCP)) 513 ProtocolType proto = PROTO_UDP; local [all...] |
/external/chromium_org/third_party/protobuf/python/google/protobuf/ |
descriptor.py | 31 """Descriptors essentially contain exactly the information found in a .proto 53 """Error transforming between python proto type and corresponding C++ type.""" 157 def CopyToProto(self, proto): 158 """Copies this to the matching proto in descriptor_pb2. 161 proto: An empty proto instance from descriptor_pb2. 169 proto.ParseFromString(self.file.serialized_pb[ 290 def CopyToProto(self, proto): 294 proto: An empty descriptor_pb2.DescriptorProto. 297 super(Descriptor, self).CopyToProto(proto) [all...] |
/external/iproute2/ip/ |
ip6tunnel.c | 77 p->name, tnl_strproto(p->proto), remote, local); 121 p->proto = IPPROTO_IPV6; 126 p->proto = IPPROTO_IPIP; 129 p->proto = 0; 233 p->proto = IPPROTO_IPV6; 253 (!p1->proto || !p2->proto || p1->proto == p2->proto) && 350 p.proto = 0; /* default to any * [all...] |
ipxfrm.c | 99 int xfrm_xfrmproto_is_ipsec(__u8 proto) 101 return (proto == IPPROTO_ESP || 102 proto == IPPROTO_AH || 103 proto == IPPROTO_COMP); 106 int xfrm_xfrmproto_is_ro(__u8 proto) 108 return (proto == IPPROTO_ROUTING || 109 proto == IPPROTO_DSTOPTS); 140 const char *strxf_xfrmproto(__u8 proto) 150 if (t->t_type == proto) 154 sprintf(str, "%u", proto); [all...] |
/external/kernel-headers/original/linux/ |
net.h | 186 extern int sock_create(int family, int type, int proto, 188 extern int sock_create_kern(int family, int type, int proto, 190 extern int sock_create_lite(int family, int type, int proto, 294 #define MODULE_ALIAS_NETPROTO(proto) \ 295 MODULE_ALIAS("net-pf-" __stringify(proto)) 297 #define MODULE_ALIAS_NET_PF_PROTO(pf, proto) \ 298 MODULE_ALIAS("net-pf-" __stringify(pf) "-proto-" __stringify(proto))
|
/external/chromium_org/third_party/protobuf/src/ |
Makefile.am | 27 nobase_dist_proto_DATA = google/protobuf/descriptor.proto \ 28 google/protobuf/compiler/plugin.proto 35 testzip.jar testzip.list testzip.proto testzip.zip 211 google/protobuf/unittest.proto \ 212 google/protobuf/unittest_empty.proto \ 213 google/protobuf/unittest_import.proto \ 214 google/protobuf/unittest_import_public.proto \ 215 google/protobuf/unittest_mset.proto \ 216 google/protobuf/unittest_optimize_for.proto \ 217 google/protobuf/unittest_embed_optimize_for.proto \ [all...] |
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
relayport.cc | 61 return protocol_address_->proto; 215 if (addr.proto == PROTO_SSLTCP && 225 std::string proto_name = ProtoToString(addr.proto); 228 if ((it->address == addr.address) && (it->proto == addr.proto)) { 242 std::string proto_name = ProtoToString(iter->proto); 398 ProtocolType proto, 403 Port::OnReadPacket(data, size, remote_addr, proto); 487 LOG(LS_INFO) << "Connecting to relay via " << ProtoToString(ra->proto) << 492 if (ra->proto == PROTO_UDP) 553 ProtocolType proto = PROTO_UDP; local [all...] |
/external/chromium_org/v8/src/ |
proxy.js | 38 function ProxyCreate(handler, proto) { 41 if (IS_UNDEFINED(proto)) 42 proto = null 43 else if (!(IS_SPEC_OBJECT(proto) || IS_NULL(proto))) 45 return %CreateJSProxy(handler, proto) 92 var proto = this.prototype 93 if (!IS_SPEC_OBJECT(proto)) proto = $Object.prototype 94 var obj = { __proto__: proto }; [all...] |
/external/iptables/extensions/ |
libipt_DNAT.c | 157 if (entry->ip.proto == IPPROTO_TCP 158 || entry->ip.proto == IPPROTO_UDP 159 || entry->ip.proto == IPPROTO_SCTP 160 || entry->ip.proto == IPPROTO_DCCP 161 || entry->ip.proto == IPPROTO_ICMP)
|
libipt_SNAT.c | 157 if (entry->ip.proto == IPPROTO_TCP 158 || entry->ip.proto == IPPROTO_UDP 159 || entry->ip.proto == IPPROTO_SCTP 160 || entry->ip.proto == IPPROTO_DCCP 161 || entry->ip.proto == IPPROTO_ICMP)
|
/external/protobuf/src/google/protobuf/ |
text_format_unittest.cc | 185 // Get the DebugString from the proto. 209 // Get the DebugString from the proto. 665 scoped_ptr<unittest::TestAllTypes> proto(new unittest::TestAllTypes); 666 ExpectFailure(input, message, line, col, proto.get()); 670 int col, Message* proto) { 671 ExpectMessage(input, message, line, col, proto, false); 675 int col, Message* proto, bool expected_result) { 679 EXPECT_EQ(parser.ParseFromString(input, proto), expected_result); 836 // We require that group names be exactly as they appear in the .proto. 994 unittest::TestAllTypes proto; local 1011 unittest::TestAllTypes proto; local 1045 protobuf_unittest::TestMessageSetContainer proto; local 1058 protobuf_unittest::TestMessageSetContainer proto; local [all...] |
/external/tcpdump/ |
print-juniper.c | 130 u_int16_t proto; member in struct:juniper_l2info_t 169 u_int8_t proto; member in struct:juniper_ggsn_header 184 printf("proto %s (%u), vlan %u: ", 185 tok2str(juniper_protocol_values,"Unknown",gh->proto), 186 gh->proto, 189 switch (gh->proto) { 200 printf("unknown GGSN proto (%u)", gh->proto); 303 /* no proto field - lets guess by first byte of IP header*/ 337 /* no proto field - lets guess by first byte of IP header* [all...] |