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

1 2 3 4 5 67 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_policy.h 24 proto:1, member in struct:xt_policy_spec
44 u_int8_t proto; member in struct:xt_policy_elem
  /bionic/libc/tools/
genserv.py 18 def __init__(self,name,port,proto):
21 self.proto = proto
30 if self.proto == "tcp":
  /external/ceres-solver/internal/ceres/
sparse_matrix.h 90 // Dump the sparse matrix to a proto. Destroys the contents of proto.
91 virtual void ToProto(SparseMatrixProto* proto) const = 0;
block_sparse_matrix.cc 88 const BlockSparseMatrixProto& proto = outer_proto.block_matrix(); local
89 CHECK(proto.has_num_rows());
90 CHECK(proto.has_num_cols());
91 CHECK_EQ(proto.num_nonzeros(), proto.values_size());
93 num_rows_ = proto.num_rows();
94 num_cols_ = proto.num_cols();
95 num_nonzeros_ = proto.num_nonzeros();
99 for (int i = 0; i < proto.num_nonzeros(); ++i) {
100 values_[i] = proto.values(i)
251 BlockSparseMatrixProto* proto = outer_proto->mutable_block_matrix(); local
    [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 656 static bool UseMacro(const std::string &proto) {
660 if (proto.find('i') != std::string::npos)
665 if (proto.find('p') != std::string::npos ||
666 proto.find('c') != std::string::npos)
675 static bool MacroArgUsedDirectly(const std::string &proto, unsigned i) {
677 return (proto[i] == 'i' || proto[i] == 'p' || proto[i] == 'c');
681 static std::string GenArgs(const std::string &proto, StringRef typestr) {
682 bool define = UseMacro(proto);
    [all...]
  /external/expat/amiga/
launch.c 29 #include <proto/exec.h>
  /external/iproute2/include/linux/
ip6_tunnel.h 23 __u8 proto; /* tunnel protocol */ member in struct:ip6_tnl_parm
  /external/iproute2/ip/
tunnel.h 27 const char *tnl_strproto(__u8 proto);
  /external/protobuf/
generate_descriptor_proto.sh 31 ./protoc --cpp_out=dllexport_decl=LIBPROTOBUF_EXPORT:. google/protobuf/descriptor.proto && \
32 ./protoc --cpp_out=dllexport_decl=LIBPROTOC_EXPORT:. google/protobuf/compiler/plugin.proto
  /external/libpcap/
nametoaddr.c 86 #include "os-proto.h"
171 pcap_nametoport(const char *name, int *port, int *proto)
180 * same port number, change the proto to PROTO_UNDEF
189 *proto = IPPROTO_TCP;
192 *proto = PROTO_UNDEF;
205 *proto = IPPROTO_UDP;
212 *proto = PROTO_UNDEF;
225 pcap_nametoportrange(const char *name, int *port1, int *port2, int *proto)
242 if (pcap_nametoport(cpy, port1, proto) == 0) {
246 save_proto = *proto;
    [all...]
gencode.c 99 #include "os-proto.h"
1249 off_nl = -1; /* L3 proto location dep. on cookie type */
4957 int proto = q.proto; local
5319 int proto = q.proto; local
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
zip_output_unittest.sh 48 ' > testzip.proto
51 testzip.proto || fail 'protoc failed.'
70 if jar c testzip.proto > /dev/null; then
  /dalvik/vm/oo/
Object.cpp 212 const DexProto* proto; local
218 proto = &method->prototype;
220 if (strcmp(returnType, dexProtoGetReturnType(proto)) != 0) {
224 if (dexProtoGetParameterCount(proto) != argCount) {
228 dexParameterIteratorInit(&iterator, proto);
426 MethodType wantedType, bool isHier, const char* name, const DexProto* proto)
437 if (dvmCompareNameProtoAndMethod(name, proto, method) == 0) {
445 if (dvmCompareNameProtoAndMethod(name, proto, method) == 0) {
512 const DexProto* proto)
515 proto);
    [all...]
  /external/libppp/src/
ncp.h 98 #define isncp(proto) ((proto) == PROTO_IPCP || (proto) == PROTO_IPV6CP)
100 #define isncp(proto) ((proto) == PROTO_IPCP)
vjcomp.c 47 #include "proto.h"
74 int pri __unused, u_short *proto)
82 if (*proto == PROTO_IP && pip->ip_p == IPPROTO_TCP &&
93 *proto = PROTO_VJUNCOMP;
99 *proto = PROTO_VJCOMP;
166 u_short *proto)
170 switch (*proto) {
183 *proto = PROTO_IP;
nat_cmd.c 53 #include "proto.h"
111 const char *proto; local
121 proto = arg->argv[arg->argn];
122 if (strcmp(proto, "tcp") == 0) {
124 } else if (strcmp(proto, "udp") == 0) {
133 &hlocalport, proto);
140 proto);
149 &lremoteport, &hremoteport, proto);
251 prompt_Printf(arg->prompt, "proto redirect: invalid protocol\n");
259 prompt_Printf(arg->prompt, "proto redirect: invalid protocol\n")
    [all...]
  /dalvik/libdex/
DexDebugInfo.cpp 132 static void invalidStream(const char* classDescriptor, const DexProto* proto) {
134 char* methodDescriptor = dexProtoCopyMethodDescriptor(proto);
135 ALOGE("Invalid debug info stream. class %s; proto %s",
152 DexProto proto = { pDexFile, protoIdx }; local
162 * an initial this parameter. Also, the proto list should
166 assert(pCode->insSize == (dexProtoComputeArgsSize(&proto) + 1));
173 assert(pCode->insSize == dexProtoComputeArgsSize(&proto));
177 dexParameterIteratorInit(&iterator, &proto);
185 invalidStream(classDescriptor, &proto);
231 invalidStream(classDescriptor, &proto);
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 25 (* proto - This type represents the "prototype" for a function, which captures
28 type proto = Prototype of string * string array type
31 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 28 (* proto - This type represents the "prototype" for a function, which captures
31 type proto = type
36 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 31 (* proto - This type represents the "prototype" for a function, which captures
34 type proto = type
39 type func = Function of proto * expr
  /external/tcpdump/
print-chdlc.c 68 u_int proto; local
70 proto = EXTRACT_16BITS(&p[2]);
74 tok2str(ethertype_values, "Unknown", proto),
75 proto,
82 switch (proto) {
114 printf("unknown CHDLC protocol (0x%04x)", proto);
print-vjc.c 80 * We therefore leave "proto" - which is the PPP protocol type - in place,
85 vjc_print(register const char *bp, u_short proto _U_)
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_supplicant.conf 106 # key_mgmt, pairwise, group, proto variables
506 # proto=WPA, key_mgmt=WPA-NONE, pairwise=NONE, group=TKIP (or CCMP, but not
544 # proto: list of accepted protocols
    [all...]
  /development/ndk/platforms/android-3/include/linux/
if_tun.h 41 unsigned short proto; member in struct:tun_pi
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
if_tun.h 56 unsigned short proto; member in struct:tun_pi

Completed in 429 milliseconds

1 2 3 4 5 67 8 91011>>