Home
last modified time | relevance | path

Searched refs:mode (Results 1 – 25 of 750) sorted by path

12345678910>>...30

/PHP-5.5/
H A DCODING_STANDARDS76 information while running in debug mode.
251 The {{{ symbols are the default folding symbols for the folding mode in
H A DINSTALL827 A server deployed in CGI mode is open to several possible
1554 CGI or a server module, safe mode, etc.), and preferably enough code to
H A DMakefile.global19 …$(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -rpath $(phptempdir) $(EXTRA_LDFLAGS) $(LDF…
20 -@$(LIBTOOL) --silent --mode=install cp $@ $(phptempdir)/$@ >/dev/null 2>&1
H A DNEWS3003 invalid scanner mode). (Nikic, Laruence)
3127 . Safe mode and all related php.ini options. (Kalle)
3630 invalid scanner mode). (Nikic, Laruence)
4326 etc.) on Windows in thread safe mode. (Pierre)
4433 server mode. (Gustavo)
4634 strict mode). (Ilia)
5788 mode of INI_SCANNER_NORMAL or INI_SCANNER_RAW. In raw mode option values
8064 mode). (Ilia)
8631 . Added a weak/tolerant mode to the JPEG loader.
9222 auto-commit mode). (Wez)
[all …]
H A DREADME.SELF-CONTAINED-EXTENSIONS95 that the extension will be enabled by PHP_NEW_EXTENSION in shared mode.
H A DREADME.STREAMS40 PHPAPI int php_stream_lock(php_stream * stream, int mode);
49 PHPAPI php_stream *php_stream_open_wrapper(char *path, char *mode,
54 mode is the stdio compatible mode eg: "wb", "rb" etc.
76 PHPAPI php_stream *php_stream_fopen_from_file(FILE *file, const char *mode);
247 FILE * fp = fopen(filename, mode);
251 ret = php_stream_alloc(&php_stream_stdio_ops, fp, 0, 0, mode);
269 size_t bufsize, int persistent, const char * mode)
280 mode is the stdio-like mode of operation - php streams places no real meaning
281 in the mode parameter, except that it checks for a 'w' in the string when
285 into a FILE*, so it should be compatible with the mode parameter of fopen().
[all …]
H A Dacinclude.m4809 php_c_pre='$(LIBTOOL) --mode=compile $(CC)'
812 php_cxx_pre='$(LIBTOOL) --mode=compile $(CXX)'
822 shared_c_pre='$(LIBTOOL) --mode=compile $(CC)'
825 shared_cxx_pre='$(LIBTOOL) --mode=compile $(CXX)'
843 …link_cmd='$(LIBTOOL) --mode=link ifelse($4,,[$(CC)],[$(CXX)]) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EX…
847 …link_cmd='$(LIBTOOL) --mode=link ifelse($4,,[$(CC)],[$(CXX)]) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EX…
851 …link_cmd='$(LIBTOOL) --mode=link ifelse($4,,[$(CC)],[$(CXX)]) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EX…
863 \$(LIBTOOL) --mode=install cp $3/$1.$suffix \$(phplibdir)
1748 AC_DEFINE(HAVE_BROKEN_GLIBC_FOPEN_APPEND,1, [Define if your glibc borks on fopen with mode a+])
2129 dnl ## "limit-to-ANSI-standard" mode, not in "ANSI-compatible" mode
H A Dconfigure.in345 # Disable PIC mode by default where it is known to be safe to do so,
1423 test -z "$PHP_COMPILE" && PHP_COMPILE='$(LIBTOOL) --mode=compile $(COMPILE) -c $<'
1424 test -z "$CXX_PHP_COMPILE" && CXX_PHP_COMPILE='$(LIBTOOL) --mode=compile $(CXX_COMPILE) -c $<'
/PHP-5.5/TSRM/
H A Dtsrm_nw.c63 int mode = O_RDONLY; local
66 NXMode_t mode = NX_O_RDONLY; local
84 mode = O_RDONLY;
86 mode = NX_O_RDONLY;
90 mode = O_WRONLY;
92 mode = NX_O_WRONLY;
98 pipe_handle = pipe_open(filePath, mode);
102 pipe_handle = mkfifo(filePath, mode);
109 err = NXFifoOpen(0, filePath, mode, 0, &pipe_handle);
182 if (mode == O_RDONLY) {
[all …]
H A Dtsrm_virtual_cwd.c92 #define S_ISDIR(mode) ((mode) & _S_IFDIR) argument
96 #define S_ISREG(mode) ((mode) & _S_IFREG) argument
1481 f = fopen(new_state.cwd, mode); in virtual_fopen()
1500 ret = tsrm_win32_access(new_state.cwd, mode TSRMLS_CC); in virtual_access()
1502 ret = access(new_state.cwd, mode); in virtual_access()
1595 ret = chmod(new_state.cwd, mode); in virtual_chmod()
1642 mode_t mode; in virtual_open() local
1646 mode = (mode_t) va_arg(arg, int); in virtual_open()
1649 f = open(new_state.cwd, flags, mode); in virtual_open()
1669 f = creat(new_state.cwd, mode); in virtual_creat()
[all …]
H A Dtsrm_virtual_cwd.h259 #define VCWD_FOPEN(path, mode) virtual_fopen(path, mode TSRMLS_CC) argument
263 #define VCWD_CREAT(path, mode) virtual_creat(path, mode TSRMLS_CC) argument
272 #define VCWD_MKDIR(pathname, mode) virtual_mkdir(pathname, mode TSRMLS_CC) argument
276 #define VCWD_ACCESS(pathname, mode) virtual_access(pathname, mode TSRMLS_CC) argument
280 #define VCWD_CHMOD(path, mode) virtual_chmod(path, mode TSRMLS_CC) argument
291 #define VCWD_FOPEN(path, mode) fopen(path, mode) argument
293 #define VCWD_OPEN_MODE(path, flags, mode) open(path, flags, mode) argument
294 #define VCWD_CREAT(path, mode) creat(path, mode) argument
308 #define VCWD_MKDIR(pathname, mode) mkdir(pathname, mode) argument
315 #define VCWD_ACCESS(pathname, mode) access(pathname, mode) argument
[all …]
H A Dtsrm_win32.c211 if (mode == 1 /*X_OK*/) { in tsrm_win32_access()
223 if(access(pathname, mode)) { in tsrm_win32_access()
229 if (mode == 0) { in tsrm_win32_access()
295 if(mode == 0 || mode > 6) { in tsrm_win32_access()
301 } else if(mode <= 2) { in tsrm_win32_access()
307 } else if(mode <= 4) { in tsrm_win32_access()
460 int fno, type_len = strlen(type), read, mode; in popen_ex() local
557 fno = _open_osfhandle((tsrm_intptr_t)in, _O_RDONLY | mode); in popen_ex()
560 fno = _open_osfhandle((tsrm_intptr_t)out, _O_WRONLY | mode); in popen_ex()
633 shm->descriptor->shm_perm.mode = flags; in shmget()
[all …]
H A Dtsrm_win32.h33 unsigned short mode; member
101 TSRM_API int tsrm_win32_access(const char *pathname, int mode TSRMLS_DC);
/PHP-5.5/Zend/
H A DMakefile.am54 …$(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CPPFLAGS) $(INLINE_CFLAG…
H A Dzend_compile.c5588 …stant(znode *result, znode *constant_container, znode *constant_name, int mode, zend_bool check_na… in zend_do_fetch_constant() argument
5597 switch (mode) { in zend_do_fetch_constant()
5643 switch (mode) { in zend_do_fetch_constant()
H A Dzend_compile.h579 …stant(znode *result, znode *constant_container, znode *constant_name, int mode, zend_bool check_na…
H A Dzend_hash.c849 int mode = (overwrite?HASH_UPDATE:HASH_ADD); in _zend_hash_merge() local
857 …_add_or_update(target, p->arKey, p->nKeyLength, p->h, p->pData, size, &t, mode ZEND_FILE_LINE_RELA… in _zend_hash_merge()
861 …if ((mode==HASH_UPDATE || !zend_hash_index_exists(target, p->h)) && zend_hash_index_update(target,… in _zend_hash_merge()
1231 …int key_type, const char *str_index, uint str_length, ulong num_index, int mode, HashPosition *pos) in zend_hash_update_current_key_ex() argument
1288 if (mode != HASH_UPDATE_KEY_ANYWAY) { in zend_hash_update_current_key_ex()
1299 if (mode & found) { in zend_hash_update_current_key_ex()
H A Dzend_hash.h185 …nt key_type, const char *str_index, uint str_length, ulong num_index, int mode, HashPosition *pos);
378 …date_current_key_ex(HashTable *ht, const char *arKey, uint nKeyLength, int mode, HashPosition *pos) in zend_symtable_update_current_key_ex() argument
380 …arKey, nKeyLength, zend_hash_update_current_key_ex(ht, HASH_KEY_IS_LONG, NULL, 0, idx, mode, pos)); in zend_symtable_update_current_key_ex()
381 return zend_hash_update_current_key_ex(ht, HASH_KEY_IS_STRING, arKey, nKeyLength, 0, mode, pos); in zend_symtable_update_current_key_ex()
383 #define zend_symtable_update_current_key(ht,arKey,nKeyLength,mode) \ argument
384 zend_symtable_update_current_key_ex(ht, arKey, nKeyLength, mode, NULL)
H A Dzend_strtod.c1442 ZEND_API char * zend_dtoa(double _d, int mode, int ndigits, int *decpt, int *sign, char **rve) in zend_dtoa() argument
1610 if (mode < 0 || mode > 9) in zend_dtoa()
1611 mode = 0; in zend_dtoa()
1613 if (mode > 5) { in zend_dtoa()
1614 mode -= 4; in zend_dtoa()
1618 switch(mode) { in zend_dtoa()
1792 if (mode < 2) { in zend_dtoa()
1847 if (mode < 2) { in zend_dtoa()
1901 if (ilim <= 0 && mode > 2) { in zend_dtoa()
1938 if (j1 == 0 && !mode && !(word1(d) & 1)) { in zend_dtoa()
[all …]
H A Dzend_strtod.h29 ZEND_API char * zend_dtoa(double _d, int mode, int ndigits, int *decpt, int *sign, char **rve);
/PHP-5.5/Zend/tests/
H A Dbug38779.phpt9 public function stream_open($path, $mode, $options, &$opened_path) {
H A Dbug38779_1.phpt9 public function stream_open($path, $mode, $options, &$opened_path) {
H A Dbug61087.phpt2 Bug #61087 (Memory leak in parse_ini_file when specifying invalid scanner mode)
10 Warning: Invalid scanner mode in %s on line %d
/PHP-5.5/build/
H A Dlibtool.m41637 # HP-UX runs *really* slowly unless shared libraries are mode 555.
4493 # text mode, it properly converts lines to CR/LF. This bash problem
H A Dscan_makefile_in.awk2 mode=0
6 mode == 0 && /^LTLIBRARY_SOURCES.*\\$/ {
10 mode=1
14 mode == 0 && /^LTLIBRARY_SOURCES.*/ {
20 mode == 1 && /.*\\$/ {
25 mode == 1 {
27 mode=0

Completed in 183 milliseconds

12345678910>>...30