Lines Matching refs:length
197 …int AppendPropCarefully(Display *display, Window window, Atom property, char_u *value, int length);
380 int length; in serverSendToVim() local
443 length = STRLEN(name) + STRLEN(p_enc) + STRLEN(cmd) + 14; in serverSendToVim()
444 property = alloc(length + 30); in serverSendToVim()
452 sprintf((char *)property + length, "%c-r %x %d", in serverSendToVim()
455 length += STRLEN(property + length + 1) + 1; in serverSendToVim()
457 res = AppendPropCarefully(dpy, w, commProperty, property, length + 1); in serverSendToVim()
738 int length; in serverSendReply() local
751 length = STRLEN(p_enc) + STRLEN(str) + 14; in serverSendReply()
752 if ((property = alloc(length + 30)) != NULL) in serverSendReply()
757 length += STRLEN(property + length); in serverSendReply()
758 res = AppendPropCarefully(dpy, win, commProperty, property, length + 1); in serverSendReply()
1491 int length) // How much to append in AppendPropCarefully() argument
1498 PropModeAppend, value, length); in AppendPropCarefully()