Lines Matching refs:te
49 reg Tee_t* te = (Tee_t*)disc;
52 if(te->status == 0 && sfwrite(te->tee,buf,size) != (ssize_t)size)
53 te->status = -1;
84 reg Tee_t* te;
86 if(!(te = (Tee_t*)malloc(sizeof(Tee_t))) )
89 te->disc.readf = NIL(Sfread_f);
90 te->disc.seekf = NIL(Sfseek_f);
91 te->disc.writef = teewrite;
92 te->disc.exceptf = teeexcept;
93 te->tee = tee;
94 te->status = 0;
96 if(sfdisc(f,(Sfdisc_t*)te) != (Sfdisc_t*)te)
97 { free(te);