Searched refs:reply (Results 1 - 12 of 12) sorted by relevance
/ast/src/cmd/cs/vcs_src/ |
H A D | mnt_umount.c | 39 char reply[1024]; local 43 memset(reply, 0, sizeof(reply)); 72 if (vcs_write(buf) > 0 && vcs_read(reply, 1024) > 0) 74 if (strncmp(reply, "I 0 ok 0", 8) == 0) 80 printf(reply);
|
H A D | mnt_list.c | 42 char reply[1024]; local 46 memset(reply, 0, sizeof(reply)); 79 if (vcs_write(buf) <= 0 || vcs_read(reply, 1024) <= 0) 83 if ((s = strstr(reply, "ok 0 ")) == NULL) 92 printmtmsg(reply); 103 if (vcs_write(buf) > 0 && vcs_read(reply, 1024) > 0) 104 printmtmsg(reply);
|
H A D | mnt_mount.c | 73 char reply[1024 * 2]; local 82 memset(reply, 0, sizeof(reply)); 130 if (callmount(fd, mpoint, mfs, reply) == 0) 132 printmtmsg(reply); 137 printf("ERROR: %s", reply); 167 if (callmount(fd, mpoint, mfs, reply) == 0) 169 printmtmsg(reply); 177 int callmount(fd, mpoint, mfs, reply) 181 char* reply; [all...] |
H A D | mnt_vcs.c | 95 char reply[1024]; local 104 memset(reply, 0, sizeof(reply)); 157 if (vcs_write(buf) <=0 || vcs_read(reply, 1024) <=0) 162 if (strncmp(reply, "I ", 2) == 0) 163 s = reply + 2; 165 s = reply;
|
H A D | mnt_mtab.c | 111 char reply[1024 *2]; local 116 memset(reply, 0, sizeof(reply)); 121 vcs_read(reply, 1024 * 2) > 0) 123 printmtmsg(reply);
|
H A D | ifs_ftp.c | 303 char reply[ STRLEN ]; local 309 if( FtpReply( nFile, reply, sizeof(reply) ) != 220 || 310 (ptr = strchr( reply, '(' )) == NULL ) {
|
/ast/src/lib/libtk/unix/ |
H A D | tkUnixSelect.c | 577 XSelectionEvent reply; /* Used to notify requestor that 593 * Initialize the reply event. 596 reply.type = SelectionNotify; 597 reply.serial = 0; 598 reply.send_event = True; 599 reply.display = eventPtr->display; 600 reply.requestor = eventPtr->requestor; 601 reply.selection = eventPtr->selection; 602 reply.target = eventPtr->target; 603 reply 572 XSelectionEvent reply; /* Used to notify requestor that local [all...] |
/ast/src/lib/libtk/generic/ |
H A D | tkSend.c | 1360 Tcl_DString reply; 1414 Tcl_DStringInit(&reply); 1415 Tcl_DStringAppend(&reply, "\0r\0-s ", 6); 1416 Tcl_DStringAppend(&reply, serial, -1); 1417 Tcl_DStringAppend(&reply, "\0-r ", 4); 1422 Tcl_DStringAppend(&reply, "X server insecure (must use xauth-style authorization); command ignored", -1); 1435 Tcl_DStringAppend(&reply, 1437 Tcl_DStringAppend(&reply, interpName, -1); 1438 Tcl_DStringAppend(&reply, "\"", 1); 1467 Tcl_DStringAppend(&reply, remoteInter 1348 Tcl_DString reply; local [all...] |
/ast/src/cmd/mailx/ |
H A D | data.c | 57 X("[ message ... ]\nReply to the first message, sending the message to the sender of each selected message. The reply is recorded in a file name derived from the sender of the first message."), 73 X("[ message ... ]\nMail a reply message to the sender of each selected message. The subject will be prefixed with Re:<space> if not already in that form. See reply if ${flipr} is set."), 123 X("[ message ]\nReply to message, recording the reply on a file name derived from the sender of the message."), 145 X("[ message ...]\nEquivalent to the command sequence reply ~m ~v."), 186 "r[eply]", CMD(reply), I|R|MSGLIST, 0, MMNDEL, 187 X("[ message ... ]\nMail a reply message to all recipients in the header of each selected message. The subject will be prefixed with Re:<space> if not already in that form. See Reply if ${flipr} is set."), 189 X("[ message ... ]\nEquivalent to reply, except ${flipr} is ignored."), 192 "r[espond]", CMD(reply), I|R|MSGLIST, 0, MMNDEL, 193 X("[ message ... ]\nEquivalent to reply [ messag [all...] |
H A D | mailx.h | 350 #define GREPLY (1L<<20) /* For reply to sender */ 1008 extern int reply(struct msg*);
|
H A D | cmd3.c | 487 * Low level for the reply variants. 501 note(0, "Sorry, can't reply to multiple messages at once"); 563 reply(struct msg* msgvec) function
|
/ast/src/lib/libtk/library/ |
H A D | tkfbox.tcl | 1353 set reply [tk_messageBox -icon warning -type yesno \ 1355 if ![string compare $reply "no"] {
|
Completed in 56 milliseconds