Home
last modified time | relevance | path

Searched refs:ce (Results 1 – 25 of 144) sorted by last modified time

123456

/PHP-5.5/sapi/thttpd/
H A Dthttpd_patch2331 + connecttab *c = connects, *ce = c + maxconnects;
2336 + while (c < ce) {
/PHP-5.5/sapi/apache_hooks/
H A Dphp_apache.c1394 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
1405 …INIT_OVERLOADED_CLASS_ENTRY(ce, "ApacheRequest", php_apache_request_class_functions, NULL, NULL, N… in PHP_MINIT_FUNCTION()
1406 apacherequest_class_entry = zend_register_internal_class_ex(&ce, NULL, NULL TSRMLS_CC); in PHP_MINIT_FUNCTION()
/PHP-5.5/main/streams/
H A Duserspace.c44 zend_class_entry *ce; member
289 object_init_ex(object, uwrap->ce); in user_stream_create_object()
300 if (uwrap->ce->constructor) { in user_stream_create_object()
306 fci.function_table = &uwrap->ce->function_table; in user_stream_create_object()
316 fcc.function_handler = uwrap->ce->constructor; in user_stream_create_object()
322 …ef(NULL TSRMLS_CC, E_WARNING, "Could not execute %s::%s()", uwrap->ce->name, uwrap->ce->constructo… in user_stream_create_object()
539 …if (zend_lookup_class(uwrap->classname, classname_len, (zend_class_entry***)&uwrap->ce TSRMLS_CC) … in PHP_FUNCTION()
540 uwrap->ce = *(zend_class_entry**)uwrap->ce; in PHP_FUNCTION()
/PHP-5.5/ext/zip/
H A Dphp_zip.c1124 intern->zo.ce = class_type; in php_zip_object_new()
2782 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
2793 INIT_CLASS_ENTRY(ce, "ZipArchive", zip_class_functions); in PHP_MINIT_FUNCTION()
2794 ce.create_object = php_zip_object_new; in PHP_MINIT_FUNCTION()
2795 zip_class_entry = zend_register_internal_class(&ce TSRMLS_CC); in PHP_MINIT_FUNCTION()
/PHP-5.5/ext/xsl/
H A Dxsltprocessor.c672 zend_class_entry *curce, **ce; in PHP_FUNCTION() local
681 found = zend_lookup_class(ret_class, ret_class_len, &ce TSRMLS_CC); in PHP_FUNCTION()
682 if ((found != SUCCESS) || !instanceof_function(*ce, curce TSRMLS_CC)) { in PHP_FUNCTION()
689 object_init_ex(return_value, *ce); in PHP_FUNCTION()
H A Dphp_xsl.c157 zend_class_entry ce; in PHP_INI_END() local
162 …REGISTER_XSL_CLASS(ce, "XSLTProcessor", NULL, php_xsl_xsltprocessor_class_functions, xsl_xsltproce… in PHP_INI_END()
231 zend_class_entry *ce; in php_xsl_create_object() local
258 ce = xsl_xsltprocessor_class_entry; in php_xsl_create_object()
261 object_init_ex(wrapper, ce); in php_xsl_create_object()
H A Dphp_xsl.h79 #define REGISTER_XSL_CLASS(ce, name, parent_ce, funcs, entry) \ argument
80 INIT_CLASS_ENTRY(ce, name, funcs); \
81 ce.create_object = xsl_objects_new; \
82 entry = zend_register_internal_class_ex(&ce, parent_ce, NULL TSRMLS_CC);
/PHP-5.5/ext/xmlwriter/
H A Dphp_xmlwriter.c1954 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
1962 INIT_CLASS_ENTRY(ce, "XMLWriter", xmlwriter_class_functions); in PHP_MINIT_FUNCTION()
1963 ce.create_object = xmlwriter_object_new; in PHP_MINIT_FUNCTION()
1964 xmlwriter_class_entry_ce = zend_register_internal_class(&ce TSRMLS_CC); in PHP_MINIT_FUNCTION()
/PHP-5.5/ext/xmlreader/
H A Dphp_xmlreader.c1315 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
1323 INIT_CLASS_ENTRY(ce, "XMLReader", xmlreader_functions); in PHP_MINIT_FUNCTION()
1324 ce.create_object = xmlreader_objects_new; in PHP_MINIT_FUNCTION()
1325 xmlreader_class_entry = zend_register_internal_class(&ce TSRMLS_CC); in PHP_MINIT_FUNCTION()
/PHP-5.5/ext/tidy/
H A Dtidy.c92 zend_class_entry ce; \
93 INIT_CLASS_ENTRY(ce, # classname, tidy_funcs_ ## name); \
94 ce.create_object = tidy_object_new_ ## name; \
95 tidy_ce_ ## name = zend_register_internal_class_ex(&ce, parent, NULL TSRMLS_CC); \
/PHP-5.5/ext/standard/
H A Dvar_unserializer.c393 if (ce->unserialize == NULL) { in object_custom()
395 object_init_ex(*rval, ce); in object_custom()
417 …if (ce->serialize == NULL || ce->unserialize == zend_user_unserialize || (ZEND_INTERNAL_CLASS != c… in object_common1()
418 object_init_ex(*rval, ce); in object_common1()
637 zend_class_entry *ce; in php_var_unserialize() local
692 ce = *pce; in php_var_unserialize()
705 ce = PHP_IC_ENTRY; in php_var_unserialize()
726 ce = PHP_IC_ENTRY; in php_var_unserialize()
744 ce = *pce; in php_var_unserialize()
748 ce = PHP_IC_ENTRY; in php_var_unserialize()
[all …]
H A Dvar_unserializer.re397 if (ce->unserialize == NULL) {
399 object_init_ex(*rval, ce);
421 …if (ce->serialize == NULL || ce->unserialize == zend_user_unserialize || (ZEND_INTERNAL_CLASS != c…
422 object_init_ex(*rval, ce);
696 zend_class_entry *ce;
751 ce = *pce;
764 ce = PHP_IC_ENTRY;
785 ce = PHP_IC_ENTRY;
803 ce = *pce;
807 ce = PHP_IC_ENTRY;
[all …]
H A Dtype.c225 zend_class_entry *ce; in php_is_type() local
230 ce = Z_OBJCE_PP(arg); in php_is_type()
231 if (!strcmp(ce->name, INCOMPLETE_CLASS)) { in php_is_type()
H A Duser_filters.c33 zend_class_entry *ce; member
337 if (fdat->ce == NULL) { in user_filter_factory_create()
339 (zend_class_entry ***)&fdat->ce TSRMLS_CC)) { in user_filter_factory_create()
345 fdat->ce = *(zend_class_entry**)fdat->ce; in user_filter_factory_create()
356 object_init_ex(obj, fdat->ce); in user_filter_factory_create()
H A Dvar.c671 zend_class_entry *ce; in php_var_serialize_class() local
672 ce = zend_get_class_entry(struc TSRMLS_CC); in php_var_serialize_class()
673 if (ce) { in php_var_serialize_class()
678 …operty_name(&priv_name, &prop_name_length, ce->name, ce->name_length, Z_STRVAL_PP(name), Z_STRLEN_… in php_var_serialize_class()
681 pefree(priv_name, ce->type & ZEND_INTERNAL_CLASS); in php_var_serialize_class()
685 pefree(priv_name, ce->type & ZEND_INTERNAL_CLASS); in php_var_serialize_class()
693 pefree(prot_name, ce->type & ZEND_INTERNAL_CLASS); in php_var_serialize_class()
768 zend_class_entry *ce = NULL; in php_var_serialize_intern() local
771 ce = Z_OBJCE_P(struc); in php_var_serialize_intern()
774 if (ce && ce->serialize != NULL) { in php_var_serialize_intern()
[all …]
/PHP-5.5/ext/sybase_ct/
H A Dphp_sybase_ct.c1844 zend_class_entry *ce = NULL; in PHP_FUNCTION() local
1853 ce = ZEND_STANDARD_CLASS_DEF_PTR; in PHP_FUNCTION()
1857 ce = Z_OBJCE_P(object); in PHP_FUNCTION()
1874 ce = *pce; in PHP_FUNCTION()
1884 object_and_properties_init(return_value, ce, Z_ARRVAL_P(return_value)); in PHP_FUNCTION()
/PHP-5.5/ext/standard/tests/strings/
H A Dstrtolower-win32.phpt269 ce => ee
H A Dstrtoupper1-win32.phpt269 ce => ce
301 ee => ce
H A Dstrrchr_variation5.phpt42 ce"
44 ce"
48 ce"
50 ce"
56 ce"
H A Dhtml_entity_decode_iso8859-15.phpt255 LATIN CAPITAL LETTER I WITH CIRCUMFLEX: &#xCE; => ce
256 &#xCE; => ce
H A Dhtml_entity_decode_macroman.phpt390 LATIN CAPITAL LIGATURE OE: &#x152; => ce
H A Dhtml_entity_decode_win1251.phpt387 CYRILLIC CAPITAL LETTER O: &#x41E; => ce
H A Dhtml_entity_decode_cp866.phpt383 BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL: &#x256C; => ce
H A Dhtml_entity_decode_iso8859-5.phpt255 CYRILLIC CAPITAL LETTER YU: &#x42E; => ce
H A Dhtml_entity_decode_koi8-r.phpt383 CYRILLIC SMALL LETTER EN: &#x43D; => ce

Completed in 77 milliseconds

123456