HomeSort by relevance Sort by last modified time
    Searched refs:proto (Results 526 - 550 of 723) sorted by null

<<212223242526272829

  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
wpa.h 47 int (*ether_send)(void *ctx, const u8 *dest, u16 proto, const u8 *buf,
  /external/wpa_supplicant_8/wpa_supplicant/
preauth_test.c 102 static int wpa_ether_send(void *wpa_s, const u8 *dest, u16 proto,
driver_i.h 212 const u8 *dst, u16 proto,
216 return wpa_s->driver->send_eapol(wpa_s->drv_priv, dst, proto,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpc/
clnt.h 405 * get the port number on the host for the rpc program,version and proto
408 u_long __versnum, u_int proto) __THROW;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
yp_prot.h 109 u_int proto; member in struct:ypreq_xfr
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpc/
clnt.h 405 * get the port number on the host for the rpc program,version and proto
408 u_long __versnum, u_int proto) __THROW;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
yp_prot.h 109 u_int proto; member in struct:ypreq_xfr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpc/
clnt.h 405 * get the port number on the host for the rpc program,version and proto
408 u_long __versnum, u_int proto) __THROW;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
yp_prot.h 109 u_int proto; member in struct:ypreq_xfr
  /dalvik/vm/reflect/
Annotation.cpp 260 DexProto proto; local
261 dexProtoSetFromMethodId(&proto, pDexFile, pMethodId);
268 resMethod = dvmFindDirectMethod(resClass, name, &proto);
276 resMethod = dvmFindMethodHier(resClass, name, &proto);
1574 DexProto proto; local
    [all...]
  /external/chromium/net/socket/
ssl_client_socket_nss.cc 552 SSLClientSocketNSS::GetNextProto(std::string* proto) {
560 proto->clear();
567 proto->clear();
570 *proto = std::string(reinterpret_cast<char*>(buf), len);
573 *proto = std::string(reinterpret_cast<char*>(buf), len);
577 proto->clear();
582 proto->clear();
    [all...]
socket_test_util.h 592 virtual NextProtoStatus GetNextProto(std::string* proto);
726 virtual NextProtoStatus GetNextProto(std::string* proto);
    [all...]
  /external/iptables/iptables/
xtables.c 472 int xtables_service_to_port(const char *name, const char *proto)
476 if ((service = getservbyname(name, proto)) != NULL)
482 uint16_t xtables_parse_port(const char *port, const char *proto)
487 (portnum = xtables_service_to_port(port, proto)) != (unsigned)-1)
1807 unsigned int proto, i; local
    [all...]
  /external/ppp/pppd/
auth.c 1034 np_up(unit, proto)
1035 int unit, proto;
1079 np_down(unit, proto)
1080 int unit, proto;
1096 np_finished(unit, proto)
1097 int unit, proto;
    [all...]
  /external/webkit/Tools/android/flex-2.5.4a/
flex.skl 65 #define YY_PROTO(proto) proto
67 #define YY_PROTO(proto) ()
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-actions.h 702 template <size_t N, typename Proto>
703 class SetArgumentPointeeAction<N, Proto, true> {
706 // N-th function argument to 'proto'. Both ProtocolMessage and
709 explicit SetArgumentPointeeAction(const Proto& proto) : proto_(new Proto) {
710 proto_->CopyFrom(proto);
720 const internal::linked_ptr<Proto> proto_;
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
win32socketserver.cc 248 int proto = (SOCK_DGRAM == type) ? IPPROTO_UDP : IPPROTO_TCP; local
249 socket_ = ::WSASocket(AF_INET, type, proto, NULL, NULL, 0);
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 177 PrototypeAST *Proto;
180 FunctionAST(PrototypeAST *proto, ExprAST *body)
181 : Proto(proto), Body(body) {}
428 PrototypeAST *Proto = ParsePrototype();
429 if (Proto == 0) return 0;
432 return new FunctionAST(Proto, E);
439 // Make an anonymous proto.
440 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
441 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 205 PrototypeAST *Proto;
208 FunctionAST(PrototypeAST *proto, ExprAST *body)
209 : Proto(proto), Body(body) {}
513 PrototypeAST *Proto = ParsePrototype();
514 if (Proto == 0) return 0;
517 return new FunctionAST(Proto, E);
524 // Make an anonymous proto.
525 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
526 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 153 (* Make an anonymous proto. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
parser.ml 190 (* Make an anonymous proto. *)
  /external/tcpdump/
print-tcp.c 123 u_char proto; member in struct:phu::phdr
133 phu.ph.proto = IPPROTO_TCP;
print-udp.c 296 u_char proto; member in struct:phu::phdr
306 phu.ph.proto = IPPROTO_UDP;
  /external/v8/test/cctest/
test-log.cc 375 v8::Handle<v8::ObjectTemplate> proto = obj->PrototypeTemplate(); local
377 proto->Set(v8_str("method1"),
  /external/wpa_supplicant_6/wpa_supplicant/
wpa_supplicant_i.h 640 const u8 *dst, u16 proto,
644 return wpa_s->driver->send_eapol(wpa_s->drv_priv, dst, proto,

Completed in 1182 milliseconds

<<212223242526272829