HomeSort by relevance Sort by last modified time
    Searched refs:proto (Results 1 - 25 of 1111) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/openssh/regress/
proto-version.sh 1 # $OpenBSD: proto-version.sh,v 1.3 2002/03/15 13:08:56 markus Exp $
14 proto=199
17 proto=20
20 proto=15
23 proto=0
26 if [ ${expect} -ne ${proto} ]; then
  /external/libppp/src/
proto.c 26 * $FreeBSD: src/usr.sbin/ppp/proto.c,v 1.7.26.1 2010/12/21 17:10:29 kensmith Exp $
41 #include "proto.h"
50 proto_WrapperOctets(struct lcp *lcp, u_short proto)
52 return (lcp->his_protocomp && !(proto & 0xff00)) ? 1 : 2;
56 proto_Prepend(struct mbuf *bp, u_short proto, unsigned comp, int extra)
60 cp[0] = proto >> 8;
61 cp[1] = proto & 0xff;
73 int pri __unused, u_short *proto)
75 log_Printf(LogDEBUG, "proto_LayerPush: Using 0x%04x\n", *proto);
76 bp = proto_Prepend(bp, *proto, l->lcp.his_protocomp
    [all...]
  /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/protobuf/python/google/protobuf/internal/
reflection_test.py 114 proto = unittest_pb2.TestAllTypes(
119 self.assertEqual(24, proto.optional_int32)
120 self.assertEqual(54.321, proto.optional_double)
121 self.assertEqual('optional_string', proto.optional_string)
125 proto = unittest_pb2.TestAllTypes(
131 self.assertEquals([1, 2, 3, 4], list(proto.repeated_int32))
132 self.assertEquals([1.23, 54.321], list(proto.repeated_double))
133 self.assertEquals([True, False, False], list(proto.repeated_bool))
134 self.assertEquals(["optional_string"], list(proto.repeated_string))
138 proto = unittest_pb2.TestAllTypes
    [all...]
  /bionic/libc/netbsd/net/
getservbyport.c 33 getservbyport(int port, const char *proto)
38 if (rs == NULL || proto == NULL) {
48 if ( s->s_port == port && !strcmp( s->s_proto, proto ) )
getservbyname.c 34 getservbyname(const char *name, const char *proto)
39 if (rs == NULL || proto == NULL || name == NULL) {
49 if ( !strcmp( s->s_name, name ) && !strcmp( s->s_proto, proto ) )
  /dalvik/vm/arch/generic/
Hints.cpp 52 u4 dvmPlatformInvokeHints( const DexProto* proto)
  /external/clang/test/Sema/
knr-def-call.c 32 void proto(int);
33 void proto(x) function
39 proto(42.1); // expected-warning{{implicit conversion from 'double' to 'int' changes value from 42.1 to 42}}
40 (&proto)(42.1); // expected-warning{{implicit conversion from 'double' to 'int' changes value from 42.1 to 42}}