Home
last modified time | relevance | path

Searched refs:flag (Results 1 – 25 of 290) sorted by path

12345678910>>...12

/PHP-5.5/
H A DINSTALL1855 compile-time with the --with-config-file-path flag. You would,
H A DNEWS3061 . Fixed bug #61194 (PDO should export compression flag with myslqnd).
3235 EXT_TYPE_UNUSED flag any more. This is a very rare and useless case.
3358 . Removed EXPERIMENTAL flag. (fat)
3687 . Fixed bug #61194 (PDO should export compression flag with myslqnd).
5633 OP_PROTOTYPE flag). (Jani)
6025 - Added 'n' flag to fopen to allow passing O_NONBLOCK to the underlying
8095 flag) (Ilia, Dmitry, Matt Wilmas)
8553 - Fixed bug #37244 (Added strict flag to base64_decode() that enforces
9047 - Added support for LOCK_EX flag for file_put_contents(). (Ilia)
9663 d/e flag global and not per connection). (Andrey)
[all …]
H A DREADME.STREAMS310 hold it, allocate it (use pemalloc with the persistent flag set
H A DUPGRADING191 DOMDocument::schemaValidate() accept flag parameter. Only flag
H A Dconfigure.in242 [ --enable-re2c-cgoto Enable -g flag to re2c to use computed goto gcc extension], no, no)
1498 flag=-O0
1500 flag=
1503 PHP_ADD_SOURCES_X(Zend, zend_execute.c,,PHP_GLOBAL_OBJS,,$flag)
/PHP-5.5/TSRM/
H A Dthreads.m4127 for flag in -kthread -pthread -pthreads -mthreads -Kthread -threads -mt -qthreaded; do
129 CFLAGS="$CFLAGS $flag"
133 ac_cv_pthreads_cflags=$flag
/PHP-5.5/Zend/tests/
H A Dbug33282.phpt2 Bug #33282 (Re-assignment by reference does not clear the is_ref flag)
/PHP-5.5/Zend/
H A Dzend_hash.c195 …har *arKey, uint nKeyLength, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC) in _zend_hash_add_or_update()
222 if (flag & HASH_ADD) { in _zend_hash_add_or_update()
278 …y, uint nKeyLength, ulong h, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC) in _zend_hash_quick_add_or_update()
299 if (flag & HASH_ADD) { in _zend_hash_quick_add_or_update()
367 …sert(HashTable *ht, ulong h, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC) in _zend_hash_index_update_or_next_insert()
378 if (flag & HASH_NEXT_INSERT) { in _zend_hash_index_update_or_next_insert()
386 if (flag & HASH_NEXT_INSERT || flag & HASH_ADD) { in _zend_hash_index_update_or_next_insert()
486 …nt zend_hash_del_key_or_index(HashTable *ht, const char *arKey, uint nKeyLength, ulong h, int flag) in zend_hash_del_key_or_index() argument
496 if (flag == HASH_DEL_KEY) { in zend_hash_del_key_or_index()
1590 ZEND_API int zend_hash_minmax(const HashTable *ht, compare_func_t compar, int flag, void **pData TS… in zend_hash_minmax() argument
[all …]
H A Dzend_hash.h108 …ar *arKey, uint nKeyLength, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC);
114 …, uint nKeyLength, ulong h, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC);
120 …ert(HashTable *ht, ulong h, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC);
153 …t zend_hash_del_key_or_index(HashTable *ht, const char *arKey, uint nKeyLength, ulong h, int flag);
222 ZEND_API int zend_hash_minmax(const HashTable *ht, compare_func_t compar, int flag, void **pData TS…
H A Dzend_ts_hash.c102 …har *arKey, uint nKeyLength, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC) in _zend_ts_hash_add_or_update()
107 …retval = _zend_hash_add_or_update(TS_HASH(ht), arKey, nKeyLength, pData, nDataSize, pDest, flag ZE… in _zend_ts_hash_add_or_update()
113 …y, uint nKeyLength, ulong h, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC) in _zend_ts_hash_quick_add_or_update()
118 …add_or_update(TS_HASH(ht), arKey, nKeyLength, h, pData, nDataSize, pDest, flag ZEND_FILE_LINE_RELA… in _zend_ts_hash_quick_add_or_update()
124 …rt(TsHashTable *ht, ulong h, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC) in _zend_ts_hash_index_update_or_next_insert()
129 …retval = _zend_hash_index_update_or_next_insert(TS_HASH(ht), h, pData, nDataSize, pDest, flag ZEND… in _zend_ts_hash_index_update_or_next_insert()
190 …int zend_ts_hash_del_key_or_index(TsHashTable *ht, char *arKey, uint nKeyLength, ulong h, int flag) in zend_ts_hash_del_key_or_index() argument
195 retval = zend_hash_del_key_or_index(TS_HASH(ht), arKey, nKeyLength, h, flag); in zend_ts_hash_del_key_or_index()
325 ZEND_API int zend_ts_hash_minmax(TsHashTable *ht, compare_func_t compar, int flag, void **pData TSR… in zend_ts_hash_minmax() argument
330 retval = zend_hash_minmax(TS_HASH(ht), compar, flag, pData TSRMLS_CC); in zend_ts_hash_minmax()
H A Dzend_ts_hash.h52 …ar *arKey, uint nKeyLength, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC);
58 …, uint nKeyLength, ulong h, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC);
64 …t(TsHashTable *ht, ulong h, void *pData, uint nDataSize, void **pDest, int flag ZEND_FILE_LINE_DC);
81 …nt zend_ts_hash_del_key_or_index(TsHashTable *ht, char *arKey, uint nKeyLength, ulong h, int flag);
105 ZEND_API int zend_ts_hash_minmax(TsHashTable *ht, compare_func_t compar, int flag, void **pData TSR…
/PHP-5.5/build/
H A Dlibtool.m4421 # Discard the --no-reexec flag, and continue.
2022 # implement the --enable-shared flag
2053 # set the default shared flag to --disable-shared
2062 # implement the --enable-static flag
2102 # implement the --enable-fast-install flag
2143 # implement the --with-pic flag
2346 # find reload flag for linker
4290 # Compiler flag to prevent dynamic linking.
4293 # Compiler flag to turn off builtin functions.
4296 # Compiler flag to allow reflexive dlopens.
[all …]
/PHP-5.5/ext/curl/tests/
H A Dbug48207.phpt38 $fp = fopen($tempfile, "r"); // Opening 'fubar' with the incorrect readonly flag
H A Dcurl_ftp_pasv.phpt26 /* Without enabling SKIP_PASV_IP flag, the following output will be seen..
32 /* After enabling SKIP_PASV_IP flag, the following output will be seen..
/PHP-5.5/ext/date/tests/
H A Dbug62561.phpt2 Bug #62561 Unixtimestamp may take on local times DST flag (this test will only be valid during EDT)
H A Dbug62896.phpt2 Bug #62896 Unixtimestamp may take on local times DST flag (this test will only be valid during CEST)
/PHP-5.5/ext/ereg/regex/
H A DWHATSNEW41 REG_PEND flag and the old REG_STARTEND flag. The REG_NOSPEC flag to
H A Dtests4 # C flag given, regcomp() is expected to fail, and the third field is the
437 # plain strings, with the NOSPEC flag
/PHP-5.5/ext/fileinfo/
H A Dlibmagic.patch2610 - if (m->flag & INDIR) {
2622 - (void) fprintf(stderr, " %s%s", (m->flag & UNSIGNED) ? "u" : "",
3123 if (mcopy(ms, p, m->type, m->flag & INDIR, s, (uint32_t)(offset + o),
3129 fprintf(stderr, "mget(type=%d, flag=%x, offset=%u, o=%zu, "
3130 - "nbytes=%zu, count=%u)\n", m->type, m->flag, offset, o,
3132 + "nbytes=%zu)\n", m->type, m->flag, offset, o, nbytes);
3139 if (m->flag & INDIR) {
/PHP-5.5/ext/fileinfo/libmagic/
H A Dapprentice.c868 mstart->flag |= BINTEST; in set_test_type()
878 mstart->flag |= BINTEST; in set_test_type()
884 mstart->flag |= BINTEST; in set_test_type()
1573 m->flag |= INDIR; in parse()
1574 if (m->flag & OFFADD) in parse()
1575 m->flag = (m->flag & ~OFFADD) | INDIROFFADD; in parse()
1579 m->flag |= OFFADD; in parse()
1594 if (m->flag & INDIR) { in parse()
1708 m->flag |= UNSIGNED; in parse()
1930 m->flag |= NOSPACE; in parse()
[all …]
H A Dfile.h163 uint8_t flag; member
H A Dsoftmagic.c146 (m->flag & mode) != mode) { in match()
234 if (m->flag & OFFADD) { in match()
305 && ((m->flag & NOSPACE) == 0) in match()
1146 if (mcopy(ms, p, m->type, m->flag & INDIR, s, (uint32_t)(offset + o), in mget()
1152 "nbytes=%zu)\n", m->type, m->flag, offset, o, nbytes); in mget()
1156 if (m->flag & INDIR) { in mget()
1632 if (m->flag & INDIROFFADD) { in mget()
1755 if (m->flag & NOSPACE) in mget()
2230 if (m->flag & UNSIGNED) { in magiccheck()
2248 if (m->flag & UNSIGNED) { in magiccheck()
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic4442 # New flag as of version 4
4778 # test for MDX flag
4897 # memo flag ??
4899 # SQL flag ??
6727 #no active flag
7129 >8401 byte x clean flag %d,
7145 >&-1167 byte x clean flag %d,
7165 >&-1167 byte x clean flag %d,
7189 >8401 byte x clean flag %d,
7205 >&-1167 byte x clean flag %d,
[all …]
/PHP-5.5/ext/filter/
H A Dsanitizing_filters.c146 static void filter_map_update(filter_map *map, int flag, const unsigned char *allowed_list) in filter_map_update() argument
152 (*map)[allowed_list[i]] = flag; in filter_map_update()
/PHP-5.5/ext/gd/libgd/
H A Dgd_gif_in.c96 static int GetCode (gdIOCtx *fd, CODE_STATIC_DATA *scd, int code_size, int flag, int *ZeroDataBlock…
372 GetCode_(gdIOCtx *fd, CODE_STATIC_DATA *scd, int code_size, int flag, int *ZeroDataBlockP) in GetCode_() argument
377 if (flag) { in GetCode_()
417 GetCode(gdIOCtx *fd, CODE_STATIC_DATA *scd, int code_size, int flag, int *ZeroDataBlockP) in GetCode() argument
421 rv = GetCode_(fd, scd, code_size,flag, ZeroDataBlockP); in GetCode()
422 if (VERBOSE) printf("[GetCode(,%d,%d) returning %d]\n",code_size,flag,rv); in GetCode()
428 LWZReadByte_(gdIOCtx *fd, LZW_STATIC_DATA *sd, char flag, int input_code_size, int *ZeroDataBlockP) in LWZReadByte_() argument
432 if (flag) { in LWZReadByte_()
542 LWZReadByte(gdIOCtx *fd, LZW_STATIC_DATA *sd, char flag, int input_code_size, int *ZeroDataBlockP) in LWZReadByte() argument
546 rv = LWZReadByte_(fd, sd, flag, input_code_size, ZeroDataBlockP); in LWZReadByte()
[all …]

Completed in 199 milliseconds

12345678910>>...12