/php-src/ext/zip/ |
H A D | php_zip.stub.php | 649 public function open(string $filename, int $flags = 0): bool|int {} 654 public function setPassword(#[\SensitiveParameter] string $password): bool {} 668 public function addEmptyDir(string $dirname, int $flags = 0): bool {}
|
H A D | php_zip.c | 286 zip_flags_t flags in php_zip_add_file() 347 zip_flags_t flags; member 1455 zend_long flags = 0; local 1696 zend_long flags = 0; local 1899 zend_long flags = 0; local 1979 zend_long flags = 0; local 2023 zend_long flags = 0; local 2104 zend_long flags = 0; local 2286 zend_long flags=0; local 2414 zend_long flags = 0; local [all …]
|
/php-src/Zend/ |
H A D | zend_constants.h | 50 #define REGISTER_NULL_CONSTANT(name, flags) zend_register_null_constant((name), sizeof(name)-1, (f… argument 51 #define REGISTER_BOOL_CONSTANT(name, bval, flags) zend_register_bool_constant((name), sizeof(name)… argument 52 #define REGISTER_LONG_CONSTANT(name, lval, flags) zend_register_long_constant((name), sizeof(name)… argument 53 #define REGISTER_DOUBLE_CONSTANT(name, dval, flags) zend_register_double_constant((name), sizeof(n… argument 54 #define REGISTER_STRING_CONSTANT(name, str, flags) zend_register_string_constant((name), sizeof(na… argument 64 #define REGISTER_MAIN_NULL_CONSTANT(name, flags) zend_register_null_constant((name), sizeof(name)-… argument 65 #define REGISTER_MAIN_BOOL_CONSTANT(name, bval, flags) zend_register_bool_constant((name), sizeof(… argument 66 #define REGISTER_MAIN_LONG_CONSTANT(name, lval, flags) zend_register_long_constant((name), sizeof(… argument 67 #define REGISTER_MAIN_DOUBLE_CONSTANT(name, dval, flags) zend_register_double_constant((name), siz… argument 68 #define REGISTER_MAIN_STRING_CONSTANT(name, str, flags) zend_register_string_constant((name), size… argument [all …]
|
H A D | zend_attributes.h | 59 uint32_t flags; member 69 uint32_t flags; member 99 uint32_t flags = ce->type != ZEND_USER_CLASS ? ZEND_ATTRIBUTE_PERSISTENT : 0; in END_EXTERN_C() local 105 uint32_t flags = func->common.type != ZEND_USER_FUNCTION ? ZEND_ATTRIBUTE_PERSISTENT : 0; in zend_add_function_attribute() local 111 uint32_t flags = func->common.type != ZEND_USER_FUNCTION ? ZEND_ATTRIBUTE_PERSISTENT : 0; in zend_add_parameter_attribute() local 117 uint32_t flags = ce->type != ZEND_USER_CLASS ? ZEND_ATTRIBUTE_PERSISTENT : 0; in zend_add_property_attribute() local 123 uint32_t flags = ce->type != ZEND_USER_CLASS ? ZEND_ATTRIBUTE_PERSISTENT : 0; in zend_add_class_constant_attribute() local
|
H A D | zend_constants.c | 128 ZEND_API void zend_register_null_constant(const char *name, size_t name_len, int flags, int module_… in zend_register_null_constant() 138 ZEND_API void zend_register_bool_constant(const char *name, size_t name_len, bool bval, int flags, … in zend_register_bool_constant() 148 …gister_long_constant(const char *name, size_t name_len, zend_long lval, int flags, int module_numb… in zend_register_long_constant() 159 …egister_double_constant(const char *name, size_t name_len, double dval, int flags, int module_numb… in zend_register_double_constant() 170 …t(const char *name, size_t name_len, const char *strval, size_t strlen, int flags, int module_numb… in zend_register_stringl_constant() 181 …_string_constant(const char *name, size_t name_len, const char *strval, int flags, int module_numb… in zend_register_string_constant() 304 …nt_ex(zend_string *class_name, zend_string *constant_name, zend_class_entry *scope, uint32_t flags) in zend_get_class_constant_ex() 398 ZEND_API zval *zend_get_constant_ex(zend_string *cname, zend_class_entry *scope, uint32_t flags) in zend_get_constant_ex()
|
H A D | zend_attributes.stub.php | 25 public int $flags; variable in Attribute 27 public function __construct(int $flags = Attribute::TARGET_ALL) {}
|
H A D | zend_attributes.c | 43 zval flags; in zend_attribute_attribute_get_flags() local 99 zend_long flags = ZEND_ATTRIBUTE_TARGET_ALL; in ZEND_METHOD() local 360 ZEND_API zend_string *zend_get_attribute_target_names(uint32_t flags) in zend_get_attribute_target_names() 414 …_attribute(HashTable **attributes, zend_string *name, uint32_t argc, uint32_t flags, uint32_t offs… in zend_add_attribute() 479 …API zend_internal_attribute *zend_internal_attribute_register(zend_class_entry *ce, uint32_t flags) in zend_internal_attribute_register()
|
/php-src/ext/fileinfo/ |
H A D | fileinfo.stub.php | 69 public function __construct(int $flags = FILEINFO_NONE, ?string $magic_database = null) {} 76 …public function file(string $filename, int $flags = FILEINFO_NONE, $context = null): string|false … 83 …public function buffer(string $string, int $flags = FILEINFO_NONE, $context = null): string|false … 89 public function set_flags(int $flags): true {} 93 function finfo_open(int $flags = FILEINFO_NONE, ?string $magic_database = null): finfo|false {} 97 function finfo_set_flags(finfo $finfo, int $flags): true {} 103 function finfo_file(finfo $finfo, string $filename, int $flags = FILEINFO_NONE, $context = null): s… 109 function finfo_buffer(finfo $finfo, string $string, int $flags = FILEINFO_NONE, $context = null): s…
|
/php-src/ext/spl/ |
H A D | spl_array.stub.php | 12 …public function __construct(array|object $array = [], int $flags = 0, string $iteratorClass = Arra… 39 public function setFlags(int $flags): void {} 42 public function asort(int $flags = SORT_REGULAR): true {} 45 public function ksort(int $flags = SORT_REGULAR): true {} 94 public function __construct(array|object $array = [], int $flags = 0) {} 148 public function setFlags(int $flags): void {} 154 public function asort(int $flags = SORT_REGULAR): true {} 160 public function ksort(int $flags = SORT_REGULAR): true {}
|
H A D | spl_iterators.stub.php | 65 …truct(Traversable $iterator, int $mode = RecursiveIteratorIterator::LEAVES_ONLY, int $flags = 0) {} 225 public function __construct(Iterator $iterator, int $flags = CachingIterator::CALL_TOSTRING) {} 245 public function setFlags(int $flags): void {} 280 …public function __construct(Iterator $iterator, int $flags = RecursiveCachingIterator::CALL_TOSTRI… 362 …Iterator $iterator, string $pattern, int $mode = RegexIterator::MATCH, int $flags = 0, int $pregFl… 377 public function setFlags(int $flags): void {} 391 …$iterator, string $pattern, int $mode = RecursiveRegexIterator::MATCH, int $flags = 0, int $pregFl… 427 int $flags = RecursiveTreeIterator::BYPASS_KEY,
|
H A D | spl_directory.stub.php | 175 …public function __construct(string $directory, int $flags = FilesystemIterator::KEY_AS_PATHNAME | … 190 public function setFlags(int $flags): void {} 195 …public function __construct(string $directory, int $flags = FilesystemIterator::KEY_AS_PATHNAME | … 213 …public function __construct(string $pattern, int $flags = FilesystemIterator::KEY_AS_PATHNAME | Fi… 304 public function setFlags(int $flags): void {}
|
/php-src/ext/pcre/ |
H A D | php_pcre.stub.php | 105 function preg_match(string $pattern, string $subject, &$matches = null, int $flags = 0, int $offset… 108 function preg_match_all(string $pattern, string $subject, &$matches = null, int $flags = 0, int $of… 127 …ble $callback, string|array $subject, int $limit = -1, &$count = null, int $flags = 0): string|arr… 130 …rray $pattern, string|array $subject, int $limit = -1, &$count = null, int $flags = 0): string|arr… 136 function preg_split(string $pattern, string $subject, int $limit = -1, int $flags = 0): array|false… 142 function preg_grep(string $pattern, array $array, int $flags = 0): array|false {}
|
/php-src/ext/xmlreader/ |
H A D | php_xmlreader.stub.php | 190 …public static function open(string $uri, ?string $encoding = null, int $flags = 0) {} // TODO Retu… 192 public static function fromUri(string $uri, ?string $encoding = null, int $flags = 0): static {} 195 …public static function fromStream($stream, ?string $encoding = null, int $flags = 0, ?string $docu… 219 …public static function XML(string $source, ?string $encoding = null, int $flags = 0) {} // TODO Re… 221 …public static function fromString(string $source, ?string $encoding = null, int $flags = 0): stati…
|
/php-src/sapi/fpm/fpm/ |
H A D | fpm_unix.c | 56 static struct passwd *fpm_unix_get_passwd(struct fpm_worker_pool_s *wp, const char *name, int flags) in fpm_unix_get_passwd() 67 …ne bool fpm_unix_check_listen_address(struct fpm_worker_pool_s *wp, const char *address, int flags) in fpm_unix_check_listen_address() 94 static inline bool fpm_unix_check_passwd(struct fpm_worker_pool_s *wp, const char *name, int flags) in fpm_unix_check_passwd() 99 static struct group *fpm_unix_get_group(struct fpm_worker_pool_s *wp, const char *name, int flags) in fpm_unix_get_group() 110 static inline bool fpm_unix_check_group(struct fpm_worker_pool_s *wp, const char *name, int flags) in fpm_unix_check_group()
|
H A D | zlog.c | 140 int flags, char *buf, size_t buf_size, const char *fmt, va_list args) /* {{{ */ in zlog_external() 158 const char *function, int line, int flags, in zlog_buf_prefix() 198 void vzlog(const char *function, int line, int flags, const char *fmt, va_list args) /* {{{ */ in vzlog() 259 void zlog_ex(const char *function, int line, int flags, const char *fmt, ...) /* {{{ */ in zlog_ex() 272 void zlog_msg_ex(const char *function, int line, int flags, in zlog_msg_ex() 514 struct zlog_stream *stream, int flags, size_t capacity, int fd) /* {{{ */ in zlog_stream_init_internal() 537 void zlog_stream_init(struct zlog_stream *stream, int flags) /* {{{ */ in zlog_stream_init() 543 void zlog_stream_init_ex(struct zlog_stream *stream, int flags, int fd) /* {{{ */ in zlog_stream_init_ex()
|
/php-src/win32/ |
H A D | fnmatch.c | 58 PHPAPI int fnmatch(const char *pattern, const char *string, int flags) in fnmatch() 152 rangematch(const char *pattern, char test, int flags) in rangematch()
|
/php-src/ext/openssl/ |
H A D | php_openssl.h | 197 #define PHP_OPENSSL_BIO_MODE_R(flags) (((flags) & PKCS7_BINARY) ? "rb" : "r") argument 198 #define PHP_OPENSSL_BIO_MODE_W(flags) (((flags) & PKCS7_BINARY) ? "wb" : "w") argument 200 #define PHP_OPENSSL_BIO_MODE_R(flags) "r" argument 201 #define PHP_OPENSSL_BIO_MODE_W(flags) "w" argument
|
/php-src/ext/json/ |
H A D | json.stub.php | 155 function json_encode(mixed $value, int $flags = 0, int $depth = 512): string|false {} 157 function json_decode(string $json, ?bool $associative = null, int $depth = 512, int $flags = 0): mi… 159 function json_validate(string $json, int $depth = 512, int $flags = 0): bool {}
|
/php-src/ext/pdo_sqlite/ |
H A D | pdo_sqlite.stub.php | 51 int $flags = 0 64 int $flags = \Pdo\Sqlite::OPEN_READONLY
|
/php-src/ext/tokenizer/ |
H A D | tokenizer.stub.php | 11 function token_get_all(string $code, int $flags = 0): array {} 23 public static function tokenize(string $code, int $flags = 0): array {}
|
/php-src/sapi/fpm/fpm/events/ |
H A D | kqueue.c | 158 int flags = EV_ADD; in fpm_event_kqueue_add() local 183 int flags = EV_DELETE; in fpm_event_kqueue_remove() local
|
/php-src/ext/com_dotnet/ |
H A D | com_olechar.c | 32 DWORD flags = codepage == CP_UTF8 ? 0 : MB_PRECOMPOSED | MB_ERR_INVALID_CHARS; in php_com_string_to_olestring() local 103 DWORD flags = codepage == CP_UTF8 ? 0 : MB_PRECOMPOSED | MB_ERR_INVALID_CHARS; in php_com_string_to_bstr() local
|
/php-src/ext/intl/collator/ |
H A D | collator.stub.php | 96 public function sort(array &$array, int $flags = Collator::SORT_REGULAR): bool {} 108 public function asort(array &$array, int $flags = Collator::SORT_REGULAR): bool {}
|
/php-src/ext/sqlite3/ |
H A D | sqlite3.stub.php | 165 …public function __construct(string $filename, int $flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_C… 171 …public function open(string $filename, int $flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE, … 223 …public function createFunction(string $name, callable $callback, int $argCount = -1, int $flags = … 232 …(string $table, string $column, int $rowid, string $database = "main", int $flags = SQLITE3_OPEN_R…
|
/php-src/ext/sockets/ |
H A D | sendrecvmsg.c | 42 inline ssize_t recvmsg(int sockfd, struct msghdr *msg, int flags) in recvmsg() 62 inline ssize_t sendmsg(int sockfd, const struct msghdr *msg, int flags) in sendmsg() 182 zend_long flags = 0; in PHP_FUNCTION() local 223 zend_long flags = 0; in PHP_FUNCTION() local
|