Lines Matching defs:ostr
108 char *ostr;
141 ostr = regbuf;
147 ostr = alloca(slen + 2);
148 slen = vsnprintf(ostr, slen + 1, fmt, args2);
156 if (ostr[slen - 1] != '\n') {
157 ostr[slen++] = '\n';
158 ostr[slen] = '\0';
166 for (; *ostr != '\0'; ostr = nstr + 1) {
167 nstr = strchr(ostr, '\n');
170 if (nstr == ostr)
173 slen = nstr - ostr + 1;
182 retv = dowrite(curlogfd, ostr, slen);
213 syslog(sloglev, "%.*s", slen, ostr);