/PHP-8.1/main/ |
H A D | php_memory_streams.h | 29 #define php_stream_memory_create(mode) _php_stream_memory_create((mode) STREAMS_CC) argument 30 #define php_stream_memory_create_rel(mode) _php_stream_memory_create((mode) STREAMS_REL_CC) argument 31 #define php_stream_memory_open(mode, str) _php_stream_memory_open((mode), (str) STREAMS_CC) argument 35 #define php_stream_temp_create(mode, max_memory_usage) _php_stream_temp_create((mode), (max_memory_… argument 36 #define php_stream_temp_create_ex(mode, max_memory_usage, tmpdir) _php_stream_temp_create_ex((mode)… argument 37 #define php_stream_temp_create_rel(mode, max_memory_usage) _php_stream_temp_create((mode), (max_mem… argument 38 #define php_stream_temp_open(mode, max_memory_usage, buf, length) _php_stream_temp_open((mode), (ma… argument
|
H A D | php_streams.h | 60 #define php_stream_alloc_rel(ops, thisptr, persistent, mode) _php_stream_alloc((ops), (thisptr), (p… argument 64 #define php_stream_fopen_rel(filename, mode, opened, options) _php_stream_fopen((filename), (mode),… argument 68 #define php_stream_fopen_from_fd_rel(fd, mode, persistent_id) _php_stream_fopen_from_fd((fd), (mod… argument 69 #define php_stream_fopen_from_file_rel(file, mode) _php_stream_fopen_from_file((file), (mode) STRE… argument 71 #define php_stream_fopen_from_pipe_rel(file, mode) _php_stream_fopen_from_pipe((file), (mode) STRE… argument 77 #define php_stream_open_wrapper_rel(path, mode, options, opened) _php_stream_open_wrapper_ex((path)… argument 212 char mode[16]; /* "rwb" etc. ala stdio */ member 253 #define php_stream_alloc(ops, thisptr, persistent_id, mode) _php_stream_alloc((ops), (thisptr), (pe… argument 361 #define php_stream_mkdir(path, mode, options, context) _php_stream_mkdir(path, mode, options, conte… argument 423 #define php_stream_lock(stream, mode) _php_stream_set_option((stream), PHP_STREAM_OPTION_LOCKING, … argument [all …]
|
/PHP-8.1/main/streams/ |
H A D | php_stream_plain_wrapper.h | 27 #define php_stream_fopen(filename, mode, opened) _php_stream_fopen((filename), (mode), (opened), 0 … argument 30 #define php_stream_fopen_with_path(filename, mode, path, opened) _php_stream_fopen_with_path((filen… argument 33 #define php_stream_fopen_from_file(file, mode) _php_stream_fopen_from_file((file), (mode) STREAMS_C… argument 36 #define php_stream_fopen_from_fd(fd, mode, persistent_id) _php_stream_fopen_from_fd((fd), (mode), (… argument 39 #define php_stream_fopen_from_pipe(file, mode) _php_stream_fopen_from_pipe((file), (mode) STREAMS_C… argument 51 #define php_stream_open_wrapper_as_file(path, mode, options, opened_path) _php_stream_open_wrapper_… argument
|
H A D | memory.c | 38 int mode; member 261 PHPAPI int php_stream_mode_from_str(const char *mode) in php_stream_mode_from_str() 273 PHPAPI const char *_php_stream_mode_to_str(int mode) in _php_stream_mode_to_str() 303 PHPAPI php_stream *_php_stream_memory_open(int mode, zend_string *buf STREAMS_DC) in _php_stream_memory_open() 333 int mode; member 543 PHPAPI php_stream *_php_stream_temp_create_ex(int mode, size_t max_memory_usage, const char *tmpdir… in _php_stream_temp_create_ex() 565 PHPAPI php_stream *_php_stream_temp_create(int mode, size_t max_memory_usage STREAMS_DC) in _php_stream_temp_create() 572 PHPAPI php_stream *_php_stream_temp_open(int mode, size_t max_memory_usage, const char *buf, size_t… in _php_stream_temp_open() 603 const char *mode, int options, zend_string **opened_path, in php_stream_url_wrap_rfc2397()
|
H A D | plain_wrapper.c | 45 #define php_stream_fopen_from_fd_int(fd, mode, persistent_id) _php_stream_fopen_from_fd_int((fd), (… argument 47 #define php_stream_fopen_from_file_int(file, mode) _php_stream_fopen_from_file_int((file), (mode) S… argument 48 #define php_stream_fopen_from_file_int_rel(file, mode) _php_stream_fopen_from_file_int((file), (mo… argument 70 PHPAPI int php_stream_parse_fopen_modes(const char *mode, int *open_flags) in php_stream_parse_fopen_modes() 176 static php_stream *_php_stream_fopen_from_fd_int(int fd, const char *mode, const char *persistent_i… in _php_stream_fopen_from_fd_int() 277 PHPAPI php_stream *_php_stream_fopen_from_fd(int fd, const char *mode, const char *persistent_id ST… in _php_stream_fopen_from_fd() 1054 …stream *php_plain_files_dir_opener(php_stream_wrapper *wrapper, const char *path, const char *mode, in php_plain_files_dir_opener() 1093 PHPAPI php_stream *_php_stream_fopen(const char *filename, const char *mode, zend_string **opened_p… in _php_stream_fopen() 1193 …eam *php_plain_files_stream_opener(php_stream_wrapper *wrapper, const char *path, const char *mode, in php_plain_files_stream_opener() 1356 static int php_plain_files_mkdir(php_stream_wrapper *wrapper, const char *dir, int mode, int option… in php_plain_files_mkdir() [all …]
|
H A D | php_stream_mmap.h | 50 php_stream_mmap_access_t mode; member 69 #define php_stream_mmap_range(stream, offset, length, mode, mapped_len) _php_stream_mmap_range((str… argument
|
/PHP-8.1/Zend/ |
H A D | zend_virtual_cwd.h | 257 #define VCWD_FOPEN(path, mode) virtual_fopen(path, mode) argument 261 #define VCWD_CREAT(path, mode) virtual_creat(path, mode) argument 278 #define VCWD_CHMOD(path, mode) virtual_chmod(path, mode) argument 288 #define VCWD_CREAT(path, mode) creat(path, mode) argument 304 #define VCWD_FOPEN(path, mode) fopen(path, mode) argument 308 #define VCWD_MKDIR(pathname, mode) mkdir(pathname, mode) argument 312 #define VCWD_ACCESS(pathname, mode) access(pathname, mode) argument 314 #define VCWD_CHMOD(path, mode) chmod(path, mode) argument 358 #define S_ISDIR(mode) (((mode)&S_IFMT) == S_IFDIR) argument 362 #define S_ISREG(mode) (((mode)&S_IFMT) == S_IFREG) argument [all …]
|
/PHP-8.1/ext/ftp/ |
H A D | ftp.stub.php | 64 …function ftp_fget(FTP\Connection $ftp, $stream, string $remote_filename, int $mode = FTP_BINARY, i… 67 …function ftp_nb_fget(FTP\Connection $ftp, $stream, string $remote_filename, int $mode = FTP_BINARY… 69 …t(FTP\Connection $ftp, string $local_filename, string $remote_filename, int $mode = FTP_BINARY, in… 70 …t(FTP\Connection $ftp, string $local_filename, string $remote_filename, int $mode = FTP_BINARY, in… 74 …function ftp_fput(FTP\Connection $ftp, string $remote_filename, $stream, int $mode = FTP_BINARY, i… 77 …function ftp_nb_fput(FTP\Connection $ftp, string $remote_filename, $stream, int $mode = FTP_BINARY… 78 …t(FTP\Connection $ftp, string $remote_filename, string $local_filename, int $mode = FTP_BINARY, in… 79 …d(FTP\Connection $ftp, string $remote_filename, string $local_filename, int $mode = FTP_BINARY): b… 80 …t(FTP\Connection $ftp, string $remote_filename, string $local_filename, int $mode = FTP_BINARY, in…
|
H A D | php_ftp.c | 147 #define XTYPE(xtype, mode) { \ argument 431 zend_long mode; in PHP_FUNCTION() local 594 zend_long mode=FTPTYPE_IMAGE, resumepos=0; in PHP_FUNCTION() local 638 zend_long mode=FTPTYPE_IMAGE, resumepos=0, ret; in PHP_FUNCTION() local 706 zend_long mode=FTPTYPE_IMAGE, resumepos=0; in PHP_FUNCTION() local 770 zend_long mode=FTPTYPE_IMAGE, resumepos=0; in PHP_FUNCTION() local 874 zend_long mode=FTPTYPE_IMAGE, startpos=0; in PHP_FUNCTION() local 922 zend_long mode=FTPTYPE_IMAGE, startpos=0; in PHP_FUNCTION() local 975 zend_long mode=FTPTYPE_IMAGE, startpos=0; in PHP_FUNCTION() local 1027 zend_long mode=FTPTYPE_IMAGE; in PHP_FUNCTION() local [all …]
|
/PHP-8.1/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_tl_jisx0201_jisx0208.c | 47 int mbfl_convert_kana(int c, int next, bool *consumed, int *second, int mode) in mbfl_convert_kana() 225 int mode = (intptr_t)filt->opaque, second = 0; in mbfl_filt_tl_jisx0201_jisx0208() local 248 int mode = (intptr_t)filt->opaque, second = 0; in mbfl_filt_tl_jisx0201_jisx0208_flush() local
|
H A D | mbfilter_cp5022x.c | 329 int mode = MBFL_FILT_TL_HAN2ZEN_KATAKANA | MBFL_FILT_TL_HAN2ZEN_GLUE, second = 0; in mbfl_filt_conv_wchar_cp50220() local 352 int mode = MBFL_FILT_TL_HAN2ZEN_KATAKANA | MBFL_FILT_TL_HAN2ZEN_GLUE, second = 0; in mbfl_filt_conv_wchar_cp50220_flush() local
|
/PHP-8.1/win32/ |
H A D | console.c | 28 DWORD mode; in php_win32_console_fileno_is_console() local 46 DWORD mode; in php_win32_console_fileno_has_vt100() local 68 DWORD mode; in php_win32_console_fileno_set_vt100() local
|
H A D | ioutil.c | 74 PW32IO BOOL php_win32_ioutil_posix_to_open_opts(int flags, mode_t mode, php_ioutil_open_opts *opts) in php_win32_ioutil_posix_to_open_opts() 192 mode_t mode = 0; in php_win32_ioutil_open_w() local 286 PW32IO int php_win32_ioutil_mkdir_w(const wchar_t *path, mode_t mode) in php_win32_ioutil_mkdir_w() 667 PW32IO int php_win32_ioutil_access_w(const wchar_t *path, mode_t mode) in php_win32_ioutil_access_w() 695 PW32IO FILE *php_win32_ioutil_fopen_w(const wchar_t *path, const wchar_t *mode) in php_win32_ioutil_fopen_w()
|
/PHP-8.1/ext/calendar/ |
H A D | calendar.stub.php | 21 function easter_date(?int $year = null, int $mode = CAL_EASTER_DEFAULT): int {} 23 function easter_days(?int $year = null, int $mode = CAL_EASTER_DEFAULT): int {} 29 function jddayofweek(int $julian_day, int $mode = CAL_DOW_DAYNO): int|string {} 31 function jdmonthname(int $julian_day, int $mode): string {}
|
/PHP-8.1/ext/bz2/ |
H A D | php_bz2.h | 52 #define php_stream_bz2open_from_BZFILE(bz, mode, innerstream) _php_stream_bz2open_from_BZFILE((bz),… argument 53 #define php_stream_bz2open(wrapper, path, mode, options, opened_path) _php_stream_bz2open((wrapper)… argument
|
H A D | bz2.c | 163 const char *mode, php_stream *innerstream STREAMS_DC) in _php_stream_bz2open_from_BZFILE() 180 const char *mode, in _php_stream_bz2open() 335 char *mode; /* The mode to open the stream with */ in PHP_FUNCTION() local
|
/PHP-8.1/ext/pdo/ |
H A D | pdo_stmt.stub.php | 38 …public function fetch(int $mode = PDO::FETCH_DEFAULT, int $cursorOrientation = PDO::FETCH_ORI_NEXT… 41 public function fetchAll(int $mode = PDO::FETCH_DEFAULT, mixed ...$args): array {} 65 public function setFetchMode(int $mode, mixed ...$args) {} // TODO make return type void
|
/PHP-8.1/ext/pspell/ |
H A D | pspell.stub.php | 23 …age, string $spelling = "", string $jargon = "", string $encoding = "", int $mode = 0): PSpell\Dic… 31 int $mode = 0 51 function pspell_config_mode(PSpell\Config $config, int $mode): bool {}
|
/PHP-8.1/ext/pcntl/ |
H A D | pcntl.stub.php | 29 function pcntl_sigprocmask(int $mode, array $signals, &$old_signals = null): bool {} 68 function pcntl_getpriority(?int $process_id = null, int $mode = PRIO_PROCESS): int|false {} 72 function pcntl_setpriority(int $priority, ?int $process_id = null, int $mode = PRIO_PROCESS): bool{}
|
/PHP-8.1/ext/intl/idn/ |
H A D | idn.c | 120 const zend_string *domain, uint32_t option, int mode, zval *idna_info) in php_intl_idn_to_46() 175 static void php_intl_idn_handoff(INTERNAL_FUNCTION_PARAMETERS, int mode) in php_intl_idn_handoff()
|
/PHP-8.1/ext/iconv/ |
H A D | iconv.stub.php | 18 function iconv_mime_decode(string $string, int $mode = 0, ?string $encoding = null): string|false {} 24 function iconv_mime_decode_headers(string $headers, int $mode = 0, ?string $encoding = null): array…
|
/PHP-8.1/ext/pgsql/ |
H A D | pgsql.stub.php | 136 …function pg_last_notice(PgSql\Connection $connection, int $mode = PGSQL_NOTICE_LAST): array|string… 193 …function pg_fetch_row(PgSql\Result $result, ?int $row = null, int $mode = PGSQL_NUM): array|false … 205 …function pg_fetch_array(PgSql\Result $result, ?int $row = null, int $mode = PGSQL_BOTH): array|fal… 214 function pg_fetch_all(PgSql\Result $result, int $mode = PGSQL_ASSOC): array {} 261 …function pg_trace(string $filename, string $mode = "w", ?PgSql\Connection $connection = null): boo… 299 function pg_lo_open($connection, $oid = UNKNOWN, string $mode = UNKNOWN): PgSql\Lob|false {} 307 function pg_loopen($connection, $oid = UNKNOWN, string $mode = UNKNOWN): PgSql\Lob|false {} 470 function pg_result_status(PgSql\Result $result, int $mode = PGSQL_STATUS_LONG): string|int {} 476 function pg_get_notify(PgSql\Connection $connection, int $mode = PGSQL_ASSOC): array|false {} 515 …on, string $table_name, array $conditions, int $flags = PGSQL_DML_EXEC, int $mode = PGSQL_ASSOC): …
|
/PHP-8.1/ext/dba/ |
H A D | dba.stub.php | 12 function dba_popen($path, $mode, $handler = UNKNOWN, ...$handler_params) {} 21 function dba_open($path, $mode, $handler = UNKNOWN, ...$handler_params) {}
|
/PHP-8.1/ext/spl/ |
H A D | spl_iterators.stub.php | 56 …public function __construct(Traversable $iterator, int $mode = RecursiveIteratorIterator::LEAVES_O… 325 …public function __construct(Iterator $iterator, string $pattern, int $mode = RegexIterator::MATCH,… 334 public function setMode(int $mode): void {} 354 …public function __construct(RecursiveIterator $iterator, string $pattern, int $mode = RecursiveReg… 376 int $mode = RecursiveTreeIterator::SELF_FIRST
|
/PHP-8.1/ext/phar/ |
H A D | tar.h | 43 char mode[8]; /* file mode */ member 67 char mode[8]; /* file mode */ member
|