/src/usr.bin/tip/ |
tipout.c | 75 char reply; local in function:intEMT 87 reply = 'y'; 90 reply = 'n'; 92 reply = 'y'; 96 (void)write(repdes[1], &reply, 1); /* Now coprocess waits for us */
|
/src/lib/libtelnet/ |
auth.h | 69 void (*reply)(struct XauthP *, unsigned char *, int); member in struct:XauthP
|
encrypt.h | 87 int (*reply)(unsigned char *, int); member in struct:__anon0da87be00208
|
kerberos5.c | 109 str_data[3] == TELQUAL_IS ? ">>>IS" : ">>>REPLY", 560 /* the rest of the reply should contain a krb_ap_rep */ 561 krb5_ap_rep_enc_part *reply; local in function:kerberos5_reply 569 auth_context, &inbuf, &reply); 576 krb5_free_ap_rep_enc_part(telnet_context, reply);
|
sra.c | 99 str_data[3] == TELQUAL_IS ? ">>>IS" : ">>>REPLY", 255 /* client received REPLY -- could be SRA KEY, CONTINUE, ACCEPT, or REJECT */ 520 struct pam_response *reply = NULL; local in function:auth_conv 522 if (reallocarr(&reply, num_msg, sizeof(*reply)) != 0) 528 reply[i].resp_retcode = PAM_SUCCESS; 529 reply[i].resp = COPY_STRING(cred->uname); 534 reply[i].resp_retcode = PAM_SUCCESS; 535 reply[i].resp = COPY_STRING(cred->pass); 540 reply[i].resp_retcode = PAM_SUCCESS [all...] |
/src/sbin/fsck_v7fs/ |
main.c | 182 reply(const char *str) function in typeref:typename:int
|
/src/sbin/fsck_lfs/ |
utilities.c | 85 reply(const char *question) function in typeref:typename:int 93 err(EXIT_FAILURE, "INTERNAL ERROR: GOT TO reply()"); 133 if (preen || reply("WRITE CHANGES TO DISK") == 1) { 147 if (fsmodified && (preen || reply("UPDATE SUPERBLOCKS"))) { 157 else if (!reply("MARK FILE SYSTEM CLEAN")) 263 if (reply("SALVAGE") == 0) {
|
/src/sys/external/bsd/drm2/dist/drm/amd/display/include/ |
i2caux_interface.h | 50 * used to return the reply type of the transaction 53 uint8_t *reply; member in struct:aux_payload
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/ |
event.h | 9 __u8 reply; member in struct:nvif_notify_req_v0 22 __u8 data[]; /* reply data (below) */
|
/src/usr.sbin/apm/ |
apm.c | 81 struct apm_reply *reply) 88 if (recv(fd, reply, sizeof(*reply), 0) != sizeof(*reply)) { 89 warn("invalid reply from APM daemon"); 103 struct apm_reply reply; local in function:do_zzz 122 exit(send_command(fd, &command, &reply)); 151 struct apm_reply reply; local in function:main 152 struct apm_power_info *api = &reply.batterystate; 238 memset(&reply, 0, sizeof(reply)) [all...] |
/src/sbin/fsck_ext2fs/ |
utilities.c | 110 reply(const char *question) function in typeref:typename:int 116 pfatal("INTERNAL ERROR: GOT TO reply()"); 253 if (reply("CONTINUE") == 0) 269 !preen && reply("UPDATE STANDARD SUPERBLOCKS")) { 293 else if (!reply("MARK FILE SYSTEM CLEAN")) 481 if (reply("SALVAGE") == 0) {
|
/src/sbin/restore/ |
utilities.c | 368 * Elicit a reply. 371 reply(const char *question) function in typeref:typename:int 403 if (reply("abort") == GOOD) { 404 if (reply("dump core") == GOOD)
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/pmu/ |
nouveau_nvkm_subdev_pmu_memx.c | 53 u32 reply[2]; local in function:nvkm_memx_init 56 ret = nvkm_pmu_send(pmu, reply, PROC_MEMX, MEMX_MSG_INFO, 65 memx->base = reply[0]; 66 memx->size = reply[1]; 83 u32 finish, reply[2]; local in function:nvkm_memx_fini 92 /* call MEMX process to execute the script, and wait for reply */ 94 nvkm_pmu_send(pmu, reply, PROC_MEMX, MEMX_MSG_EXEC, 97 reply[0], reply[1]); 174 u32 reply[2], base, size, i local in function:nvkm_memx_train_result [all...] |
/src/tests/lib/libc/rpc/ |
t_rpc.c | 45 reply(caddr_t replyp, struct netbuf * raddrp, struct netconfig * nconf) function in typeref:typename:int 86 reply(NULL, &addr, NULL); 226 NULL, (resultproc_t)reply, transp);
|
/src/sys/nfs/ |
nfs_bootparam.c | 249 * we use the "server" part of the reply as the gateway, 250 * and use the "pathname" part of the reply as the mask. 310 } *reply; local in function:bp_whoami 345 if (m->m_len < sizeof(*reply)) { 346 m = m_pullup(m, sizeof(*reply)); 350 reply = mtod(m, struct callit_reply *); 351 port = fxdr_unsigned(u_int32_t, reply->port); 352 m_adj(m, sizeof(*reply)); 382 printf("nfs_boot: bootparam_whoami: bad reply\n"); 474 printf("nfs_boot: bootparam_getfile: bad reply\n") [all...] |
/src/games/hunt/huntd/ |
driver.c | 207 uint16_t msg, reply; local in function:main 260 reply = htons((u_short) Nplayer); 261 (void) sendto(contactsock, &reply, 262 sizeof reply, 0, 267 reply = htons(statport); 268 (void) sendto(contactsock, &reply, 269 sizeof reply, 0, 277 reply = htons(huntport); 278 (void) sendto(contactsock, &reply, 279 sizeof reply, 0 [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/ |
nouveau_usif.c | 52 u16 reply; member in struct:usif_notify 96 if (WARN_ON(!ntfy->p || ntfy->reply != (length + size))) 157 ntfy->reply = sizeof(struct nvif_notify_rep_v0) + req->v0.reply; 218 ntfy->p = kmalloc(sizeof(*ntfy->p) + ntfy->reply, GFP_KERNEL); 224 ntfy->p->e.base.length = sizeof(ntfy->p->e.base) + ntfy->reply;
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/ |
nouveau_nvkm_core_client.c | 141 u8 index, reply; local in function:nvkm_client_notify_new 158 nvif_ioctl(object, "notify new vers %d reply %d route %02x " 160 req->v0.reply, req->v0.route, req->v0.token); 166 reply = req->v0.reply; 171 false, data, size, reply, ¬ify->n);
|
/src/sys/external/bsd/drm2/dist/drm/vmwgfx/ |
vmwgfx_msg.c | 203 * @reply: Pointer to buffer holding reply. 204 * @reply_len: Length of the reply. 209 static unsigned long vmw_port_hb_in(struct rpc_channel *channel, char *reply, 219 di = (uintptr_t) reply; 248 memcpy(reply, &ebx, bytes); 250 reply += bytes; 321 char *reply; local in function:vmw_recv_msg 343 DRM_ERROR("Failed to get reply size for host message.\n"); 347 /* No reply available. This is okay. * 427 char *msg, *reply = NULL; local in function:vmw_host_get_guestinfo 576 char *reply = NULL; local in function:vmw_msg_ioctl [all...] |
/src/sys/dev/ic/ |
pckbc.c | 617 int reply; local in function:pckbc_cnattach 650 reply = pckbc_poll_data1(&pckbc_consdata, PCKBC_KBD_SLOT); 651 if (reply != 0x55) { 652 printf("pckbc: selftest returned 0x%02x\n", reply);
|
/src/sbin/fsck_ffs/ |
utilities.c | 91 reply(const char *question) function in typeref:typename:int 97 pfatal("INTERNAL ERROR: GOT TO reply()"); 260 if (reply("CONTINUE") == 0) 282 (preen || reply("UPDATE STANDARD SUPERBLOCK"))) { 314 else if (!reply("MARK FILE SYSTEM CLEAN")) 549 if (reply("SALVAGE") == 0) {
|
/src/sys/arch/xen/xenbus/ |
xenbus_dev.c | 233 void *reply; local in function:xenbus_dev_write 289 err = xenbus_dev_request_and_reply(&xlwp->u.msg, &reply); 294 strtoul(reply, NULL, 0); 314 queue_reply(xlwp, (char *)reply, xlwp->u.msg.len); 316 xenbus_dev_reply_free(&xlwp->u.msg, reply);
|
xenbus_xs.c | 67 } reply; member in union:xs_stored_msg::__anonfad9c756010a 132 body = msg->u.reply.body; 159 xenbus_dev_request_and_reply(struct xsd_sockmsg *msg, void**reply) 167 *reply = NULL; 169 *reply = read_reply(&msg->type, &msg->len); 177 xenbus_dev_reply_free(struct xsd_sockmsg *msg, void *reply) 179 free(reply, M_DEVBUF); 182 /* Send message to xs, get kmalloc'ed reply. ERR_PTR() on error. */ 787 msg->u.reply.body = body;
|
/src/sys/arch/arm/apple/ |
apple_rtkit.c | 115 uint64_t reply; local in function:rtkit_start 117 reply = __SHIFTIN(endpoint, RTKIT_MGMT_STARTEP_EP_MASK); 118 reply |= RTKIT_MGMT_STARTEP_START; 119 return rtkit_send(mc, RTKIT_EP_MGMT, RTKIT_MGMT_STARTEP, reply); 127 uint64_t base, bitmap, reply; local in function:rtkit_handle_mgmt 161 reply = __SHIFTIN(base, RTKIT_MGMT_EPMAP_BASE_MASK); 163 reply |= RTKIT_MGMT_EPMAP_LAST; 165 reply |= RTKIT_MGMT_EPMAP_MORE; 167 RTKIT_MGMT_EPMAP, reply);
|
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce/ |
amdgpu_dce_aux.c | 592 payload->data, payload->reply, 595 EVENT_LOG_AUX_ORIGIN_NATIVE, *payload->reply, 616 uint8_t reply; local in function:dce_aux_transfer_with_retries 627 if (!payload->reply) { 629 payload->reply = &reply; 639 switch (*payload->reply) { 658 if ((*payload->reply == AUX_TRANSACTION_REPLY_AUX_DEFER) || 659 (*payload->reply == AUX_TRANSACTION_REPLY_I2C_OVER_AUX_DEFER)) { 699 * DP 1.4, 2.8.2: AUX Transaction Response/Reply Timeout [all...] |