Lines Matching defs:stream
39 ** stream -- file for output.
54 sm_etype_printf(exc, stream)
56 SM_FILE_T *stream;
66 (void) sm_io_putc(stream, SM_TIME_DEFAULT, *p);
72 (void) sm_io_putc(stream, SM_TIME_DEFAULT, '%');
77 (void) sm_io_putc(stream, SM_TIME_DEFAULT, '%');
86 (void) sm_io_putc(stream, SM_TIME_DEFAULT, '%');
87 (void) sm_io_putc(stream, SM_TIME_DEFAULT,
104 sm_io_fputs(stream, SM_TIME_DEFAULT, s);
107 sm_io_fprintf(stream,
115 sm_io_fprintf(stream,
124 stream);
129 (void) sm_io_putc(stream, SM_TIME_DEFAULT, '%');
131 (void) sm_io_putc(stream, SM_TIME_DEFAULT, format);
132 (void) sm_io_putc(stream, SM_TIME_DEFAULT, *p);
145 ** stream -- file for output.
154 SM_FILE_T *stream));
157 sm_etype_os_print(exc, stream)
159 SM_FILE_T *stream;
166 sm_io_fprintf(stream, SM_TIME_DEFAULT, "%s: %s failed: %s",
169 sm_io_fprintf(stream, SM_TIME_DEFAULT, "%s failed: %s", syscall,
491 ** SM_EXC_WRITE -- Write exception message to a stream (wo trailing newline).
495 ** stream -- file for output.
502 sm_exc_write(exc, stream)
504 SM_FILE_T *stream;
507 exc->exc_type->etype_print(exc, stream);
511 ** SM_EXC_PRINT -- Print exception message to a stream (with trailing newline).
515 ** stream -- file for output.
522 sm_exc_print(exc, stream)
524 SM_FILE_T *stream;
527 exc->exc_type->etype_print(exc, stream);
528 (void) sm_io_putc(stream, SM_TIME_DEFAULT, '\n');