Lines Matching refs:domain

79 …ame, zend_string *value, time_t expires, zend_string *path, zend_string *domain, int secure, int h…  in php_setcookie()  argument
105 …if (domain && strpbrk(ZSTR_VAL(domain), ",; \t\r\n\013\014") != NULL) { /* man isspace for \013 an… in php_setcookie()
166 if (domain && ZSTR_LEN(domain)) { in php_setcookie()
168 smart_str_append(&buf, domain); in php_setcookie()
189 …ray(zval *options, zend_long *expires, zend_string **path, zend_string **domain, zend_bool *secure… in php_head_parse_cookie_options_array() argument
203 *domain = zval_get_string(value); in php_head_parse_cookie_options_array()
234 zend_string *name, *value = NULL, *path = NULL, *domain = NULL, *samesite = NULL; in PHP_FUNCTION() local
244 Z_PARAM_STR(domain) in PHP_FUNCTION()
255 …php_head_parse_cookie_options_array(expires_or_options, &expires, &path, &domain, &secure, &httpon… in PHP_FUNCTION()
262 if (php_setcookie(name, value, expires, path, domain, secure, httponly, samesite, 1) == SUCCESS) { in PHP_FUNCTION()
273 if (domain) { in PHP_FUNCTION()
274 zend_string_release(domain); in PHP_FUNCTION()
289 zend_string *name, *value = NULL, *path = NULL, *domain = NULL, *samesite = NULL; in PHP_FUNCTION() local
299 Z_PARAM_STR(domain) in PHP_FUNCTION()
310 …php_head_parse_cookie_options_array(expires_or_options, &expires, &path, &domain, &secure, &httpon… in PHP_FUNCTION()
317 if (php_setcookie(name, value, expires, path, domain, secure, httponly, samesite, 0) == SUCCESS) { in PHP_FUNCTION()
328 if (domain) { in PHP_FUNCTION()
329 zend_string_release(domain); in PHP_FUNCTION()