Home
last modified time | relevance | path

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

12345678910>>...29

/PHP-5.3/
H A DCODING_STANDARDS76 information while running in debug mode.
231 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.global17 …$(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -rpath $(phptempdir) $(EXTRA_LDFLAGS) $(LDF…
18 -@$(LIBTOOL) --silent --mode=install cp $@ $(phptempdir)/$@ >/dev/null 2>&1
H A DNEWS572 invalid scanner mode). (Nikic, Laruence)
1275 etc.) on Windows in thread safe mode. (Pierre)
1382 server mode. (Gustavo)
1583 strict mode). (Ilia)
2521 - Fixed bug #49000 (PHP CLI in Interactive mode (php -a) crashes
2738 mode of INI_SCANNER_NORMAL or INI_SCANNER_RAW. In raw mode option values
5014 mode). (Ilia)
5581 . Added a weak/tolerant mode to the JPEG loader.
6172 auto-commit mode). (Wez)
6616 mode). (mike at php dot net)
[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 DTODO41 available in ZTS mode.
H A DUPGRADING100 round(): $mode
105 - And new mode option for fopen: 'n' (O_NONBLOCK)
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)'
845 …link_cmd='$(LIBTOOL) --mode=link ifelse($4,,[$(CC)],[$(CXX)]) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EX…
849 …link_cmd='$(LIBTOOL) --mode=link ifelse($4,,[$(CC)],[$(CXX)]) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EX…
853 …link_cmd='$(LIBTOOL) --mode=link ifelse($4,,[$(CC)],[$(CXX)]) $(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EX…
865 \$(LIBTOOL) --mode=install cp $3/$1.$suffix \$(phplibdir)
1737 AC_DEFINE(HAVE_BROKEN_GLIBC_FOPEN_APPEND,1, [Define if your glibc borks on fopen with mode a+])
2118 dnl ## "limit-to-ANSI-standard" mode, not in "ANSI-compatible" mode
/PHP-5.3/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
1495 f = fopen(new_state.cwd, mode); in virtual_fopen()
1514 ret = tsrm_win32_access(new_state.cwd, mode); in virtual_access()
1516 ret = access(new_state.cwd, mode); in virtual_access()
1609 ret = chmod(new_state.cwd, mode); in virtual_chmod()
1656 mode_t mode; in virtual_open() local
1660 mode = (mode_t) va_arg(arg, int); in virtual_open()
1663 f = open(new_state.cwd, flags, mode); in virtual_open()
1683 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
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
313 #define VCWD_ACCESS(pathname, mode) tsrm_win32_access(pathname, mode) argument
315 #define VCWD_ACCESS(pathname, mode) access(pathname, mode) argument
[all …]
H A Dtsrm_win32.c193 TSRM_API int tsrm_win32_access(const char *pathname, int mode) in tsrm_win32_access() argument
213 if (mode == 1 /*X_OK*/) { in tsrm_win32_access()
225 if(access(pathname, mode)) { in tsrm_win32_access()
231 if (mode == 0) { in tsrm_win32_access()
297 if(mode == 0 || mode > 6) { in tsrm_win32_access()
303 } else if(mode <= 2) { in tsrm_win32_access()
309 } else if(mode <= 4) { in tsrm_win32_access()
460 int fno, type_len = strlen(type), read, mode; in popen_ex() local
559 fno = _open_osfhandle((tsrm_intptr_t)in, _O_RDONLY | mode); in popen_ex()
635 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);
/PHP-5.3/Zend/
H A DMakefile.am53 …$(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(CPPFLAGS) $(INLINE_CFLAG…
H A Dzend_compile.c3919 …stant(znode *result, znode *constant_container, znode *constant_name, int mode, zend_bool check_na… in zend_do_fetch_constant() argument
3928 switch (mode) { in zend_do_fetch_constant()
3963 switch (mode) { in zend_do_fetch_constant()
H A Dzend_compile.h490 …stant(znode *result, znode *constant_container, znode *constant_name, int mode, zend_bool check_na…
H A Dzend_hash.c807 int mode = (overwrite?HASH_UPDATE:HASH_ADD); in _zend_hash_merge() local
815 …_add_or_update(target, p->arKey, p->nKeyLength, p->h, p->pData, size, &t, mode ZEND_FILE_LINE_RELA… in _zend_hash_merge()
819 …if ((mode==HASH_UPDATE || !zend_hash_index_exists(target, p->h)) && zend_hash_index_update(target,… in _zend_hash_merge()
1175 …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
1222 if (mode != HASH_UPDATE_KEY_ANYWAY) { in zend_hash_update_current_key_ex()
1233 if (mode & found) { in zend_hash_update_current_key_ex()
H A Dzend_hash.h184 …nt key_type, const char *str_index, uint str_length, ulong num_index, int mode, HashPosition *pos);
370 …date_current_key_ex(HashTable *ht, const char *arKey, uint nKeyLength, int mode, HashPosition *pos) in zend_symtable_update_current_key_ex() argument
372 …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()
373 return zend_hash_update_current_key_ex(ht, HASH_KEY_IS_STRING, arKey, nKeyLength, 0, mode, pos); in zend_symtable_update_current_key_ex()
375 #define zend_symtable_update_current_key(ht,arKey,nKeyLength,mode) \ argument
376 zend_symtable_update_current_key_ex(ht, arKey, nKeyLength, mode, NULL)
H A Dzend_strtod.c1443 ZEND_API char * zend_dtoa(double _d, int mode, int ndigits, int *decpt, int *sign, char **rve) in zend_dtoa() argument
1611 if (mode < 0 || mode > 9) in zend_dtoa()
1612 mode = 0; in zend_dtoa()
1614 if (mode > 5) { in zend_dtoa()
1615 mode -= 4; in zend_dtoa()
1619 switch(mode) { in zend_dtoa()
1793 if (mode < 2) { in zend_dtoa()
1848 if (mode < 2) { in zend_dtoa()
1902 if (ilim <= 0 && mode > 2) { in zend_dtoa()
1939 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.3/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.3/build/
H A Dlibtool.m41635 # HP-UX runs *really* slowly unless shared libraries are mode 555.
4490 # text mode, it properly converts lines to CR/LF. This bash problem

Completed in 128 milliseconds

12345678910>>...29