| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| D | GDBRemoteCommunicationServerCommon.cpp | 177 StreamString response; in Handle_qHostInfo() local 183 response.PutCString("triple:"); in Handle_qHostInfo() 184 response.PutStringAsRawHex8(host_triple.getTriple()); in Handle_qHostInfo() 185 response.Printf(";ptrsize:%u;", host_arch.GetAddressByteSize()); in Handle_qHostInfo() 189 response.PutCString("distribution_id:"); in Handle_qHostInfo() 190 response.PutStringAsRawHex8(distribution_id); in Handle_qHostInfo() 191 response.PutCString(";"); in Handle_qHostInfo() 196 response.PutCString("vendor:apple;"); in Handle_qHostInfo() 202 response.Printf("cputype:%u;", cpu); in Handle_qHostInfo() 204 response.Printf("cpusubtype:%u;", sub); in Handle_qHostInfo() [all …]
|
| D | GDBRemoteCommunicationClient.cpp | 88 StringExtractorGDBRemote response; in HandshakeWithServer() local 91 packet_result = ReadPacket(response, milliseconds(10), false); in HandshakeWithServer() 184 StringExtractorGDBRemote response; in QueryNoAckModeSupported() local 185 if (SendPacketAndWaitForResponse("QStartNoAckMode", response) == in QueryNoAckModeSupported() 187 if (response.IsOKResponse()) { in QueryNoAckModeSupported() 201 StringExtractorGDBRemote response; in GetListThreadsInStopReplySupported() local 202 if (SendPacketAndWaitForResponse("QListThreadsInStopReply", response) == in GetListThreadsInStopReplySupported() 204 if (response.IsOKResponse()) in GetListThreadsInStopReplySupported() 214 StringExtractorGDBRemote response; in GetVAttachOrWaitSupported() local 215 if (SendPacketAndWaitForResponse("qVAttachOrWaitSupported", response) == in GetVAttachOrWaitSupported() [all …]
|
| D | GDBRemoteCommunicationServerLLGS.cpp | 457 StreamGDBRemote response; in SendWResponse() local 458 response.PutChar('E'); in SendWResponse() 459 response.PutHex8(GDBRemoteServerError::eErrorExitStatus); in SendWResponse() 460 return SendPacketNoLock(response.GetString()); in SendWResponse() 466 StreamGDBRemote response; in SendWResponse() local 467 response.Format("{0:g}", *wait_status); in SendWResponse() 468 return SendPacketNoLock(response.GetString()); in SendWResponse() 471 static void AppendHexValue(StreamString &response, const uint8_t *buf, in AppendHexValue() argument 476 response.PutHex8(buf[i]); in AppendHexValue() 479 response.PutHex8(buf[i]); in AppendHexValue() [all …]
|
| D | GDBRemoteClientBase.cpp | 42 StringExtractorGDBRemote &response) { in SendContinuePacketAndWaitForResponse() argument 44 response.Clear(); in SendContinuePacketAndWaitForResponse() 63 PacketResult read_result = ReadPacket(response, computed_timeout, false); in SendContinuePacketAndWaitForResponse() 95 if (response.Empty()) in SendContinuePacketAndWaitForResponse() 98 const char stop_type = response.GetChar(); in SendContinuePacketAndWaitForResponse() 100 response.GetStringRef().data()); in SendContinuePacketAndWaitForResponse() 115 response.GetHexByteString(inferior_stdout); in SendContinuePacketAndWaitForResponse() 121 llvm::StringRef(response.GetStringRef()).substr(1)); in SendContinuePacketAndWaitForResponse() 124 delegate.HandleAsyncStructuredDataPacket(response.GetStringRef()); in SendContinuePacketAndWaitForResponse() 129 const bool should_stop = ShouldStop(signals, response); in SendContinuePacketAndWaitForResponse() [all …]
|
| D | GDBRemoteCommunicationServerPlatform.cpp | 275 StreamGDBRemote response; in Handle_qLaunchGDBServer() local 277 response.Printf("pid:%" PRIu64 ";port:%u;", debugserver_pid, in Handle_qLaunchGDBServer() 280 response.PutCString("socket_name:"); in Handle_qLaunchGDBServer() 281 response.PutStringAsRawHex8(socket_name); in Handle_qLaunchGDBServer() 282 response.PutChar(';'); in Handle_qLaunchGDBServer() 285 PacketResult packet_result = SendPacketNoLock(response.GetString()); in Handle_qLaunchGDBServer() 309 StreamGDBRemote response; in Handle_qQueryGDBServer() local 310 response.AsRawOstream() << std::move(server_list); in Handle_qQueryGDBServer() 313 escaped_response.PutEscapedBytes(response.GetString().data(), in Handle_qQueryGDBServer() 314 response.GetSize()); in Handle_qQueryGDBServer() [all …]
|
| /freebsd-12-stable/crypto/openssh/regress/misc/sk-dummy/ |
| D | sk-dummy.c | 100 pack_key_ecdsa(struct sk_enroll_response *response) in pack_key_ecdsa() argument 111 response->public_key = NULL; in pack_key_ecdsa() 112 response->public_key_len = 0; in pack_key_ecdsa() 113 response->key_handle = NULL; in pack_key_ecdsa() 114 response->key_handle_len = 0; in pack_key_ecdsa() 131 response->public_key_len = EC_POINT_point2oct(g, q, in pack_key_ecdsa() 133 if (response->public_key_len == 0 || response->public_key_len > 2048) { in pack_key_ecdsa() 135 response->public_key_len); in pack_key_ecdsa() 138 if ((response->public_key = malloc(response->public_key_len)) == NULL) { in pack_key_ecdsa() 143 response->public_key, response->public_key_len, NULL) == 0) { in pack_key_ecdsa() [all …]
|
| /freebsd-12-stable/contrib/wpa/src/common/ |
| D | gas_server.c | 55 static void gas_server_free_response(struct gas_server_response *response); 60 struct gas_server_response *response = eloop_ctx; in gas_server_response_timeout() local 64 response, MAC2STR(response->dst), response->dialog_token, in gas_server_response_timeout() 65 response->freq, response->frag_id, in gas_server_response_timeout() 66 (unsigned long) response->offset, in gas_server_response_timeout() 67 (unsigned long) (response->resp ? in gas_server_response_timeout() 68 wpabuf_len(response->resp) : 0)); in gas_server_response_timeout() 69 response->handler->status_cb(response->handler->ctx, in gas_server_response_timeout() 70 response->resp, 0); in gas_server_response_timeout() 71 response->resp = NULL; in gas_server_response_timeout() [all …]
|
| /freebsd-12-stable/sys/cam/scsi/ |
| D | smp_all.c | 281 smp_report_general_sbuf(struct smp_report_general_response *response, in smp_report_general_sbuf() argument 286 response->response_len, in smp_report_general_sbuf() 287 response->response_len * SMP_WORD_LEN); in smp_report_general_sbuf() 289 scsi_2btoul(response->expander_change_count)); in smp_report_general_sbuf() 291 scsi_2btoul(response->expander_route_indexes)); in smp_report_general_sbuf() 293 smp_yesno(response->long_response & in smp_report_general_sbuf() 295 sbuf_printf(sb, "Number of Phys: %d\n", response->num_phys); in smp_report_general_sbuf() 297 smp_yesno(response->config_bits0 & in smp_report_general_sbuf() 300 smp_yesno(response->config_bits0 & in smp_report_general_sbuf() 303 smp_yesno(response->config_bits0 & in smp_report_general_sbuf() [all …]
|
| /freebsd-12-stable/usr.sbin/iscsid/ |
| D | discovery.c | 48 struct pdu *response; in text_receive() local 51 response = pdu_new(conn); in text_receive() 52 pdu_receive(response); in text_receive() 53 if (response->pdu_bhs->bhs_opcode != ISCSI_BHS_OPCODE_TEXT_RESPONSE) in text_receive() 55 response->pdu_bhs->bhs_opcode); in text_receive() 56 bhstr = (struct iscsi_bhs_text_response *)response->pdu_bhs; in text_receive() 73 return (response); in text_receive() 100 struct pdu *response; in logout_receive() local 103 response = pdu_new(conn); in logout_receive() 104 pdu_receive(response); in logout_receive() [all …]
|
| D | login.c | 49 login_nsg(const struct pdu *response) in login_nsg() argument 53 bhslr = (struct iscsi_bhs_login_response *)response->pdu_bhs; in login_nsg() 192 login_handle_redirection(struct connection *conn, struct pdu *response) in login_handle_redirection() argument 198 bhslr = (struct iscsi_bhs_login_response *)response->pdu_bhs; in login_handle_redirection() 202 keys_load(response_keys, response); in login_handle_redirection() 221 struct pdu *response; in login_receive() local 226 response = pdu_new(conn); in login_receive() 227 pdu_receive(response); in login_receive() 228 if (response->pdu_bhs->bhs_opcode != ISCSI_BHS_OPCODE_LOGIN_RESPONSE) { in login_receive() 230 response->pdu_bhs->bhs_opcode); in login_receive() [all …]
|
| /freebsd-12-stable/crypto/openssh/ |
| D | sk-usbhid.c | 611 struct sk_enroll_response *response) in pack_public_key_ecdsa() argument 619 response->public_key = NULL; in pack_public_key_ecdsa() 620 response->public_key_len = 0; in pack_public_key_ecdsa() 648 response->public_key_len = EC_POINT_point2oct(g, q, in pack_public_key_ecdsa() 650 if (response->public_key_len == 0 || response->public_key_len > 2048) { in pack_public_key_ecdsa() 652 response->public_key_len); in pack_public_key_ecdsa() 655 if ((response->public_key = malloc(response->public_key_len)) == NULL) { in pack_public_key_ecdsa() 660 response->public_key, response->public_key_len, NULL) == 0) { in pack_public_key_ecdsa() 667 if (ret != 0 && response->public_key != NULL) { in pack_public_key_ecdsa() 668 memset(response->public_key, 0, response->public_key_len); in pack_public_key_ecdsa() [all …]
|
| /freebsd-12-stable/usr.sbin/ctld/ |
| D | login.c | 50 login_set_nsg(struct pdu *response, int nsg) in login_set_nsg() argument 58 bhslr = (struct iscsi_bhs_login_response *)response->pdu_bhs; in login_set_nsg() 76 login_set_csg(struct pdu *response, int csg) in login_set_csg() argument 84 bhslr = (struct iscsi_bhs_login_response *)response->pdu_bhs; in login_set_csg() 153 struct pdu *response; in login_new_response() local 161 response = pdu_new_response(request); in login_new_response() 162 bhslr2 = (struct iscsi_bhs_login_response *)response->pdu_bhs; in login_new_response() 164 login_set_csg(response, BHSLR_STAGE_SECURITY_NEGOTIATION); in login_new_response() 172 return (response); in login_new_response() 178 struct pdu *response; in login_send_error() local [all …]
|
| D | discovery.c | 88 struct pdu *response; in text_new_response() local 96 response = pdu_new_response(request); in text_new_response() 97 bhstr2 = (struct iscsi_bhs_text_response *)response->pdu_bhs; in text_new_response() 107 return (response); in text_new_response() 146 struct pdu *response; in logout_new_response() local 154 response = pdu_new_response(request); in logout_new_response() 155 bhslr2 = (struct iscsi_bhs_logout_response *)response->pdu_bhs; in logout_new_response() 164 return (response); in logout_new_response() 280 struct pdu *request, *response; in discovery() local 297 response = text_new_response(request); in discovery() [all …]
|
| /freebsd-12-stable/contrib/sendmail/src/ |
| D | milter.c | 140 if (response == NULL || \ 141 strlen(response) + 1 != (size_t) rlen || \ 143 (response[0] != '4' && response[0] != '5') || \ 144 !isascii(response[1]) || !isdigit(response[1]) || \ 145 !isascii(response[2]) || !isdigit(response[2])) \ 147 if (response != NULL) \ 148 sm_free(response); /* XXX */ \ 149 response = newstr(default); \ 153 char *ptr = response; \ 160 sm_free(response); /* XXX */ \ [all …]
|
| /freebsd-12-stable/usr.bin/talk/ |
| D | invite.c | 73 CTL_RESPONSE response; in invite_remote() local 115 ctl_transact(my_machine_addr, msg, DELETE, &response); in invite_remote() 117 ctl_transact(his_machine_addr, msg, DELETE, &response); in invite_remote() 158 CTL_RESPONSE response; in announce_invite() local 161 ctl_transact(his_machine_addr, msg, ANNOUNCE, &response); in announce_invite() 162 remote_id = response.id_num; in announce_invite() 163 if (response.answer != SUCCESS) { in announce_invite() 164 if (response.answer < NANSWERS) in announce_invite() 165 message(answers[response.answer]); in announce_invite() 170 ctl_transact(my_machine_addr, msg, LEAVE_INVITE, &response); in announce_invite() [all …]
|
| /freebsd-12-stable/contrib/opie/ |
| D | opiekey.c | 142 char response[OPIE_RESPONSE_MAX + 1]; variable 305 opiebtoh(response, &key); 307 opiebtoe(response, &key); 310 strcpy(response, "word:"); 311 strcat(response, opiebtoe(buf, &key)); 314 strcpy(response, "hex:"); 315 strcat(response, opiebtoh(buf, &key)); 320 strcpy(response, "init-hex:"); 321 strcat(response, opiebtoh(buf, &key)); 323 strcat(response, buf); [all …]
|
| /freebsd-12-stable/crypto/heimdal/lib/krb5/ |
| D | kcm.c | 176 krb5_storage *response; in krb5_kcm_call() local 187 response = krb5_storage_from_data(&response_data); in krb5_kcm_call() 188 if (response == NULL) { in krb5_kcm_call() 193 ret = krb5_ret_int32(response, &status); in krb5_kcm_call() 195 krb5_storage_free(response); in krb5_kcm_call() 201 krb5_storage_free(response); in krb5_kcm_call() 208 *response_p = response; in krb5_kcm_call() 213 krb5_storage_free(response); in krb5_kcm_call() 256 krb5_storage *request, *response; in kcm_gen_new() local 271 ret = krb5_kcm_call(context, request, &response, &response_data); in kcm_gen_new() [all …]
|
| /freebsd-12-stable/sys/dev/iscsi/ |
| D | iscsi.c | 162 static void iscsi_pdu_update_statsn(const struct icl_pdu *response); 163 static void iscsi_pdu_handle_nop_in(struct icl_pdu *response); 164 static void iscsi_pdu_handle_scsi_response(struct icl_pdu *response); 165 static void iscsi_pdu_handle_task_response(struct icl_pdu *response); 166 static void iscsi_pdu_handle_data_in(struct icl_pdu *response); 167 static void iscsi_pdu_handle_logout_response(struct icl_pdu *response); 168 static void iscsi_pdu_handle_r2t(struct icl_pdu *response); 169 static void iscsi_pdu_handle_async_message(struct icl_pdu *response); 170 static void iscsi_pdu_handle_reject(struct icl_pdu *response); 641 iscsi_pdu_update_statsn(const struct icl_pdu *response) in iscsi_pdu_update_statsn() argument [all …]
|
| /freebsd-12-stable/contrib/wpa/src/crypto/ |
| D | ms_funcs.c | 146 u8 *response) in challenge_response() argument 150 if (des_encrypt(challenge, password_hash, response) < 0 || in challenge_response() 151 des_encrypt(challenge, password_hash + 7, response + 8) < 0) in challenge_response() 156 return des_encrypt(challenge, zpwd, response + 16); in challenge_response() 174 u8 *response) in generate_nt_response() argument 182 challenge_response(challenge, password_hash, response)) in generate_nt_response() 202 u8 *response) in generate_nt_response_pwhash() argument 209 challenge_response(challenge, password_hash, response)) in generate_nt_response_pwhash() 231 const u8 *nt_response, u8 *response) in generate_authenticator_response_pwhash() argument 257 addr2[0] = response; in generate_authenticator_response_pwhash() [all …]
|
| /freebsd-12-stable/contrib/serf/auth/ |
| D | auth.c | 36 serf_bucket_t *response, in default_auth_response_handler() argument 103 static apr_status_t discard_body(serf_bucket_t *response) in discard_body() argument 110 status = serf_bucket_read(response, SERF_READ_ALL_AVAIL, &data, &len); in discard_body() 131 serf_bucket_t *response, in handle_auth_headers() argument 200 status = handler(code, request, response, in handle_auth_headers() 268 serf_bucket_t *response, in dispatch_auth() argument 287 hdrs = serf_bucket_response_get_headers(response); in dispatch_auth() 313 request, response, pool); in dispatch_auth() 323 serf_bucket_t *response, in serf__handle_auth_response() argument 334 status = serf_bucket_response_status(response, &sl); in serf__handle_auth_response() [all …]
|
| /freebsd-12-stable/contrib/subversion/subversion/libsvn_ra_svn/ |
| D | protocol | 77 The "command response" prototype is used in several contexts of this 81 command-response: ( success params:list ) 85 The interpretation of parameters in a successful command response is 99 command response whose parameters match the prototype: 112 response: ( version:number ( cap:word ... ) url:string 122 Upon receiving the client's response to the greeting, the server sends 123 an authentication request, which is a command response whose arguments 136 auth-response: ( mech:word [ token:string ] ) 139 "initial response" of the authentication exchange. The client may 141 receiving the client's auth-response, the server sends a series of [all …]
|
| /freebsd-12-stable/crypto/heimdal/lib/ipc/ |
| D | client.c | 94 const heim_idata *request, heim_idata *response, in mach_ipc() argument 154 response->data = malloc(replyout_length); in mach_ipc() 155 if (response->data == NULL) { in mach_ipc() 160 memcpy(response->data, replyout, replyout_length); in mach_ipc() 161 response->length = replyout_length; in mach_ipc() 165 response->data = malloc(replyin_length); in mach_ipc() 166 if (response->data == NULL) in mach_ipc() 168 memcpy(response->data, replyin, replyin_length); in mach_ipc() 169 response->length = replyin_length; in mach_ipc() 193 heim_idata response; in mheim_ado_acall_reply() local [all …]
|
| /freebsd-12-stable/lib/libpam/modules/pam_opie/ |
| D | pam_opie.c | 70 char *response; in pam_sm_authenticate() local 120 retval = pam_prompt(pamh, style, &response, in pam_sm_authenticate() 127 PAM_LOG("Completed challenge %d: %s", i, response); in pam_sm_authenticate() 129 if (response[0] != '\0') in pam_sm_authenticate() 136 pam_set_item(pamh, PAM_AUTHTOK, response); in pam_sm_authenticate() 144 retval = opieverify(&opie, response); in pam_sm_authenticate() 145 free(response); in pam_sm_authenticate()
|
| /freebsd-12-stable/sys/cam/ctl/ |
| D | ctl_frontend_iscsi.c | 356 cfiscsi_pdu_prepare(struct icl_pdu *response) in cfiscsi_pdu_prepare() argument 363 cs = PDU_SESSION(response); in cfiscsi_pdu_prepare() 371 bhssr = (struct iscsi_bhs_scsi_response *)response->ip_bhs; in cfiscsi_pdu_prepare() 415 cfiscsi_pdu_queue(struct icl_pdu *response) in cfiscsi_pdu_queue() argument 419 cs = PDU_SESSION(response); in cfiscsi_pdu_queue() 422 cfiscsi_pdu_prepare(response); in cfiscsi_pdu_queue() 423 icl_pdu_queue(response); in cfiscsi_pdu_queue() 433 struct icl_pdu *response; in cfiscsi_pdu_handle_nop_out() local 463 response = cfiscsi_pdu_new_response(request, M_NOWAIT); in cfiscsi_pdu_handle_nop_out() 464 if (response == NULL) { in cfiscsi_pdu_handle_nop_out() [all …]
|
| /freebsd-12-stable/sys/ofed/include/uapi/rdma/ |
| D | ib_user_verbs.h | 155 __u64 response; member 162 __u64 response; member 172 __u64 response; member 260 __u64 response; member 291 __u64 response; member 304 __u64 response; member 319 __u64 response; member 335 __u64 response; member 355 __u64 response; member 371 __u64 response; member [all …]
|