/prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/linux/ |
if_tun.h | 41 unsigned short proto; member in struct:tun_pi
|
/prebuilts/ndk/8/platforms/android-8/arch-mips/usr/include/linux/ |
if_tun.h | 41 unsigned short proto; member in struct:tun_pi
|
/prebuilts/ndk/8/platforms/android-8/arch-x86/usr/include/linux/ |
if_tun.h | 41 unsigned short proto; member in struct:tun_pi
|
/prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/ |
if_tun.h | 41 unsigned short proto; member in struct:tun_pi
|
/prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/ |
if_tun.h | 41 unsigned short proto; member in struct:tun_pi
|
/prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/ |
if_tun.h | 41 unsigned short proto; member in struct:tun_pi
|
/external/webkit/Source/JavaScriptCore/runtime/ |
JSActivation.h | 69 static Structure* createStructure(JSGlobalData& globalData, JSValue proto) { return Structure::create(globalData, proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info); }
|
JSStaticScopeObject.h | 50 static Structure* createStructure(JSGlobalData& globalData, JSValue proto) { return Structure::create(globalData, proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount, &s_info); }
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Exceptions/ |
15.11.7.6-001.js | 59 var proto = F.prototype; 63 if (F[prop] === proto)
|
/external/wpa_supplicant_8/src/drivers/ |
driver_none.c | 47 u16 proto, const u8 *data, size_t data_len) 77 static int none_driver_send_eapol(void *priv, const u8 *dest, u16 proto,
|
/ndk/sources/host-tools/make-3.81/ |
amiga.c | 24 #include <proto/exec.h> 25 #include <proto/dos.h>
|
/external/iptables/extensions/ |
libxt_policy.c | 35 "[!] --proto proto match protocol (ah/esp/ipcomp)\n" 55 {.name = "proto", .id = O_PROTO, .type = XTTYPE_PROTOCOL, 143 if (e->match.proto) 145 "policy match: double --proto option"); 146 e->proto = cb->val.protocol; 147 if (e->proto != IPPROTO_AH && e->proto != IPPROTO_ESP && 148 e->proto != IPPROTO_COMP) 151 e->match.proto = 1 [all...] |
libipt_MASQUERADE.c | 80 if (entry->ip.proto == IPPROTO_TCP 81 || entry->ip.proto == IPPROTO_UDP 82 || entry->ip.proto == IPPROTO_SCTP 83 || entry->ip.proto == IPPROTO_DCCP 84 || entry->ip.proto == IPPROTO_ICMP)
|
libipt_REDIRECT.c | 81 if (entry->ip.proto == IPPROTO_TCP 82 || entry->ip.proto == IPPROTO_UDP 83 || entry->ip.proto == IPPROTO_SCTP 84 || entry->ip.proto == IPPROTO_DCCP 85 || entry->ip.proto == IPPROTO_ICMP)
|
/external/kernel-headers/original/linux/ |
if_pppox.h | 205 } proto; member in struct:pppox_sock 208 #define pppoe_dev proto.pppoe.dev 209 #define pppoe_ifindex proto.pppoe.ifindex 210 #define pppoe_pa proto.pppoe.pa 211 #define pppoe_relay proto.pppoe.relay
|
/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...] |
/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::__anon15877 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);
|