Home
last modified time | relevance | path

Searched refs:flags (Results 126 – 150 of 588) sorted by relevance

12345678910>>...24

/PHP-8.0/ext/phar/tests/files/
H A Dphar_test.inc17 $flags= 0;
24 foreach(array('comp','crc32','clen','ulen','time','flags','perm','meta','cont') as $what)
42 …$manifest .= pack('VVVVVV', $ulen, $time, $clen, $crc32, $flags|$perm, strlen($meta)) . (binary)$m…
45 $gflags |= $flags;
/PHP-8.0/ext/spl/tests/
H A Dbug41691.phpt7 public function __construct($dummy, $flags) {
8 parent::__construct($this, $flags);
H A Dbug78436.phpt14 ["flags":"SplPriorityQueue":private]=>
31 ["flags":"SplPriorityQueue":private]=>
H A Darray_017.phpt12 function __construct($ar, $flags = 0)
15 parent::__construct($ar, $flags);
27 function setFlags($flags)
29 echo __METHOD__ . "($flags)\n";
30 ArrayIterator::setFlags($flags);
70 function setFlags($flags)
73 ArrayObject::setFlags($flags);
86 function check($obj, $flags)
90 $obj->setFlags($flags);
106 $obj->setFlags($flags | 2);
[all …]
H A Diterator_046.phpt16 function __construct(Iterator $it, $flags = 0)
18 parent::__construct($it, $flags);
/PHP-8.0/Zend/tests/named_params/
H A Dattributes_named_flags.phpt2 Named flags parameter for Attribute attribute
6 #[Attribute(flags: Attribute::TARGET_CLASS)]
/PHP-8.0/ext/filter/tests/
H A Dbug51368.phpt9 $options = ['flags' => FILTER_FLAG_ALLOW_THOUSAND, 'options' => ['thousand' => ' ']];
14 $options = ['flags' => FILTER_FLAG_ALLOW_THOUSAND, 'options' => ['thousand' => '']];
H A D042.phpt8 $a = filter_var($var, FILTER_SANITIZE_STRING, array("flags" => FILTER_FLAG_STRIP_LOW));
14 $a = filter_var($var, FILTER_SANITIZE_STRING, array("flags" => FILTER_FLAG_STRIP_LOW));
/PHP-8.0/ext/pcntl/
H A Dpcntl.stub.php11 function pcntl_waitpid(int $process_id, &$status, int $flags = 0, &$resource_usage = []): int {} argument
17 function pcntl_wait(&$status, int $flags = 0, &$resource_usage = []): int {} argument
80 function pcntl_unshare(int $flags): bool {} argument
/PHP-8.0/ext/imap/
H A Dphp_imap_arginfo.h8 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
16 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
22 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
63 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
78 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
88 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
96 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
101 ZEND_ARG_TYPE_INFO(0, flags, IS_LONG, 0)
111 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
135 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
[all …]
/PHP-8.0/main/streams/
H A Dxp_socket.c106 if (!(stream->flags & PHP_STREAM_FLAG_SUPPRESS_ERRORS)) { in php_sockop_write()
310 int oldmode, flags; in php_sockop_set_option() local
401 flags = 0; in php_sockop_set_option()
403 flags |= MSG_OOB; in php_sockop_set_option()
407 flags, in php_sockop_set_option()
419 flags = 0; in php_sockop_set_option()
421 flags |= MSG_OOB; in php_sockop_set_option()
424 flags |= MSG_PEEK; in php_sockop_set_option()
428 flags, in php_sockop_set_option()
894 const char *persistent_id, int options, int flags, in php_stream_generic_socket_factory() argument
[all …]
/PHP-8.0/ext/pcntl/tests/
H A Dpcntl_unshare_04.phpt25 pcntl_unshare(): Argument #1 ($flags) must be a combination of CLONE_* flags
/PHP-8.0/ext/pdo_oci/tests/
H A Dpdo_oci_stmt_getcolumnmeta.phpt106 $elements = array('flags', 'scale', 'name', 'len', 'precision', 'pdo_type');
257 echo "Test 2.7 testing flags returned\n";
265 // verify the flags array contains a not_null flag and not nullable flags
266 if (!isset($meta['flags'])) {
269 $flags = $meta['flags'];
271 foreach ($flags as $k => $flag) {
281 // verify the flags array contains a nullable flag and not not_null flags
282 if (!isset($meta['flags'])) {
285 $flags = $meta['flags'];
287 foreach ($flags as $k => $flag) {
[all …]
/PHP-8.0/ext/filter/
H A Dlogical_filters.c210 option_flags = flags; in php_filter_int()
503 int hostname = flags & FILTER_FLAG_HOSTNAME; in _php_filter_validate_domain()
580 php_filter_url(value, flags, option_array, charset); in php_filter_validate_url()
624 …((flags & FILTER_FLAG_PATH_REQUIRED) && url->path == NULL) || ((flags & FILTER_FLAG_QUERY_REQUIRED… in php_filter_validate_url()
679 if (flags & FILTER_FLAG_EMAIL_UNICODE) { in php_filter_validate_email()
877 if ((flags & FILTER_FLAG_IPV4) && (flags & FILTER_FLAG_IPV6)) { in php_filter_validate_ip()
879 } else if ((flags & FILTER_FLAG_IPV4) && mode == FORMAT_IPV6) { in php_filter_validate_ip()
892 if (flags & FILTER_FLAG_NO_PRIV_RANGE) { in php_filter_validate_ip()
902 if (flags & FILTER_FLAG_NO_RES_RANGE) { in php_filter_validate_ip()
922 if (flags & FILTER_FLAG_NO_PRIV_RANGE) { in php_filter_validate_ip()
[all …]
/PHP-8.0/ext/standard/tests/strings/
H A Dbug61116.phpt13 Parameter #1 [ <optional> int $flags = ENT_COMPAT ]
24 Parameter #1 [ <optional> int $flags = ENT_COMPAT ]
/PHP-8.0/ext/mysqli/tests/
H A D047.phpt84 ["flags"]=>
113 ["flags"]=>
144 ["flags"]=>
172 ["flags"]=>
202 ["flags"]=>
230 ["flags"]=>
H A Dmysqli_begin_transaction.phpt46 /* valid flags */
47 $flags = array(MYSQLI_TRANS_START_WITH_CONSISTENT_SNAPSHOT);
50 $flags[] = MYSQLI_TRANS_START_READ_WRITE;
51 $flags[] = MYSQLI_TRANS_START_READ_ONLY;
55 foreach ($flags as $flag) {
103 mysqli_begin_transaction(): Argument #2 ($flags) must be one of the MYSQLI_TRANS_* constants
/PHP-8.0/ext/dba/
H A Ddba.c197 #define DBA_NAMED_HND(alias, name, flags) \ argument
204 #define DBA_HND(name, flags) DBA_NAMED_HND(name, name, flags) argument
332 if (info->flags & DBA_PERSISTENT) { in dba_close()
339 if (info->flags & DBA_PERSISTENT) { in dba_close()
348 pefree(info, info->flags&DBA_PERSISTENT); in dba_close()
636 if ((hptr->flags & DBA_LOCK_ALL) == 0) { in php_dba_open()
643 if ((hptr->flags & DBA_LOCK_ALL) == 0) { in php_dba_open()
658 lock_flag = (hptr->flags&DBA_LOCK_ALL); in php_dba_open()
764 …info->flags = (hptr->flags & ~DBA_LOCK_ALL) | (lock_flag & DBA_LOCK_ALL) | (persistent ? DBA_PERSI… in php_dba_open()
771 if (hptr->flags & DBA_LOCK_ALL) { in php_dba_open()
[all …]
/PHP-8.0/Zend/tests/
H A Dgc_043.phpt15 ["flags":"SplDoublyLinkedList":private]=>
32 ["flags":"SplDoublyLinkedList":private]=>
/PHP-8.0/sapi/phpdbg/
H A Dphpdbg_watch.c473 if (element->flags & PHPDBG_WATCH_RECURSIVE) {
521 child->flags = PHPDBG_WATCH_RECURSIVE;
566 child->flags = PHPDBG_WATCH_RECURSIVE;
681 if (element->flags & PHPDBG_WATCH_IMPLICIT) {
860 if (element->flags & PHPDBG_WATCH_IMPLICIT) {
862 while (child->flags & PHPDBG_WATCH_IMPLICIT) {
941 if (element->flags & PHPDBG_WATCH_IMPLICIT) {
1188 element->flags = PHPDBG_WATCH_SIMPLE;
1208 element->flags = PHPDBG_WATCH_IMPLICIT;
1212 new->flags = PHPDBG_WATCH_SIMPLE;
[all …]
H A Dphpdbg_bp.c333 PHPDBG_G(flags) |= PHPDBG_HAS_FILE_BP; in phpdbg_set_breakpoint_file()
358 PHPDBG_G(flags) |= PHPDBG_HAS_FILE_BP; in phpdbg_resolve_pending_file_break_ex()
419 PHPDBG_G(flags) |= PHPDBG_HAS_SYM_BP; in phpdbg_set_breakpoint_symbol()
459 PHPDBG_G(flags) |= PHPDBG_HAS_METHOD_BP; in phpdbg_set_breakpoint_method()
485 PHPDBG_G(flags) |= PHPDBG_HAS_OPLINE_BP; in phpdbg_set_breakpoint_opline()
530 PHPDBG_G(flags) |= PHPDBG_HAS_OPLINE_BP; in phpdbg_resolve_op_array_break()
801 PHPDBG_G(flags) |= PHPDBG_HAS_OPCODE_BP; in phpdbg_set_breakpoint_opcode()
890 PHPDBG_G(flags) |= PHPDBG_HAS_COND_BP; in phpdbg_create_conditional_break()
1120 PHPDBG_G(flags) |= PHPDBG_IN_COND_BP; in phpdbg_find_conditional_breakpoint()
1131 PHPDBG_G(flags) &= ~PHPDBG_IN_COND_BP; in phpdbg_find_conditional_breakpoint()
[all …]
/PHP-8.0/ext/xmlreader/
H A Dphp_xmlreader.stub.php53 public static function open(string $uri, ?string $encoding = null, int $flags = 0) {} argument
77 public static function XML(string $source, ?string $encoding = null, int $flags = 0) {} argument
/PHP-8.0/ext/json/
H A Djson_arginfo.h6 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
14 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
/PHP-8.0/ext/mysqli/
H A Dmysqli.stub.php30 public function begin_transaction(int $flags = 0, ?string $name = null) {} argument
54 public function commit(int $flags = 0, ?string $name = null) {} argument
181 int $flags = 0 argument
220 public function rollback(int $flags = 0, ?string $name = null) {} argument
300 public function refresh(int $flags) {} argument
528 function mysqli_begin_transaction(mysqli $mysql, int $flags = 0, ?string $name = null): bool {} argument
536 function mysqli_commit(mysqli $mysql, int $flags = 0, ?string $name = null): bool {} argument
655 function mysqli_report(int $flags): bool {} argument
667 int $flags = 0 argument
683 function mysqli_rollback(mysqli $mysql, int $flags = 0, ?string $name = null): bool {} argument
[all …]
/PHP-8.0/ext/zip/tests/
H A Dbug53603.phpt11 function url_stat($path, $flags) {
12 if (!($flags & STREAM_URL_STAT_QUIET))

Completed in 82 milliseconds

12345678910>>...24