Lines Matching refs:rep
2464 reply_T *rep; in save_reply() local
2469 rep = REPLY_ITEM(REPLY_COUNT); in save_reply()
2470 rep->server = server; in save_reply()
2471 rep->reply = reply; in save_reply()
2472 rep->expr_result = expr; in save_reply()
2473 if (rep->reply == NULL) in save_reply()
2494 reply_T *rep; in serverGetReply() local
2509 rep = REPLY_ITEM(i); in serverGetReply()
2510 if (rep->server == server in serverGetReply()
2511 && ((rep->expr_result != 0) == (expr_res != NULL))) in serverGetReply()
2514 reply = rep->reply; in serverGetReply()
2516 *expr_res = rep->expr_result == 1 ? 0 : -1; in serverGetReply()
2521 mch_memmove(rep, rep + 1, in serverGetReply()