Searched refs:pecalloc (Results 1 - 17 of 17) sorted by relevance
| /PHP_5_3/ext/bz2/ |
| H A D | bz2_filter.c | 318 data = pecalloc(1, sizeof(php_bz2_filter_data), persistent);
|
| /PHP_5_3/ext/mbstring/ |
| H A D | mbstring.c | 699 list = (enum mbfl_no_encoding *)pecalloc(size, sizeof(int), persistent); 807 list = (enum mbfl_no_encoding *)pecalloc(size, sizeof(int), persistent);
|
| /PHP_5_3/ext/pdo/ |
| H A D | pdo_dbh.c | 317 pdbh = pecalloc(1, sizeof(*pdbh), 1);
|
| /PHP_5_3/ext/pdo_firebird/ |
| H A D | firebird_driver.c | 657 pdo_firebird_db_handle *H = dbh->driver_data = pecalloc(1,sizeof(*H),dbh->is_persistent);
|
| /PHP_5_3/ext/pdo_odbc/ |
| H A D | odbc_driver.c | 398 H = pecalloc(1, sizeof(*H), dbh->is_persistent);
|
| /PHP_5_3/ext/pdo_pgsql/ |
| H A D | pgsql_driver.c | 1034 H = pecalloc(1, sizeof(pdo_pgsql_db_handle), dbh->is_persistent);
|
| /PHP_5_3/ext/pdo_sqlite/ |
| H A D | sqlite_driver.c | 822 H = pecalloc(1, sizeof(pdo_sqlite_db_handle), dbh->is_persistent);
|
| /PHP_5_3/ext/sqlite/ |
| H A D | pdo_sqlite2.c | 578 H = pecalloc(1, sizeof(pdo_sqlite2_db_handle), dbh->is_persistent);
|
| /PHP_5_3/ext/standard/ |
| H A D | filters.c | 1877 data = pecalloc(1, sizeof(php_consumed_filter_data), persistent); 2085 data = (php_chunked_filter_data *)pecalloc(1, sizeof(php_chunked_filter_data), persistent);
|
| H A D | proc_open.c | 100 env.envarray = (char **) pecalloc(1, sizeof(char *), is_persistent); 102 env.envp = (char *) pecalloc(4, 1, is_persistent); 135 ep = env.envarray = (char **) pecalloc(cnt + 1, sizeof(char *), is_persistent); 137 p = env.envp = (char *) pecalloc(sizeenv + 4, 1, is_persistent);
|
| /PHP_5_3/ext/zlib/ |
| H A D | zlib_filter.c | 295 data = pecalloc(1, sizeof(php_zlib_filter_data), persistent);
|
| /PHP_5_3/main/streams/ |
| H A D | filter.c | 143 *left = (php_stream_bucket*)pecalloc(1, sizeof(php_stream_bucket), in->is_persistent); 144 *right = (php_stream_bucket*)pecalloc(1, sizeof(php_stream_bucket), in->is_persistent);
|
| /PHP_5_3/Zend/ |
| H A D | zend_alloc.h | 125 #define pecalloc(nmemb, size, persistent) ((persistent)?__zend_calloc((nmemb), (size)):ecalloc((nmemb), (size))) macro
|
| /PHP_5_3/ext/mysqlnd/ |
| H A D | mysqlnd_debug.c | 932 ret = pecalloc(nmemb, REAL_SIZE(size), persistent); 1286 return pecalloc(nmemb, size, persistent);
|
| /PHP_5_3/ext/phar/ |
| H A D | phar.c | 1030 mydata = pecalloc(1, sizeof(phar_archive_data), PHAR_G(persist));
|
| H A D | tar.c | 225 myphar = (phar_archive_data *) pecalloc(1, sizeof(phar_archive_data), PHAR_G(persist));
|
| H A D | zip.c | 221 mydata = pecalloc(1, sizeof(phar_archive_data), PHAR_G(persist));
|
Completed in 40 milliseconds