Home
last modified time | relevance | path

Searched refs:emalloc (Results 176 – 200 of 211) sorted by relevance

123456789

/PHP-5.4/ext/openssl/
H A Dxp_ssl.c634 clisockdata = emalloc(sizeof(*clisockdata)); in php_openssl_tcp_sockop_accept()
/PHP-5.4/ext/standard/
H A Ddns.c538 tp = emalloc(dlen + 1); in php_parserr()
H A Dftp_fopen_wrapper.c759 dirsdata = emalloc(sizeof *dirsdata); in php_stream_ftp_opendir()
H A Dbasic_functions.c3997 ptr = emalloc(size); in PHP_FUNCTION()
5695 BG(user_tick_functions) = (zend_llist *) emalloc(sizeof(zend_llist));
5731 tick_fe.arguments = (zval **) emalloc(sizeof(zval *));
5981 string = (char *) emalloc(str_len + ZEND_MMAP_AHEAD);
/PHP-5.4/Zend/
H A Dzend_execute_API.c714 params_array = (zval ***) emalloc(sizeof(zval **)*param_count); in call_user_function()
1172 Z_STRVAL(pv) = emalloc(Z_STRLEN(pv) + 1); in zend_eval_stringl()
H A Dzend_language_scanner.l553 zend_op_array *op_array = (zend_op_array *) emalloc(sizeof(zend_op_array)); in END_EXTERN_C()
724 zend_op_array *op_array = (zend_op_array *) emalloc(sizeof(zend_op_array)); in compile_string()
H A Dzend_object_handlers.c988 zend_internal_function *call_user_call = emalloc(sizeof(zend_internal_function)); in zend_get_user_call_function()
1131 zend_internal_function *callstatic_user_call = emalloc(sizeof(zend_internal_function)); in zend_get_user_callstatic_function()
H A Dzend_compile.c2097 Z_STRVAL(tmp.u.constant) = (char *) emalloc(Z_STRLEN(tmp.u.constant)+1); in zend_resolve_non_class_name()
3053 offset = buf = (char *)emalloc(length * sizeof(char)); in zend_get_function_declaration()
3674 char *lowercase_name = emalloc(ce->name_length + 1); in zend_add_magic_methods()
4275 zend_trait_method_reference *method_ref = emalloc(sizeof(zend_trait_method_reference)); in zend_prepare_reference()
4313 trait_alias = emalloc(sizeof(zend_trait_alias)); in zend_add_trait_alias()
4331 zend_trait_precedence *trait_precedence = emalloc(sizeof(zend_trait_precedence)); in zend_add_trait_precedence()
4824 new_class_entry = emalloc(sizeof(zend_class_entry)); in zend_do_begin_class_declaration()
5713 void** list = emalloc(sizeof(void*) * 2); in zend_init_list()
6787 CG(current_import) = emalloc(sizeof(HashTable)); in zend_do_use()
6822 char *c_ns_name = emalloc(Z_STRLEN_P(CG(current_namespace)) + 1 + Z_STRLEN_P(name) + 1); in zend_do_use()
/PHP-5.4/sapi/fpm/fpm/
H A Dfastcgi.c473 tmp = (tmp == buf ? emalloc(buf_size): erealloc(tmp, buf_size)); in fcgi_get_params()
/PHP-5.4/ext/reflection/
H A Dphp_reflection.c123 str->string = (char *) emalloc(1024); in string_init()
261 copy_fptr = emalloc(sizeof(zend_function)); in _copy_function()
1251 reference = (parameter_reference*) emalloc(sizeof(parameter_reference)); in reflection_parameter_factory()
1347 reference = (property_reference*) emalloc(sizeof(property_reference)); in reflection_property_factory()
2295 ref = (parameter_reference*) emalloc(sizeof(parameter_reference)); in ZEND_METHOD()
4827 reference = (property_reference*) emalloc(sizeof(property_reference)); in ZEND_METHOD()
/PHP-5.4/ext/xsl/
H A Dxsltprocessor.c529 intern->doc = emalloc(sizeof(php_libxml_node_object)); in php_xsl_apply_stylesheet()
/PHP-5.4/ext/spl/
H A Dspl_array.c175 intern = emalloc(sizeof(spl_array_object)); in spl_array_object_new_ex()
1168 iterator = emalloc(sizeof(spl_array_it)); in spl_array_get_iterator()
H A Dphp_spl.c769 hash = emalloc(33); in PHP_FUNCTION()
/PHP-5.4/ext/iconv/
H A Diconv.c500 out_buffer = (char *) emalloc(out_size + 1); in php_iconv_string()
565 out_buf = (char *) emalloc(bsz+1); in php_iconv_string()
/PHP-5.4/ext/json/
H A DJSON_parser.c244 JSON_parser jp = (JSON_parser)emalloc(sizeof(struct JSON_parser_struct)); in new_JSON_parser()
/PHP-5.4/ext/pdo_pgsql/
H A Dpgsql_driver.c323 *quoted = emalloc(*quotedlen + 1); in pgsql_handle_quoter()
/PHP-5.4/ext/xmlreader/
H A Dphp_xmlreader.c396 intern = emalloc(sizeof(xmlreader_object)); in xmlreader_objects_new()
/PHP-5.4/main/streams/
H A Dplain_wrapper.c1456 pathbuf = (char *) emalloc(exec_fname_length + path_length +1 +1); in _php_stream_fopen_with_path()
/PHP-5.4/ext/xmlrpc/
H A Dxmlrpc-epi-php.c871 xmlrpc_server_data *server = emalloc(sizeof(xmlrpc_server_data)); in PHP_FUNCTION()
/PHP-5.4/ext/curl/
H A Dinterface.c1437 *ch = emalloc(sizeof(php_curl)); in alloc_curl_handle()
1456 (*ch)->to_free->slist = emalloc(sizeof(HashTable)); in alloc_curl_handle()
/PHP-5.4/ext/gd/
H A Dgd.c1519 font = (gdFontPtr) emalloc(sizeof(gdFont)); in PHP_FUNCTION()
1568 font->data = emalloc(body_size); in PHP_FUNCTION()
4097 font = (int *) emalloc(sizeof(int)); in PHP_FUNCTION()
/PHP-5.4/ext/mbstring/
H A Dmbstring.c607 return emalloc(sz); in ZEND_GET_MODULE()
1068 char *result = emalloc(len + 2); in php_mb_rfc1867_substring_conf()
3835 tmp_ptr = emalloc((str)->a + 1); \
/PHP-5.4/ext/pcre/
H A Dphp_pcre.c1143 new_buf = emalloc(alloc_len); in php_pcre_replace_impl()
/PHP-5.4/ext/phar/
H A Dzip.c429 sig = (char *) emalloc(entry.uncompressed_filesize); in phar_parse_zipfile()
/PHP-5.4/ext/mysql/
H A Dphp_mysql.c986 mysql = (php_mysql_conn *) emalloc(sizeof(php_mysql_conn));

Completed in 203 milliseconds

123456789