Home | History | Annotate | Download | only in multipart

Lines Matching refs:fh

77 		fh := &FileHeader{
99 fh.tmpfile = file.Name()
100 fh.Size = size
102 fh.content = b.Bytes()
103 fh.Size = int64(len(fh.content))
107 form.File[name] = append(form.File[name], fh)
127 for _, fh := range fhs {
128 if fh.tmpfile != "" {
129 e := os.Remove(fh.tmpfile)
150 func (fh *FileHeader) Open() (File, error) {
151 if b := fh.content; b != nil {
155 return os.Open(fh.tmpfile)