Searched refs:sf_open_fd (Results 1 – 16 of 16) sorted by relevance
/third_party/libsnd/tests/ |
D | multi_file_test.c | 170 if ((sndfile = sf_open_fd (fd, SFM_READ, &sfinfo, SF_FALSE)) == NULL) in multi_file_test() 222 if ((sndfile = sf_open_fd (fd, SFM_WRITE, &sfinfo, SF_FALSE)) == NULL) in write_file_at_end()
|
D | stdin_test.c | 154 if ((file = sf_open_fd (fileno (stdin), SFM_READ, &sfinfo, SF_TRUE)) == NULL) in stdin_test()
|
D | error_test.c | 203 sndfile = sf_open_fd (fileno (file), SFM_WRITE, &sfinfo, SF_TRUE) ; in error_close_test()
|
D | pipe_test.tpl | 199 if ((outfile = sf_open_fd (pipefd [1], SFM_WRITE, psfinfo_write, SF_TRUE)) == NULL) 213 if ((infile_piped = sf_open_fd (pipefd [0], SFM_READ, psfinfo_read, SF_TRUE)) == NULL)
|
D | utils.tpl | 522 ** Need to test both sf_open() and sf_open_fd(). 567 func_name = "sf_open_fd" ; 568 file = sf_open_fd (fd, mode, sfinfo, SF_TRUE) ;
|
/third_party/libsnd/docs/ |
D | embedded_files.md | 9 SNDFILE* sf_open_fd (int fd, int mode, SF_INFO *sfinfo, int close_desc) ;
|
D | api.md | 36 | [sf_open_fd](#open_fd) … 189 SNDFILE* sf_open_fd (int fd, int mode, SF_INFO *sfinfo, int close_desc) ; 205 passing the file descriptor to **sf_open_fd**(). 208 Every call to `sf_open_fd`() should be matched with a call to sf_close() to free 209 up memory allocated during the call to sf_open_fd(). 212 **close_desc** parameter was TRUE when the sf_open_fd() function was called. 214 On success, the sf_open_fd() function returns a non-NULL pointer which should be 216 that audio file. On fail, the sf_open_fd() function returns a NULL pointer.
|
D | index.md | 137 in sf_open_fd () function. Fix critical CMake bug leading to broken ABI on
|
/third_party/pulseaudio/src/pulsecore/ |
D | sound-file.c | 76 if (!(sf = sf_open_fd(fd, SFM_READ, &sfi, 1))) { in pa_sound_file_load()
|
D | sound-file-stream.c | 278 if (!(u->sndfile = sf_open_fd(fd, SFM_READ, &sfi, 1))) { in pa_play_file()
|
/third_party/libsnd/include/ |
D | sndfile.h | 555 SNDFILE* sf_open_fd (int fd, int mode, SF_INFO *sfinfo, int close_desc);
|
D | sndfile.hh | 234 p->sf = sf_open_fd (fd, mode, &p->sfinfo, close_desc) ; in SndfileHandle()
|
D | sndfile.h.in | 587 ** All calls to sf_open_fd() should be matched with a call to sf_close(). 591 SNDFILE* sf_open_fd (int fd, int mode, SF_INFO *sfinfo, int close_desc) ;
|
/third_party/libsnd/ |
D | NEWS | 66 * Fix bug when sf_open_fd() function sometimes leaves filehandle open, even 243 * Added new function sf_open_fd() to allow for secure opening of temporary
|
/third_party/pulseaudio/src/utils/ |
D | pacat.c | 1067 if (!(sndfile = sf_open_fd(mode == RECORD ? STDOUT_FILENO : STDIN_FILENO, in main()
|
/third_party/libsnd/src/ |
D | sndfile.c | 363 sf_open_fd (int fd, int mode, SF_INFO *sfinfo, int close_desc) in sf_open_fd() function
|