/third_party/python/Lib/test/ |
H A D | test_httplib.py | 290 resp = client.HTTPResponse(sock) 291 resp.begin() 293 self.assertEqual(resp.getheader('First'), 'val') 294 self.assertEqual(resp.getheader('Second'), 'val') 310 resp = client.HTTPResponse(sock) 311 resp.begin() 312 self.assertEqual(resp.getheader('Content-Length'), '0') 313 self.assertEqual(resp.msg['Content-Length'], '0') 314 self.assertEqual(resp.getheader("!#$%&'*+-.^_`|~"), 'value') 315 self.assertEqual(resp [all...] |
H A D | test_nntplib.py | 47 resp, lines = self.server.help() 48 self.assertTrue(resp.startswith("100 "), resp) 53 resp, groups = self.server.list() 59 resp, groups = self.server.list(self.GROUP_PAT) 67 resp = cm.exception.response 68 self.assertTrue(resp.startswith("500 "), resp) 74 resp, groups = self.server.newgroups(dt) 96 resp, desc [all...] |
/third_party/python/Lib/ |
H A D | ftplib.py | 244 resp = self.getmultiline() 246 print('*resp*', self.sanitize(resp)) 247 self.lastresp = resp[:3] 248 c = resp[:1] 250 return resp 252 raise error_temp(resp) 254 raise error_perm(resp) 255 raise error_proto(resp) 259 resp [all...] |
H A D | nntplib.py | 10 >>> resp, count, first, last, name = s.group('comp.lang.python') 13 >>> resp, subs = s.xhdr('subject', '{0}-{1}'.format(first, last)) 14 >>> resp = s.quit() 17 Here 'resp' is the server response line. 22 >>> resp = s.post(f) 421 resp, caps = self.capabilities() 481 resp = self._getline() 482 if self.debugging: print('*resp*', repr(resp)) 483 resp [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | gas_server.c | 30 void (*status_cb)(void *ctx, struct wpabuf *resp, int ok); 39 struct wpabuf *resp; member 50 void (*tx)(void *ctx, int freq, const u8 *da, struct wpabuf *resp, 67 (unsigned long) (response->resp ? in gas_server_response_timeout() 68 wpabuf_len(response->resp) : 0)); in gas_server_response_timeout() 70 response->resp, 0); in gas_server_response_timeout() 71 response->resp = NULL; in gas_server_response_timeout() 83 wpabuf_free(response->resp); in gas_server_free_response() 97 struct wpabuf *resp; in gas_server_send_resp() local 122 resp in gas_server_send_resp() 172 struct wpabuf *resp; gas_server_rx_initial_req() local 263 struct wpabuf *resp; gas_server_handle_rx_comeback_req() local 471 gas_server_set_resp(struct gas_server *gas, void *resp_ctx, struct wpabuf *resp) gas_server_set_resp() argument 550 gas_server_register(struct gas_server *gas, const u8 *adv_proto_id, u8 adv_proto_id_len, struct wpabuf * (*req_cb)(void *ctx, void *resp_ctx, const u8 *sa, const u8 *query, size_t query_len, u16 *comeback_delay), void (*status_cb)(void *ctx, struct wpabuf *resp, int ok), void *ctx) gas_server_register() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | p2p_supplicant_sd.c | 183 static void wpas_sd_add_empty(struct wpabuf *resp, u8 srv_proto, in wpas_sd_add_empty() argument 188 if (wpabuf_tailroom(resp) < 5) in wpas_sd_add_empty() 192 len_pos = wpabuf_put(resp, 2); in wpas_sd_add_empty() 193 wpabuf_put_u8(resp, srv_proto); in wpas_sd_add_empty() 194 wpabuf_put_u8(resp, srv_trans_id); in wpas_sd_add_empty() 196 wpabuf_put_u8(resp, status); in wpas_sd_add_empty() 198 WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2); in wpas_sd_add_empty() 202 static void wpas_sd_add_proto_not_avail(struct wpabuf *resp, u8 srv_proto, in wpas_sd_add_proto_not_avail() argument 205 wpas_sd_add_empty(resp, srv_proto, srv_trans_id, in wpas_sd_add_proto_not_avail() 210 static void wpas_sd_add_bad_request(struct wpabuf *resp, u argument 217 wpas_sd_add_not_found(struct wpabuf *resp, u8 srv_proto, u8 srv_trans_id) wpas_sd_add_not_found() argument 225 wpas_sd_all_bonjour(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id) wpas_sd_all_bonjour() argument 288 wpas_sd_req_bonjour(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id, const u8 *query, size_t query_len) wpas_sd_req_bonjour() argument 359 wpas_sd_all_upnp(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id) wpas_sd_all_upnp() argument 395 wpas_sd_req_upnp(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id, const u8 *query, size_t query_len) wpas_sd_req_upnp() argument 477 wpas_sd_req_wfd(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id, const u8 *query, size_t query_len) wpas_sd_req_wfd() argument 557 wpas_sd_req_asp(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id, const u8 *query, size_t query_len) wpas_sd_req_asp() argument 674 wpas_sd_all_asp(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id) wpas_sd_all_asp() argument 697 struct wpabuf *resp; wpas_sd_request() local 1208 wpas_p2p_service_add_bonjour(struct wpa_supplicant *wpa_s, struct wpabuf *query, struct wpabuf *resp) wpas_p2p_service_add_bonjour() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | p2p_supplicant_sd.c | 185 static void wpas_sd_add_empty(struct wpabuf *resp, u8 srv_proto, in wpas_sd_add_empty() argument 190 if (wpabuf_tailroom(resp) < 5) in wpas_sd_add_empty() 194 len_pos = wpabuf_put(resp, 2); in wpas_sd_add_empty() 195 wpabuf_put_u8(resp, srv_proto); in wpas_sd_add_empty() 196 wpabuf_put_u8(resp, srv_trans_id); in wpas_sd_add_empty() 198 wpabuf_put_u8(resp, status); in wpas_sd_add_empty() 200 WPA_PUT_LE16(len_pos, (u8 *) wpabuf_put(resp, 0) - len_pos - 2); in wpas_sd_add_empty() 204 static void wpas_sd_add_proto_not_avail(struct wpabuf *resp, u8 srv_proto, in wpas_sd_add_proto_not_avail() argument 207 wpas_sd_add_empty(resp, srv_proto, srv_trans_id, in wpas_sd_add_proto_not_avail() 212 static void wpas_sd_add_bad_request(struct wpabuf *resp, u argument 219 wpas_sd_add_not_found(struct wpabuf *resp, u8 srv_proto, u8 srv_trans_id) wpas_sd_add_not_found() argument 227 wpas_sd_all_bonjour(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id) wpas_sd_all_bonjour() argument 290 wpas_sd_req_bonjour(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id, const u8 *query, size_t query_len) wpas_sd_req_bonjour() argument 361 wpas_sd_all_upnp(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id) wpas_sd_all_upnp() argument 397 wpas_sd_req_upnp(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id, const u8 *query, size_t query_len) wpas_sd_req_upnp() argument 479 wpas_sd_req_wfd(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id, const u8 *query, size_t query_len) wpas_sd_req_wfd() argument 559 wpas_sd_req_asp(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id, const u8 *query, size_t query_len) wpas_sd_req_asp() argument 676 wpas_sd_all_asp(struct wpa_supplicant *wpa_s, struct wpabuf *resp, u8 srv_trans_id) wpas_sd_all_asp() argument 699 struct wpabuf *resp; wpas_sd_request() local 1238 wpas_p2p_service_add_bonjour(struct wpa_supplicant *wpa_s, struct wpabuf *query, struct wpabuf *resp) wpas_p2p_service_add_bonjour() argument [all...] |
/third_party/lwip/src/apps/netbiosns/ |
H A D | netbiosns.c | 377 struct netbios_resp *resp; in netbiosns_recv() local 381 resp = (struct netbios_resp *)q->payload; in netbiosns_recv() 384 resp->resp_hdr.trans_id = netbios_hdr->trans_id; in netbiosns_recv() 385 resp->resp_hdr.flags = PP_HTONS(NETB_HFLAG_RESPONSE | in netbiosns_recv() 389 resp->resp_hdr.questions = 0; in netbiosns_recv() 390 resp->resp_hdr.answerRRs = PP_HTONS(1); in netbiosns_recv() 391 resp->resp_hdr.authorityRRs = 0; in netbiosns_recv() 392 resp->resp_hdr.additionalRRs = 0; in netbiosns_recv() 395 MEMCPY( resp->resp_name.encname, netbios_question_hdr->encname, sizeof(netbios_question_hdr->encname)); in netbiosns_recv() 396 resp in netbiosns_recv() 418 struct netbios_answer *resp; netbiosns_recv() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/ |
H A D | gas_server.c | 28 void (*status_cb)(void *ctx, struct wpabuf *resp, int ok); 37 struct wpabuf *resp; member 47 void (*tx)(void *ctx, int freq, const u8 *da, struct wpabuf *resp, 64 (unsigned long) wpabuf_len(response->resp)); in gas_server_response_timeout() 66 response->resp, 0); in gas_server_response_timeout() 67 response->resp = NULL; in gas_server_response_timeout() 79 wpabuf_free(response->resp); in gas_server_free_response() 92 struct wpabuf *resp; in gas_server_send_resp() local 119 resp = gas_build_initial_resp(dialog_token, WLAN_STATUS_SUCCESS, in gas_server_send_resp() 123 if (!resp) { in gas_server_send_resp() 167 struct wpabuf *resp; gas_server_rx_initial_req() local 245 struct wpabuf *resp; gas_server_handle_rx_comeback_req() local 461 gas_server_register(struct gas_server *gas, const u8 *adv_proto_id, u8 adv_proto_id_len, struct wpabuf * (*req_cb)(void *ctx, const u8 *sa, const u8 *query, size_t query_len), void (*status_cb)(void *ctx, struct wpabuf *resp, int ok), void *ctx) gas_server_register() argument [all...] |
/third_party/curl/lib/ |
H A D | curl_sasl.c | 350 struct bufref resp; in Curl_sasl_start() local 365 Curl_bufref_init(&resp); in Curl_sasl_start() 379 result = Curl_auth_create_external_message(conn->user, &resp); in Curl_sasl_start() 398 &resp); in Curl_sasl_start() 414 result = Curl_auth_gsasl_token(data, &nullmsg, &conn->gsasl, &resp); in Curl_sasl_start() 427 result = Curl_auth_gsasl_token(data, &nullmsg, &conn->gsasl, &resp); in Curl_sasl_start() 457 &conn->ntlm, &resp); in Curl_sasl_start() 472 &resp); in Curl_sasl_start() 482 &resp); in Curl_sasl_start() 492 &resp); in Curl_sasl_start() 538 struct bufref resp; Curl_sasl_continue() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/ |
H A D | eap_sake.c | 148 struct wpabuf *resp; in eap_sake_process_identity() local 168 resp = eap_sake_build_msg(data, id, 2 + data->peerid_len, in eap_sake_process_identity() 170 if (resp == NULL) in eap_sake_process_identity() 174 eap_sake_add_attr(resp, EAP_SAKE_AT_PEERID, in eap_sake_process_identity() 179 return resp; in eap_sake_process_identity() 191 struct wpabuf *resp; in eap_sake_process_challenge() local 251 resp = eap_sake_build_msg(data, id, rlen, EAP_SAKE_SUBTYPE_CHALLENGE); in eap_sake_process_challenge() 252 if (resp == NULL) in eap_sake_process_challenge() 256 eap_sake_add_attr(resp, EAP_SAKE_AT_RAND_P, in eap_sake_process_challenge() 261 eap_sake_add_attr(resp, EAP_SAKE_AT_PEERI in eap_sake_process_challenge() 295 struct wpabuf *resp; eap_sake_process_confirm() local 376 struct wpabuf *resp; eap_sake_process() local [all...] |
H A D | eap_eke.c | 199 struct wpabuf *resp; in eap_eke_build_fail() local 204 resp = eap_eke_build_msg(data, id, 4, EAP_EKE_FAILURE); in eap_eke_build_fail() 205 if (resp) in eap_eke_build_fail() 206 wpabuf_put_be32(resp, failure_code); in eap_eke_build_fail() 216 return resp; in eap_eke_build_fail() 226 struct wpabuf *resp; in eap_eke_process_id() local 321 resp = eap_eke_build_msg(data, id, in eap_eke_process_id() 324 if (resp == NULL) { in eap_eke_process_id() 329 wpabuf_put_u8(resp, 1); /* NumProposals */ in eap_eke_process_id() 330 wpabuf_put_u8(resp, in eap_eke_process_id() 359 struct wpabuf *resp; eap_eke_process_commit() local 505 struct wpabuf *resp; eap_eke_process_confirm() local 652 struct wpabuf *resp; eap_eke_process() local [all...] |
H A D | eap_pax.c | 96 struct wpabuf *resp; in eap_pax_alloc_resp() local 99 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_PAX, in eap_pax_alloc_resp() 101 if (resp == NULL) in eap_pax_alloc_resp() 104 pax = wpabuf_put(resp, sizeof(*pax)); in eap_pax_alloc_resp() 111 return resp; in eap_pax_alloc_resp() 120 struct wpabuf *resp; in eap_pax_process_std_1() local 191 resp = eap_pax_alloc_resp(req, id, EAP_PAX_OP_STD_2, plen); in eap_pax_process_std_1() 192 if (resp == NULL) in eap_pax_process_std_1() 195 wpabuf_put_be16(resp, EAP_PAX_RAND_LEN); in eap_pax_process_std_1() 196 wpabuf_put_data(resp, dat in eap_pax_process_std_1() 236 struct wpabuf *resp; eap_pax_process_std_3() local 338 struct wpabuf *resp; eap_pax_process() local [all...] |
H A D | eap_gpsk.c | 280 struct wpabuf *resp; in eap_gpsk_process_gpsk_1() local 301 resp = eap_gpsk_send_gpsk_2(data, identifier, in eap_gpsk_process_gpsk_1() 303 if (resp == NULL) in eap_gpsk_process_gpsk_1() 308 return resp; in eap_gpsk_process_gpsk_1() 317 struct wpabuf *resp; in eap_gpsk_send_gpsk_2() local 329 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_GPSK, len, in eap_gpsk_send_gpsk_2() 331 if (resp == NULL) in eap_gpsk_send_gpsk_2() 334 wpabuf_put_u8(resp, EAP_GPSK_OPCODE_GPSK_2); in eap_gpsk_send_gpsk_2() 335 start = wpabuf_put(resp, 0); in eap_gpsk_send_gpsk_2() 339 wpabuf_put_be16(resp, dat in eap_gpsk_send_gpsk_2() 587 struct wpabuf *resp; eap_gpsk_process_gpsk_3() local 630 struct wpabuf *resp; eap_gpsk_send_gpsk_4() local 667 struct wpabuf *resp; eap_gpsk_process() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/ |
H A D | eap_sake.c | 148 struct wpabuf *resp; in eap_sake_process_identity() local 168 resp = eap_sake_build_msg(data, id, 2 + data->peerid_len, in eap_sake_process_identity() 170 if (resp == NULL) in eap_sake_process_identity() 174 eap_sake_add_attr(resp, EAP_SAKE_AT_PEERID, in eap_sake_process_identity() 179 return resp; in eap_sake_process_identity() 191 struct wpabuf *resp; in eap_sake_process_challenge() local 251 resp = eap_sake_build_msg(data, id, rlen, EAP_SAKE_SUBTYPE_CHALLENGE); in eap_sake_process_challenge() 252 if (resp == NULL) in eap_sake_process_challenge() 256 eap_sake_add_attr(resp, EAP_SAKE_AT_RAND_P, in eap_sake_process_challenge() 261 eap_sake_add_attr(resp, EAP_SAKE_AT_PEERI in eap_sake_process_challenge() 295 struct wpabuf *resp; eap_sake_process_confirm() local 376 struct wpabuf *resp; eap_sake_process() local [all...] |
H A D | eap_eke.c | 199 struct wpabuf *resp; in eap_eke_build_fail() local 204 resp = eap_eke_build_msg(data, id, 4, EAP_EKE_FAILURE); in eap_eke_build_fail() 205 if (resp) in eap_eke_build_fail() 206 wpabuf_put_be32(resp, failure_code); in eap_eke_build_fail() 216 return resp; in eap_eke_build_fail() 226 struct wpabuf *resp; in eap_eke_process_id() local 321 resp = eap_eke_build_msg(data, id, in eap_eke_process_id() 324 if (resp == NULL) { in eap_eke_process_id() 329 wpabuf_put_u8(resp, 1); /* NumProposals */ in eap_eke_process_id() 330 wpabuf_put_u8(resp, in eap_eke_process_id() 359 struct wpabuf *resp; eap_eke_process_commit() local 505 struct wpabuf *resp; eap_eke_process_confirm() local 652 struct wpabuf *resp; eap_eke_process() local [all...] |
H A D | eap_pax.c | 96 struct wpabuf *resp; in eap_pax_alloc_resp() local 99 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_PAX, in eap_pax_alloc_resp() 101 if (resp == NULL) in eap_pax_alloc_resp() 104 pax = wpabuf_put(resp, sizeof(*pax)); in eap_pax_alloc_resp() 111 return resp; in eap_pax_alloc_resp() 120 struct wpabuf *resp; in eap_pax_process_std_1() local 191 resp = eap_pax_alloc_resp(req, id, EAP_PAX_OP_STD_2, plen); in eap_pax_process_std_1() 192 if (resp == NULL) in eap_pax_process_std_1() 195 wpabuf_put_be16(resp, EAP_PAX_RAND_LEN); in eap_pax_process_std_1() 196 wpabuf_put_data(resp, dat in eap_pax_process_std_1() 236 struct wpabuf *resp; eap_pax_process_std_3() local 338 struct wpabuf *resp; eap_pax_process() local [all...] |
H A D | eap_teap.c | 401 struct wpabuf **resp) in eap_teap_phase2_request() 433 *resp = eap_sm_buildIdentity(sm, hdr->identifier, 1); in eap_teap_phase2_request() 447 hdr, resp)) in eap_teap_phase2_request() 464 *resp = data->phase2_method->process(sm, data->phase2_priv, &iret, in eap_teap_phase2_request() 468 if (!(*resp) || in eap_teap_phase2_request() 481 if (!(*resp) && config && in eap_teap_phase2_request() 487 } else if (!(*resp)) in eap_teap_phase2_request() 555 struct wpabuf *resp = NULL; in eap_teap_process_eap_payload_tlv() local 578 if (eap_teap_phase2_request(sm, data, ret, hdr, &resp)) { in eap_teap_process_eap_payload_tlv() 584 resp in eap_teap_process_eap_payload_tlv() 397 eap_teap_phase2_request(struct eap_sm *sm, struct eap_teap_data *data, struct eap_method_ret *ret, struct eap_hdr *hdr, struct wpabuf **resp) eap_teap_phase2_request() argument 599 struct wpabuf *resp; eap_teap_process_basic_auth_req() local 817 struct wpabuf *resp; eap_teap_process_crypto_binding() local 1150 eap_teap_parse_decrypted(struct wpabuf *decrypted, struct eap_teap_tlv_parse *tlv, struct wpabuf **resp) eap_teap_parse_decrypted() argument 1243 struct wpabuf *resp = NULL, *tmp; eap_teap_process_decrypted() local 1763 eap_teap_add_stub_outer_tlvs(struct eap_teap_data *data, struct wpabuf *resp) eap_teap_add_stub_outer_tlvs() argument 1837 struct wpabuf *resp; eap_teap_process() local [all...] |
/third_party/nghttp2/src/ |
H A D | shrpx_mruby_module_response.cc | 53 const auto &resp = downstream->response(); in response_get_http_version_major() local 54 return mrb_fixnum_value(resp.http_major); in response_get_http_version_major() 62 const auto &resp = downstream->response(); in response_get_http_version_minor() local 63 return mrb_fixnum_value(resp.http_minor); in response_get_http_version_minor() 71 const auto &resp = downstream->response(); in response_get_status() local 72 return mrb_fixnum_value(resp.http_status); in response_get_status() 80 auto &resp = downstream->response(); in response_set_status() local 90 resp.http_status = status; in response_set_status() 100 const auto &resp = downstream->response(); in response_get_headers() local 102 return create_headers_hash(mrb, resp in response_get_headers() 110 auto &resp = downstream->response(); response_mod_header() local 194 auto &resp = downstream->response(); response_clear_headers() local 207 auto &resp = downstream->response(); response_return() local 283 auto &resp = downstream->response(); response_send_info() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/ |
H A D | eap_server_pax.c | 202 struct eap_pax_hdr *resp; in eap_pax_check() local 208 if (pos == NULL || len < sizeof(*resp) + EAP_PAX_ICV_LEN) { in eap_pax_check() 214 resp = (struct eap_pax_hdr *) pos; in eap_pax_check() 219 resp->op_code, resp->flags, resp->mac_id, resp->dh_group_id, in eap_pax_check() 220 resp->public_key_id); in eap_pax_check() 222 (u8 *) (resp + 1), len - sizeof(*resp) in eap_pax_check() 307 struct eap_pax_hdr *resp; eap_pax_process_std_2() local 488 struct eap_pax_hdr *resp; eap_pax_process() local [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/ |
H A D | eap_server_pax.c | 202 struct eap_pax_hdr *resp; in eap_pax_check() local 208 if (pos == NULL || len < sizeof(*resp) + EAP_PAX_ICV_LEN) { in eap_pax_check() 214 resp = (struct eap_pax_hdr *) pos; in eap_pax_check() 219 resp->op_code, resp->flags, resp->mac_id, resp->dh_group_id, in eap_pax_check() 220 resp->public_key_id); in eap_pax_check() 222 (u8 *) (resp + 1), len - sizeof(*resp) in eap_pax_check() 307 struct eap_pax_hdr *resp; eap_pax_process_std_2() local 488 struct eap_pax_hdr *resp; eap_pax_process() local [all...] |
/third_party/libphonenumber/tools/java/data/src/com/google/i18n/phonenumbers/ |
H A D | CombineGeoDataServlet.java | 33 public void doPost(HttpServletRequest req, HttpServletResponse resp) throws IOException { in doPost() argument 34 resp.setContentType("text/html;charset=UTF-8"); in doPost() 36 resp.getOutputStream().print("<html><head>"); in doPost() 37 resp.getOutputStream().print( in doPost() 39 resp.getOutputStream().print("<body>"); in doPost() 41 new ByteArrayInputStream(input.getBytes()), resp.getOutputStream(), "<br>"); in doPost() 43 resp.getOutputStream().print("</body></html>"); in doPost() 44 resp.getOutputStream().flush(); in doPost()
|
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/protocol/ |
H A D | tsserver.go | 211 resp, err := h.server.Implementation(ctx, ¶ms) 212 if err := r.Reply(ctx, resp, err); err != nil { 222 resp, err := h.server.TypeDefinition(ctx, ¶ms) 223 if err := r.Reply(ctx, resp, err); err != nil { 233 resp, err := h.server.DocumentColor(ctx, ¶ms) 234 if err := r.Reply(ctx, resp, err); err != nil { 244 resp, err := h.server.ColorPresentation(ctx, ¶ms) 245 if err := r.Reply(ctx, resp, err); err != nil { 255 resp, err := h.server.FoldingRange(ctx, ¶ms) 256 if err := r.Reply(ctx, resp, er [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/protocol/ |
H A D | tsserver.go | 211 resp, err := h.server.Implementation(ctx, ¶ms) 212 if err := r.Reply(ctx, resp, err); err != nil { 222 resp, err := h.server.TypeDefinition(ctx, ¶ms) 223 if err := r.Reply(ctx, resp, err); err != nil { 233 resp, err := h.server.DocumentColor(ctx, ¶ms) 234 if err := r.Reply(ctx, resp, err); err != nil { 244 resp, err := h.server.ColorPresentation(ctx, ¶ms) 245 if err := r.Reply(ctx, resp, err); err != nil { 255 resp, err := h.server.FoldingRange(ctx, ¶ms) 256 if err := r.Reply(ctx, resp, er [all...] |
/third_party/spirv-tools/utils/vscode/src/lsp/protocol/ |
H A D | tsserver.go | 211 resp, err := h.server.Implementation(ctx, ¶ms) 212 if err := r.Reply(ctx, resp, err); err != nil { 222 resp, err := h.server.TypeDefinition(ctx, ¶ms) 223 if err := r.Reply(ctx, resp, err); err != nil { 233 resp, err := h.server.DocumentColor(ctx, ¶ms) 234 if err := r.Reply(ctx, resp, err); err != nil { 244 resp, err := h.server.ColorPresentation(ctx, ¶ms) 245 if err := r.Reply(ctx, resp, err); err != nil { 255 resp, err := h.server.FoldingRange(ctx, ¶ms) 256 if err := r.Reply(ctx, resp, er [all...] |