Lines Matching refs:lcookie
169 struct berval lcookie = { 0L, NULL }; in _php_ldap_control_to_array() local
174 rc = ldap_parse_pageresponse_control(ld, ctrl, &lestimated, &lcookie); in _php_ldap_control_to_array()
183 add_assoc_stringl(&value, "cookie", lcookie.bv_val, lcookie.bv_len); in _php_ldap_control_to_array()
189 if (lcookie.bv_val) { in _php_ldap_control_to_array()
190 ldap_memfree(lcookie.bv_val); in _php_ldap_control_to_array()
3975 struct berval lcookie = { 0L, NULL }; in PHP_FUNCTION() local
4005 lcookie.bv_val = cookie; in PHP_FUNCTION()
4006 lcookie.bv_len = cookie_len; in PHP_FUNCTION()
4013 if (ber_printf(ber, "{iO}", (int)pagesize, &lcookie) == LBER_ERROR) { in PHP_FUNCTION()
4065 struct berval lcookie; in PHP_FUNCTION() local
4124 tag = ber_scanf(ber, "{io}", &lestimated, &lcookie); in PHP_FUNCTION()
4144 if (lcookie.bv_len == 0) { in PHP_FUNCTION()
4147 ZEND_TRY_ASSIGN_REF_STRINGL(cookie, lcookie.bv_val, lcookie.bv_len); in PHP_FUNCTION()
4149 ldap_memfree(lcookie.bv_val); in PHP_FUNCTION()