| /PHP_5_3/ext/mbstring/ucgendat/ |
| H A D | ucgendat.c | 88 static _prop_t props[NUMPROPS] = { variable 244 if (props[i].len == len && memcmp(props[i].name, name, len) == 0) 349 if (props[i].len == len && memcmp(props[i].name, name, len) == 0)
|
| /PHP_5_3/ext/date/ |
| H A D | php_date.h | 115 HashTable *props; member in struct:_php_date_obj 137 HashTable *props; member in struct:_php_interval_obj
|
| H A D | php_date.c | 2102 HashTable *props; local 2109 props = zend_std_get_properties(object TSRMLS_CC); 2112 return props; 2118 zend_hash_update(props, "date", 5, &zv, sizeof(zval), NULL); 2124 zend_hash_update(props, "timezone_type", 14, &zv, sizeof(zval), NULL); 2147 zend_hash_update(props, "timezone", 9, &zv, sizeof(zval), NULL); 2150 return props; 2249 HashTable *props; local 2256 props = zend_std_get_properties(object TSRMLS_CC); 2259 return props; [all...] |
| /PHP_5_3/ext/ldap/ |
| H A D | ldap.c | 489 /* {{{ proto bool ldap_sasl_bind(resource link [, string binddn [, string password [, string sasl_mech [, string sasl_realm [, string sasl_authc_id [, string sasl_authz_id [, string props]]]]]]]) 501 char *props = NULL; local 505 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|sssssss", &link, &binddn, &dn_len, &passwd, &passwd_len, &sasl_mech, &mech_len, &sasl_realm, &realm_len, &sasl_authc_id, &authc_id_len, &sasl_authz_id, &authz_id_len, &props, &props_len) != SUCCESS) { 513 if (props) { 514 ldap_set_option(ld->link, LDAP_OPT_X_SASL_SECPROPS, props); 2217 ZEND_ARG_INFO(0, props)
|
| /PHP_5_3/ext/spl/ |
| H A D | spl_observer.c | 248 HashTable *props; local 257 props = Z_OBJPROP_P(obj); 258 zend_hash_del(props, "\x00gcdata", sizeof("\x00gcdata")); 262 ZEND_INIT_SYMTABLE_EX(intern->debug_info, zend_hash_num_elements(props) + 1, 0); 266 zend_hash_copy(intern->debug_info, props, (copy_ctor_func_t) zval_add_ref, (void *) &tmp, sizeof(zval *)); 301 HashTable *props; local 306 props = std_object_handlers.get_properties(obj TSRMLS_CC); 309 zend_hash_del(props, "\x00gcdata", sizeof("\x00gcdata")); 310 return props; 313 if (props [all...] |
| /PHP_5_3/Zend/ |
| H A D | zend_gc.c | 285 HashTable *props = Z_OBJPROP_P(pz); local 286 if(!props) { 289 p = props->pListHead; 320 HashTable *props = Z_OBJPROP_P(pz); local 321 if(!props) { 324 p = props->pListHead; 357 HashTable *props = Z_OBJPROP_P(pz); local 358 if(!props) { 361 p = props->pListHead; 395 HashTable *props local 466 HashTable *props = Z_OBJPROP_P(pz); local 509 HashTable *props = Z_OBJPROP_P(pz); local 561 HashTable *props = Z_OBJPROP_P(pz); local 607 HashTable *props = Z_OBJPROP_P(pz); local [all...] |
| /PHP_5_3/ext/zip/ |
| H A D | php_zip.c | 1016 HashTable *props; local 1025 props = obj->zo.properties; 1039 zend_hash_update(props, key, key_len, (void *)&val, sizeof(zval *), NULL);
|
| /PHP_5_3/ext/mysqli/ |
| H A D | mysqli.c | 455 HashTable *retval, *props = obj->prop_handler; local 460 ZEND_INIT_SYMTABLE_EX(retval, zend_hash_num_elements(props) + 1, 0); 462 zend_hash_internal_pointer_reset_ex(props, &pos); 463 while (zend_hash_get_current_data_ex(props, (void **)&entry, &pos) == SUCCESS) { 473 zend_hash_move_forward_ex(props, &pos);
|