Home
last modified time | relevance | path

Searched refs:__fio_fdtab (Results 1 – 6 of 6) sorted by relevance

/dports/cad/gplcver/gplcver-2.12a.src/src/
H A Dcver.c1998 __fio_fdtab = (struct fiofd_t **) in init_ds()
2001 for (i = 0; i < MY_FOPEN_MAX; i++) __fio_fdtab[i] = NULL; in init_ds()
2005 __fio_fdtab[0]->fd_error = FALSE; in init_ds()
2007 __fio_fdtab[0]->fd_name = __pv_stralloc("stdin"); in init_ds()
2008 __fio_fdtab[0]->fd_s = stdin; in init_ds()
2011 __fio_fdtab[1]->fd_error = FALSE; in init_ds()
2012 __fio_fdtab[1]->fd_name = __pv_stralloc("stdout"); in init_ds()
2013 __fio_fdtab[1]->fd_s = stdout; in init_ds()
2016 __fio_fdtab[2]->fd_error = FALSE; in init_ds()
2017 __fio_fdtab[2]->fd_name = __pv_stralloc("stdout"); in init_ds()
[all …]
H A Dv_ex.c3339 c = fgetc(__fio_fdtab[fd]->fd_s); in __exec_sysfunc()
3371 ival = ftell(__fio_fdtab[fd]->fd_s); in __exec_sysfunc()
7068 if (__fio_fdtab[fd] != NULL) in fio_fopen()
7082 __fio_fdtab[fd] = fdtp; in fio_fopen()
7151 if (__fio_fdtab[fd] == NULL) in __fd_do_fclose()
7159 f = __fio_fdtab[fd]->fd_s; in __fd_do_fclose()
7160 slen = strlen(__fio_fdtab[fd]->fd_name); in __fd_do_fclose()
7163 __fio_fdtab[fd] = NULL; in __fd_do_fclose()
7238 fflush(__fio_fdtab[fd]->fd_s); in fio_fflush()
7264 ival = ungetc(c, __fio_fdtab[fd]->fd_s); in fio_ungetc()
[all …]
H A Dv_vpi3.c5761 if (fd >= MY_FOPEN_MAX || __fio_fdtab[fd] == NULL) return(NULL); in vpi_mcd_name()
5762 else return(__fio_fdtab[fd]->fd_name); in vpi_mcd_name()
5799 if (fd >= MY_FOPEN_MAX || __fio_fdtab[fd] == NULL) in vpi_mcd_printf()
5805 numch_prtfed = vfprintf(__fio_fdtab[fd]->fd_s, format, va); in vpi_mcd_printf()
5915 if (fd >= MY_FOPEN_MAX || __fio_fdtab[fd] == NULL) in vpi_mcd_vprintf()
5921 numch_prtfed = vfprintf(__fio_fdtab[fd]->fd_s, format, ap); in vpi_mcd_vprintf()
5983 if (fd >= MY_FOPEN_MAX || __fio_fdtab[fd] == NULL) in vpi_mcd_flush()
5991 fflush(__fio_fdtab[fd]->fd_s); in vpi_mcd_flush()
H A Dv_cnv.c303 if (fd >= MY_FOPEN_MAX || __fio_fdtab[fd] == NULL) in __fio_do_disp()
309 fputs(__exprline, __fio_fdtab[fd]->fd_s); in __fio_do_disp()
310 if (nd_nl) fputc('\n', __fio_fdtab[fd]->fd_s); in __fio_do_disp()
H A Dv_tf.c4383 if (__fio_fdtab[fd] == NULL) in io_mcdprintf()
4392 vfprintf(__fio_fdtab[fd]->fd_s, format, va); in io_mcdprintf()
H A Dv.h2964 extern struct fiofd_t **__fio_fdtab; /* array of ptrs to file io stream */