Home
last modified time | relevance | path

Searched defs:mode (Results 1 – 25 of 135) sorted by relevance

123456

/php-src/main/
H A Dphp_memory_streams.h29 #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 Dphp_streams.h60 #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, zero_position) _php_stream_fopen_fro… 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
226 char mode[16]; /* "rwb" etc. ala stdio */ member
267 #define php_stream_alloc(ops, thisptr, persistent_id, mode) _php_stream_alloc((ops), (thisptr), (pe… argument
375 #define php_stream_mkdir(path, mode, options, context) _php_stream_mkdir(path, mode, options, conte… argument
437 #define php_stream_lock(stream, mode) _php_stream_set_option((stream), PHP_STREAM_OPTION_LOCKING, … argument
[all …]
/php-src/main/streams/
H A Dphp_stream_plain_wrapper.h27 #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 Dmemory.c40 int mode; member
264 PHPAPI int php_stream_mode_from_str(const char *mode) in php_stream_mode_from_str()
276 PHPAPI const char *_php_stream_mode_to_str(int mode) in _php_stream_mode_to_str()
306 PHPAPI php_stream *_php_stream_memory_open(int mode, zend_string *buf STREAMS_DC) in _php_stream_memory_open()
336 int mode; member
546 PHPAPI php_stream *_php_stream_temp_create_ex(int mode, size_t max_memory_usage, const char *tmpdir… in _php_stream_temp_create_ex()
568 PHPAPI php_stream *_php_stream_temp_create(int mode, size_t max_memory_usage STREAMS_DC) in _php_stream_temp_create()
575 PHPAPI php_stream *_php_stream_temp_open(int mode, size_t max_memory_usage, const char *buf, size_t… in _php_stream_temp_open()
606 const char *mode, int options, zend_string **opened_path, in php_stream_url_wrap_rfc2397()
H A Dplain_wrapper.c46 #define php_stream_fopen_from_fd_int(fd, mode, persistent_id) _php_stream_fopen_from_fd_int((fd), (… argument
48 #define php_stream_fopen_from_file_int(file, mode) _php_stream_fopen_from_file_int((file), (mode) S… argument
49 #define php_stream_fopen_from_file_int_rel(file, mode) _php_stream_fopen_from_file_int((file), (mo… argument
71 PHPAPI int php_stream_parse_fopen_modes(const char *mode, int *open_flags) in php_stream_parse_fopen_modes()
177 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()
278 PHPAPI php_stream *_php_stream_fopen_from_fd(int fd, const char *mode, const char *persistent_id, b… in _php_stream_fopen_from_fd()
1063 …stream *php_plain_files_dir_opener(php_stream_wrapper *wrapper, const char *path, const char *mode, in php_plain_files_dir_opener()
1102 PHPAPI php_stream *_php_stream_fopen(const char *filename, const char *mode, zend_string **opened_p… in _php_stream_fopen()
1207 …eam *php_plain_files_stream_opener(php_stream_wrapper *wrapper, const char *path, const char *mode, in php_plain_files_stream_opener()
1370 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 Dphp_stream_mmap.h50 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
H A Dmmap.c21 …_mmap_range(php_stream *stream, size_t offset, size_t length, php_stream_mmap_access_t mode, size_… in _php_stream_mmap_range()
/php-src/ext/ftp/
H A Dftp.stub.php68 …function ftp_login(FTP\Connection $ftp, string $username, #[\SensitiveParameter] string $password)…
H A Dphp_ftp.c128 #define XTYPE(xtype, mode) { \ argument
412 zend_long mode; in PHP_FUNCTION() local
575 zend_long mode=FTPTYPE_IMAGE, resumepos=0; in PHP_FUNCTION() local
619 zend_long mode=FTPTYPE_IMAGE, resumepos=0, ret; in PHP_FUNCTION() local
687 zend_long mode=FTPTYPE_IMAGE, resumepos=0; in PHP_FUNCTION() local
751 zend_long mode=FTPTYPE_IMAGE, resumepos=0; in PHP_FUNCTION() local
855 zend_long mode=FTPTYPE_IMAGE, startpos=0; in PHP_FUNCTION() local
903 zend_long mode=FTPTYPE_IMAGE, startpos=0; in PHP_FUNCTION() local
956 zend_long mode=FTPTYPE_IMAGE, startpos=0; in PHP_FUNCTION() local
1008 zend_long mode=FTPTYPE_IMAGE; in PHP_FUNCTION() local
[all …]
/php-src/Zend/
H A Dzend_virtual_cwd.h267 #define VCWD_FOPEN(path, mode) virtual_fopen(path, mode) argument
271 #define VCWD_CREAT(path, mode) virtual_creat(path, mode) argument
288 #define VCWD_CHMOD(path, mode) virtual_chmod(path, mode) argument
298 #define VCWD_CREAT(path, mode) creat(path, mode) argument
314 #define VCWD_FOPEN(path, mode) fopen(path, mode) argument
318 #define VCWD_MKDIR(pathname, mode) mkdir(pathname, mode) argument
322 #define VCWD_ACCESS(pathname, mode) access(pathname, mode) argument
324 #define VCWD_CHMOD(path, mode) chmod(path, mode) argument
368 #define S_ISDIR(mode) (((mode)&S_IFMT) == S_IFDIR) argument
372 #define S_ISREG(mode) (((mode)&S_IFMT) == S_IFREG) argument
[all …]
/php-src/win32/
H A Dconsole.c28 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 Dioutil.c74 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-src/ext/calendar/
H A Dcalendar.stub.php131 function easter_date(?int $year = null, int $mode = CAL_EASTER_DEFAULT): int {}
133 function easter_days(?int $year = null, int $mode = CAL_EASTER_DEFAULT): int {}
139 function jddayofweek(int $julian_day, int $mode = CAL_DOW_DAYNO): int|string {}
141 function jdmonthname(int $julian_day, int $mode): string {}
/php-src/ext/dom/lexbor/lexbor/html/tree/
H A Dtemplate_insertion.h20 lxb_html_tree_insertion_mode_f mode; member
65 lxb_html_tree_insertion_mode_f mode) in lxb_html_tree_template_insertion_push()
/php-src/ext/bz2/
H A Dphp_bz2.h52 #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
/php-src/ext/pdo/
H A Dpdo_stmt.stub.php38 …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): true {}
/php-src/ext/intl/idn/
H A Didn.c62 const zend_string *domain, uint32_t option, int mode, zval *idna_info) in php_intl_idn_to_46()
117 static void php_intl_idn_handoff(INTERNAL_FUNCTION_PARAMETERS, int mode) in php_intl_idn_handoff()
/php-src/ext/iconv/
H A Diconv.stub.php39 function iconv_mime_decode(string $string, int $mode = 0, ?string $encoding = null): string|false {}
45 function iconv_mime_decode_headers(string $headers, int $mode = 0, ?string $encoding = null): array…
/php-src/ext/dba/
H A Ddba.c404 static void php_dba_update(INTERNAL_FUNCTION_PARAMETERS, int mode) in php_dba_update()
492 zend_string *mode; in php_dba_open() local
606 if (ZSTR_VAL(mode)[2] != 't') { in php_dba_open() local
614 switch (ZSTR_VAL(mode)[1]) { in php_dba_open() local
651 switch (ZSTR_VAL(mode)[0]) { in php_dba_open() local
H A Ddba.stub.php16 function dba_popen(string $path, string $mode, ?string $handler = null, int $permission = 0o644, in…
19 function dba_open(string $path, string $mode, ?string $handler = null, int $permission = 0o644, int…
/php-src/ext/spl/
H A Dspl_iterators.stub.php65 …public function __construct(Traversable $iterator, int $mode = RecursiveIteratorIterator::LEAVES_O…
362 …public function __construct(Iterator $iterator, string $pattern, int $mode = RegexIterator::MATCH,…
371 public function setMode(int $mode): void {}
391 …public function __construct(RecursiveIterator $iterator, string $pattern, int $mode = RecursiveReg…
430 int $mode = RecursiveTreeIterator::SELF_FIRST
/php-src/ext/random/
H A Drandom.stub.php20 function mt_srand(?int $seed = null, int $mode = MT_RAND_MT19937): void {}
23 function srand(?int $seed = null, int $mode = MT_RAND_MT19937): void {}
47 public function __construct(int|null $seed = null, int $mode = MT_RAND_MT19937) {}
/php-src/ext/pgsql/
H A Dpgsql.stub.php564 …function pg_last_notice(PgSql\Connection $connection, int $mode = PGSQL_NOTICE_LAST): array|string…
621 …function pg_fetch_row(PgSql\Result $result, ?int $row = null, int $mode = PGSQL_NUM): array|false …
633 …function pg_fetch_array(PgSql\Result $result, ?int $row = null, int $mode = PGSQL_BOTH): array|fal…
642 function pg_fetch_all(PgSql\Result $result, int $mode = PGSQL_ASSOC): array {}
687 …function pg_trace(string $filename, string $mode = "w", ?PgSql\Connection $connection = null, int …
725 function pg_lo_open($connection, $oid = UNKNOWN, string $mode = UNKNOWN): PgSql\Lob|false {}
733 function pg_loopen($connection, $oid = UNKNOWN, string $mode = UNKNOWN): PgSql\Lob|false {}
896 function pg_result_status(PgSql\Result $result, int $mode = PGSQL_STATUS_LONG): string|int {}
902 function pg_get_notify(PgSql\Connection $connection, int $mode = PGSQL_ASSOC): array|false {}
941 …tring $table_name, array $conditions = [], int $flags = PGSQL_DML_EXEC, int $mode = PGSQL_ASSOC): …
/php-src/ext/dom/lexbor/lexbor/dom/interfaces/
H A Dshadow_root.h28 lxb_dom_shadow_root_mode_t mode; member
/php-src/ext/phar/
H A Dtar.h43 char mode[8]; /* file mode */ member
67 char mode[8]; /* file mode */ member

Completed in 63 milliseconds

123456