Searched defs:out (Results 1 - 6 of 6) sorted by relevance

/sendmail/libsm/
H A Dt-fopen.c24 SM_FILE_T *out; local
27 out = sm_io_fopen("foo", O_WRONLY|O_APPEND|O_CREAT, 0666);
28 SM_TEST(out != NULL);
29 if (out != NULL)
31 (void) sm_io_fprintf(out, SM_TIME_DEFAULT, "foo\n");
32 r = sm_io_getinfo(out, SM_IO_WHAT_MODE, &m);
35 sm_io_close(out, SM_TIME_DEFAULT);
H A Dvfprintf.c44 ** Flush out all the vectors defined by the given uio,
500 char out[150]; local
539 snprintf(out, sizeof(out), fmt, width,
542 sprintf(out, fmt, width, prec, val);
546 snprintf(out, sizeof(out), fmt, width,
549 sprintf(out, fmt, width, val);
551 len = strlen(out);
552 PRINT(out, le
[all...]
/sendmail/sendmail/
H A Dusersmtp.c598 ** This gets the relevant sasl response data out of the reply
625 char *out; local
663 out = (char *) sm_rpool_malloc_x(mci->mci_rpool, len + 1);
664 result = sasl_decode64(line, len, out, (unsigned int *) &len);
668 *out = '\0';
688 memcpy(mci->mci_sasl_string, out, len);
1504 /* take out what? */
1570 const char *out; local
1573 char *out; local
1631 out
[all...]
H A Dmain.c219 /* set the default in/out channel so errors reported to screen */
1735 /* check for out of date configuration level */
1738 message("Warning: .cf file is out of date: sendmail %s supports version %d, .cf file is version %d",
2261 ** out of here.
2453 ** Let's get out of here if
2831 /* bail out if message too large */
3893 ** Used to make sure that stdin/out/err are allocated on startup
3991 char *out, *in; local
3996 in = out = str;
4019 *out
[all...]
H A Dsrvrsmtp.c519 /* sleep to flatten out connection load */
599 const char *out; local
603 char *out; local
1189 /* close out milter filters */
1314 out = xalloc(strlen(inp));
1315 result = sasl_decode64(inp, strlen(inp), out, &outlen);
1333 &out, &outlen);
1336 result = sasl_server_step(conn, out, outlen,
1337 &out, &outlen, &errstr);
1445 result = sasl_encode64(out, outle
[all...]
H A Dqueue.c1413 ** Gets the stuff out of the queue in some presumably logical
1421 ** verbose -- if true, print out status information.
1863 ** Gets the stuff out of the queue in some presumably logical
2194 /* parent -- clean out connection cache */
2331 /* Clean out expired related entries. */
2350 SM_FILE_T *out; local
2353 out = sm_io_open(SmFtStdio, SM_TIME_DEFAULT,
2354 "memdump.out", SM_IO_APPEND, NULL);
2355 if (out != NULL)
2357 (void) sm_io_fprintf(out, SM_TIME_DEFAUL
[all...]

Completed in 56 milliseconds