Lines Matching refs:Z_ARRVAL_P

394 	if ((val = zend_hash_str_find(Z_ARRVAL_P(array), "oid", sizeof("oid") - 1)) == NULL) {  in _php_ldap_control_from_array()
404 …if ((val = zend_hash_str_find(Z_ARRVAL_P(array), "iscritical", sizeof("iscritical") - 1)) != NULL)… in _php_ldap_control_from_array()
414 if ((val = zend_hash_find(Z_ARRVAL_P(array), ZSTR_KNOWN(ZEND_STR_VALUE))) != NULL) { in _php_ldap_control_from_array()
427 if ((tmp = zend_hash_str_find(Z_ARRVAL_P(val), "size", sizeof("size") - 1)) != NULL) { in _php_ldap_control_from_array()
430 if ((tmp = zend_hash_str_find(Z_ARRVAL_P(val), "cookie", sizeof("cookie") - 1)) != NULL) { in _php_ldap_control_from_array()
448 if ((tmp = zend_hash_str_find(Z_ARRVAL_P(val), "filter", sizeof("filter") - 1)) == NULL) { in _php_ldap_control_from_array()
471 if ((tmp = zend_hash_str_find(Z_ARRVAL_P(val), "filter", sizeof("filter") - 1)) == NULL) { in _php_ldap_control_from_array()
495 if ((tmp = zend_hash_str_find(Z_ARRVAL_P(val), "attrs", sizeof("attrs") - 1)) == NULL) { in _php_ldap_control_from_array()
508 num_attribs = zend_hash_num_elements(Z_ARRVAL_P(tmp)); in _php_ldap_control_from_array()
514 if ((attr = zend_hash_index_find(Z_ARRVAL_P(tmp), i)) == NULL) { in _php_ldap_control_from_array()
549 num_keys = zend_hash_num_elements(Z_ARRVAL_P(val)); in _php_ldap_control_from_array()
557 if ((sortkey = zend_hash_index_find(Z_ARRVAL_P(val), i)) == NULL) { in _php_ldap_control_from_array()
563 if ((tmp = zend_hash_str_find(Z_ARRVAL_P(sortkey), "attr", sizeof("attr") - 1)) == NULL) { in _php_ldap_control_from_array()
577 if ((tmp = zend_hash_str_find(Z_ARRVAL_P(sortkey), "oid", sizeof("oid") - 1)) != NULL) { in _php_ldap_control_from_array()
589 if ((tmp = zend_hash_str_find(Z_ARRVAL_P(sortkey), "reverse", sizeof("reverse") - 1)) != NULL) { in _php_ldap_control_from_array()
608 if ((tmp = zend_hash_str_find(Z_ARRVAL_P(val), "before", sizeof("before") - 1)) != NULL) { in _php_ldap_control_from_array()
616 if ((tmp = zend_hash_str_find(Z_ARRVAL_P(val), "after", sizeof("after") - 1)) != NULL) { in _php_ldap_control_from_array()
624 if ((tmp = zend_hash_str_find(Z_ARRVAL_P(val), "attrvalue", sizeof("attrvalue") - 1)) != NULL) { in _php_ldap_control_from_array()
633 } else if ((tmp = zend_hash_str_find(Z_ARRVAL_P(val), "offset", sizeof("offset") - 1)) != NULL) { in _php_ldap_control_from_array()
637 if ((tmp = zend_hash_find(Z_ARRVAL_P(val), ZSTR_KNOWN(ZEND_STR_COUNT))) != NULL) { in _php_ldap_control_from_array()
650 if ((tmp = zend_hash_str_find(Z_ARRVAL_P(val), "context", sizeof("context") - 1)) != NULL) { in _php_ldap_control_from_array()
755 ncontrols = zend_hash_num_elements(Z_ARRVAL_P(array)); in _php_ldap_controls_from_array()
759 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(array), ctrlarray) { in _php_ldap_controls_from_array()
1473 num_attribs = zend_hash_num_elements(Z_ARRVAL_P(attrs)); in php_ldap_do_search()
1477 if ((attr = zend_hash_index_find(Z_ARRVAL_P(attrs), i)) == NULL) { in php_ldap_do_search()
1502 nlinks = zend_hash_num_elements(Z_ARRVAL_P(link)); in php_ldap_do_search()
1542 zend_hash_internal_pointer_reset(Z_ARRVAL_P(link)); in php_ldap_do_search()
1544 entry = zend_hash_get_current_data(Z_ARRVAL_P(link)); in php_ldap_do_search()
1593 zend_hash_move_forward(Z_ARRVAL_P(link)); in php_ldap_do_search()
1918 zend_hash_index_update(Z_ARRVAL_P(return_value), num_entries, &tmp1); in PHP_FUNCTION()
2032 zend_hash_str_update(Z_ARRVAL_P(return_value), attribute, strlen(attribute), &tmp); in PHP_FUNCTION()
2203 num_attribs = zend_hash_num_elements(Z_ARRVAL_P(entry)); in php_ldap_do_modify()
2206 zend_hash_internal_pointer_reset(Z_ARRVAL_P(entry)); in php_ldap_do_modify()
2220 if (zend_hash_get_current_key(Z_ARRVAL_P(entry), &attribute, &index) == HASH_KEY_IS_STRING) { in php_ldap_do_modify()
2237 value = zend_hash_get_current_data(Z_ARRVAL_P(entry)); in php_ldap_do_modify()
2244 num_values = zend_hash_num_elements(Z_ARRVAL_P(value)); in php_ldap_do_modify()
2262 if ((ivalue = zend_hash_index_find(Z_ARRVAL_P(value), j)) == NULL) { in php_ldap_do_modify()
2280 zend_hash_move_forward(Z_ARRVAL_P(entry)); in php_ldap_do_modify()
2560 const HashTable *modification = Z_ARRVAL_P(modification_zv); in PHP_FUNCTION()
2628 const HashTable *modification_values = Z_ARRVAL_P(modification_values_zv); in PHP_FUNCTION()
2660 …zval *attrib_zv = zend_hash_str_find(Z_ARRVAL_P(modification_zv), LDAP_MODIFY_BATCH_ATTRIB, strlen… in PHP_FUNCTION()
2662 …zval *modtype_zv = zend_hash_str_find(Z_ARRVAL_P(modification_zv), LDAP_MODIFY_BATCH_MODTYPE, strl… in PHP_FUNCTION()
2664 …zval *modification_values = zend_hash_str_find(Z_ARRVAL_P(modification_zv), LDAP_MODIFY_BATCH_VALU… in PHP_FUNCTION()
2692 uint32_t num_modification_values = zend_hash_num_elements(Z_ARRVAL_P(modification_values)); in PHP_FUNCTION()
2698 …ZEND_HASH_FOREACH_NUM_KEY_VAL(Z_ARRVAL_P(modification_values), value_index, modification_value_zv)… in PHP_FUNCTION()