/third_party/openGLES/xml/ |
H A D | readme.tex | 303 If a \tag{proto} or \tag{param} tag of a \tag{command} has a 365 If a \tag{proto} or \tag{param} tag of a \tag{command} has a 532 \item \tag{proto} must be the first element, and is a tag defining the C 561 \subsection{Command prototype (\tag{proto} tags)} 562 \label{tag:command:proto} 564 The \tag{proto} tag defines the return type and name of a command. 566 \subsubsection{Attributes of \tag{proto} tags} 577 \subsubsection{Contents of \tag{proto} tags} 579 The text elements of a \tag{proto} tag, with all other tags removed, is 642 <proto>voi [all...] |
/third_party/nghttp2/src/ |
H A D | util.cc | 866 bool check_h2_is_selected(const StringRef &proto) { in check_h2_is_selected() argument 867 return streq(NGHTTP2_H2, proto) || streq(NGHTTP2_H2_16, proto) || in check_h2_is_selected() 868 streq(NGHTTP2_H2_14, proto); in check_h2_is_selected() 896 for (const auto &proto : proto_list) { in select_protocol() 897 if (select_proto(out, outlen, in, inlen, StringRef{proto})) { in select_protocol()
|
/third_party/python/Lib/test/ |
H A D | test_ordered_dict.py | 314 for proto in range(pickle.HIGHEST_PROTOCOL + 1): 315 with self.subTest(proto=proto): 316 dup = pickle.loads(pickle.dumps(od, proto)) 355 for proto in range(-1, pickle.HIGHEST_PROTOCOL + 1): 356 dup = pickle.loads(pickle.dumps(od, proto))
|
H A D | test_dataclasses.py | 2068 for proto in range(pickle.HIGHEST_PROTOCOL + 1): 2069 with self.subTest(sample=sample, proto=proto): 2070 new_sample = pickle.loads(pickle.dumps(sample, proto)) 2075 another_new_sample = pickle.loads(pickle.dumps(new_sample, proto)) 3059 for proto in range(pickle.HIGHEST_PROTOCOL + 1): 3060 with self.subTest(proto=proto): 3062 p = pickle.loads(pickle.dumps(obj, protocol=proto)) 3067 p = pickle.loads(pickle.dumps(obj, protocol=proto)) [all...] |
H A D | mock_socket.py | 114 def socket(family=None, type=None, proto=None):
|
H A D | test_genericalias.py | 354 for proto in range(pickle.HIGHEST_PROTOCOL + 1): 355 with self.subTest(alias=alias, proto=proto): 356 s = pickle.dumps(alias, proto)
|
H A D | test_wsgiref.py | 716 for proto in "HTTP/0.9", "HTTP/1.0", "HTTP/1.1": 718 h = TestHandler(SERVER_PROTOCOL=proto) 725 h = TestHandler(SERVER_PROTOCOL=proto) 730 if proto=="HTTP/0.9":
|
/third_party/python/Lib/unittest/test/ |
H A D | test_discovery.py | 529 for proto in range(pickle.HIGHEST_PROTOCOL + 1): 530 pickle.loads(pickle.dumps(test, proto)) 552 for proto in range(pickle.HIGHEST_PROTOCOL + 1): 553 pickle.loads(pickle.dumps(suite, proto)) 579 for proto in range(pickle.HIGHEST_PROTOCOL + 1): 580 pickle.loads(pickle.dumps(suite, proto))
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | wpas_glue.c | 92 * @proto: Ethertype in host byte order 98 u16 proto, const u8 *buf, size_t len) in wpa_ether_send() 101 if (wpa_s->ext_eapol_frame_io && proto == ETH_P_EAPOL) { in wpa_ether_send() 117 return l2_packet_send(wpa_s->l2, dest, proto, buf, len); in wpa_ether_send() 122 return wpa_drv_send_eapol(wpa_s, dest, proto, buf,len); in wpa_ether_send() 435 static int _wpa_ether_send(void *wpa_s, const u8 *dest, u16 proto, in _wpa_ether_send() argument 438 return wpa_ether_send(wpa_s, dest, proto, buf, len); in _wpa_ether_send() 97 wpa_ether_send(struct wpa_supplicant *wpa_s, const u8 *dest, u16 proto, const u8 *buf, size_t len) wpa_ether_send() argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | wpa_auth_glue.c | 584 static int hostapd_wpa_auth_send_ether(void *ctx, const u8 *dst, u16 proto, in hostapd_wpa_auth_send_ether() argument 592 if (hapd->ext_eapol_frame_io && proto == ETH_P_EAPOL) { in hostapd_wpa_auth_send_ether() 607 if (proto == ETH_P_RRB && hapd->iface->interfaces && in hostapd_wpa_auth_send_ether() 625 hapd->own_addr, proto, in hostapd_wpa_auth_send_ether() 635 buf->h_proto = host_to_be16(proto); in hostapd_wpa_auth_send_ether() 637 ret = l2_packet_send(hapd->l2, dst, proto, (u8 *) buf, in hostapd_wpa_auth_send_ether()
|
/third_party/ffmpeg/libavformat/ |
H A D | http.c | 205 char hostname[1024], hoststr[1024], proto[10]; in http_open_cnx_internal() local 212 av_url_split(proto, sizeof(proto), auth, sizeof(auth), in http_open_cnx_internal() 225 if (!strcmp(proto, "https")) { in http_open_cnx_internal() 256 ff_url_join(urlbuf, sizeof(urlbuf), proto, NULL, hostname, port, "%s", in http_open_cnx_internal() 653 char hostname[1024], proto[10]; in http_listen() local 657 av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname), &port, in http_listen() 659 if (!strcmp(proto, "https")) in http_listen()
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_proactor_events.py | 1020 proto = self.MyProto(self.loop) 1025 lambda: proto, sock=srv_sock)) 1029 if proto.transport is not None: 1032 proto.transport.close() 1033 self.run_loop(proto.wait_closed()) 1040 return sock, proto 1043 sock, proto = self.prepare() 1052 sock, proto = self.prepare() 1061 sock, proto = self.prepare()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | wpa_common.c | 1615 data->proto = WPA_PROTO_RSN; in wpa_parse_wpa_ie_rsn() 1644 data->proto = WPA_PROTO_OSEN; in wpa_parse_wpa_ie_rsn() 1809 data->proto = WPA_PROTO_WPA; in wpa_parse_wpa_ie_wpa() 2409 * @proto: WPA/WPA2 version (WPA_PROTO_*) 2412 const char * wpa_key_mgmt_txt(int key_mgmt, int proto) in wpa_key_mgmt_txt() argument 2416 if (proto == (WPA_PROTO_RSN | WPA_PROTO_WPA)) in wpa_key_mgmt_txt() 2418 return proto == WPA_PROTO_RSN ? in wpa_key_mgmt_txt() 2421 if (proto == (WPA_PROTO_RSN | WPA_PROTO_WPA)) in wpa_key_mgmt_txt() 2423 return proto == WPA_PROTO_RSN ? in wpa_key_mgmt_txt() 2546 if (ie1d.proto in wpa_compare_rsn_ie() 2744 wpa_cipher_to_suite(int proto, int cipher) wpa_cipher_to_suite() argument [all...] |
/third_party/ffmpeg/libavutil/ppc/ |
H A D | cpu.c | 37 #include <proto/exec.h>
|
/third_party/curl/lib/ |
H A D | amigaos.c | 70 #include <proto/bsdsocket.h>
|
/third_party/cups-filters/filter/foomatic-rip/ |
H A D | options.h | 94 char *proto; /* *FoomaticRIPOptionPrototype: if this is set member
|
/third_party/lwip/src/include/lwip/priv/ |
H A D | api_msg.h | 91 u8_t proto; member
|
/third_party/skia/third_party/externals/freetype/builds/amiga/src/base/ |
H A D | ftdebug.c | 60 #include <proto/dos.h>
|
/third_party/libbpf/src/ |
H A D | netlink.c | 52 static int libbpf_netlink_open(__u32 *nl_pid, int proto) in libbpf_netlink_open() argument 62 sock = socket(AF_NETLINK, SOCK_RAW | SOCK_CLOEXEC, proto); in libbpf_netlink_open() 223 int proto, __dump_nlmsg_t parse_msg, in libbpf_netlink_send_recv() 230 sock = libbpf_netlink_open(&nl_pid, proto); in libbpf_netlink_send_recv() 222 libbpf_netlink_send_recv(struct libbpf_nla_req *req, int proto, __dump_nlmsg_t parse_msg, libbpf_dump_nlmsg_t parse_attr, void *cookie) libbpf_netlink_send_recv() argument
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-classes.cc | 691 Handle<Object> proto = PrototypeIterator::GetCurrent(iter); in GetSuperHolder() local 692 if (!proto->IsJSReceiver()) { in GetSuperHolder() 698 THROW_NEW_ERROR(isolate, NewTypeError(message, proto, name), JSReceiver); in GetSuperHolder() 700 return Handle<JSReceiver>::cast(proto); in GetSuperHolder()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/ |
H A D | IntermRebuild.cpp | 742 auto *const proto = node.getFunctionPrototype(); in traverseFunctionDefinitionChildren() local 743 ASSERT(proto); in traverseFunctionDefinitionChildren() 747 auto *const newProto = traverseAnyAs<TIntermFunctionPrototype>(*proto); in traverseFunctionDefinitionChildren() 752 if (newProto != proto || newBody != body) in traverseFunctionDefinitionChildren()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | generator.py | 1057 """Turn a `<proto>` `<name>` into C-language prototype 1303 proto = cmd.find('proto') 1313 # Done by walking the tree for <proto> element by element. 1317 pdecl += noneStr(proto.text) 1318 tdecl += noneStr(proto.text) 1321 for elem in proto:
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | ibss_rsn.c | 62 static int supp_ether_send(void *ctx, const u8 *dest, u16 proto, const u8 *buf, in supp_ether_send() argument 70 " proto=0x%04x len=%lu no_encrypt=%d)", in supp_ether_send() 71 __func__, MAC2STR_SEC(dest), proto, (unsigned long) len, in supp_ether_send() 75 return wpa_drv_tx_control_port(wpa_s, dest, proto, buf, len, in supp_ether_send() 79 return l2_packet_send(wpa_s->l2, dest, proto, buf, len); in supp_ether_send()
|
/third_party/vulkan-headers/registry/ |
H A D | generator.py | 1057 """Turn a `<proto>` `<name>` into C-language prototype 1303 proto = cmd.find('proto') 1313 # Done by walking the tree for <proto> element by element. 1317 pdecl += noneStr(proto.text) 1318 tdecl += noneStr(proto.text) 1321 for elem in proto:
|
/third_party/curl/lib/vtls/ |
H A D | rustls.c | 392 struct alpn_proto_buf proto; in cr_init_backend() local 402 Curl_alpn_to_proto_str(&proto, connssl->alpn); in cr_init_backend() 403 infof(data, VTLS_INFOF_ALPN_OFFER_1STR, proto.data); in cr_init_backend()
|