Searched defs:reply (Results 1 - 9 of 9) 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_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 | 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_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 | 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 | 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
|
Completed in 331 milliseconds