Lines Matching refs:name_length

179 		class_container.name_length = _len;						\
308 ZEND_API int zend_declare_property(zend_class_entry *ce, const char *name, int name_length, zval *p…
309 ZEND_API int zend_declare_property_ex(zend_class_entry *ce, const char *name, int name_length, zval…
310 ZEND_API int zend_declare_property_null(zend_class_entry *ce, const char *name, int name_length, in…
311 ZEND_API int zend_declare_property_bool(zend_class_entry *ce, const char *name, int name_length, lo…
312 ZEND_API int zend_declare_property_long(zend_class_entry *ce, const char *name, int name_length, lo…
313 ZEND_API int zend_declare_property_double(zend_class_entry *ce, const char *name, int name_length, …
314 ZEND_API int zend_declare_property_string(zend_class_entry *ce, const char *name, int name_length, …
315 ZEND_API int zend_declare_property_stringl(zend_class_entry *ce, const char *name, int name_length,…
317 ZEND_API int zend_declare_class_constant(zend_class_entry *ce, const char *name, size_t name_length
318 …_declare_class_constant_null(zend_class_entry *ce, const char *name, size_t name_length TSRMLS_DC);
319 …are_class_constant_long(zend_class_entry *ce, const char *name, size_t name_length, long value TSR…
320 …are_class_constant_bool(zend_class_entry *ce, const char *name, size_t name_length, zend_bool valu…
321 …e_class_constant_double(zend_class_entry *ce, const char *name, size_t name_length, double value T…
322 …_class_constant_stringl(zend_class_entry *ce, const char *name, size_t name_length, const char *va…
323 …e_class_constant_string(zend_class_entry *ce, const char *name, size_t name_length, const char *va…
326 …_property(zend_class_entry *scope, zval *object, const char *name, int name_length, zval *value TS…
327 …_property_null(zend_class_entry *scope, zval *object, const char *name, int name_length TSRMLS_DC);
328 …erty_bool(zend_class_entry *scope, zval *object, const char *name, int name_length, long value TSR…
329 …erty_long(zend_class_entry *scope, zval *object, const char *name, int name_length, long value TSR…
330 …ty_double(zend_class_entry *scope, zval *object, const char *name, int name_length, double value T…
331 …ty_string(zend_class_entry *scope, zval *object, const char *name, int name_length, const char *va…
332 …y_stringl(zend_class_entry *scope, zval *object, const char *name, int name_length, const char *va…
333 …unset_property(zend_class_entry *scope, zval *object, const char *name, int name_length TSRMLS_DC);
335 ZEND_API int zend_update_static_property(zend_class_entry *scope, const char *name, int name_length
336 …_update_static_property_null(zend_class_entry *scope, const char *name, int name_length TSRMLS_DC);
337 …te_static_property_bool(zend_class_entry *scope, const char *name, int name_length, long value TSR…
338 …te_static_property_long(zend_class_entry *scope, const char *name, int name_length, long value TSR…
339 …_static_property_double(zend_class_entry *scope, const char *name, int name_length, double value T…
340 …_static_property_string(zend_class_entry *scope, const char *name, int name_length, const char *va…
341 …static_property_stringl(zend_class_entry *scope, const char *name, int name_length, const char *va…
343 …_property(zend_class_entry *scope, zval *object, const char *name, int name_length, zend_bool sile…
345 ZEND_API zval *zend_read_static_property(zend_class_entry *scope, const char *name, int name_length
516 ZEND_API int zend_set_hash_symbol(zval *symbol, const char *name, int name_length, zend_bool is_ref…
717 #define ZEND_SET_SYMBOL_WITH_LENGTH(symtable, name, name_length, var, _refcount, _is_ref) \ argument
721 if (zend_hash_find(symtable, (name), (name_length), (void **) &orig_var)==SUCCESS \
737 zend_hash_update(symtable, (name), (name_length), &(var), sizeof(zval *), NULL); \
745 #define ZEND_SET_GLOBAL_VAR_WITH_LENGTH(name, name_length, var, _refcount, _is_ref) \ argument
746 ZEND_SET_SYMBOL_WITH_LENGTH(&EG(symbol_table), name, name_length, var, _refcount, _is_ref)