| /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/ |
| rd_rep.c | 48 krb5_ap_rep * reply; local 56 if ((retval = decode_krb5_ap_rep(inbuf, &reply))) 61 scratch.length = reply->enc_part.ciphertext.length; 63 krb5_free_ap_rep(context, reply); 69 &reply->enc_part, &scratch))) 77 /* Check reply fields */ 112 krb5_free_ap_rep(context, reply);
|
| mk_rep.c | 47 krb5_ap_rep reply; local 51 /* Make the reply */ 78 scratch, &reply.enc_part))) 81 if (!(retval = encode_krb5_ap_rep(&reply, &toutbuf))) { 86 memset(reply.enc_part.ciphertext.data, 0, reply.enc_part.ciphertext.length); 87 free(reply.enc_part.ciphertext.data); 88 reply.enc_part.ciphertext.length = 0; 89 reply.enc_part.ciphertext.data = 0;
|
| /onnv/onnv-gate/usr/src/cmd/fps/fpsd/ |
| fpsd_util.c | 117 fps_event_reply_t reply; local 119 reply.result = -1; /* -1 failure. 0 success */ 122 (void) door_return((char *)&reply, sizeof (reply), NULL, 0); 128 (void) door_return((char *)&reply, sizeof (reply), NULL, 0); 134 reply.result = 0; 135 (void) door_return((char *)&reply, sizeof (reply), NULL, 0);
|
| /onnv/onnv-gate/usr/src/cmd/hal/utils/ |
| adt_data.c | 28 DBusMessage *reply; local 51 reply = dbus_connection_send_with_reply_and_block (bus, 60 if (reply == NULL) { 65 dbus_message_iter_init (reply, &iter); 71 dbus_message_unref (reply); 86 dbus_message_unref (reply); 97 dbus_message_unref (reply);
|
| /onnv/onnv-gate/usr/src/cmd/mms/dm/common/ |
| dm_ask.c | 49 * dm_ask_reply(char *reply) 52 * reply address of reply buffer 63 * DM_REP_STRING reply is none above. 71 dm_ask_reply(char *reply) 75 if (strcmp(reply, "yes") == 0) { 77 } else if (strcmp(reply, "no") == 0) { 79 } else if (strcmp(reply, "unattended") == 0) { 81 } else if (strcmp(reply, "abort") == 0) { 83 } else if (strcmp(reply, "retry") == 0) 114 char *reply = NULL; local 149 char *reply = NULL; local 188 char *reply = NULL; local [all...] |
| /onnv/onnv-gate/usr/src/uts/common/fs/smbsrv/ |
| smb_echo.c | 56 struct mbuf_chain reply; local 69 MBC_INIT(&reply, SMB_HEADER_ED_LEN + 10 + nbytes); 71 (void) smb_mbc_encodef(&reply, SMB_HEADER_ED_FMT, 85 (void) smb_mbc_encodef(&reply, "bww#c", 1, i, 89 smb_sign_reply(sr, &reply); 91 (void) smb_session_send(sr->session, 0, &reply);
|
| /onnv/onnv-gate/usr/src/cmd/cmd-inet/sbin/dhcpagent/ |
| ipc_action.c | 198 * send_ok_reply(): sends an "ok" reply to a request and closes the ipc 201 * input: ipc_action_t *: the request to reply to 213 * send_error_reply(): sends an "error" reply to a request and closes the ipc 216 * input: ipc_action_t *: the request to reply to 229 * send_data_reply(): sends a reply to a request and closes the ipc connection 231 * input: ipc_action_t *: the request to reply to 234 * dhcp_data_type_t: the type of the payload in the reply 235 * const void *: the payload for the reply, or NULL if there is no 246 dhcp_ipc_reply_t *reply; local 252 reply = dhcp_ipc_alloc_reply(ia->ia_request, error, buffer, size [all...] |
| /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.bin/telnet/ |
| auth.h | 78 void (*reply)(struct XauthP *, unsigned char *, int); member in struct:XauthP
|
| encrypt.h | 86 int (*reply)(unsigned char *, int); member in struct:__anon134
|
| /onnv/onnv-gate/usr/src/cmd/svc/configd/ |
| maindoor.c | 54 repository_door_response_t reply; local 67 reply.rdr_status = INVALID_RESULT; 84 reply.rdr_status = REPOSITORY_DOOR_FAIL_BAD_REQUEST; 93 reply.rdr_status = REPOSITORY_DOOR_FAIL_VERSION_MISMATCH; 101 reply.rdr_status = REPOSITORY_DOOR_FAIL_BAD_REQUEST; 106 reply.rdr_status = REPOSITORY_DOOR_FAIL_PERMISSION_DENIED; 113 reply.rdr_status = create_connection(ti->ti_ucred, request, 115 if (reply.rdr_status != REPOSITORY_DOOR_SUCCESS) { 126 reply.rdr_status = REPOSITORY_DOOR_FAIL_BAD_REQUEST; 131 assert(reply.rdr_status != INVALID_RESULT) [all...] |
| /onnv/onnv-gate/usr/src/lib/libslp/clib/ |
| SLPGetRefreshInterval.c | 48 char *reply = NULL; /* reply from slpd */ local 74 if (slp_send2slpd(msg, &reply) != SLP_OK) { 78 (void) slp_UnpackAttrReply(hp, reply, refresh_interval_cb, 87 if (reply) free(reply);
|
| slp_ua_common.c | 126 char *reply; local 138 reply = slp_dequeue(hp->q); 139 /* reply == NULL if no more available or SLPClosed */ 140 cont = args->msg_cb(hp, reply, args->cb, args->cookie, 143 if (reply) { 144 free(reply);
|
| /onnv/onnv-gate/usr/src/cmd/hal/hald-runner/ |
| main.c | 69 DBusMessage *reply; local 96 /* let run_request_run handle the reply */ 102 reply = dbus_message_new_error(msg, "org.freedesktop.HalRunner.Malformed", 104 dbus_connection_send(con, reply, NULL); 105 dbus_message_unref(reply); 111 DBusMessage *reply; local 125 reply = dbus_message_new_method_return(msg); 126 dbus_message_append_args (reply, 131 reply = dbus_message_new_error(msg, "org.freedesktop.HalRunner.Failed", 134 dbus_connection_send(con, reply, NULL) 149 DBusMessage *reply = NULL; local 174 DBusMessage *reply; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/lp/cmd/ |
| lpusers.c | 50 reply[100]; variable 200 if (mrecv(reply, sizeof(reply)) == -1) 202 mtype = getmessage(reply, R_LOAD_USER_FILE, &status);
|
| /onnv/onnv-gate/usr/src/cmd/tip/ |
| tipout.c | 48 char reply; local 60 reply = 'y'; 63 reply = 'n'; 65 reply = 'y'; 69 (void) write(repdes[1], &reply, 1);
|
| /onnv/onnv-gate/usr/src/cmd/ldmad/ |
| ldma_system.c | 63 ldma_message_header_t *reply; local 91 reply = ldma_alloc_result_msg(request, rlen); 93 if (reply == NULL) { 98 reply->msg_info = rlen; 100 data = LDMA_HDR2DATA(reply); 120 *replyp = reply;
|
| ldma_device.c | 72 ldma_message_header_t *reply = NULL; local 98 reply = ldma_alloc_result_msg(request, reply_dlen); 99 if (reply == NULL) { 105 path_type = (uint32_t *)(LDMA_HDR2DATA(reply)); 107 reply->msg_info = 0x0; 141 reply->msg_info |= LDMA_DEVPATH_EXIST; 163 reply->msg_info |= LDMA_DEVPATH_OPENRW | LDMA_DEVPATH_OPENRO; 171 reply->msg_info |= LDMA_DEVPATH_OPENRO; 182 * We don't provide a reply message if the request has not 184 * appropriate reply based on the return code of this function 216 ldma_message_header_t *reply = NULL; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.lib/ilbd/ |
| ilbd_nat.c | 73 * rbuf: reply buffer to be filled in. 74 * rbufsz: reply buffer size. 86 ilb_show_info_t *reply; local 96 * want to continue, reset the current client and reply OK. 111 reply = (ilb_show_info_t *)&((ilb_comm_t *)rbuf)->ic_data; 115 * reply. 144 reply->sn_num = kcmd->num_nat; 145 *rbufsz += reply->sn_num * sizeof (ilb_nat_info_t); 161 nat_ret = (ilb_nat_info_t *)&reply->sn_data; 193 * rbuf: reply buffer to be filled in 207 ilb_show_info_t *reply; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/cmd-inet/sbin/dhcpinfo/ |
| dhcpinfo.c | 58 dhcp_ipc_reply_t *reply; local 163 * send the request to the agent and reap the reply 172 error = dhcp_ipc_make_request(request, &reply, DHCP_IPC_WAIT_DEFAULT); 173 if (error != 0 || reply->return_code != 0) { 176 error = reply->return_code; 187 opt = dhcp_ipc_get_data(reply, &opt_len, NULL); 237 "reply\n", argv[0]);
|
| /onnv/onnv-gate/usr/src/cmd/ndmpd/ndmp/ |
| ndmpd_scsi.c | 102 ndmp_scsi_close_reply reply; local 107 reply.error = NDMP_DEV_NOT_OPEN_ERR; 108 ndmp_send_reply(connection, (void *) &reply, 109 "sending scsi_close reply"); 125 reply.error = NDMP_NO_ERR; 126 ndmp_send_reply(connection, (void *) &reply, 127 "sending scsi_close reply"); 152 ndmp_scsi_get_state_reply reply; local 156 reply.error = NDMP_DEV_NOT_OPEN_ERR; 158 reply.error = NDMP_NO_ERR 222 ndmp_scsi_reset_device_reply reply; local 266 ndmp_scsi_reset_bus_reply reply; local 292 ndmp_execute_cdb_reply reply; local 392 ndmp_scsi_open_reply reply; local 505 ndmp_scsi_set_target_reply reply; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/sendmail/src/ |
| sm_resolve.c | 156 ** PARSE_DNS_REPLY -- parse DNS reply data. 399 unsigned char reply[1024]; local 420 len = res_search(domain, rr_class, rr_type, reply, sizeof(reply)); 428 r = parse_dns_reply(reply, len);
|
| /onnv/onnv-gate/usr/src/cmd/ssh/sshd/ |
| auth1.c | 132 KTEXT_ST tkt, reply; local 138 &client_user, &reply)) { 147 reply.dat, reply.length); 154 krb5_data tkt, reply; local 159 &client_user, &reply)) { 169 reply.data, reply.length); 173 if (reply.length) 174 xfree(reply.data) [all...] |
| /onnv/onnv-gate/usr/src/lib/libdhcpsvc/private/ |
| dsvcd_synch.c | 196 dsvcd_reply_t reply; local 221 args.rbuf = (char *)&reply; 245 if (args.rbuf != (char *)&reply) { 246 (void) memcpy(&reply, args.rbuf, sizeof (reply)); 251 reply.rp_version != DSVCD_DOOR_VERSION) { 256 if (reply.rp_retval == DSVC_SUCCESS && unlockfd == -1) 260 return (reply.rp_retval); 273 dsvcd_reply_t reply; local 284 args.rbuf = (char *)&reply; [all...] |
| /onnv/onnv-gate/usr/src/lib/libslp/javalib/com/sun/slp/ |
| SARequester.java | 239 SrvLocMsg reply = local 244 handleError(reply); 310 SrvLocMsg reply = local 315 handleError(reply);
|
| /onnv/onnv-gate/usr/src/lib/libdhcpagent/common/ |
| dhcpagent_util.c | 124 dhcp_ipc_reply_t *reply; local 141 error = dhcp_ipc_make_request(request, &reply, 0); 143 free(reply); 177 error = dhcp_ipc_make_request(request, &reply, 0); 179 free(reply); 194 * when printing DHCP_STATUS reply. 226 * dhcp_status_reply_to_string(): Return DHCP IPC reply of type DHCP_STATUS 233 dhcp_status_reply_to_string(dhcp_ipc_reply_t *reply) 239 status = dhcp_ipc_get_data(reply, &reply_size, NULL);
|