Home
last modified time | relevance | path

Searched refs:flags (Results 76 – 100 of 504) sorted by relevance

12345678910>>...21

/PHP-7.4/ext/pcre/pcre2lib/sljit/
H A DsljitNativeMIPS_32.c42 if (flags & SRC2_IMM) { \
56 if (flags & SRC2_IMM) { \
159 if (flags & SRC2_IMM) { in emit_single_op()
209 if (flags & SRC2_IMM) { in emit_single_op()
241 flags &= ~SRC2_IMM; in emit_single_op()
246 if (flags & SRC2_IMM) { in emit_single_op()
260 if (flags & SRC2_IMM) { in emit_single_op()
263 flags &= ~SRC2_IMM; in emit_single_op()
301 if (flags & SRC2_IMM) { in emit_single_op()
343 flags &= ~SRC2_IMM; in emit_single_op()
[all …]
H A DsljitNativeMIPS_64.c125 if (flags & SRC2_IMM) { \
139 if (flags & SRC2_IMM) { \
250 if (flags & SRC2_IMM) { in emit_single_op()
300 if (flags & SRC2_IMM) { in emit_single_op()
332 flags &= ~SRC2_IMM; in emit_single_op()
337 if (flags & SRC2_IMM) { in emit_single_op()
351 if (flags & SRC2_IMM) { in emit_single_op()
354 flags &= ~SRC2_IMM; in emit_single_op()
392 if (flags & SRC2_IMM) { in emit_single_op()
434 flags &= ~SRC2_IMM; in emit_single_op()
[all …]
/PHP-7.4/ext/opcache/Optimizer/
H A Dzend_dump.c557 if (ZEND_VM_EXT_VAR_FETCH & flags) { in zend_dump_op()
566 if (ZEND_VM_EXT_ISSET & flags) { in zend_dump_op()
579 if (ZEND_VM_EXT_REF & flags) { in zend_dump_op()
729 if (b->flags & ZEND_BB_START) { in zend_dump_block_info()
732 if (b->flags & ZEND_BB_FOLLOW) { in zend_dump_block_info()
735 if (b->flags & ZEND_BB_TARGET) { in zend_dump_block_info()
738 if (b->flags & ZEND_BB_EXIT) { in zend_dump_block_info()
744 if (b->flags & ZEND_BB_TRY) { in zend_dump_block_info()
747 if (b->flags & ZEND_BB_CATCH) { in zend_dump_block_info()
750 if (b->flags & ZEND_BB_FINALLY) { in zend_dump_block_info()
[all …]
/PHP-7.4/ext/filter/tests/
H A D032.phpt18 'flags' => FILTER_FORCE_ARRAY,
23 'flags' => FILTER_REQUIRE_SCALAR,
29 'flags' => FILTER_FORCE_ARRAY,
/PHP-7.4/ext/sockets/
H A Dsendrecvmsg.c42 inline ssize_t recvmsg(int sockfd, struct msghdr *msg, int flags) in recvmsg() argument
57 msg->dwFlags = (DWORD)flags; in recvmsg()
62 inline ssize_t sendmsg(int sockfd, const struct msghdr *msg, int flags) in sendmsg() argument
170 zend_long flags = 0; in PHP_FUNCTION() local
178 if (zend_parse_parameters(ZEND_NUM_ARGS(), "ra|l", &zsocket, &zmsg, &flags) == FAILURE) { in PHP_FUNCTION()
182 LONG_CHECK_VALID_INT(flags); in PHP_FUNCTION()
197 res = sendmsg(php_sock->bsd_socket, msghdr, (int)flags); in PHP_FUNCTION()
213 zend_long flags = 0; in PHP_FUNCTION() local
222 &zsocket, &zmsg, &flags) == FAILURE) { in PHP_FUNCTION()
226 LONG_CHECK_VALID_INT(flags); in PHP_FUNCTION()
[all …]
/PHP-7.4/Zend/
H A Dzend_virtual_cwd.h171 CWD_API int virtual_open(const char *path, int flags, ...);
260 #define VCWD_OPEN(path, flags) virtual_open(path, flags) argument
261 #define VCWD_OPEN_MODE(path, flags, mode) virtual_open(path, flags, mode) argument
294 #define VCWD_OPEN(path, flags) php_win32_ioutil_open(path, flags) argument
295 #define VCWD_OPEN_MODE(path, flags, mode) php_win32_ioutil_open(path, flags, mode) argument
306 #define VCWD_OPEN(path, flags) open(path, flags) argument
307 #define VCWD_OPEN_MODE(path, flags, mode) open(path, flags, mode) argument
/PHP-7.4/main/streams/
H A Dcast.c193 int flags = castas & PHP_STREAM_CAST_MASK; in _php_stream_cast() local
199 if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0) { in _php_stream_cast()
268 } else if (flags & PHP_STREAM_CAST_TRY_HARD) { in _php_stream_cast()
278 int retcast = php_stream_cast(newstream, castas | flags, (void **)ret, show_err); in _php_stream_cast()
285 if ((flags & PHP_STREAM_CAST_RELEASE)) { in _php_stream_cast()
324 (flags & PHP_STREAM_CAST_INTERNAL) == 0 in _php_stream_cast()
337 if (flags & PHP_STREAM_CAST_RELEASE) { in _php_stream_cast()
370 PHPAPI int _php_stream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STRE… in _php_stream_make_seekable()
377 if (((flags & PHP_STREAM_FORCE_CONVERSION) == 0) && origstream->ops->seek != NULL) { in _php_stream_make_seekable()
384 if (flags & PHP_STREAM_PREFER_STDIO) { in _php_stream_make_seekable()
H A Dplain_wrapper.c66 int flags; in php_stream_parse_fopen_modes() local
70 flags = 0; in php_stream_parse_fopen_modes()
82 flags = O_CREAT; in php_stream_parse_fopen_modes()
90 flags |= O_RDWR; in php_stream_parse_fopen_modes()
91 } else if (flags) { in php_stream_parse_fopen_modes()
92 flags |= O_WRONLY; in php_stream_parse_fopen_modes()
94 flags |= O_RDONLY; in php_stream_parse_fopen_modes()
99 flags |= O_CLOEXEC; in php_stream_parse_fopen_modes()
111 flags |= _O_TEXT; in php_stream_parse_fopen_modes()
113 flags |= O_BINARY; in php_stream_parse_fopen_modes()
[all …]
/PHP-7.4/ext/fileinfo/libmagic/
H A Delfclass.h42 flags |= FLAGS_IS_CORE;
46 fsize, &flags, &notecount) == -1)
61 fsize, shnum, &flags, &notecount) == -1)
73 &flags, &notecount) == -1)
H A Dmagic.c89 magic_open(int flags) in magic_open() argument
91 return file_ms_alloc(flags); in magic_open()
166 if ((ms->flags & MAGIC_PRESERVE_ATIME) != 0) {
268 if (ms->flags & MAGIC_ERROR) { in file_or_stream()
338 return ms->flags; in magic_getflags()
342 magic_setflags(struct magic_set *ms, int flags) in magic_setflags() argument
347 if (flags & MAGIC_PRESERVE_ATIME) in magic_setflags()
350 ms->flags = flags; in magic_setflags()
/PHP-7.4/ext/zip/
H A Dphp_zip.c529 if ((GLOB_AVAILABLE_FLAGS & flags) != flags) { in php_zip_glob()
1438 zend_long flags = 0; local
1671 zend_long flags = 0; local
1886 zend_long flags = 0; local
1932 zend_long flags = 0; local
2016 zend_long flags = 0; local
2166 zend_long flags=0; local
2294 zend_long flags = 0; local
2705 zend_long flags = 0; local
2810 ZEND_ARG_INFO(0, flags)
[all …]
/PHP-7.4/sapi/cli/
H A Dphp_http_parser.c228 enum flags enum
326 parser->flags = 0; in php_http_parser_execute()
355 parser->flags = 0; in php_http_parser_execute()
504 parser->flags = 0; in php_http_parser_execute()
1167 parser->flags |= F_UPGRADE; in php_http_parser_execute()
1296 parser->flags |= F_CHUNKED; in php_http_parser_execute()
1309 if (parser->flags & F_TRAILING) { in php_http_parser_execute()
1334 parser->flags |= F_SKIPBODY; in php_http_parser_execute()
1353 if (parser->flags & F_SKIPBODY) { in php_http_parser_execute()
1458 parser->flags |= F_TRAILING; in php_http_parser_execute()
[all …]
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg_break.c31 #define PHPDBG_BREAK_COMMAND_D(f, h, a, m, l, s, flags) \ argument
32 PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[9], flags)
/PHP-7.4/ext/standard/
H A Dhtml.c895 int flags, in traverse_for_entities() argument
902 int doctype = flags & ENT_HTML_DOC_TYPE_MASK; in traverse_for_entities()
1078 inverse_map = unescape_inverse_map(all, flags); in php_unescape_html_entities()
1180 int doctype = flags & ENT_HTML_DOC_TYPE_MASK; in php_escape_html_entities_ex()
1204 inv_map = unescape_inverse_map(1, flags); in php_escape_html_entities_ex()
1243 if (flags & ENT_HTML_IGNORE_ERRORS) { in php_escape_html_entities_ex()
1393 zend_long flags = ENT_COMPAT; in php_html_entities() local
1400 Z_PARAM_LONG(flags) in php_html_entities()
1562 flags = ENT_COMPAT; in PHP_FUNCTION() local
1577 Z_PARAM_LONG(flags) in PHP_FUNCTION()
[all …]
/PHP-7.4/main/
H A Dphp_output.h114 …ler_alias_ctor_t)(const char *handler_name, size_t handler_name_len, size_t chunk_size, int flags);
124 int flags; member
144 int flags; variable
224 PHPAPI int php_output_start_user(zval *output_handler, size_t chunk_size, int flags);
225 …ar *name, size_t name_len, php_output_handler_func_t output_handler, size_t chunk_size, int flags);
227 …PI php_output_handler *php_output_handler_create_user(zval *handler, size_t chunk_size, int flags);
228 …r *name, size_t name_len, php_output_handler_context_func_t handler, size_t chunk_size, int flags);
/PHP-7.4/sapi/cli/tests/
H A D006.phpt74 Parameter #3 [ <optional> $flags ]
84 Parameter #3 [ <optional> $flags ]
106 Parameter #5 [ <optional> $flags ]
116 Parameter #4 [ <optional> $flags ]
135 Parameter #3 [ <optional> $flags ]
150 Parameter #2 [ <optional> $flags ]
/PHP-7.4/ext/pdo_oci/tests/
H A Dpdo_oci_stmt_getcolumnmeta.phpt80 $elements = array('flags', 'scale', 'name', 'len', 'precision', 'pdo_type');
231 echo "Test 2.7 testing flags returned\n";
239 // verify the flags array countains a not_null flag and not nullable flags
240 if (!isset($meta['flags'])) {
243 $flags = $meta['flags'];
245 foreach ($flags as $k => $flag) {
255 // verify the flags array countains a nullable flag and not not_null flags
256 if (!isset($meta['flags'])) {
259 $flags = $meta['flags'];
261 foreach ($flags as $k => $flag) {
[all …]
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_ps.h37 …fetch_row_buffered(MYSQLND_RES * result, void * param, const unsigned int flags, zend_bool * fetch…
38 …ch_stmt_row_cursor(MYSQLND_RES * result, void * param, const unsigned int flags, zend_bool * fetch…
/PHP-7.4/tests/output/
H A Dob_017.phpt8 function oh($str, $flags) {
10 $stati[] = "$flags: $str";
/PHP-7.4/ext/spl/
H A Dspl_functions.h69 #define SPL_ME(class_name, function_name, arg_info, flags) \ argument
70 PHP_ME( spl_ ## class_name, function_name, arg_info, flags)
78 #define SPL_MA(class_name, function_name, alias_class, alias_function, arg_info, flags) \ argument
79 PHP_MALIAS(spl_ ## alias_class, function_name, alias_function, arg_info, flags)
/PHP-7.4/ext/phar/tests/cache_list/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-7.4/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-7.4/ext/standard/tests/array/
H A Darray_multisort_error.phpt17 echo "\n-- Testing array_multisort() function with repeated flags --\n";
21 echo "\n-- Testing array_multisort() function with repeated flags --\n";
35 -- Testing array_multisort() function with repeated flags --
40 -- Testing array_multisort() function with repeated flags --
/PHP-7.4/ext/spl/tests/
H A Drecursivedualiterator.inc25 * @param flags iteration flags
28 $flags = 0x33 /*DualIterator::DEFAULT_FLAGS*/)
30 parent::__construct($lhs, $rhs, $flags);
H A Dbug41691.phpt7 public function __construct($dummy, $flags) {
8 parent::__construct($this, $flags);

Completed in 77 milliseconds

12345678910>>...21