Home
last modified time | relevance | path

Searched refs:mode (Results 1 – 25 of 807) sorted by last modified time

12345678910>>...33

/PHP-7.1/
H A Dconfigure.in345 # Disable PIC mode by default where it is known to be safe to do so,
1439 test -z "$PHP_COMPILE" && PHP_COMPILE='$(LIBTOOL) --mode=compile $(COMPILE) -c $<'
1440 test -z "$CXX_PHP_COMPILE" && CXX_PHP_COMPILE='$(LIBTOOL) --mode=compile $(CXX_COMPILE) -c $<'
H A Dserver-tests.php132 function mkpath($path,$mode = 0777) { argument
137 @mkdir($path,$mode);
/PHP-7.1/win32/
H A Dinstall.txt1221 CGI or a server module, safe mode, etc...), and preferably enough code
1584 --enable-safe-mode \
H A Dioutil.c73 PW32IO BOOL php_win32_ioutil_posix_to_open_opts(int flags, mode_t mode, php_ioutil_open_opts *opts) in php_win32_ioutil_posix_to_open_opts() argument
144 if (!((mode & ~current_umask) & _S_IWRITE)) { in php_win32_ioutil_posix_to_open_opts()
194 mode_t mode = 0; in php_win32_ioutil_open_w() local
202 mode = (mode_t) va_arg(arg, int); in php_win32_ioutil_open_w()
206 if (!php_win32_ioutil_posix_to_open_opts(flags, mode, &open_opts)) { in php_win32_ioutil_open_w()
289 PW32IO int php_win32_ioutil_mkdir_w(const wchar_t *path, mode_t mode)
307 PW32IO int php_win32_ioutil_mkdir(const char *path, mode_t mode) in php_win32_ioutil_mkdir() argument
606 PW32IO int php_win32_ioutil_access_w(const wchar_t *path, mode_t mode)
608 return _waccess(path, mode);
H A Dioutil.h233 PW32IO int php_win32_ioutil_mkdir(const char *path, mode_t mode);
242 PW32IO int php_win32_ioutil_mkdir_w(const wchar_t *path, mode_t mode);
243 PW32IO int php_win32_ioutil_access_w(const wchar_t *path, mode_t mode);
246 #define php_win32_ioutil_access_cond(path, mode) _waccess(pathw, mode) argument
250 __forceinline static int php_win32_ioutil_access(const char *path, mode_t mode) in php_win32_ioutil_access() argument
262 ret = _waccess(pathw, mode); in php_win32_ioutil_access()
277 mode_t mode = 0; in php_win32_ioutil_open() local
293 mode = (mode_t) va_arg(arg, int); in php_win32_ioutil_open()
297 ret = php_win32_ioutil_open_w(pathw, flags, mode); in php_win32_ioutil_open()
508 __forceinline static int php_win32_ioutil_chmod(const char *patha, int mode) in php_win32_ioutil_chmod() argument
[all …]
/PHP-7.1/win32/build/
H A Dphpize.js.in216 /* XXX this needs to be implemented for the phpize mode yet, a quick fix just to disable it for now…
/PHP-7.1/sapi/phpdbg/
H A Dphpdbg_wait.c225 int mode = phpdbg_array_intersect(&pos, &module); in phpdbg_webdata_decompress() local
226 if (mode < 0) { in phpdbg_webdata_decompress()
231 } else if (mode > 0) { in phpdbg_webdata_decompress()
H A Dxml.md626 - SIGINT: interactive mode is entered...
650 …en data couldn't be fetched (e.g. by accessing inconsistent data); only used in hard interrupt mode
H A DChangelog.md27 6. Added remote console mode
H A DREADME.md72 - -l listen ports for remote mode
73 - -a listen address for remote mode
H A Dconfig.m412 [ --enable-phpdbg-debug Build phpdbg in debug mode], no, no)
41 BUILD_PHPDBG="\$(LIBTOOL) --mode=link \
51 BUILD_PHPDBG_SHARED="\$(LIBTOOL) --mode=link \
H A Dphpdbg.c1345 …m_url_wrap_php(php_stream_wrapper *wrapper, const char *path, const char *mode, int options, zend_… in phpdbg_stream_url_wrap_php() argument
1363 return PHPDBG_G(orig_url_wrap_php)(wrapper, path, mode, options, opened_path, context STREAMS_CC); in phpdbg_stream_url_wrap_php()
H A Dphpdbg.h311 …php_stream *(*orig_url_wrap_php)(php_stream_wrapper *wrapper, const char *path, const char *mode, …
/PHP-7.1/sapi/phpdbg/tests/
H A Dphpdbg_get_executable_stream_wrapper.phpt30 string $mode,
34 if ($mode[0] !== 'r') {
40 $stream = \fopen($path, $mode);
/PHP-7.1/sapi/fpm/
H A Dwww.conf.in46 ; mode is set to 0660
49 ;listen.mode = 0660
H A Dconfig.m4720 …,1,1) != \".\")) { print \$\$3 } }' | sort -u >> php.sym && \$(LIBTOOL) --mode=link \$(CC) -export…
726 …BUILD_FPM="\$(LIBTOOL) --mode=link \$(CC) -export-dynamic \$(CFLAGS_CLEAN) \$(EXTRA_CFLAGS) \$(EXT…
/PHP-7.1/sapi/litespeed/
H A DREADME.md115 LiteSpeed web server dynamically spawn/stop PHP processes, in this mode
122 started in server managed mode.
H A Dconfig.m420 …BUILD_LITESPEED="\$(LIBTOOL) --mode=link \$(CC) -export-dynamic \$(CFLAGS_CLEAN) \$(EXTRA_CFLAGS) …
23 …BUILD_LITESPEED="\$(LIBTOOL) --mode=link \$(CC) -export-dynamic \$(CFLAGS_CLEAN) \$(EXTRA_CFLAGS) …
/PHP-7.1/sapi/fpm/fpm/
H A Dfpm_main.c1400 int mode = ZEND_INI_USER; local
1403 …parse_ini_string(tmp, 1, ZEND_INI_SCANNER_NORMAL, (zend_ini_parser_cb_t)fastcgi_ini_parser, &mode);
1409 int mode = ZEND_INI_SYSTEM; local
1412 …parse_ini_string(tmp, 1, ZEND_INI_SCANNER_NORMAL, (zend_ini_parser_cb_t)fastcgi_ini_parser, &mode);
1429 int *mode = (int *)arg; local
1434 if (!mode || !arg1) return;
1460 if (fpm_php_apply_defines_ex(&kv, *mode) == -1) {
H A Dfpm_php.c25 …r(char *name, int name_length, char *new_value, int new_value_length, int mode, int stage) /* {{{ … in fpm_php_zend_ini_alter_master() argument
40 ini_entry->modifiable = mode; in fpm_php_zend_ini_alter_master()
78 int fpm_php_apply_defines_ex(struct key_value_s *kv, int mode) /* {{{ */ in fpm_php_apply_defines_ex() argument
92 …if (fpm_php_zend_ini_alter_master(name, name_len, value, value_len, mode, PHP_INI_STAGE_ACTIVATE) … in fpm_php_apply_defines_ex()
H A Dfpm_php.h44 int fpm_php_apply_defines_ex(struct key_value_s *kv, int mode);
/PHP-7.1/sapi/cli/
H A Dphp_cli_server.c756 static void php_cli_server_poller_add(php_cli_server_poller *poller, int mode, php_socket_t fd) /* … in php_cli_server_poller_add() argument
758 if (mode & POLLIN) { in php_cli_server_poller_add()
761 if (mode & POLLOUT) { in php_cli_server_poller_add()
769 static void php_cli_server_poller_remove(php_cli_server_poller *poller, int mode, php_socket_t fd) … in php_cli_server_poller_remove() argument
771 if (mode & POLLIN) { in php_cli_server_poller_remove()
774 if (mode & POLLOUT) { in php_cli_server_poller_remove()
H A DREADME9 * CLI is started up in quiet mode by default.
/PHP-7.1/sapi/cgi/tests/
H A D005-win32.phpt26 string(51) "Interactive mode enabled
30 string(51) "Interactive mode enabled
H A D005.phpt27 Interactive mode enabled
31 Interactive mode enabled

Completed in 90 milliseconds

12345678910>>...33