Lines Matching refs:domain
80 …ame, zend_string *value, time_t expires, zend_string *path, zend_string *domain, int secure, int u… in php_setcookie() argument
117 if (domain) { in php_setcookie()
118 len += ZSTR_LEN(domain); in php_setcookie()
171 if (domain && ZSTR_LEN(domain)) { in php_setcookie()
173 strlcat(cookie, ZSTR_VAL(domain), len + 100); in php_setcookie()
196 zend_string *name, *value = NULL, *path = NULL, *domain = NULL; in PHP_FUNCTION() local
201 &name, &value, &expires, &path, &domain, &secure, &httponly) == FAILURE) { in PHP_FUNCTION()
205 if (php_setcookie(name, value, expires, path, domain, secure, 1, httponly) == SUCCESS) { in PHP_FUNCTION()
217 zend_string *name, *value = NULL, *path = NULL, *domain = NULL; in PHP_FUNCTION() local
222 &name, &value, &expires, &path, &domain, &secure, &httponly) == FAILURE) { in PHP_FUNCTION()
226 if (php_setcookie(name, value, expires, path, domain, secure, 0, httponly) == SUCCESS) { in PHP_FUNCTION()