Searched refs:pecalloc (Results 1 – 20 of 20) sorted by relevance
/PHP-7.4/ext/mysqlnd/ |
H A D | mysqlnd_statistics.c | 219 *stats = pecalloc(1, sizeof(MYSQLND_STATS), persistent); in mysqlnd_stats_init() 220 (*stats)->values = pecalloc(statistic_count, sizeof(uint64_t), persistent); in mysqlnd_stats_init() 221 (*stats)->triggers = pecalloc(statistic_count, sizeof(mysqlnd_stat_trigger), persistent); in mysqlnd_stats_init()
|
/PHP-7.4/ext/standard/ |
H A D | proc_open.c | 91 env.envarray = (char **) pecalloc(1, sizeof(char *), is_persistent); in _php_array_to_envp() 93 env.envp = (char *) pecalloc(4, 1, is_persistent); in _php_array_to_envp() 120 ep = env.envarray = (char **) pecalloc(cnt + 1, sizeof(char *), is_persistent); in _php_array_to_envp() 122 p = env.envp = (char *) pecalloc(sizeenv + 4, 1, is_persistent); in _php_array_to_envp()
|
H A D | filters.c | 1821 data = pecalloc(1, sizeof(php_consumed_filter_data), persistent); in consumed_filter_create() 2025 data = (php_chunked_filter_data *)pecalloc(1, sizeof(php_chunked_filter_data), persistent); in chunked_filter_create()
|
/PHP-7.4/main/streams/ |
H A D | filter.c | 132 *left = (php_stream_bucket*)pecalloc(1, sizeof(php_stream_bucket), in->is_persistent); in php_stream_bucket_split() 133 *right = (php_stream_bucket*)pecalloc(1, sizeof(php_stream_bucket), in->is_persistent); in php_stream_bucket_split()
|
/PHP-7.4/ext/zlib/ |
H A D | zlib_filter.c | 291 data = pecalloc(1, sizeof(php_zlib_filter_data), persistent); in php_zlib_filter_create()
|
/PHP-7.4/ext/bz2/ |
H A D | bz2_filter.c | 320 data = pecalloc(1, sizeof(php_bz2_filter_data), persistent); in php_bz2_filter_create()
|
/PHP-7.4/ext/pdo_dblib/ |
H A D | dblib_driver.c | 470 H = pecalloc(1, sizeof(*H), dbh->is_persistent); in pdo_dblib_handle_factory()
|
/PHP-7.4/ext/pdo_odbc/ |
H A D | odbc_driver.c | 397 H = pecalloc(1, sizeof(*H), dbh->is_persistent); in pdo_odbc_handle_factory()
|
/PHP-7.4/Zend/ |
H A D | zend_alloc.h | 204 #define pecalloc(nmemb, size, persistent) ((persistent)?__zend_calloc((nmemb), (size)):ecalloc((nme… macro
|
/PHP-7.4/ext/pdo_firebird/ |
H A D | firebird_driver.c | 645 pdo_firebird_db_handle *H = dbh->driver_data = pecalloc(1,sizeof(*H),dbh->is_persistent); in pdo_firebird_handle_factory()
|
/PHP-7.4/ext/pdo_sqlite/ |
H A D | sqlite_driver.c | 803 H = pecalloc(1, sizeof(pdo_sqlite_db_handle), dbh->is_persistent); in pdo_sqlite_handle_factory()
|
/PHP-7.4/ext/pdo_oci/ |
H A D | oci_driver.c | 688 H = pecalloc(1, sizeof(*H), dbh->is_persistent); in pdo_oci_handle_factory()
|
/PHP-7.4/ext/pdo_mysql/ |
H A D | mysql_driver.c | 625 H = pecalloc(1, sizeof(pdo_mysql_db_handle), dbh->is_persistent);
|
/PHP-7.4/ext/pdo_pgsql/ |
H A D | pgsql_driver.c | 1196 H = pecalloc(1, sizeof(pdo_pgsql_db_handle), dbh->is_persistent); in pdo_pgsql_handle_factory()
|
/PHP-7.4/ext/pdo/ |
H A D | pdo_dbh.c | 339 pdbh = pecalloc(1, sizeof(*pdbh), 1); in PHP_METHOD()
|
/PHP-7.4/ext/phar/ |
H A D | tar.c | 244 myphar = (phar_archive_data *) pecalloc(1, sizeof(phar_archive_data), PHAR_G(persist)); in phar_parse_tarfile()
|
H A D | zip.c | 250 mydata = pecalloc(1, sizeof(phar_archive_data), PHAR_G(persist)); in phar_parse_zipfile()
|
H A D | phar.c | 1025 mydata = pecalloc(1, sizeof(phar_archive_data), PHAR_G(persist)); in phar_parse_pharfile()
|
/PHP-7.4/ext/mbstring/ |
H A D | mbstring.c | 743 list = (const mbfl_encoding **)pecalloc(size, sizeof(mbfl_encoding*), persistent); in php_mb_parse_encoding_list() 828 list = (const mbfl_encoding **)pecalloc(size, sizeof(mbfl_encoding*), persistent); in php_mb_parse_encoding_array()
|
/PHP-7.4/ext/openssl/ |
H A D | openssl.c | 760 OPENSSL_G(errors) = pecalloc(1, sizeof(struct php_openssl_errors), 1); in php_openssl_store_errors()
|
Completed in 83 milliseconds