Home
last modified time | relevance | path

Searched refs:flags (Results 201 – 225 of 617) sorted by relevance

12345678910>>...25

/PHP-8.3/ext/standard/
H A Dnet.c106 static void iface_append_unicast(zval *unicast, zend_long flags, in iface_append_unicast() argument
113 add_assoc_long(&u, "flags", flags); in iface_append_unicast()
159 ULONG flags = GAA_FLAG_INCLUDE_PREFIX; in PHP_FUNCTION() local
169 if (GetAdaptersAddresses(family, flags, NULL, pAddresses, &outBufLen) == ERROR_BUFFER_OVERFLOW) { in PHP_FUNCTION()
179 dwRetVal = GetAdaptersAddresses(family, flags, NULL, pAddresses, &outBufLen); in PHP_FUNCTION()
/PHP-8.3/ext/fileinfo/libmagic/
H A Dascmagic.c115 int mime = ms->flags & MAGIC_MIME; in file_ascmagic_with_encoding()
141 if (ulen > 0 && (ms->flags & MAGIC_NO_CHECK_SOFT) == 0) { in file_ascmagic_with_encoding()
164 if ((ms->flags & (MAGIC_APPLE|MAGIC_EXTENSION))) { in file_ascmagic_with_encoding()
170 if ((ms->flags & (MAGIC_APPLE|MAGIC_EXTENSION))) { in file_ascmagic_with_encoding()
227 if ((ms->flags & MAGIC_CONTINUE) == 0) { in file_ascmagic_with_encoding()
H A Dis_csv.c137 int mime = ms->flags & MAGIC_MIME; in file_is_csv()
142 if ((ms->flags & (MAGIC_APPLE|MAGIC_EXTENSION)) != 0) in file_is_csv()
/PHP-8.3/Zend/tests/attributes/
H A D033_attribute_flags_type_is_not_validated_at_comp_time.phpt2 Attribute flags type is not validated at compile time.
/PHP-8.3/sapi/fpm/fpm/
H A Dfpm_unix.c56 static struct passwd *fpm_unix_get_passwd(struct fpm_worker_pool_s *wp, const char *name, int flags) in fpm_unix_get_passwd() argument
60 zlog(flags, "[pool %s] cannot get uid for user '%s'", wp->config->name, name); in fpm_unix_get_passwd()
67 …ne bool fpm_unix_check_listen_address(struct fpm_worker_pool_s *wp, const char *address, int flags) in fpm_unix_check_listen_address() argument
82 flags, in fpm_unix_check_listen_address()
94 static inline bool fpm_unix_check_passwd(struct fpm_worker_pool_s *wp, const char *name, int flags) in fpm_unix_check_passwd() argument
96 return !name || fpm_unix_is_id(name) || fpm_unix_get_passwd(wp, name, flags); in fpm_unix_check_passwd()
99 static struct group *fpm_unix_get_group(struct fpm_worker_pool_s *wp, const char *name, int flags) in fpm_unix_get_group() argument
103 zlog(flags, "[pool %s] cannot get gid for group '%s'", wp->config->name, name); in fpm_unix_get_group()
110 static inline bool fpm_unix_check_group(struct fpm_worker_pool_s *wp, const char *name, int flags) in fpm_unix_check_group() argument
112 return !name || fpm_unix_is_id(name) || fpm_unix_get_group(wp, name, flags); in fpm_unix_check_group()
/PHP-8.3/ext/posix/
H A Dposix.stub.php377 function posix_mknod(string $filename, int $flags, int $major = 0, int $minor = 0): bool {} argument
380 function posix_access(string $filename, int $flags = 0): bool {} argument
383 function posix_eaccess(string $filename, int $flags = 0): bool {} argument
/PHP-8.3/Zend/
H A Dzend_inheritance.c1290 … if (UNEXPECTED((parent_info->flags & ZEND_ACC_STATIC) != (child_info->flags & ZEND_ACC_STATIC))) { in do_inherit_property()
1304 …if (UNEXPECTED((child_info->flags & ZEND_ACC_PPP_MASK) > (parent_info->flags & ZEND_ACC_PPP_MASK))… in do_inherit_property()
1648 uint32_t flags = in zend_do_inheritance_ex() local
1796 flags |= in do_interface_implementation()
1801 flags |= in do_interface_implementation()
2028 ce, NULL, flags); in zend_add_trait_method()
2500 uint32_t flags = property_info->flags; in zend_do_traits_property_binding() local
2506 flags |= ZEND_ACC_CHANGED; in zend_do_traits_property_binding()
2511 if ((colliding_prop->flags & flags_mask) == (flags & flags_mask) && in zend_do_traits_property_binding()
2517 if (flags & ZEND_ACC_STATIC) { in zend_do_traits_property_binding()
[all …]
/PHP-8.3/ext/spl/
H A Dspl_directory.c39 #define SPL_HAS_FLAG(flags, test_flag) ((flags & test_flag) ? 1 : 0) argument
355 intern->u.file.stream->flags |= PHP_STREAM_FLAG_NO_FCLOSE; in spl_filesystem_file_open()
404 intern->flags = source->flags; in spl_filesystem_object_clone()
721 zend_long flags = (ctor_flags & ~DIT_CTOR_FLAGS); in spl_filesystem_object_construct() local
746 intern->flags = flags; in spl_filesystem_object_construct()
1469 zend_long flags; in PHP_METHOD() local
1476 …intern->flags |= ((SPL_FILE_DIR_KEY_MODE_MASK|SPL_FILE_DIR_CURRENT_MODE_MASK|SPL_FILE_DIR_OTHERS_M… in PHP_METHOD()
1508 && !(intern->flags & SPL_FILE_DIR_FOLLOW_SYMLINKS)) { in PHP_METHOD()
1533 ZVAL_LONG(&zflags, intern->flags); in PHP_METHOD()
1926 …|| ((SPL_HAS_FLAG(intern->flags, SPL_FILE_OBJECT_READ_CSV) && SPL_HAS_FLAG(intern->flags, SPL_FILE… in is_line_empty()
[all …]
/PHP-8.3/ext/hash/tests/
H A Dhash_serialize_004.phpt18 …AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACI7fWk6MztpOjI7aTo0O2E6MDp7fX0=", // flags are string
19 …AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACI7fWk6MztpOjI7aTo0O2E6MDp7fX0=", // flags indicate HASH_HMAC
/PHP-8.3/ext/pcre/pcre2lib/
H A Dpcre2_match_data.c68 yield->flags = 0; in pcre2_match_data_create()
105 if ((match_data->flags & PCRE2_MD_COPIED_SUBJECT) != 0) in pcre2_match_data_free()
/PHP-8.3/ext/mysqli/
H A Dmysqli.stub.php762 public function begin_transaction(int $flags = 0, ?string $name = null): bool {} argument
787 public function commit(int $flags = 0, ?string $name = null): bool {} argument
918 int $flags = 0
955 public function rollback(int $flags = 0, ?string $name = null): bool {}
1036 public function refresh(int $flags): bool {}
1359 function mysqli_begin_transaction(mysqli $mysql, int $flags = 0, ?string $name = null): bool {}
1368 function mysqli_commit(mysqli $mysql, int $flags = 0, ?string $name = null): bool {}
1543 function mysqli_report(int $flags): bool {}
1557 int $flags = 0
1573 function mysqli_rollback(mysqli $mysql, int $flags = 0, ?string $name = null): bool {}
[all …]
/PHP-8.3/main/
H A Dphp_streams.h80 …m_make_seekable_rel(origstream, newstream, flags) _php_stream_make_seekable((origstream), (newstre… argument
144 …int (*url_stat)(php_stream_wrapper *wrapper, const char *url, int flags, php_stream_statbuf *ssb, …
228 uint32_t flags; /* PHP_STREAM_FLAG_XXX */ member
370 PHPAPI int _php_stream_stat_path(const char *path, int flags, php_stream_statbuf *ssb, php_stream_c…
372 #define php_stream_stat_path_ex(path, flags, ssb, context) _php_stream_stat_path((path), (flags), (… argument
390 PHPAPI int _php_stream_scandir(const char *dirname, zend_string **namelist[], int flags, php_stream…
615 PHPAPI int _php_stream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STRE…
616 …tream_make_seekable(origstream, newstream, flags) _php_stream_make_seekable((origstream), (newstre… argument
/PHP-8.3/ext/sysvmsg/
H A Dsysvmsg.c267 zend_long desiredmsgtype, maxsize, flags = 0; in PHP_FUNCTION() local
278 &out_message, &do_unserialize, &flags, &zerrcode) == FAILURE) { in PHP_FUNCTION()
287 if (flags != 0) { in PHP_FUNCTION()
288 if (flags & PHP_MSG_EXCEPT) { in PHP_FUNCTION()
296 if (flags & PHP_MSG_NOERROR) { in PHP_FUNCTION()
299 if (flags & PHP_MSG_IPC_NOWAIT) { in PHP_FUNCTION()
/PHP-8.3/ext/filter/tests/
H A Dbug53037.phpt9 filter_var("", FILTER_DEFAULT, array('flags' => FILTER_FLAG_EMPTY_STRING_NULL))
/PHP-8.3/ext/pcre/tests/
H A Dbug77827.phpt2 Bug #77827 (preg_match does not ignore \r in regex flags)
/PHP-8.3/ext/pdo_mysql/
H A Dmysql_statement.c769 zval flags; in pdo_mysql_stmt_col_meta() local
783 array_init(&flags); in pdo_mysql_stmt_col_meta()
790 if (IS_NOT_NULL(F->flags)) { in pdo_mysql_stmt_col_meta()
791 add_next_index_string(&flags, "not_null"); in pdo_mysql_stmt_col_meta()
793 if (IS_PRI_KEY(F->flags)) { in pdo_mysql_stmt_col_meta()
794 add_next_index_string(&flags, "primary_key"); in pdo_mysql_stmt_col_meta()
796 if (F->flags & MULTIPLE_KEY_FLAG) { in pdo_mysql_stmt_col_meta()
799 if (F->flags & UNIQUE_KEY_FLAG) { in pdo_mysql_stmt_col_meta()
800 add_next_index_string(&flags, "unique_key"); in pdo_mysql_stmt_col_meta()
802 if (IS_BLOB(F->flags)) { in pdo_mysql_stmt_col_meta()
[all …]
/PHP-8.3/ext/mysqli/tests/
H A Dmysqli_stmt_result_metadata_sqltests.phpt65 $meta['fetch_field']->flags = 'ignore';
69 $meta['fetch_field_direct0']->flags = 'ignore';
73 $meta['fetch_field_direct1']->flags = 'ignore';
134 $meta_res['fetch_field']->flags = 'ignore';
138 $meta_res['fetch_field_direct0']->flags = 'ignore';
142 $meta_res['fetch_field_direct1']->flags = 'ignore';
205 $field0->flags = 'ignore';
H A Dbug55283.phpt49 $flags = MYSQLI_CLIENT_SSL | MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT;
53 if (my_mysqli_real_connect($link, 'p:' . $host, $user, $passwd, $db, $port, null, $flags)) {
61 if (my_mysqli_real_connect($link2, $host, $user, $passwd, $db, $port, null, $flags)) {
/PHP-8.3/ext/pdo_sqlite/
H A Dsqlite_driver.stub.php11 … sqliteCreateFunction(string $name, callable $callback, int $numArgs = -1, int $flags = 0): bool {} argument
/PHP-8.3/ext/zend_test/
H A Dfiber.h26 uint8_t flags; member
/PHP-8.3/main/streams/
H A Dstreams.c304 ret->flags |= PHP_STREAM_FLAG_DETECT_EOL; in _php_stream_alloc()
379 if ((EG(flags) & EG_FLAGS_IN_RESOURCE_SHUTDOWN) && in _php_stream_free()
386 if ((stream->flags & PHP_STREAM_FLAG_NO_CLOSE) || in _php_stream_free()
559 int flags; in _php_stream_fill_read_buffer() local
900 stream->flags ^= PHP_STREAM_FLAG_DETECT_EOL; in php_stream_locate_eol()
901 stream->flags |= PHP_STREAM_FLAG_EOL_MAC; in php_stream_locate_eol()
905 stream->flags ^= PHP_STREAM_FLAG_DETECT_EOL; in php_stream_locate_eol()
1279 stream->flags &= ~PHP_STREAM_FLAG_WAS_WRITTEN; in _php_stream_flush()
1309 stream->flags |= PHP_STREAM_FLAG_WAS_WRITTEN; in _php_stream_write()
1448 stream->flags |= PHP_STREAM_FLAG_NO_BUFFER; in _php_stream_set_option()
[all …]
/PHP-8.3/ext/fileinfo/tests/
H A Dfinfo_open_error.phpt40 finfo_open(): Argument #1 ($flags) must be of type int, string given
41 finfo::__construct(): Argument #1 ($flags) must be of type int, string given
/PHP-8.3/ext/spl/tests/
H A Dbug38618.phpt36 function test_array($array, $which, $flags = 0)
39 $it = new RecursiveArrayIterator($array, $flags);
/PHP-8.3/ext/standard/tests/array/
H A Dkrsort_variation3.phpt26 $flags = array("SORT_REGULAR" => SORT_REGULAR, "SORT_NUMERIC" => SORT_NUMERIC);
40 // loop through $flags array and call krsort() with all possible sort flag values
41 foreach($flags as $key => $flag){
H A Dksort_variation3.phpt26 $flags = array("SORT_REGULAR" => SORT_REGULAR, "SORT_NUMERIC" => SORT_NUMERIC);
40 // loop through $flags array and call ksort() with all possible sort flag values
41 foreach($flags as $key => $flag){

Completed in 96 milliseconds

12345678910>>...25