HomeSort by relevance Sort by last modified time
    Searched defs:proto (Results 101 - 125 of 817) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 31 } proto; member in struct:ipt_ECN_info
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 31 } proto; member in struct:ipt_ECN_info
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 31 } proto; member in struct:ipt_ECN_info
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/netfilter_ipv4/
ipt_ECN.h 31 } proto; member in struct:ipt_ECN_info
  /external/chromium_org/chrome/renderer/resources/extensions/
web_view_experimental.js 225 WebViewInternal.maybeRegisterExperimentalAPIs = function(proto) {
226 proto.setZoom = function(zoomFactor, callback) {
230 proto.getZoom = function(callback) {
234 proto.captureVisibleRegion = function(spec, callback) {
238 proto.find = function(search_text, options, callback) {
242 proto.stopFinding = function(action) {
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
LazyStringEndToEndTest.java 97 UnittestProto.TestAllTypes proto = UnittestProto.TestAllTypes.newBuilder() local
104 assertSame(a, proto.getOptionalString());
105 assertSame(b, proto.getRepeatedString(0));
106 assertSame(c, proto.getRepeatedString(1));
112 proto.toByteString();
113 String aPrime = proto.getOptionalString();
116 String bPrime = proto.getRepeatedString(0);
119 String cPrime = proto.getRepeatedString(1);
124 assertSame(aPrime, proto.getOptionalString());
125 assertSame(bPrime, proto.getRepeatedString(0))
130 UnittestProto.TestAllTypes proto = local
    [all...]
  /external/chromium_org/third_party/cacheinvalidation/overrides/google/cacheinvalidation/deps/
gmock.h 15 // Implements WhenDeserializedAs<Proto>(proto_matcher).
16 template <class Proto>
19 typedef Matcher<const Proto&> InnerMatcher;
28 Proto* Deserialize(const string& str) const {
29 Proto* proto = new Proto; local
30 if (proto->ParsePartialFromString(str)) {
31 return proto;
33 delete proto;
63 namespace proto { namespace in namespace:testing
    [all...]
  /external/iproute2/include/linux/
ip6_tunnel.h 25 __u8 proto; /* tunnel protocol */ member in struct:ip6_tnl_parm
  /external/libnl/src/cls/
utils.c 66 int proto = nl_str2ether_proto(arg); local
67 if (proto < 0)
68 fatal(proto, "Unable to parse protocol \"%s\": %s",
69 arg, nl_geterror(proto));
70 rtnl_cls_set_protocol(cls, proto);
  /external/libsepol/src/
port_record.c 13 int proto; member in struct:sepol_port
24 int proto; member in struct:sepol_port_key
29 int low, int high, int proto,
43 tmp_key->proto = proto;
52 int *low, int *high, int *proto)
57 *proto = key->proto;
68 (handle, port->low, port->high, port->proto, key_ptr) < 0) {
71 sepol_port_get_proto_str(port->proto),
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
ip6_tunnel.h 23 __u8 proto; /* tunnel protocol */ member in struct:ip6_tnl_parm
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
ip6_tunnel.h 23 __u8 proto; /* tunnel protocol */ member in struct:ip6_tnl_parm
  /art/compiler/dex/quick/
dex_file_method_inliner.h 186 * To avoid multiple lookups of a method signature, we cache its proto
238 * The method signature (proto) definition using cached class indexes.
249 * The method definition using cached class, name and proto indexes.
250 * The class index, method name index and proto index are used with
256 ProtoCacheIndex proto; member in struct:art::DexFileMethodInliner::MethodDef
  /bionic/libc/kernel/uapi/linux/
ip6_tunnel.h 36 __u8 proto; member in struct:ip6_tnl_parm
50 __u8 proto; member in struct:ip6_tnl_parm2
  /development/ndk/platforms/android-3/include/linux/
if_tun.h 41 unsigned short proto; member in struct:tun_pi
  /development/ndk/platforms/android-L/include/linux/
ip6_tunnel.h 36 __u8 proto; member in struct:ip6_tnl_parm
50 __u8 proto; member in struct:ip6_tnl_parm2
  /external/chromium_org/chrome/browser/metrics/variations/
variations_http_header_provider.cc 15 #include "chrome/common/metrics/proto/chrome_experiments.pb.h"
208 metrics::ChromeVariations proto; local
211 proto.add_variation_id(*it);
222 proto.add_trigger_variation_id(*it);
226 proto.SerializeToString(&serialized);
  /external/chromium_org/net/http/
http_network_session.cc 161 NextProto proto = *it; local
165 if (proto != kProtoQUIC1SPDY3) {
166 next_protos_.push_back(SSLClientSocket::NextProtoToString(proto));
171 if (proto != kProtoHTTP11) {
172 AlternateProtocol alternate = AlternateProtocolFromNextProto(proto);
174 NOTREACHED() << "Invalid next proto: " << proto;
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
p2ptransport.cc 114 TransportProtocol proto = TransportProtocolFromDescription(&desc); local
120 if (proto != ICEPROTO_GOOGLE) {
129 if (!WriteCandidate(proto, *iter, translator, cand_elem.get(), error)) {
162 bool P2PTransportParser::VerifyUsernameFormat(TransportProtocol proto,
165 if (proto == ICEPROTO_GOOGLE || proto == ICEPROTO_HYBRID) {
171 } else if (proto == ICEPROTO_RFC5245) {
178 bool P2PTransportParser::ParseCandidate(TransportProtocol proto,
183 ASSERT(proto == ICEPROTO_GOOGLE);
225 if (!VerifyUsernameFormat(proto, candidate->username(), error)
    [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
Descriptors.java 52 * a relevant {@code .proto} file. You can obtain it by calling
55 * imported {@code .proto} files.
58 * {@code google/protobuf/descriptor.proto}.
64 * Describes a {@code .proto} file, including everything defined within.
66 * file descriptors for all other imported {@code .proto} files
71 public FileDescriptorProto toProto() { return proto; }
74 public String getName() { return proto.getName(); }
77 * Get the proto package name. This is the package name given by the
78 * {@code package} statement in the {@code .proto} file, which differs
81 public String getPackage() { return proto.getPackage();
289 FileDescriptorProto proto; local
338 private FileDescriptorProto proto; field in class:Descriptors.FileDescriptor
571 private DescriptorProto proto; field in class:Descriptors.Descriptor
832 private FieldDescriptorProto proto; field in class:Descriptors.FieldDescriptor
1230 private EnumDescriptorProto proto; field in class:Descriptors.EnumDescriptor
1316 private EnumValueDescriptorProto proto; field in class:Descriptors.EnumValueDescriptor
1392 private ServiceDescriptorProto proto; field in class:Descriptors.ServiceDescriptor
1473 private MethodDescriptorProto proto; field in class:Descriptors.MethodDescriptor
1571 private final Message proto; field in class:Descriptors.DescriptorValidationException
    [all...]
  /external/chromium_org/v8/test/mjsunit/es6/
weak_collections.js 287 { proto: WeakMap.prototype, class
291 { proto: WeakSet.prototype,
298 var proto = testSet[i].proto;
302 var func = proto[funcs[j]];
  /external/chromium_org/v8/test/mjsunit/harmony/
collections.js 363 { proto: Set.prototype, class
367 { proto: Map.prototype,
371 { proto: WeakMap.prototype,
375 { proto: WeakSet.prototype,
382 var proto = testSet[i].proto;
386 var func = proto[funcs[j]];
  /external/google-tv-pairing-protocol/cpp/tests/polo/wire/protobuf/
protobufwireadaptertest.cc 127 Configuration proto; local
128 proto.set_client_role(Options_RoleType_ROLE_TYPE_OUTPUT);
129 proto.mutable_encoding()->set_type(
131 proto.mutable_encoding()->set_symbol_length(64);
135 outer.set_payload(proto.SerializeAsString());
152 ConfigurationAck proto; local
156 outer.set_payload(proto.SerializeAsString());
170 Options proto; local
171 proto.set_preferred_role(Options_RoleType_ROLE_TYPE_INPUT);
172 Options_Encoding* encoding = proto.add_input_encodings()
220 PairingRequest proto; local
241 PairingRequestAck proto; local
266 Secret proto; local
291 SecretAck proto; local
    [all...]
  /external/ipsec-tools/src/libipsec/
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/iptables/iptables/
xshared.c 47 proto_to_name(uint8_t proto, int nolookup)
51 if (proto && !nolookup) {
52 struct protoent *pent = getprotobynumber(proto);
58 if (xtables_chain_protos[i].num == proto)
68 unsigned int proto; local
70 if (xtables_strtoui(pname, NULL, &proto, 0, UINT8_MAX)) {
71 const char *protoname = proto_to_name(proto, nolookup);
85 * loading of the protocol match extension. '-p tcp' means 'l4 proto 6' and at

Completed in 768 milliseconds

1 2 3 45 6 7 8 91011>>