Home
last modified time | relevance | path

Searched refs:mode (Results 251 – 275 of 759) sorted by relevance

1...<<11121314151617181920>>...31

/PHP-8.2/ext/spl/
H A Dspl_iterators.stub.php77 …public function __construct(Traversable $iterator, int $mode = RecursiveIteratorIterator::LEAVES_O… argument
413 …public function __construct(Iterator $iterator, string $pattern, int $mode = RegexIterator::MATCH,… argument
422 public function setMode(int $mode): void {} argument
442 …public function __construct(RecursiveIterator $iterator, string $pattern, int $mode = RecursiveReg… argument
487 int $mode = RecursiveTreeIterator::SELF_FIRST argument
/PHP-8.2/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_autocommit.phpt23 … printf("[002] Server autocommit mode should be on, got '%s'\n", var_export($row['_autocommit']));
31 … printf("[004] Server autocommit mode should be off, got '%s'\n", var_export($row['_autocommit']));
35 … printf("[005] Cannot turn on server autocommit mode, %s\n", var_export($db->errorInfo(), true));
42 … printf("[007] Cannot turn off server autocommit mode, %s\n", var_export($db->errorInfo(), true));
49 … printf("[009] Server autocommit mode should be on, got '%s'\n", var_export($row['_autocommit']));
/PHP-8.2/ext/zip/tests/
H A Dstream_meta_data.phpt43 ["mode"]=>
63 ["mode"]=>
/PHP-8.2/ext/dba/
H A Dphp_dba.h35 int mode; /* LOCK_EX,LOCK_SH */ member
42 dba_mode_t mode; member
101 zend_result dba_update_##x(dba_info *info, zend_string *key, zend_string *val, int mode)
/PHP-8.2/ext/pcntl/tests/
H A Dpcntl_getpriority_error_darwin.phpt2 pcntl_getpriority() - Wrong mode passed and also for non existing process id provided
44 pcntl_getpriority(): Argument #2 ($mode) must be one of PRIO_PGRP, PRIO_USER, PRIO_PROCESS or PRIO_…
/PHP-8.2/ext/gd/libgd/
H A Dgd_pixelate.c3 int gdImagePixelate(gdImagePtr im, int block_size, const unsigned int mode) in gdImagePixelate() argument
12 switch (mode) { in gdImagePixelate()
/PHP-8.2/ext/standard/tests/file/
H A Dfgets_variation6-win32.phpt25 echo "\n-- Testing fgets() with file opened using mode $file_mode --\n";
62 -- Testing fgets() with file opened using mode w+ --
96 -- Testing fgets() with file opened using mode w+b --
130 -- Testing fgets() with file opened using mode w+t --
164 -- Testing fgets() with file opened using mode a+ --
198 -- Testing fgets() with file opened using mode a+b --
232 -- Testing fgets() with file opened using mode a+t --
266 -- Testing fgets() with file opened using mode x+ --
300 -- Testing fgets() with file opened using mode x+b --
334 -- Testing fgets() with file opened using mode x+t --
H A Dfgets_variation6.phpt25 echo "\n-- Testing fgets() with file opened using mode $file_mode --\n";
62 -- Testing fgets() with file opened using mode w+ --
96 -- Testing fgets() with file opened using mode w+b --
130 -- Testing fgets() with file opened using mode w+t --
164 -- Testing fgets() with file opened using mode a+ --
198 -- Testing fgets() with file opened using mode a+b --
232 -- Testing fgets() with file opened using mode a+t --
266 -- Testing fgets() with file opened using mode x+ --
300 -- Testing fgets() with file opened using mode x+b --
334 -- Testing fgets() with file opened using mode x+t --
H A Dfscanf_variation52.phpt25 foreach($modes as $mode) {
35 // opening file in $mode mode
36 $file_handle = fopen($filename, $mode);
H A Dgh13136.phpt12 public function stream_open($path, $mode, $options, &$opened_path) {
14 $this->file = fopen($path, $mode);
/PHP-8.2/Zend/tests/type_declarations/
H A Dstrict_include_explicit_weak_2.inc9 takes_int(1.0); // succeeds in weak mode
H A Dweak_include_strict_2.inc9 takes_int(1.0); // fails in strict mode
H A Dstrict_include_weak_2.inc9 takes_int(1.0); // succeeds in weak mode
/PHP-8.2/sapi/phpdbg/tests/
H A Dphpdbg_get_executable_stream_wrapper.phpt31 string $mode,
35 if ($mode[0] !== 'r') {
41 $stream = \fopen($path, $mode);
/PHP-8.2/ext/pdo_oci/tests/
H A Dpdo_oci_attr_case.phpt26 function do_query2($dbh, $mode)
28 echo "Mode desired is $mode\n";
29 $s = $dbh->prepare("select dummy from dual", array(PDO::ATTR_CASE, $mode));
/PHP-8.2/ext/standard/tests/streams/
H A Dstream_get_meta_data_file_variation4.phpt41 ["mode"]=>
63 ["mode"]=>
H A Dstream_get_meta_data_file_variation5.phpt46 ["mode"]=>
69 ["mode"]=>
/PHP-8.2/TSRM/
H A Dtsrm_win32.h31 unsigned short mode; member
99 TSRM_API int tsrm_win32_access(const char *pathname, int mode);
/PHP-8.2/sapi/litespeed/
H A Dconfig.m418 …BUILD_LITESPEED="\$(LIBTOOL) --tag=CC --mode=link \$(CC) -export-dynamic \$(CFLAGS_CLEAN) \$(EXTRA…
21 …BUILD_LITESPEED="\$(LIBTOOL) --tag=CC --mode=link \$(CC) -export-dynamic \$(CFLAGS_CLEAN) \$(EXTRA…
/PHP-8.2/ext/opcache/
H A Dzend_shared_alloc.c597 void zend_accel_shared_protect(int mode) in zend_accel_shared_protect() argument
606 if (mode) { in zend_accel_shared_protect()
607 mode = PROT_READ; in zend_accel_shared_protect()
609 mode = PROT_READ|PROT_WRITE; in zend_accel_shared_protect()
613 mprotect(ZSMMG(shared_segments)[i]->p, ZSMMG(shared_segments)[i]->end, mode); in zend_accel_shared_protect()
622 if (mode) { in zend_accel_shared_protect()
623 mode = PAGE_READONLY; in zend_accel_shared_protect()
625 mode = PAGE_READWRITE; in zend_accel_shared_protect()
630 …if (!VirtualProtect(ZSMMG(shared_segments)[i]->p, ZSMMG(shared_segments)[i]->end, mode, &oldProtec… in zend_accel_shared_protect()
/PHP-8.2/ext/standard/tests/file/windows_acls/
H A Dcommon.inc64 function icacls_set($path, $mode, $perm) {
92 if ($mode == PHPT_ACL_GRANT) {
93 $mode = 'grant';
95 $mode = 'deny';
130 $cmd = $icacls . ' ' . $path_escaped . ' /' . $mode . ' ' . $user;
/PHP-8.2/ext/pgsql/
H A Dpgsql.stub.php517 …function pg_last_notice(PgSql\Connection $connection, int $mode = PGSQL_NOTICE_LAST): array|string… argument
574 …function pg_fetch_row(PgSql\Result $result, ?int $row = null, int $mode = PGSQL_NUM): array|false … argument
586 …function pg_fetch_array(PgSql\Result $result, ?int $row = null, int $mode = PGSQL_BOTH): array|fal… argument
595 function pg_fetch_all(PgSql\Result $result, int $mode = PGSQL_ASSOC): array {} argument
642 …function pg_trace(string $filename, string $mode = "w", ?PgSql\Connection $connection = null): boo… argument
680 function pg_lo_open($connection, $oid = UNKNOWN, string $mode = UNKNOWN): PgSql\Lob|false {} argument
688 function pg_loopen($connection, $oid = UNKNOWN, string $mode = UNKNOWN): PgSql\Lob|false {} argument
851 function pg_result_status(PgSql\Result $result, int $mode = PGSQL_STATUS_LONG): string|int {} argument
857 function pg_get_notify(PgSql\Connection $connection, int $mode = PGSQL_ASSOC): array|false {} argument
896 … string $table_name, array $conditions, int $flags = PGSQL_DML_EXEC, int $mode = PGSQL_ASSOC): arr… argument
/PHP-8.2/ext/gettext/tests/
H A Dbug73730.phpt2 Bug #73730 (textdomain(null) throws in strict mode)
/PHP-8.2/ext/opcache/jit/dynasm/
H A Ddasm_x86.lua747 if mode == "iJ" then
787 t.mode = "xm"
877 t.mode = m
907 t.mode = "xm"
1978 local mode, imm = a.mode, a.imm
1989 if mode == "iJ" then
1997 if mode == "iPJ" then
2177 if a.mode == "iJ" then
2235 local mode, imm = a.mode, a.imm
2240 elseif mode == "iJ" then
[all …]
/PHP-8.2/ext/posix/
H A Dposix.c567 zend_long mode; in PHP_FUNCTION() local
572 Z_PARAM_LONG(mode) in PHP_FUNCTION()
579 result = mkfifo(ZSTR_VAL(path), mode); in PHP_FUNCTION()
595 zend_long mode; in PHP_FUNCTION() local
602 Z_PARAM_LONG(mode) in PHP_FUNCTION()
612 if ((mode & S_IFCHR) || (mode & S_IFBLK)) { in PHP_FUNCTION()
625 result = mknod(ZSTR_VAL(path), mode, php_dev); in PHP_FUNCTION()
683 zend_long mode = 0; in PHP_FUNCTION() local
690 Z_PARAM_LONG(mode) in PHP_FUNCTION()
705 ret = access(path, mode); in PHP_FUNCTION()

Completed in 52 milliseconds

1...<<11121314151617181920>>...31