Home
last modified time | relevance | path

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

123456789

/php-src/
H A DNEWS184 . Persistent connections support the PGSQL_CONNECT_FORCE_RENEW flag.
H A DUPGRADING661 environment variable to 0, or pass the --online flag to run-tests.php to
H A DUPGRADING.INTERNALS133 - Added Bison flag '-Wall' when generating lexer files as done in *nix build
222 - Added the php_base64_encode_ex() API with flag parameters, value can be
H A Dconfigure.ac175 [Enable -g flag to re2c to use computed goto gcc extension])],
716 dnl on FreeBSD, copy_file_range() works only with the undocumented flag 0x01000000;
/php-src/TSRM/
H A Dthreads.m4100 for flag in -kthread -pthread -pthreads -mthreads -Kthread -threads -mt -qthreaded; do
102 CFLAGS="$CFLAGS $flag"
106 ac_cv_pthreads_cflags=$flag
/php-src/Zend/Optimizer/
H A Dzend_cfg.c784 int flag = ZEND_FUNC_NO_LOOPS; in zend_cfg_identify_loops() local
790 cfg->flags |= flag; in zend_cfg_identify_loops()
867 flag &= ~ZEND_FUNC_NO_LOOPS; in zend_cfg_identify_loops()
877 flag |= ZEND_FUNC_IRREDUCIBLE; in zend_cfg_identify_loops()
878 flag &= ~ZEND_FUNC_NO_LOOPS; in zend_cfg_identify_loops()
903 cfg->flags |= flag; in zend_cfg_identify_loops()
/php-src/Zend/tests/attributes/
H A D006_filter.phpt110 …ctionFunctionAbstract::getAttributes(): Argument #2 ($flags) must be a valid attribute filter flag"
/php-src/Zend/tests/
H A Dbug33282.phpt2 Bug #33282 (Re-assignment by reference does not clear the is_ref flag)
H A Dgh10251.phpt2 GH-10251 (Assertion `(flag & (1<<3)) == 0' failed.)
/php-src/Zend/
H A Dzend_compile.h84 uint8_t flag; member
611 #define ZEND_ADD_CALL_FLAG_EX(call_info, flag) do { \ argument
612 call_info |= (flag); \
615 #define ZEND_DEL_CALL_FLAG_EX(call_info, flag) do { \ argument
616 call_info &= ~(flag); \
619 #define ZEND_ADD_CALL_FLAG(call, flag) do { \ argument
620 ZEND_ADD_CALL_FLAG_EX(Z_TYPE_INFO((call)->This), flag); \
623 #define ZEND_DEL_CALL_FLAG(call, flag) do { \ argument
624 ZEND_DEL_CALL_FLAG_EX(Z_TYPE_INFO((call)->This), flag); \
H A Dzend_hash.c837 if (flag & HASH_LOOKUP) { in _zend_hash_add_or_update_i()
884 if (flag & HASH_LOOKUP) { in _zend_hash_add_or_update_i()
916 if (flag & HASH_LOOKUP) { in _zend_hash_str_add_or_update_i()
961 if (flag & HASH_LOOKUP) { in _zend_hash_str_add_or_update_i()
975 if (flag == HASH_ADD) { in zend_hash_add_or_update()
1014 if (flag == HASH_ADD) { in zend_hash_str_add_or_update()
1101 if (flag & HASH_ADD) { in _zend_hash_index_add_or_update_i()
1177 if (flag & HASH_LOOKUP) { in _zend_hash_index_add_or_update_i()
1188 if (flag == HASH_ADD) { in zend_hash_index_add_or_update()
3216 if (flag) { in zend_hash_minmax()
[all …]
H A Dzend_hash.h121 …ZEND_FASTCALL zend_hash_add_or_update(HashTable *ht, zend_string *key, zval *pData, uint32_t flag);
127 …end_hash_str_add_or_update(HashTable *ht, const char *key, size_t len, zval *pData, uint32_t flag);
133 …ND_FASTCALL zend_hash_index_add_or_update(HashTable *ht, zend_ulong h, zval *pData, uint32_t flag);
301 …PI zval* ZEND_FASTCALL zend_hash_minmax(const HashTable *ht, compare_func_t compar, uint32_t flag);
/php-src/build/
H A Dax_check_compile_flag.m420 # force the compiler to issue an error when a bad flag is given.
H A Dgen_stub.php2505 …protected function addFlagForVersionsAbove(array $flags, string $flag, int $minimumVersionId): arr… argument
2511 $flags[$version][] = $flag;
H A Dlibtool.m4421 # Discard the --no-reexec flag, and continue.
2029 # implement the --enable-shared flag
2060 # set the default shared flag to --disable-shared
2069 # implement the --enable-static flag
2109 # implement the --enable-fast-install flag
2150 # implement the --with-pic flag
2353 # find reload flag for linker
4295 # Compiler flag to prevent dynamic linking.
4298 # Compiler flag to turn off builtin functions.
4301 # Compiler flag to allow reflexive dlopens.
[all …]
H A Dltmain.sh1810 for flag in $args; do
1812 case $flag in
1814 flag="\"$flag\""
1817 arg="$arg $wl$flag"
1828 for flag in $args; do
1830 case $flag in
1832 flag="\"$flag\""
1835 arg="$arg $wl$flag"
3952 dep_rpath="$dep_rpath $flag"
4506 rpath="$rpath $flag"
[all …]
/php-src/docs-old/
H A Dstreams.md331 it, allocate it (use pemalloc with the persistent flag set appropriately), and
/php-src/docs/source/core/data-structures/
H A Dreference-counting.rst165 flag in their ``gc->u.type_info`` field.
170 You may execute PHP with the ``-d opcache.protect_memory=1`` flag to mark the shared memory as
210 The ``GC_NOT_COLLECTABLE`` flag indicates that the value may not be involved in a reference cycle.
214 The ``GC_PROTECTED`` flag is used to protect against recursion in various internal functions. For
216 ``GC_PROTECTED`` flag. If the value is recursive, it prevents the same value from being visited
221 The ``GC_PERSISTENT`` flag indicates that the value was allocated using ``malloc``, instead of PHPs
226 The ``GC_PERSISTENT_LOCAL`` flag indicates that a ``GC_PERSISTENT`` value is only accessible in one
227 thread, and is thus still safe to modify. This flag is only used in debug builds to satisfy an
H A Dzval.rst179 on ASTs. When this flag is set, the ``zval.value.ast`` union member is set accordingly.
/php-src/docs/source/introduction/ides/
H A Dvisual-studio-code.rst93 ``--enable-debug`` configure flag. Copy the following into your projects ``.vscode/launch.json``
/php-src/ext/curl/tests/
H A Dbug48207.phpt36 $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-src/ext/date/lib/
H A Dparse_date.re726 * The time_part parameter is a flag. It can be TIMELIB_TIME_PART_KEEP in case
/php-src/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)

Completed in 96 milliseconds

123456789