note_val          315 sapi/apache/php_apache.c 	char *note_name, *note_val = NULL;
note_val          319 sapi/apache/php_apache.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|s", &note_name, &note_name_len, &note_val, &note_val_len) == FAILURE) {
note_val          325 sapi/apache/php_apache.c 	if (note_val) {
note_val          326 sapi/apache/php_apache.c 		table_set(((request_rec *)SG(server_context))->notes, note_name, note_val);
note_val          196 sapi/apache2filter/php_functions.c 	char *note_name, *note_val = NULL;
note_val          200 sapi/apache2filter/php_functions.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|s", &note_name, &note_name_len, &note_val, &note_val_len) == FAILURE) {
note_val          208 sapi/apache2filter/php_functions.c 	if (note_val) {
note_val          209 sapi/apache2filter/php_functions.c 		apr_table_set(ctx->r->notes, note_name, note_val);
note_val          224 sapi/apache2handler/php_functions.c 	char *note_name, *note_val = NULL;
note_val          228 sapi/apache2handler/php_functions.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|s", &note_name, &note_name_len, &note_val, &note_val_len) == FAILURE) {
note_val          236 sapi/apache2handler/php_functions.c 	if (note_val) {
note_val          237 sapi/apache2handler/php_functions.c 		apr_table_set(ctx->r->notes, note_name, note_val);
note_val         1554 sapi/apache_hooks/php_apache.c 	char *note_val;
note_val         1560 sapi/apache_hooks/php_apache.c 	note_val = (char *) table_get(((request_rec *)SG(server_context))->notes, arg_name);
note_val         1566 sapi/apache_hooks/php_apache.c 	if (!note_val) {
note_val         1570 sapi/apache_hooks/php_apache.c 	RETURN_STRING(note_val, 1);