Lines Matching refs:length
73 Window window, Atom property, char *value, int length);
109 int length; in sendToVim() local
169 length = strlen(name) + strlen(cmd) + 10; in sendToVim()
170 if (length <= STATIC_SPACE) in sendToVim()
173 property = (char *) malloc((unsigned) length); in sendToVim()
183 sprintf(property + length, "%c-r %x %d", 0, (uint) commWindow, serial); in sendToVim()
184 length += strlen(property + length + 1) + 1; in sendToVim()
187 res = AppendPropCarefully(dpy, w, commProperty, property, length + 1); in sendToVim()
188 if (length > STATIC_SPACE) in sendToVim()
543 int length) /* How much to append */ in AppendPropCarefully() argument
550 PropModeAppend, value, length); in AppendPropCarefully()