Home
last modified time | relevance | path

Searched refs:flags (Results 101 – 125 of 588) sorted by relevance

12345678910>>...24

/PHP-8.0/ext/pcre/
H A Dphp_pcre_arginfo.h8 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
30 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
38 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
45 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
56 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
/PHP-8.0/ext/sqlite3/
H A Dsqlite3.stub.php8 …public function __construct(string $filename, int $flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_C… argument
11 …public function open(string $filename, int $flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE, … argument
63 …public function createFunction(string $name, callable $callback, int $argCount = -1, int $flags = … argument
72 …tring $table, string $column, int $rowid, string $database = "main", int $flags = SQLITE3_OPEN_REA… argument
/PHP-8.0/ext/pcre/pcre2lib/sljit/
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-8.0/ext/sockets/
H A Dsendrecvmsg.c44 inline ssize_t recvmsg(int sockfd, struct msghdr *msg, int flags) in recvmsg() argument
59 msg->dwFlags = (DWORD)flags; in recvmsg()
64 inline ssize_t sendmsg(int sockfd, const struct msghdr *msg, int flags) in sendmsg() argument
67 return WSASendMsg((SOCKET)sockfd, (struct msghdr*)msg, (DWORD)flags, &sent, NULL, NULL) == 0 in sendmsg()
176 zend_long flags = 0; in PHP_FUNCTION() local
184 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Oa|l", &zsocket, socket_ce, &zmsg, &flags) == FAILURE)… in PHP_FUNCTION()
188 LONG_CHECK_VALID_INT(flags, 3); in PHP_FUNCTION()
201 res = sendmsg(php_sock->bsd_socket, msghdr, (int)flags); in PHP_FUNCTION()
217 zend_long flags = 0; in PHP_FUNCTION() local
229 LONG_CHECK_VALID_INT(flags, 3); in PHP_FUNCTION()
[all …]
H A Dsockets.stub.php52 function socket_recv(Socket $socket, &$data, int $length, int $flags): int|false {} argument
54 function socket_send(Socket $socket, string $data, int $length, int $flags): int|false {} argument
61 function socket_recvfrom(Socket $socket, &$data, int $length, int $flags, &$address, &$port = null)… argument
63 function socket_sendto(Socket $socket, string $data, int $length, int $flags, string $address, ?int… argument
98 function socket_sendmsg(Socket $socket, array $message, int $flags = 0): int|false {} argument
100 function socket_recvmsg(Socket $socket, array &$message, int $flags = 0): int|false {} argument
/PHP-8.0/Zend/
H A Dzend_virtual_cwd.h169 CWD_API int virtual_open(const char *path, int flags, ...);
259 #define VCWD_OPEN(path, flags) virtual_open(path, flags) argument
260 #define VCWD_OPEN_MODE(path, flags, mode) virtual_open(path, flags, mode) argument
293 #define VCWD_OPEN(path, flags) php_win32_ioutil_open(path, flags) argument
294 #define VCWD_OPEN_MODE(path, flags, mode) php_win32_ioutil_open(path, flags, mode) argument
305 #define VCWD_OPEN(path, flags) open(path, flags) argument
306 #define VCWD_OPEN_MODE(path, flags, mode) open(path, flags, mode) argument
/PHP-8.0/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.c86 magic_open(int flags) in magic_open() argument
88 return file_ms_alloc(flags); in magic_open()
231 if (ms->flags & MAGIC_ERROR) { in file_or_stream()
302 return ms->flags; in magic_getflags()
306 magic_setflags(struct magic_set *ms, int flags) in magic_setflags() argument
311 if (flags & MAGIC_PRESERVE_ATIME) in magic_setflags()
314 ms->flags = flags; in magic_setflags()
/PHP-8.0/main/streams/
H A Dcast.c191 int flags = castas & PHP_STREAM_CAST_MASK; in _php_stream_cast() local
197 if (stream->ops->seek && (stream->flags & PHP_STREAM_FLAG_NO_SEEK) == 0) { in _php_stream_cast()
266 } else if (flags & PHP_STREAM_CAST_TRY_HARD) { in _php_stream_cast()
276 int retcast = php_stream_cast(newstream, castas | flags, (void **)ret, show_err); in _php_stream_cast()
283 if ((flags & PHP_STREAM_CAST_RELEASE)) { in _php_stream_cast()
322 (flags & PHP_STREAM_CAST_INTERNAL) == 0 in _php_stream_cast()
335 if (flags & PHP_STREAM_CAST_RELEASE) { in _php_stream_cast()
368 PHPAPI int _php_stream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STRE… in _php_stream_make_seekable()
375 if (((flags & PHP_STREAM_FORCE_CONVERSION) == 0) && origstream->ops->seek != NULL) { in _php_stream_make_seekable()
382 if (flags & PHP_STREAM_PREFER_STDIO) { in _php_stream_make_seekable()
H A Dplain_wrapper.c64 int flags; in php_stream_parse_fopen_modes() local
68 flags = 0; in php_stream_parse_fopen_modes()
80 flags = O_CREAT; in php_stream_parse_fopen_modes()
88 flags |= O_RDWR; in php_stream_parse_fopen_modes()
89 } else if (flags) { in php_stream_parse_fopen_modes()
90 flags |= O_WRONLY; in php_stream_parse_fopen_modes()
92 flags |= O_RDONLY; in php_stream_parse_fopen_modes()
97 flags |= O_CLOEXEC; in php_stream_parse_fopen_modes()
109 flags |= _O_TEXT; in php_stream_parse_fopen_modes()
111 flags |= O_BINARY; in php_stream_parse_fopen_modes()
[all …]
/PHP-8.0/ext/zip/
H A Dphp_zip_arginfo.h45 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
61 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
83 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")
113 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
130 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
138 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
144 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
149 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
184 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
[all …]
/PHP-8.0/ext/tokenizer/
H A Dtokenizer.stub.php5 function token_get_all(string $code, int $flags = 0): array {} argument
12 public static function tokenize(string $code, int $flags = 0): array {} argument
/PHP-8.0/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-8.0/sapi/phpdbg/
H A Dphpdbg_break.c29 #define PHPDBG_BREAK_COMMAND_D(f, h, a, m, l, s, flags) \ argument
30 PHPDBG_COMMAND_D_EXP(f, h, a, m, l, s, &phpdbg_prompt_commands[9], flags)
/PHP-8.0/ext/standard/
H A Dhtml.c824 int flags, in traverse_for_entities() argument
831 int doctype = flags & ENT_HTML_DOC_TYPE_MASK; in traverse_for_entities()
1007 inverse_map = unescape_inverse_map(all, flags); in php_unescape_html_entities()
1108 int doctype = flags & ENT_HTML_DOC_TYPE_MASK; in php_escape_html_entities_ex()
1132 inv_map = unescape_inverse_map(1, flags); in php_escape_html_entities_ex()
1171 if (flags & ENT_HTML_IGNORE_ERRORS) { in php_escape_html_entities_ex()
1319 zend_long flags = ENT_COMPAT; in php_html_entities() local
1326 Z_PARAM_LONG(flags) in php_html_entities()
1471 flags = ENT_COMPAT; in PHP_FUNCTION() local
1486 Z_PARAM_LONG(flags) in PHP_FUNCTION()
[all …]
/PHP-8.0/ext/imap/tests/
H A Dimap_fetch_overview_variation3.phpt10 * Test passing a range of values into the $flags argument to imap_fetch_overview():
24 $flags = [
33 foreach($flags as $option) {
70 imap_fetch_overview(): Argument #3 ($flags) must be FT_UID or 0
H A Dimap_close_variation4.phpt2 Test imap_close() function : usage variations - different ints as $flags arg
10 * Pass different integers as $flags arg to imap_close() to test which are
80 imap_close(): Argument #2 ($flags) must be CL_EXPUNGE or 0
83 imap_close(): Argument #2 ($flags) must be CL_EXPUNGE or 0
86 imap_close(): Argument #2 ($flags) must be CL_EXPUNGE or 0
/PHP-8.0/ext/spl/
H A Dspl_directory.stub.php143 …public function __construct(string $directory, int $flags = FilesystemIterator::KEY_AS_PATHNAME | … argument
158 public function setFlags(int $flags) {} argument
163 …public function __construct(string $directory, int $flags = FilesystemIterator::KEY_AS_PATHNAME | … argument
181 …public function __construct(string $pattern, int $flags = FilesystemIterator::KEY_AS_PATHNAME | Fi… argument
263 public function setFlags(int $flags) {} argument
/PHP-8.0/ext/intl/collator/
H A Dcollator.stub.php25 public function sort(array &$array, int $flags = Collator::SORT_REGULAR) {} argument
37 public function asort(array &$array, int $flags = Collator::SORT_REGULAR) {} argument
/PHP-8.0/tests/output/
H A Dob_017.phpt8 function oh($str, $flags) {
10 $statuses[] = "$flags: $str";
/PHP-8.0/ext/mysqlnd/
H A Dmysqlnd_ps.h35 …fetch_row_buffered(MYSQLND_RES * result, void * param, const unsigned int flags, zend_bool * fetch…
36 …ch_stmt_row_cursor(MYSQLND_RES * result, void * param, const unsigned int flags, zend_bool * fetch…
/PHP-8.0/main/
H A Dphp_output.h112 …ler_alias_ctor_t)(const char *handler_name, size_t handler_name_len, size_t chunk_size, int flags);
122 int flags; member
142 int flags; variable
223 PHPAPI int php_output_start_user(zval *output_handler, size_t chunk_size, int flags);
224 …ar *name, size_t name_len, php_output_handler_func_t output_handler, size_t chunk_size, int flags);
226 …PI php_output_handler *php_output_handler_create_user(zval *handler, size_t chunk_size, int flags);
227 …r *name, size_t name_len, php_output_handler_context_func_t handler, size_t chunk_size, int flags);
/PHP-8.0/ext/imap/
H A Dphp_imap.c757 if (flags) { in PHP_FUNCTION()
857 long flags=NIL; in PHP_FUNCTION() local
1218 if (flags && ((flags & ~PHP_EXPUNGE) != 0)) { in PHP_FUNCTION()
1228 imap_le_struct->flags = flags; in PHP_FUNCTION()
1628 if (flags && ((flags & ~FT_UID) != 0)) { in PHP_FUNCTION()
1916 if (flags && ((flags & ~FT_UID) != 0)) { in PHP_FUNCTION()
2657 if (flags && ((flags & ~ST_UID) != 0)) { in PHP_FUNCTION()
2683 if (flags && ((flags & ~ST_UID) != 0)) { in PHP_FUNCTION()
2720 if (flags && ((flags & ~(SE_UID|SE_NOPREFETCH )) != 0)) { in PHP_FUNCTION()
3000 if (flags && ((flags & ~FT_UID) != 0)) { in PHP_FUNCTION()
[all …]
/PHP-8.0/ext/spl/tests/
H A Drecursivedualiterator.inc25 * @param flags iteration flags
28 $flags = 0x33 /*DualIterator::DEFAULT_FLAGS*/)
30 parent::__construct($lhs, $rhs, $flags);
/PHP-8.0/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;

Completed in 114 milliseconds

12345678910>>...24