HomeSort by relevance Sort by last modified time
    Searched refs:proto (Results 226 - 250 of 802) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libppp/src/
async.c 47 #include "proto.h"
84 async_Encode(struct async *async, u_char **cp, u_char c, int proto)
89 if ((c < 0x20 && (proto == PROTO_LCP || (async->his_accmap & (1 << c))))
104 int pri __unused, u_short *proto)
126 async_Encode(&p->async, &cp, *sp++, *proto);
191 u_short *proto __unused)
pred.c 175 int pri __unused, u_short *proto, struct mbuf *bp)
184 orglen = m_length(bp) + 2; /* add count of proto */
190 *cp++ = *proto >> 8;
191 *cp++ = *proto & 0377;
212 *proto = ccp_Proto(ccp);
217 Pred1Input(void *v, struct ccp *ccp, u_short *proto, struct mbuf *bp)
267 *proto = *pp++;
268 if (*proto & 1) {
274 *proto = (*proto << 8) | *pp++
    [all...]
deflate.c 70 int pri __unused, u_short *proto, struct mbuf *mp)
78 log_Printf(LogDEBUG, "DeflateOutput: Proto %02x (%d bytes)\n", *proto, ilen);
85 if (*proto < 0x100) { /* Compress the protocol */
86 rp[0] = *proto & 0377;
89 rp[0] = *proto >> 8;
90 rp[1] = *proto & 0377;
155 ilen, olen, *proto);
180 log_Printf(LogDEBUG, "DeflateOutput: %d => %d bytes, proto 0x%04x\n",
181 ilen, olen, *proto);
    [all...]
mppe.c 56 #include "proto.h"
159 u_short *proto, struct mbuf *mp)
170 log_Printf(LogDEBUG, "MPPE: Output: Proto %02x (%d bytes)\n", *proto, ilen);
171 if (*proto < 0x21 && *proto > 0xFA) {
212 nproto = htons(*proto);
223 *proto = ccp_Proto(ccp);
228 log_Printf(LogDEBUG, "MPPE: Output: Encrypted: Proto %02x (%d bytes)\n",
229 *proto, len)
    [all...]
  /external/v8/src/
proxy.js 34 $Proxy.create = function(handler, proto) {
37 if (IS_UNDEFINED(proto))
38 proto = null
39 else if (!(IS_SPEC_OBJECT(proto) || proto === null))
41 return %CreateJSProxy(handler, proto)
73 var proto = this.prototype
74 if (!IS_SPEC_OBJECT(proto)) proto = $Object.prototype
76 obj.__proto__ = proto
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecode/
Instruction.h 66 WriteBarrierBase<Structure> proto; member in union:JSC::PolymorphicAccessStructureList::PolymorphicStubInfo::__anon17515
74 u.proto.clear();
82 u.proto.set(globalData, owner, _proto);
117 if (info.u.proto && !info.isChain)
118 markStack.append(&info.u.proto);
  /external/protobuf/python/google/protobuf/
descriptor.py 41 """Descriptors essentially contain exactly the information found in a .proto
141 def CopyToProto(self, proto):
142 """Copies this to the matching proto in descriptor_pb2.
145 proto: An empty proto instance from descriptor_pb2.
153 proto.ParseFromString(self.file.serialized_pb[
256 def CopyToProto(self, proto):
260 proto: An empty descriptor_pb2.DescriptorProto.
263 super(Descriptor, self).CopyToProto(proto)
279 """Descriptor for a single field in a .proto file
    [all...]
  /external/iptables/iptables/
xshared.c 41 proto_to_name(uint8_t proto, int nolookup)
45 if (proto && !nolookup) {
46 struct protoent *pent = getprotobynumber(proto);
52 if (xtables_chain_protos[i].num == proto)
62 unsigned int proto; local
64 if (xtables_strtoui(pname, NULL, &proto, 0, UINT8_MAX)) {
65 const char *protoname = proto_to_name(proto, nolookup);
79 * loading of the protocol match extension. '-p tcp' means 'l4 proto 6' and at
  /external/tcpdump/
print-ppp.c 409 static void handle_ctrl_proto (u_int proto,const u_char *p, int length);
419 static void handle_ppp (u_int proto, const u_char *p, int length);
424 handle_ctrl_proto(u_int proto, const u_char *pptr, int length)
434 typestr = tok2str(ppptype2str, "unknown ctrl-proto (0x%04x)", proto);
484 switch (proto) {
647 printf("%s", tok2str(ppptype2str,"Unknown Auth Proto (0x04x)",EXTRACT_16BITS(p+2)));
1270 int i, proto; local
1399 u_int proto,ppp_header; local
1537 u_int proto; local
    [all...]
  /dalvik/libdex/
DexProto.cpp 380 static int protoCompareToParameterDescriptors(const DexProto* proto,
384 dexParameterIteratorInit(&iterator, proto);
424 // This includes the case where the proto is shorter.
443 int dexProtoCompareToDescriptor(const DexProto* proto,
450 int result = strcmp(dexProtoGetReturnType(proto), returnType);
457 return protoCompareToParameterDescriptors(proto, descriptor, true);
461 int dexProtoCompareToParameterDescriptors(const DexProto* proto,
463 return protoCompareToParameterDescriptors(proto, descriptors, false);
483 pIterator->proto = pProto;
522 return dexStringByTypeIdx(pIterator->proto->dexFile, idx)
    [all...]
  /dalvik/vm/
Native.h 58 u4 dvmPlatformInvokeHints(const DexProto* proto);
  /external/ceres-solver/internal/ceres/
block_sparse_matrix_test.cc 115 SparseMatrixProto proto; local
116 A_->ToProto(&proto);
118 LOG(INFO) << proto.DebugString();
120 BlockSparseMatrix A2(proto);
compressed_row_sparse_matrix_test.cc 151 SparseMatrixProto proto; local
152 crsm->ToProto(&proto);
154 CompressedRowSparseMatrix n(proto);
160 ASSERT_EQ(crsm->rows()[i], proto.compressed_row_matrix().rows(i));
165 ASSERT_EQ(crsm->cols()[i], proto.compressed_row_matrix().cols(i));
167 ASSERT_EQ(crsm->values()[i], proto.compressed_row_matrix().values(i));
dense_sparse_matrix.cc 89 const DenseSparseMatrixProto& proto = outer_proto.dense_matrix(); local
92 m_(i, j) = proto.values(m_.cols() * i + j);
127 DenseSparseMatrixProto* proto = outer_proto->mutable_dense_matrix(); local
129 proto->set_num_rows(num_rows());
130 proto->set_num_cols(num_cols());
134 proto->add_values(m_.data()[i]);
  /external/chromium/net/socket/
ssl_client_socket.h 81 // *proto is set to the resulting protocol (n.b. that the string may have
83 // kNextProtoUnsupported: *proto is cleared.
84 // kNextProtoNegotiated: *proto is set to the negotiated protocol.
85 // kNextProtoNoOverlap: *proto is set to the first protocol in the
87 virtual NextProtoStatus GetNextProto(std::string* proto) = 0;
  /external/expat/examples/
elements.c 12 #include <proto/expat.h>
  /external/iproute2/include/
rt_names.h 17 const char *inet_proto_n2a(int proto, char *buf, int len);
  /external/iproute2/ip/
xfrm.h 120 int xfrm_xfrmproto_is_ipsec(__u8 proto);
121 int xfrm_xfrmproto_is_ro(__u8 proto);
125 const char *strxf_xfrmproto(__u8 proto);
130 const char *strxf_proto(__u8 proto);
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptengine_p.cpp 99 QScriptValuePrivate* proto = prototype ? prototype : newObject(); local
100 return newFunction(funJS, proto);
108 QScriptValuePrivate* proto = newObject(); local
109 return newFunction(funJS, proto);
  /external/wpa_supplicant_8/src/l2_packet/
l2_packet.h 83 * @proto: Protocol/ethertype for the packet in host byte order (only used if
91 int l2_packet_send(struct l2_packet_data *l2, const u8 *dst_addr, u16 proto,
  /dalvik/vm/oo/
Resolve.cpp 204 DexProto proto; local
205 dexProtoSetFromMethodId(&proto, pDvmDex->pDexFile, pMethodId);
214 resMethod = dvmFindDirectMethod(resClass, name, &proto);
216 resMethod = dvmFindDirectMethodHier(resClass, name, &proto);
218 resMethod = dvmFindVirtualMethodHier(resClass, name, &proto);
337 DexProto proto; local
338 dexProtoSetFromMethodId(&proto, pDvmDex->pDexFile, pMethodId);
341 resMethod = dvmFindInterfaceMethodHier(resClass, methodName, &proto);
  /external/qemu/slirp-android/
libslirp.h 44 int dst_hport, u_int8_t proto);
51 u_int8_t proto);
  /external/webkit/Source/WebKit/chromium/src/
BoundObject.cpp 58 v8::Local<v8::ObjectTemplate> proto = m_hostTemplate->PrototypeTemplate(); local
60 proto->Set(
  /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,
  /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

Completed in 356 milliseconds

1 2 3 4 5 6 7 8 91011>>