/PHP-8.3/ext/mysqlnd/ |
H A D | mysqlnd_connection.h | 28 #define UPSERT_STATUS_RESET(status) (status)->m->reset((status)) argument 30 #define UPSERT_STATUS_GET_SERVER_STATUS(status) (status)->server_status argument 31 #define UPSERT_STATUS_SET_SERVER_STATUS(status, server_st) (status)->server_status = (server_st) argument 33 #define UPSERT_STATUS_GET_WARNINGS(status) (status)->warning_count argument 34 #define UPSERT_STATUS_SET_WARNINGS(status, warnings) (status)->warning_count = (warnings) argument 36 #define UPSERT_STATUS_GET_AFFECTED_ROWS(status) (status)->affected_rows argument 37 #define UPSERT_STATUS_SET_AFFECTED_ROWS(status, rows) (status)->affected_rows = (rows) argument 38 #define UPSERT_STATUS_SET_AFFECTED_ROWS_TO_ERROR(status) (status)->m->set_affected_rows_to_error((s… argument 40 #define UPSERT_STATUS_GET_LAST_INSERT_ID(status) (status)->last_insert_id argument 41 #define UPSERT_STATUS_SET_LAST_INSERT_ID(status, id) (status)->last_insert_id = (id) argument
|
/PHP-8.3/ext/random/ |
H A D | engine_combinedlcg.c | 35 static void seed(php_random_status *status, uint64_t seed) in seed() 43 static uint64_t generate(php_random_status *status) in generate() 59 static zend_long range(php_random_status *status, zend_long min, zend_long max) in range() 64 static bool serialize(php_random_status *status, HashTable *data) in serialize() 77 static bool unserialize(php_random_status *status, HashTable *data) in unserialize()
|
H A D | engine_pcgoneseq128xslrr64.c | 36 static inline void seed128(php_random_status *status, php_random_uint128_t seed) in seed128() 45 static void seed(php_random_status *status, uint64_t seed) in seed() 50 static uint64_t generate(php_random_status *status) in generate() 58 static zend_long range(php_random_status *status, zend_long min, zend_long max) in range() 63 static bool serialize(php_random_status *status, HashTable *data) in serialize() 80 static bool unserialize(php_random_status *status, HashTable *data) in unserialize()
|
H A D | engine_xoshiro256starstar.c | 84 static inline void seed256(php_random_status *status, uint64_t s0, uint64_t s1, uint64_t s2, uint64… in seed256() 94 static void seed(php_random_status *status, uint64_t seed) in seed() 106 static uint64_t generate(php_random_status *status) in generate() 111 static zend_long range(php_random_status *status, zend_long min, zend_long max) in range() 116 static bool serialize(php_random_status *status, HashTable *data) in serialize() 129 static bool unserialize(php_random_status *status, HashTable *data) in unserialize()
|
H A D | random.c | 76 PHPAPI uint32_t php_random_range32(const php_random_algo *algo, php_random_status *status, uint32_t… in php_random_range32() 132 PHPAPI uint64_t php_random_range64(const php_random_algo *algo, php_random_status *status, uint64_t… in php_random_range64() 230 php_random_status *status = pecalloc(1, sizeof(php_random_status), persistent); in php_random_status_alloc() local 246 PHPAPI void php_random_status_free(php_random_status *status, const bool persistent) in php_random_status_free() 293 PHPAPI zend_long php_random_range(const php_random_algo *algo, php_random_status *status, zend_long… in php_random_range() 315 php_random_status *status = RANDOM_G(mt19937); in php_random_default_status() local 397 php_random_status *status = RANDOM_G(combined_lcg); local 434 php_random_status *status = php_random_default_status(); local 481 php_random_status *status = RANDOM_G(mt19937); local
|
H A D | engine_secure.c | 27 static uint64_t generate(php_random_status *status) in generate() 36 static zend_long range(php_random_status *status, zend_long min, zend_long max) in range()
|
H A D | engine_mt19937.c | 141 static void seed(php_random_status *status, uint64_t seed) in seed() 146 static uint64_t generate(php_random_status *status) in generate() 163 static zend_long range(php_random_status *status, zend_long min, zend_long max) in range() 168 static bool serialize(php_random_status *status, HashTable *data) in serialize() 185 static bool unserialize(php_random_status *status, HashTable *data) in unserialize()
|
H A D | engine_user.c | 24 static uint64_t generate(php_random_status *status) in generate() 61 static zend_long range(php_random_status *status, zend_long min, zend_long max) in range()
|
H A D | gammasection.c | 74 …hp_random_gammasection_closed_open(const php_random_algo *algo, php_random_status *status, double … in php_random_gammasection_closed_open() 102 …_random_gammasection_closed_closed(const php_random_algo *algo, php_random_status *status, double … in php_random_gammasection_closed_closed() 134 …hp_random_gammasection_open_closed(const php_random_algo *algo, php_random_status *status, double … in php_random_gammasection_open_closed() 162 … php_random_gammasection_open_open(const php_random_algo *algo, php_random_status *status, double … in php_random_gammasection_open_open()
|
/PHP-8.3/ext/intl/collator/ |
H A D | collator_convert.c | 37 UErrorCode* status ) in collator_convert_hash_item_from_utf8_to_utf16() 78 UErrorCode* status ) in collator_convert_hash_item_from_utf16_to_utf8() 115 void collator_convert_hash_from_utf8_to_utf16( HashTable* hash, UErrorCode* status ) in collator_convert_hash_from_utf8_to_utf16() 134 void collator_convert_hash_from_utf16_to_utf8( HashTable* hash, UErrorCode* status ) in collator_convert_hash_from_utf16_to_utf8() 162 UErrorCode status = U_ZERO_ERROR; in collator_convert_zstr_utf16_to_utf8() local 181 UErrorCode status = U_ZERO_ERROR; in collator_convert_zstr_utf8_to_utf16() local 205 UErrorCode status = U_ZERO_ERROR; in collator_convert_object_to_string() local
|
/PHP-8.3/ext/intl/grapheme/ |
H A D | grapheme_util.c | 89 #define STRPOS_CHECK_STATUS(status, error) \ argument 105 UErrorCode status; in grapheme_strpos_utf16() local 234 UErrorCode status = U_ZERO_ERROR; in grapheme_split_string() local 273 UErrorCode status = U_ZERO_ERROR; in grapheme_count_graphemes() local 373 UBreakIterator* grapheme_get_break_iterator(void *stack_buffer, UErrorCode *status ) in grapheme_get_break_iterator()
|
/PHP-8.3/ext/pcntl/ |
H A D | pcntl.stub.php | 914 function pcntl_waitpid(int $process_id, &$status, int $flags = 0, &$resource_usage = []): int {} 920 function pcntl_wait(&$status, int $flags = 0, &$resource_usage = []): int {} 945 function pcntl_wifexited(int $status): bool {} 947 function pcntl_wifstopped(int $status): bool {} 950 function pcntl_wifcontinued(int $status): bool {} 953 function pcntl_wifsignaled(int $status): bool {} 955 function pcntl_wexitstatus(int $status): int|false {} 957 function pcntl_wtermsig(int $status): int|false {} 959 function pcntl_wstopsig(int $status): int|false {}
|
/PHP-8.3/ext/intl/calendar/ |
H A D | gregoriancalendar_methods.cpp | 52 static bool set_gregorian_calendar_time_zone(GregorianCalendar *gcal, UErrorCode status) in set_gregorian_calendar_time_zone() 90 UErrorCode status = U_ZERO_ERROR; in _php_intlgregcal_constructor_body() local 226 UErrorCode status = U_ZERO_ERROR; in PHP_METHOD() local 261 UErrorCode status = U_ZERO_ERROR; in PHP_METHOD() local
|
/PHP-8.3/ext/intl/ |
H A D | intl_convertcpp.cpp | 24 int intl_stringFromChar(UnicodeString &ret, char *str, size_t str_len, UErrorCode *status) in intl_stringFromChar() 55 zend_string* intl_charFromString(const UnicodeString &from, UErrorCode *status) in intl_charFromString()
|
H A D | intl_convert.c | 51 UErrorCode* status ) in intl_convert_utf8_to_utf16() 118 UErrorCode* status ) in intl_convert_utf16_to_utf8()
|
/PHP-8.3/ext/intl/timezone/ |
H A D | timezone_methods.cpp | 59 UErrorCode status = UErrorCode(); in PHP_FUNCTION() local 207 UErrorCode status = UErrorCode(); in PHP_FUNCTION() local 275 UErrorCode status = UErrorCode(); in PHP_FUNCTION() local 312 UErrorCode status = UErrorCode(); in PHP_FUNCTION() local 334 UErrorCode status = UErrorCode(); in PHP_FUNCTION() local 357 UErrorCode status = UErrorCode(); in PHP_FUNCTION() local
|
/PHP-8.3/ext/intl/normalizer/ |
H A D | normalizer_normalize.c | 90 UErrorCode status = U_ZERO_ERROR; in PHP_FUNCTION() local 228 UErrorCode status = U_ZERO_ERROR; in PHP_FUNCTION() local 310 UErrorCode status = U_ZERO_ERROR; in PHP_FUNCTION() local
|
/PHP-8.3/ext/bz2/ |
H A D | bz2_filter.c | 39 enum strm_status status; /* Decompress option */ member 76 int status; in php_bz2_decompress_filter() local 215 int status; in php_bz2_compress_filter() local 316 int status = BZ_OK; in php_bz2_filter_create() local
|
/PHP-8.3/ext/intl/breakiterator/ |
H A D | codepointiterator_internal.cpp | 127 void CodePointBreakIterator::setText(UText *text, UErrorCode &status) in setText() 234 void *stackBuffer, int32_t &bufferSize, UErrorCode &status) in createBufferClone() 273 CodePointBreakIterator &CodePointBreakIterator::refreshInputText(UText *input, UErrorCode &status) in refreshInputText()
|
/PHP-8.3/ext/standard/ |
H A D | dns_win32.c | 48 DNS_STATUS status; /* Return value of DnsQuery_A() function */ in PHP_FUNCTION() local 102 DNS_STATUS status; /* Return value of DnsQuery_A() function */ in PHP_FUNCTION() local 402 DNS_STATUS status; /* Return value of DnsQuery_A() function */ in PHP_FUNCTION() local
|
/PHP-8.3/ext/zlib/ |
H A D | zlib_filter.c | 62 int status; in php_zlib_inflate_filter() local 180 int status; in php_zlib_deflate_filter() local 287 int status; in php_zlib_filter_create() local
|
H A D | zlib.c | 386 int status; in php_zlib_encode() local 423 int status, round = 0; in php_zlib_inflate_rounds() local 472 int status = Z_DATA_ERROR; in php_zlib_decode() local 941 int status; in PHP_FUNCTION() local 1178 int status; in PHP_FUNCTION() local 1281 int status = php_output_get_status(); in ZEND_GET_MODULE() local
|
/PHP-8.3/Zend/ |
H A D | zend_inheritance.c | 605 inheritance_status status; in zend_is_intersection_subtype_of_type() local 678 inheritance_status status = zend_is_intersection_subtype_of_type( in zend_perform_covariant_type_check() local 694 inheritance_status status; in zend_perform_covariant_type_check() local 756 inheritance_status status, local_status; in zend_do_perform_implementation_check() local 1023 inheritance_status status) { in emit_incompatible_method_error() 1069 inheritance_status status = in perform_delayable_implementation_check() local 2792 inheritance_status status = zend_do_perform_implementation_check( in check_variance_obligation() local 2802 inheritance_status status = in check_variance_obligation() local 2809 inheritance_status status = in check_variance_obligation() local 3280 inheritance_status status = in zend_can_early_bind() local [all …]
|
/PHP-8.3/ext/filter/ |
H A D | callback_filter.c | 23 int status; in php_filter_callback() local
|
/PHP-8.3/ext/mbstring/libmbfl/filters/ |
H A D | mbfilter_base64.c | 122 int status, cache, len; in mbfl_filt_conv_base64enc_flush() local 208 int status, cache; in mbfl_filt_conv_base64dec_flush() local
|