Home | History | Annotate | Download | only in strace

Lines Matching full:outptr

284 		char *outptr;
309 outptr = outstr;
313 if (outptr < end_outstr - 2)
314 *outptr++ = '?';
320 if (outptr == outstr) {
321 *outptr++ = '[';
323 if (outptr < end_outstr - 3)
324 outptr = stpcpy(outptr, ", ");
327 if (outptr < end_outstr - 4)
328 outptr = stpcpy(outptr, "...");
331 if (outptr < end_outstr - (sizeof("{fd=%d, revents=") + sizeof(int)*3) + 1)
332 outptr += sprintf(outptr, "{fd=%d, revents=", fds.fd);
334 if (outptr < end_outstr - (strlen(flagstr) + 2)) {
335 outptr = stpcpy(outptr, flagstr);
336 *outptr++ = '}';
342 if (outptr != outstr /* && outptr < end_outstr - 1 (always true)*/)
343 *outptr++ = ']';
345 *outptr = '\0';
347 if (outptr < end_outstr - (10 + TIMESPEC_TEXT_BUFSIZE)) {
348 outptr = stpcpy(outptr, outptr == outstr ? "left " : ", left ");
349 sprint_timespec(outptr, tcp, pts);
353 if (outptr == outstr)