/dalvik/vm/oo/ |
Class.h | 268 const DexProto* proto, const Method* method);
|
/external/bluetooth/bluez/lib/bluetooth/ |
sdp_lib.h | 231 * Set the access protocols of the record to those specified in proto 233 int sdp_set_access_protos(sdp_record_t *rec, const sdp_list_t *proto); 236 * Set the additional access protocols of the record to those specified in proto 238 int sdp_set_add_access_protos(sdp_record_t *rec, const sdp_list_t *proto); 243 int sdp_get_proto_port(const sdp_list_t *list, int proto); 248 sdp_data_t *sdp_get_proto_desc(sdp_list_t *list, int proto);
|
/external/bluetooth/bluez/serial/ |
proxy.c | 150 sdp_list_t *apseq, *aproto, *profiles, *proto[2], *root, *svclass_id; local 178 proto[0] = sdp_list_append(NULL, &l2cap); 179 apseq = sdp_list_append(NULL, proto[0]); 182 proto[1] = sdp_list_append(NULL, &rfcomm); 184 proto[1] = sdp_list_append(proto[1], ch); 185 apseq = sdp_list_append(apseq, proto[1]); 195 sdp_list_free(proto[0], NULL); 196 sdp_list_free(proto[1], NULL);
|
/external/chromium/net/socket/ |
ssl_client_socket_mac.h | 46 virtual NextProtoStatus GetNextProto(std::string* proto);
|
ssl_client_socket_openssl.h | 58 virtual NextProtoStatus GetNextProto(std::string* proto);
|
ssl_client_socket_pool_unittest.cc | 379 std::string proto; local 380 ssl_socket->GetNextProto(&proto); 381 EXPECT_EQ(SSLClientSocket::NextProtoFromString(proto), 411 std::string proto; local 412 ssl_socket->GetNextProto(&proto); 413 EXPECT_EQ(SSLClientSocket::NextProtoFromString(proto), 710 std::string proto; local 711 ssl_socket->GetNextProto(&proto); 712 EXPECT_EQ(SSLClientSocket::NextProtoFromString(proto),
|
ssl_client_socket_win.h | 51 virtual NextProtoStatus GetNextProto(std::string* proto);
|
/external/expat/tests/benchmark/ |
benchmark.c | 8 #include <proto/expat.h>
|
/external/iproute2/include/linux/netfilter_ipv4/ |
ip_tables.h | 41 u_int16_t proto; member in struct:ipt_ip
|
/external/ipsec-tools/src/racoon/ |
admin.c | 543 admin2pfkey_proto(proto) 544 u_int proto; 546 switch (proto) { 555 "unsupported proto for admin: %d\n", proto);
|
policy.h | 92 u_int16_t proto; /* IPPROTO_ESP or IPPROTO_AH */ member in struct:secasindex
|
/external/iptables/include/linux/netfilter_ipv4/ |
ip_tables.h | 41 u_int16_t proto; member in struct:ipt_ip
|
/external/iptables/iptables/ |
ip6tables.c | 255 "[!] --proto -p proto protocol: by number or name, eg. `tcp'\n" 382 static int is_exthdr(uint16_t proto) 384 return (proto == IPPROTO_ROUTING || 385 proto == IPPROTO_FRAGMENT || 386 proto == IPPROTO_AH || 387 proto == IPPROTO_DSTOPTS); 575 const char *pname = proto_to_name(fw->ipv6.proto, format&FMT_NUMERIC); 579 printf(FMT("%-5hu", "%hu "), fw->ipv6.proto); 1012 static void print_proto(uint16_t proto, int invert [all...] |
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
codegen.ml | 80 | Ast.Function (proto, body) -> 82 let the_function = codegen_proto proto in
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
codegen.ml | 80 | Ast.Function (proto, body) -> 82 let the_function = codegen_proto proto in
|
/external/protobuf/src/google/protobuf/compiler/python/ |
python_generator.h | 33 // Generates Python code for a given .proto file. 138 const DescriptorT& descriptor, DescriptorProtoT& proto) const;
|
/external/protobuf/src/google/protobuf/ |
descriptor_database_unittest.cc | 60 static void ExpectContainsType(const FileDescriptorProto& proto, 62 for (int i = 0; i < proto.message_type_size(); i++) { 63 if (proto.message_type(i).name() == type_name) return; 65 ADD_FAILURE() << "\"" << proto.name() 184 "name: \"foo.proto\" " 187 "name: \"bar.proto\" " 192 EXPECT_TRUE(database_->FindFileByName("foo.proto", &file)); 193 EXPECT_EQ("foo.proto", file.name()); 199 EXPECT_TRUE(database_->FindFileByName("bar.proto", &file)); 200 EXPECT_EQ("bar.proto", file.name()) [all...] |
/external/webkit/Source/WebCore/bindings/scripts/test/V8/ |
V8TestMediaQueryListListener.cpp | 62 v8::Local<v8::ObjectTemplate> proto = desc->PrototypeTemplate(); local
|
/external/wpa_supplicant_8/src/common/ |
wpa_common.c | 397 data->proto = WPA_PROTO_RSN; 587 data->proto = WPA_PROTO_WPA; 918 * @proto: WPA/WPA2 version (WPA_PROTO_*) 921 const char * wpa_key_mgmt_txt(int key_mgmt, int proto) 925 if (proto == (WPA_PROTO_RSN | WPA_PROTO_WPA)) 927 return proto == WPA_PROTO_RSN ? 930 if (proto == (WPA_PROTO_RSN | WPA_PROTO_WPA)) 932 return proto == WPA_PROTO_RSN ? 979 if (ie1d.proto == ie2d.proto & [all...] |
/external/v8/test/mjsunit/harmony/ |
proxies-function.js | 362 function TestConstruct(proto, constructTrap) { 363 TestConstruct2(proto, constructTrap, handlerWithPrototype) 364 TestConstruct2(proto, constructTrap, handlerSansPrototype) 367 function TestConstruct2(proto, constructTrap, handler) { 372 assertSame(proto, Object.getPrototypeOf(o)) 378 assertSame(proto, Object.getPrototypeOf(o)) 394 function TestConstructFromCall(proto, returnsThis, callTrap) { 396 TestConstructFromCall2(proto, returnsThis, callTrap, handlerSansPrototype) 399 function TestConstructFromCall2(proto, returnsThis, callTrap, handler) { 406 // assertSame(proto, Object.getPrototypeOf(o) [all...] |
/external/iptables/include/ |
xtables.h | 415 extern int xtables_service_to_port(const char *name, const char *proto); 416 extern u_int16_t xtables_parse_port(const char *port, const char *proto);
|
/external/kernel-headers/original/linux/netfilter_ipv4/ |
ip_conntrack.h | 19 /* insert conntrack proto private data here */ 27 /* insert expect proto private data here */ 104 union ip_conntrack_proto proto; member in struct:ip_conntrack 161 /* This is the original per-proto part, used to map the 265 extern void ip_conntrack_proto_put(struct ip_conntrack_protocol *proto);
|
/external/llvm/examples/Kaleidoscope/Chapter2/ |
toy.cpp | 130 PrototypeAST *Proto; 133 FunctionAST(PrototypeAST *proto, ExprAST *body) 134 : Proto(proto), Body(body) {} 308 PrototypeAST *Proto = ParsePrototype(); 309 if (Proto == 0) return 0; 312 return new FunctionAST(Proto, E); 319 // Make an anonymous proto. 320 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>()); 321 return new FunctionAST(Proto, E) [all...] |
/external/openssh/regress/ |
Makefile | 18 proto-version \ 19 proto-mismatch \
|
/external/ppp/pppd/ |
utils.c | 487 u_short proto; local 492 GETSHORT(proto, p); 495 if (proto == protp->protocol) 505 if (proto == (protp->protocol & ~0x8000)) 515 printer(arg, "[proto=0x%x]", proto); 841 int proto; local 850 proto = (p[2] << 8) + p[3]; 851 if (debug <= 1 && unsuccess == 0 && proto == PPP_LCP
|