Searched defs:offset (Results 1 - 5 of 5) sorted by relevance
/sendmail/rmail/ |
H A D | rmail.c | 97 off_t offset; local 133 for (offset = 0; ; ) 148 else if (offset == 0) 267 if (offset != -1) 268 offset = (off_t)sm_io_tell(smioin, SM_TIME_DEFAULT); 345 if (lseek(STDIN_FILENO, offset, SEEK_SET) != offset)
|
/sendmail/libmilter/ |
H A D | smfi.c | 45 size_t len, l1, l2, offset; local 63 offset = 0; 68 offset += MILTER_LEN_BYTES; 70 (void) memcpy(buf + offset, headerf, l1); 71 (void) memcpy(buf + offset + l1, headerv, l2); 179 size_t len, l0, l1, offset; 202 offset = l0; 208 SM_ASSERT(offset < len); 209 SM_ASSERT(offset + l1 <= len); 210 (void) memcpy(buf + offset, ar 244 size_t len, l0, l1, offset; local [all...] |
H A D | engine.c | 498 size_t offset; local 506 offset = MILTER_OPTLEN; 514 SM_ASSERT(offset + MILTER_LEN_BYTES < len); 516 (void) memcpy(buffer + offset, (void *) &v, 518 offset += MILTER_LEN_BYTES; 520 SM_ASSERT(offset + l <= len); 521 (void) memcpy(buffer + offset, 523 offset += l;
|
/sendmail/sendmail/ |
H A D | mime.c | 112 off_t offset; local 441 offset = sm_io_tell(e->e_dfp, SM_TIME_DEFAULT); 442 if (offset == -1) 471 /* return to the original offset for processing */ 473 if (sm_io_seek(e->e_dfp, SM_TIME_DEFAULT, offset, SEEK_SET) < 0)
|
H A D | sfsasl.c | 199 static unsigned int offset = 0; local 231 offset = 0; 243 if (outlen - offset > size) 246 (void) memcpy(buf, outbuf + offset, size); 247 offset += size; 253 len = outlen - offset; 254 (void) memcpy(buf, outbuf + offset, (size_t) len); 259 offset = 0;
|
Completed in 1311 milliseconds