Lines Matching defs:mode
84 SndfileHandle (const char *path, int mode = SFM_READ,
86 SndfileHandle (std::string const & path, int mode = SFM_READ,
88 SndfileHandle (int fd, bool close_desc, int mode = SFM_READ,
90 SndfileHandle (SF_VIRTUAL_IO &sfvirtual, void *user_data, int mode = SFM_READ,
94 SndfileHandle (const wchar_t *wpath, int mode = SFM_READ,
174 SndfileHandle::SndfileHandle (const char *path, int mode, int fmt, int chans, int srate)
189 p->sf = sf_open (path, mode, &p->sfinfo) ;
196 SndfileHandle::SndfileHandle (std::string const & path, int mode, int fmt, int chans, int srate)
211 p->sf = sf_open (path.c_str (), mode, &p->sfinfo) ;
218 SndfileHandle::SndfileHandle (int fd, bool close_desc, int mode, int fmt, int chans, int srate)
236 p->sf = sf_open_fd (fd, mode, &p->sfinfo, close_desc) ;
243 SndfileHandle::SndfileHandle (SF_VIRTUAL_IO &sfvirtual, void *user_data, int mode, int fmt, int chans, int srate)
258 p->sf = sf_open_virtual (&sfvirtual, mode, &p->sfinfo, user_data) ;
430 SndfileHandle::SndfileHandle (const wchar_t *wpath, int mode, int fmt, int chans, int srate)
445 p->sf = sf_wchar_open (wpath, mode, &p->sfinfo) ;