Home
last modified time | relevance | path

Searched defs:mode (Results 1 – 25 of 115) sorted by last modified time

12345

/PHP-5.5/
H A Dserver-tests.php140 function mkpath($path,$mode = 0777) {
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_php.c26 …ter(char *name, int name_length, char *new_value, int new_value_length, int mode, int stage TSRMLS… in fpm_php_zend_ini_alter_master()
80 int fpm_php_apply_defines_ex(struct key_value_s *kv, int mode) /* {{{ */ in fpm_php_apply_defines_ex()
H A Dfpm_main.c1405 int mode = ZEND_INI_USER; local
1414 int mode = ZEND_INI_SYSTEM; local
1425 int *mode = (int *)arg; local
/PHP-5.5/sapi/cli/
H A Dphp_cli_server.c95 #define S_ISDIR(mode) (((mode)&S_IFMT) == S_IFDIR) argument
869 static void php_cli_server_poller_add(php_cli_server_poller *poller, int mode, int fd) /* {{{ */ in php_cli_server_poller_add()
882 static void php_cli_server_poller_remove(php_cli_server_poller *poller, int mode, int fd) /* {{{ */ in php_cli_server_poller_remove()
/PHP-5.5/sapi/apache_hooks/
H A Dmod_php5.c895 …har *php_apache_value_handler_ex(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2, int mode) in php_apache_value_handler_ex()
1133 …char *php_apache_flag_handler_ex(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2, int mode) in php_apache_flag_handler_ex()
/PHP-5.5/sapi/apache/
H A Dmod_php5.c796 …har *php_apache_value_handler_ex(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2, int mode) in php_apache_value_handler_ex()
849 …char *php_apache_flag_handler_ex(cmd_parms *cmd, HashTable *conf, char *arg1, char *arg2, int mode) in php_apache_flag_handler_ex()
/PHP-5.5/sapi/apache2filter/
H A Dsapi_apache2.c360 ap_input_mode_t mode, apr_read_type_e block, apr_off_t readbytes) in php_input_filter()
/PHP-5.5/main/streams/
H A Dstreams.c1892 PHPAPI int _php_stream_mkdir(char *path, int mode, int options, php_stream_context *context TSRMLS_…
2019 PHPAPI php_stream *_php_stream_open_wrapper_ex(char *path, char *mode, int options,
H A Duserspace.c335 static php_stream *user_wrapper_opener(php_stream_wrapper *wrapper, char *filename, char *mode, int… in user_wrapper_opener()
440 static php_stream *user_wrapper_opendir(php_stream_wrapper *wrapper, char *filename, char *mode, in user_wrapper_opendir()
1263 static int user_wrapper_mkdir(php_stream_wrapper *wrapper, char *url, int mode, int options, php_st… in user_wrapper_mkdir()
H A Dcast.c49 FILE *fopencookie(void *cookie, const char *mode, COOKIE_IO_FUNCTIONS_T *funcs) in fopencookie()
354 PHPAPI FILE * _php_stream_open_wrapper_as_file(char *path, char *mode, int options, char **opened_p… in _php_stream_open_wrapper_as_file()
H A Dglob_wrapper.c209 static php_stream *php_glob_stream_opener(php_stream_wrapper *wrapper, char *path, char *mode, in php_glob_stream_opener()
H A Dmemory.c44 int mode; member
313 PHPAPI php_stream *_php_stream_memory_open(int mode, char *buf, size_t length STREAMS_DC TSRMLS_DC) in _php_stream_memory_open()
357 int mode; member
559 PHPAPI php_stream *_php_stream_temp_create(int mode, size_t max_memory_usage STREAMS_DC TSRMLS_DC) in _php_stream_temp_create()
579 PHPAPI php_stream *_php_stream_temp_open(int mode, size_t max_memory_usage, char *buf, size_t lengt… in _php_stream_temp_open()
609 static php_stream * php_stream_url_wrap_rfc2397(php_stream_wrapper *wrapper, char *path, char *mode in php_stream_url_wrap_rfc2397()
H A Dmmap.c25 …map_range(php_stream *stream, size_t offset, size_t length, php_stream_mmap_operation_t mode, size… in _php_stream_mmap_range()
H A Dphp_stream_mmap.h54 php_stream_mmap_access_t mode; member
71 #define php_stream_mmap_range(stream, offset, length, mode, mapped_len) _php_stream_mmap_range((str… argument
H A Dphp_stream_plain_wrapper.h31 #define php_stream_fopen(filename, mode, opened) _php_stream_fopen((filename), (mode), (opened), 0 … argument
34 #define php_stream_fopen_with_path(filename, mode, path, opened) _php_stream_fopen_with_path((filen… argument
37 #define php_stream_fopen_from_file(file, mode) _php_stream_fopen_from_file((file), (mode) STREAMS_C… argument
40 #define php_stream_fopen_from_fd(fd, mode, persistent_id) _php_stream_fopen_from_fd((fd), (mode), (… argument
43 #define php_stream_fopen_from_pipe(file, mode) _php_stream_fopen_from_pipe((file), (mode) STREAMS_C… argument
55 #define php_stream_open_wrapper_as_file(path, mode, options, opened_path) _php_stream_open_wrapper_… argument
H A Dphp_streams_int.h59 #define S_ISREG(mode) (((mode)&S_IFMT) == S_IFREG) argument
H A Dplain_wrapper.c47 #define php_stream_fopen_from_fd_int(fd, mode, persistent_id) _php_stream_fopen_from_fd_int((fd), (… argument
49 #define php_stream_fopen_from_file_int(file, mode) _php_stream_fopen_from_file_int((file), (mode) S… argument
50 #define php_stream_fopen_from_file_int_rel(file, mode) _php_stream_fopen_from_file_int((file), (mo… argument
58 PHPAPI int php_stream_parse_fopen_modes(const char *mode, int *open_flags) in php_stream_parse_fopen_modes()
155 static php_stream *_php_stream_fopen_from_fd_int(int fd, const char *mode, const char *persistent_i… in _php_stream_fopen_from_fd_int()
231 PHPAPI php_stream *_php_stream_fopen_from_fd(int fd, const char *mode, const char *persistent_id ST… in _php_stream_fopen_from_fd()
885 static php_stream *php_plain_files_dir_opener(php_stream_wrapper *wrapper, char *path, char *mode, in php_plain_files_dir_opener()
924 PHPAPI php_stream *_php_stream_fopen(const char *filename, const char *mode, char **opened_path, in… in _php_stream_fopen()
1023 …atic php_stream *php_plain_files_stream_opener(php_stream_wrapper *wrapper, char *path, char *mode, in php_plain_files_stream_opener()
1169 static int php_plain_files_mkdir(php_stream_wrapper *wrapper, char *dir, int mode, int options, php… in php_plain_files_mkdir()
[all …]
/PHP-5.5/main/
H A Dphp_ini.c41 #define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG) argument
H A Dphp_memory_streams.h32 #define php_stream_memory_create(mode) _php_stream_memory_create((mode) STREAMS_CC TSRMLS_CC) argument
33 #define php_stream_memory_create_rel(mode) _php_stream_memory_create((mode) STREAMS_REL_CC TSRMLS_C… argument
34 #define php_stream_memory_open(mode, buf, length) _php_stream_memory_open((mode), (buf), (length) S… argument
38 #define php_stream_temp_create(mode, max_memory_usage) _php_stream_temp_create((mode), (max_memory_… argument
39 #define php_stream_temp_create_rel(mode, max_memory_usage) _php_stream_temp_create((mode), (max_mem… argument
40 #define php_stream_temp_open(mode, max_memory_usage, buf, length) _php_stream_temp_open((mode), (ma… argument
H A Dphp_streams.h62 #define php_stream_alloc_rel(ops, thisptr, persistent, mode) _php_stream_alloc((ops), (thisptr), (p… argument
66 #define php_stream_fopen_rel(filename, mode, opened, options) _php_stream_fopen((filename), (mode),… argument
70 #define php_stream_fopen_from_fd_rel(fd, mode, persistent_id) _php_stream_fopen_from_fd((fd), (mod… argument
71 #define php_stream_fopen_from_file_rel(file, mode) _php_stream_fopen_from_file((file), (mode) STRE… argument
73 #define php_stream_fopen_from_pipe_rel(file, mode) _php_stream_fopen_from_pipe((file), (mode) STRE… argument
198 char mode[16]; /* "rwb" etc. ala stdio */ member
243 #define php_stream_alloc(ops, thisptr, persistent_id, mode) _php_stream_alloc((ops), (thisptr), (pe… argument
342 #define php_stream_mkdir(path, mode, options, context) _php_stream_mkdir(path, mode, options, conte… argument
404 #define php_stream_lock(stream, mode) _php_stream_set_option((stream), PHP_STREAM_OPTION_LOCKING, … argument
555 #define php_stream_open_wrapper(path, mode, options, opened) _php_stream_open_wrapper_ex((path), (m… argument
[all …]
H A Dmain.c118 #define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG) argument
333 int mode; in php_get_display_errors_mode() local
374 int mode, tmp_value_length, cgi_or_cli; in PHP_INI_DISP() local
H A Dfopen_wrappers.c57 #define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG) argument
342 static FILE *php_fopen_and_set_opened_path(const char *path, const char *mode, char **opened_path T…
611 PHPAPI FILE *php_fopen_with_path(const char *filename, const char *mode, const char *path, char **o…
/PHP-5.5/ext/zlib/
H A Dzlib.c590 char *mode; in PHP_FUNCTION() local
H A Dzlib_fopen_wrapper.c109 php_stream *php_stream_gzopen(php_stream_wrapper *wrapper, char *path, char *mode, int options, in php_stream_gzopen()
/PHP-5.5/ext/zip/
H A Dzip_stream.c239 char *mode, in php_stream_zip_opener()

Completed in 191 milliseconds

12345