Home | History | Annotate | Download | only in strace

Lines Matching refs:outptr

288 		char *outptr;
313 outptr = outstr;
317 if (outptr < end_outstr - 2)
318 *outptr++ = '?';
324 if (outptr == outstr) {
325 *outptr++ = '[';
327 if (outptr < end_outstr - 3)
328 outptr = stpcpy(outptr, ", ");
331 if (outptr < end_outstr - 4)
332 outptr = stpcpy(outptr, "...");
335 if (outptr < end_outstr - (sizeof("{fd=%d, revents=") + sizeof(int)*3) + 1)
336 outptr += sprintf(outptr, "{fd=%d, revents=", fds.fd);
338 if (outptr < end_outstr - (strlen(flagstr) + 2)) {
339 outptr = stpcpy(outptr, flagstr);
340 *outptr++ = '}';
346 if (outptr != outstr /* && outptr < end_outstr - 1 (always true)*/)
347 *outptr++ = ']';
349 *outptr = '\0';
351 if (outptr < end_outstr - (10 + TIMESPEC_TEXT_BUFSIZE)) {
352 outptr = stpcpy(outptr, outptr == outstr ? "left " : ", left ");
353 sprint_timespec(outptr, tcp, pts);
357 if (outptr == outstr)