Home
last modified time | relevance | path

Searched refs:last (Results 1 – 25 of 281) sorted by last modified time

12345678910>>...12

/PHP-5.5/win32/build/
H A Dconfutils.js1634 var i, dir, bd, last;
1640 last = null;
1648 if (bd == last) {
1651 last = bd;
/PHP-5.5/win32/
H A Dinstall.txt272 better maintenance, we advise you to follow the last option, add C:\php
/PHP-5.5/tests/output/
H A Dob_flush_basic_001.phpt6 …* Description: Flush (send) contents of the output buffer. The last buffer content is sent to next…
H A Dob_flush_error_001.phpt6 …* Description: Flush (send) contents of the output buffer. The last buffer content is sent to next…
/PHP-5.5/tests/lang/
H A Dbug30578.phpt13 echo "This should be displayed last.\n";
31 Buffered data: This should be displayed last.
H A Dbug35382.phpt7 //last line comment
/PHP-5.5/tests/func/
H A D010.phpt41 test($v'.dechex($limit-1).", '".dechex($limit-1).'\'); // last
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_process_ctl.c360 struct timeval last, now; in fpm_pctl_perform_idle_server_maintenance() local
366 fpm_request_last_activity(last_idle_child, &last); in fpm_pctl_perform_idle_server_maintenance()
368 if (last.tv_sec < now.tv_sec - wp->config->pm_process_idle_timeout) { in fpm_pctl_perform_idle_server_maintenance()
H A Dfpm_systemd.c16 static unsigned long int last=0; in fpm_systemd() local
40 …active, idle, requests, slow_req, ((float)requests - last) * 1000.0 / fpm_global_config.systemd_in… in fpm_systemd()
44 last = requests; in fpm_systemd()
H A Dfpm_arrays.h69 void *last = fpm_array_item(a, a->used - 1); in fpm_array_item_remove() local
72 memcpy(to_remove, last, a->sz); in fpm_array_item_remove()
H A Dfpm_env.c204 char *last = NULL; in fpm_env_init_main() local
231 if (last == NULL || fpm_globals.argv[i] == last + 1) { in fpm_env_init_main()
232 last = fpm_globals.argv[i] + strlen(fpm_globals.argv[i]); in fpm_env_init_main()
240 if (last == NULL || environ[i] == last + 1) { in fpm_env_init_main()
241 last = environ[i] + strlen(environ[i]); in fpm_env_init_main()
245 if (first == NULL || last == NULL) { in fpm_env_init_main()
249 fpm_env_argv_len = last - first; in fpm_env_init_main()
/PHP-5.5/sapi/fpm/
H A Dphp-fpm.conf.in321 ; last request cpu - the %cpu the last request consumed
325 ; last request memory - the max amount of memory the last request consumed
330 ; last request the process has served. Otherwise informations are related to
345 ; last request cpu: 0.00
346 ; last request memory: 0
/PHP-5.5/sapi/cli/
H A Dphp_cli_server.c158 php_cli_server_chunk *last; member
1011 buffer->last = NULL; in php_cli_server_buffer_ctor()
1016 php_cli_server_chunk *last; in php_cli_server_buffer_append() local
1017 for (last = chunk; last->next; last = last->next); in php_cli_server_buffer_append()
1018 if (!buffer->last) { in php_cli_server_buffer_append()
1023 buffer->last = last; in php_cli_server_buffer_append()
1028 php_cli_server_chunk *last; in php_cli_server_buffer_prepend() local
1029 for (last = chunk; last->next; last = last->next); in php_cli_server_buffer_prepend()
1030 last->next = buffer->first; in php_cli_server_buffer_prepend()
1031 if (!buffer->last) { in php_cli_server_buffer_prepend()
[all …]
/PHP-5.5/
H A Drun-tests.php2208 $last = 1;
2211 $last = 2;
H A Dphp.ini-development514 ; Store the last error/warning message in $php_errormsg (boolean). Setting this value
H A Dphp.ini-production514 ; Store the last error/warning message in $php_errormsg (boolean). Setting this value
/PHP-5.5/main/
H A Dphp_reentrancy.h105 PHPAPI char *php_strtok_r(char *s, const char *delim, char **last);
109 char *strtok_r(char *s, const char *delim, char **last);
H A Dreentrancy.c380 php_strtok_r(char *s, const char *delim, char **last) in php_strtok_r() argument
386 if (s == NULL && (s = *last) == NULL) in php_strtok_r()
406 *last = NULL; in php_strtok_r()
432 *last = s; in php_strtok_r()
H A Dmain.c281 char *last = NULL; in php_binary_init() local
285 search_dir = php_strtok_r(path, ":", &last); in php_binary_init()
293 search_dir = php_strtok_r(NULL, ":", &last); in php_binary_init()
H A Dmergesort.c74 #define ICOPY_LIST(src, dst, last) \ argument
77 while(src < last)
83 #define CCOPY_LIST(src, dst, last) \ argument
86 while (src < last)
134 last = list2 + nmemb * size; in php_mergesort()
136 while (*EVAL(list2) != last) { in php_mergesort()
143 if (p2 != last) in php_mergesort()
229 last = list2 + nmemb*size; in php_mergesort()
268 u_char *f1, *f2, *s, *l2, *last, *p2; in setup() local
282 last = list1 + size * (n - i); in setup()
[all …]
H A Dphp.h140 char *strtok_r(char *s, const char *delim, char **last);
/PHP-5.5/ext/standard/
H A Dvar_unserializer.c40 var_entries *var_hash = (*var_hashx)->last; in var_push()
53 ((var_entries *) (*var_hashx)->last)->next = var_hash; in var_push()
56 (*var_hashx)->last = var_hash; in var_push()
H A Dvar_unserializer.re38 var_entries *var_hash = (*var_hashx)->last;
51 ((var_entries *) (*var_hashx)->last)->next = var_hash;
54 (*var_hashx)->last = var_hash;
/PHP-5.5/ext/standard/tests/strings/
H A Dstrrpos_variation3.phpt6 * Description: Find position of last occurrence of 'needle' in 'haystack'.
H A Dstrrpos_variation5.phpt6 * Description: Find position of last occurrence of 'needle' in 'haystack'.

Completed in 126 milliseconds

12345678910>>...12