Lines Matching refs:name_length

177 		class_container.name_length = _len;						\
305 ZEND_API int zend_declare_property(zend_class_entry *ce, const char *name, int name_length, zval *p…
306 ZEND_API int zend_declare_property_ex(zend_class_entry *ce, const char *name, int name_length, zval…
307 ZEND_API int zend_declare_property_null(zend_class_entry *ce, const char *name, int name_length, in…
308 ZEND_API int zend_declare_property_bool(zend_class_entry *ce, const char *name, int name_length, lo…
309 ZEND_API int zend_declare_property_long(zend_class_entry *ce, const char *name, int name_length, lo…
310 ZEND_API int zend_declare_property_double(zend_class_entry *ce, const char *name, int name_length, …
311 ZEND_API int zend_declare_property_string(zend_class_entry *ce, const char *name, int name_length, …
312 ZEND_API int zend_declare_property_stringl(zend_class_entry *ce, const char *name, int name_length,…
314 ZEND_API int zend_declare_class_constant(zend_class_entry *ce, const char *name, size_t name_length
315 …_declare_class_constant_null(zend_class_entry *ce, const char *name, size_t name_length TSRMLS_DC);
316 …are_class_constant_long(zend_class_entry *ce, const char *name, size_t name_length, long value TSR…
317 …are_class_constant_bool(zend_class_entry *ce, const char *name, size_t name_length, zend_bool valu…
318 …e_class_constant_double(zend_class_entry *ce, const char *name, size_t name_length, double value T…
319 …_class_constant_stringl(zend_class_entry *ce, const char *name, size_t name_length, const char *va…
320 …e_class_constant_string(zend_class_entry *ce, const char *name, size_t name_length, const char *va…
323 …_property(zend_class_entry *scope, zval *object, const char *name, int name_length, zval *value TS…
324 …_property_null(zend_class_entry *scope, zval *object, const char *name, int name_length TSRMLS_DC);
325 …erty_bool(zend_class_entry *scope, zval *object, const char *name, int name_length, long value TSR…
326 …erty_long(zend_class_entry *scope, zval *object, const char *name, int name_length, long value TSR…
327 …ty_double(zend_class_entry *scope, zval *object, const char *name, int name_length, double value T…
328 …ty_string(zend_class_entry *scope, zval *object, const char *name, int name_length, const char *va…
329 …y_stringl(zend_class_entry *scope, zval *object, const char *name, int name_length, const char *va…
331 ZEND_API int zend_update_static_property(zend_class_entry *scope, const char *name, int name_length
332 …_update_static_property_null(zend_class_entry *scope, const char *name, int name_length TSRMLS_DC);
333 …te_static_property_bool(zend_class_entry *scope, const char *name, int name_length, long value TSR…
334 …te_static_property_long(zend_class_entry *scope, const char *name, int name_length, long value TSR…
335 …_static_property_double(zend_class_entry *scope, const char *name, int name_length, double value T…
336 …_static_property_string(zend_class_entry *scope, const char *name, int name_length, const char *va…
337 …static_property_stringl(zend_class_entry *scope, const char *name, int name_length, const char *va…
339 …_property(zend_class_entry *scope, zval *object, const char *name, int name_length, zend_bool sile…
341 ZEND_API zval *zend_read_static_property(zend_class_entry *scope, const char *name, int name_length
512 ZEND_API int zend_set_hash_symbol(zval *symbol, const char *name, int name_length, zend_bool is_ref…
685 #define ZEND_SET_SYMBOL_WITH_LENGTH(symtable, name, name_length, var, _refcount, _is_ref) \ argument
689 if (zend_hash_find(symtable, (name), (name_length), (void **) &orig_var)==SUCCESS \
705 zend_hash_update(symtable, (name), (name_length), &(var), sizeof(zval *), NULL); \
713 #define ZEND_SET_GLOBAL_VAR_WITH_LENGTH(name, name_length, var, _refcount, _is_ref) \ argument
714 ZEND_SET_SYMBOL_WITH_LENGTH(&EG(symbol_table), name, name_length, var, _refcount, _is_ref)