secure           1705 ext/session/session.c 	zend_bool secure = 0, httponly = 0;
secure           1709 ext/session/session.c 		zend_parse_parameters(argc, "z|SSbb", &lifetime, &path, &domain, &secure, &httponly) == FAILURE) {
secure           1732 ext/session/session.c 		zend_alter_ini_entry_chars(ini_name, secure ? "1" : "0", 1, PHP_INI_USER, PHP_INI_STAGE_RUNTIME);
secure           2478 ext/session/session.c 	ZEND_ARG_INFO(0, secure)
secure           1426 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, secure)
secure           1436 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, secure)
secure             80 ext/standard/head.c PHPAPI int php_setcookie(zend_string *name, zend_string *value, time_t expires, zend_string *path, zend_string *domain, int secure, int url_encode, int httponly)
secure            169 ext/standard/head.c 	if (secure) {
secure            192 ext/standard/head.c 	zend_bool secure = 0, httponly = 0;
secure            195 ext/standard/head.c 				&name, &value, &expires, &path, &domain, &secure, &httponly) == FAILURE) {
secure            199 ext/standard/head.c 	if (php_setcookie(name, value, expires, path, domain, secure, 1, httponly) == SUCCESS) {
secure            213 ext/standard/head.c 	zend_bool secure = 0, httponly = 0;
secure            216 ext/standard/head.c 				&name, &value, &expires, &path, &domain, &secure, &httponly) == FAILURE) {
secure            220 ext/standard/head.c 	if (php_setcookie(name, value, expires, path, domain, secure, 0, httponly) == SUCCESS) {
secure             41 ext/standard/head.h PHPAPI int php_setcookie(zend_string *name, zend_string *value, time_t expires, zend_string *path, zend_string *domain, int secure, int url_encode, int httponly);