Home | History | Annotate | Download | only in bfd

Lines Matching refs:vec

480   struct opncls *vec = (struct opncls *) abfd->iostream;
481 return vec->where;
487 struct opncls *vec = (struct opncls *) abfd->iostream;
490 case SEEK_SET: vec->where = offset; break;
491 case SEEK_CUR: vec->where += offset; break;
500 struct opncls *vec = (struct opncls *) abfd->iostream;
501 file_ptr nread = (vec->pread) (abfd, vec->stream, buf, nbytes, vec->where);
504 vec->where += nread;
519 struct opncls *vec = (struct opncls *) abfd->iostream;
520 /* Since the VEC's memory is bound to the bfd deleting the bfd will
523 if (vec->close != NULL)
524 status = (vec->close) (abfd, vec->stream);
538 struct opncls *vec = (struct opncls *) abfd->iostream;
541 if (vec->stat == NULL)
544 return (vec->stat) (abfd, vec->stream, sb);
576 struct opncls *vec;
603 vec = (struct opncls *) bfd_zalloc (nbfd, sizeof (struct opncls));
604 vec->stream = stream;
605 vec->pread = pread_p;
606 vec->close = close_p;
607 vec->stat = stat_p;
610 nbfd->iostream = vec;