Lines Matching refs:mode
26 PHPAPI php_stream *_php_stream_fopen(const char *filename, const char *mode, zend_string **opened_p…
27 #define php_stream_fopen(filename, mode, opened) _php_stream_fopen((filename), (mode), (opened), 0 … argument
29 PHPAPI php_stream *_php_stream_fopen_with_path(const char *filename, const char *mode, const char *…
30 …define php_stream_fopen_with_path(filename, mode, path, opened) _php_stream_fopen_with_path((filen… argument
32 PHPAPI php_stream *_php_stream_fopen_from_file(FILE *file, const char *mode STREAMS_DC);
33 #define php_stream_fopen_from_file(file, mode) _php_stream_fopen_from_file((file), (mode) STREAMS_C… argument
35 PHPAPI php_stream *_php_stream_fopen_from_fd(int fd, const char *mode, const char *persistent_id, b…
36 #define php_stream_fopen_from_fd(fd, mode, persistent_id) _php_stream_fopen_from_fd((fd), (mode), (… argument
38 PHPAPI php_stream *_php_stream_fopen_from_pipe(FILE *file, const char *mode STREAMS_DC);
39 #define php_stream_fopen_from_pipe(file, mode) _php_stream_fopen_from_pipe((file), (mode) STREAMS_C… argument
50 PHPAPI FILE * _php_stream_open_wrapper_as_file(char * path, char * mode, int options, zend_string *…
51 … php_stream_open_wrapper_as_file(path, mode, options, opened_path) _php_stream_open_wrapper_as_fil… argument
54 PHPAPI int php_stream_parse_fopen_modes(const char *mode, int *open_flags);