Lines Matching refs:end
106 const char *end;
109 end = os_strchr(txt, separator);
110 if (end == NULL)
111 end = txt + os_strlen(txt);
112 buf = dup_binstr(txt, end - txt);
155 const char *end;
159 end = os_strchr(txt, separator);
160 if (end == NULL)
161 end = txt + os_strlen(txt);
162 buf = dup_binstr(txt, end - txt);
214 char *pos, *end;
217 end = buf + buflen;
219 res = os_snprintf(pos, end - pos, "%s", cmd);
220 if (os_snprintf_error(end - pos, res))
225 res = os_snprintf(pos, end - pos, " %s", argv[i]);
226 if (os_snprintf_error(end - pos, res))