Lines Matching defs:num
35 static int file_write(BIO *h, const char *buf, int num);
112 bi->num = 0;
178 static long file_ctrl(BIO *b, int cmd, long num, void *ptr)
190 ret = (long)UP_fseek(b->ptr, num, 0);
192 ret = (long)fseek(fp, num, 0);
209 b->shutdown = (int)num & BIO_CLOSE;
228 UP_fsetmod(b->ptr, (char)((num & BIO_FP_TEXT) ? 't' : 'b'));
234 if (num & BIO_FP_TEXT)
245 if ((num & BIO_FP_TEXT) != 0)
250 if (num & BIO_FP_TEXT)
262 if (!(num & BIO_FP_TEXT))
269 b->shutdown = (int)num & BIO_CLOSE;
270 if (num & BIO_FP_APPEND) {
271 if (num & BIO_FP_READ)
275 } else if ((num & BIO_FP_READ) && (num & BIO_FP_WRITE))
277 else if (num & BIO_FP_WRITE)
279 else if (num & BIO_FP_READ)
287 if (!(num & BIO_FP_TEXT))
292 if (!(num & BIO_FP_TEXT))
320 b->shutdown = (int)num;
392 static long file_ctrl(BIO *b, int cmd, long num, void *ptr)