title             173 ext/mbstring/ucgendat/ucgendat.c static _case_t *title;
title             544 ext/mbstring/ucgendat/ucgendat.c           title = (_case_t *) malloc(sizeof(_case_t) << 3);
title             546 ext/mbstring/ucgendat/ucgendat.c           title = (_case_t *) realloc((char *) title,
title             554 ext/mbstring/ucgendat/ucgendat.c     for (i = 0; i < title_used && code > title[i].key; i++) ;
title             561 ext/mbstring/ucgendat/ucgendat.c           (void) AC_MEMCPY((char *) &title[j], (char *) &title[j - 1],
title             565 ext/mbstring/ucgendat/ucgendat.c     title[i].key = cases[2];    /* Title */
title             566 ext/mbstring/ucgendat/ucgendat.c     title[i].other1 = cases[0]; /* Upper */
title             567 ext/mbstring/ucgendat/ucgendat.c     title[i].other2 = cases[1]; /* Lower */
title            1464 ext/mbstring/ucgendat/ucgendat.c       write_case(out, title, title_used, !(upper_used||lower_used));
title            1511 ext/mbstring/ucgendat/ucgendat.c       fwrite((char *) title, sizeof(_case_t), title_used, out);
title              33 sapi/cli/php_cli_process_title.c     char *title = NULL;
title              37 sapi/cli/php_cli_process_title.c     if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &title, &title_len) == FAILURE) {
title              41 sapi/cli/php_cli_process_title.c     rc = set_ps_title(title);
title              56 sapi/cli/php_cli_process_title.c         const char* title = NULL;
title              63 sapi/cli/php_cli_process_title.c         rc = get_ps_title(&length, &title);
title              69 sapi/cli/php_cli_process_title.c         RETURN_STRINGL(title, length);
title              25 sapi/cli/php_cli_process_title.h     ZEND_ARG_INFO(0, title)
title             333 sapi/cli/ps_title.c int set_ps_title(const char* title)
title             339 sapi/cli/ps_title.c     strncpy(ps_buffer, title, ps_buffer_size);
title             121 sapi/fpm/fpm/fpm_env.c void fpm_env_setproctitle(char *title) /* {{{ */
title             124 sapi/fpm/fpm/fpm_env.c 	setproctitle("%s", title);
title             130 sapi/fpm/fpm/fpm_env.c 		strncpy(fpm_env_argv[0] + strlen(SETPROCTITLE_PREFIX), title, fpm_env_argv_len - strlen(SETPROCTITLE_PREFIX) - 2);
title             141 sapi/fpm/fpm/fpm_env.c 	char *title;
title             142 sapi/fpm/fpm/fpm_env.c 	spprintf(&title, 0, "pool %s", wp->config->name);
title             143 sapi/fpm/fpm/fpm_env.c 	fpm_env_setproctitle(title);
title             144 sapi/fpm/fpm/fpm_env.c 	efree(title);
title             205 sapi/fpm/fpm/fpm_env.c 	char *title;
title             272 sapi/fpm/fpm/fpm_env.c 	spprintf(&title, 0, "master process (%s)", fpm_globals.config);
title             273 sapi/fpm/fpm/fpm_env.c 	fpm_env_setproctitle(title);
title             274 sapi/fpm/fpm/fpm_env.c 	efree(title);
title              14 sapi/fpm/fpm/fpm_env.h void fpm_env_setproctitle(char *title);