Home
last modified time | relevance | path

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

123

/PHP-5.5/sapi/litespeed/
H A Dlsapilib.c2693 int sec =0; in lsapi_all_children_must_die() local
2698 while( g_prefork_server->m_iCurChildren && (sec < maxWait) ) in lsapi_all_children_must_die()
2702 sec++; in lsapi_all_children_must_die()
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_process_ctl.c60 static int fpm_pctl_timeout_set(int sec) /* {{{ */ in fpm_pctl_timeout_set() argument
63 fpm_event_add(&pctl_event, sec * 1000); in fpm_pctl_timeout_set()
/PHP-5.5/sapi/cgi/
H A Dcgi_main.c2570 int sec; local
2575 sec = (int)(end.tv_sec - start.tv_sec);
2579 sec -= 1;
2582 fprintf(stderr, "\nElapsed time: %d.%06d sec\n", sec, usec);
2585 sec = (int)(end - start);
2586 fprintf(stderr, "\nElapsed time: %d sec\n", sec);
/PHP-5.5/ext/standard/
H A Duniqid.c53 int sec, usec, prefix_len = 0; in PHP_FUNCTION() local
72 sec = (int) tv.tv_sec; in PHP_FUNCTION()
79 spprintf(&uniqid, 0, "%s%08x%05x%.8F", prefix, sec, usec, php_combined_lcg(TSRMLS_C) * 10); in PHP_FUNCTION()
81 spprintf(&uniqid, 0, "%s%08x%05x", prefix, sec, usec); in PHP_FUNCTION()
H A Dstreamsfuncs.c776 zval *r_array, *w_array, *e_array, **sec = NULL; in PHP_FUNCTION() local
785 …ers(ZEND_NUM_ARGS() TSRMLS_CC, "a!a!a!Z!|l", &r_array, &w_array, &e_array, &sec, &usec) == FAILURE) in PHP_FUNCTION()
821 if (sec != NULL) { in PHP_FUNCTION()
822 convert_to_long_ex(sec); in PHP_FUNCTION()
824 if (Z_LVAL_PP(sec) < 0) { in PHP_FUNCTION()
834 tv.tv_sec = Z_LVAL_PP(sec) + (usec / 1000000); in PHP_FUNCTION()
837 tv.tv_sec = Z_LVAL_PP(sec); in PHP_FUNCTION()
/PHP-5.5/ext/standard/tests/strings/
H A Dstrtok_variation3.phpt103 string(3) "sec"
/PHP-5.5/ext/standard/tests/mail/
H A Dmail_skipif.inc9 socket_set_option($socket, SOL_SOCKET, SO_RCVTIMEO, array('sec' => 10, 'usec' => 10));
/PHP-5.5/ext/sockets/tests/
H A Dsocket_set_option_rcvtimeo.phpt24 $options = array("sec" => 1, "usec" => 0);
34 Warning: socket_set_option(): no key "sec" passed in optval in %s on line %d
H A Dsocket_set_option_sndtimeo.phpt24 $options = array("sec" => 1, "usec" => 0);
34 Warning: socket_set_option(): no key "sec" passed in optval in %s on line %d
/PHP-5.5/ext/sockets/
H A Dsockets.c844 zval *r_array, *w_array, *e_array, *sec; local
872 if (sec != NULL) {
875 if (Z_TYPE_P(sec) != IS_LONG) {
876 tmp = *sec;
879 sec = &tmp;
884 tv.tv_sec = Z_LVAL_P(sec) + (usec / 1000000);
887 tv.tv_sec = Z_LVAL_P(sec);
893 if (sec == &tmp) {
1955 zval **sec, **usec; local
2034 convert_to_long_ex(sec);
[all …]
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt141 The user documentation for PCRE comprises a number of different sec-
3843 binary value 0b10 (that is, the most significant bit is 1 and the sec-
4033 there are none. The format of the table is described above in the sec-
6829 character is present, sets it as the first captured substring. The sec-
7422 when the verb is not in a subroutine or an assertion. Subsequent sec-
7459 to the first set of data. The match attempt then succeeds. In the sec-
8269 to determine which characters match. There are more details in the sec-
9600 the defined POSIX behaviour for REG_NEWLINE (see the following sec-
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd.c1357 _mysqlnd_poll(MYSQLND **r_array, MYSQLND **e_array, MYSQLND ***dont_poll, long sec, long usec, int … argument
1367 if (sec < 0 || usec < 0) {
1403 tv.tv_sec = sec + (usec / 1000000);
1406 tv.tv_sec = sec;
H A Dmysqlnd.h116 #define mysqlnd_poll(r, err, d_pull,sec,usec,desc_num) _mysqlnd_poll((r), (err), (d_pull), (sec), (… argument
120 …qlnd_poll(MYSQLND **r_array, MYSQLND **e_array, MYSQLND ***dont_poll, long sec, long usec, int * d…
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_class_mysqli_reflection.phpt685 Inspecting parameter 'sec' of method 'poll'
/PHP-5.5/ext/mysqli/
H A Dmysqli_nonapi.c776 long sec = 0, usec = 0; local
780 …D_NUM_ARGS() TSRMLS_CC, "a!a!al|l", &r_array, &e_array, &dont_poll_array, &sec, &usec) == FAILURE)…
783 if (sec < 0 || usec < 0) {
800 ret = mysqlnd_poll(new_r_array, new_e_array, &new_dont_poll_array, sec, usec, &desc_num);
H A Dmysqli_fe.c69 ZEND_ARG_INFO(0, sec)
/PHP-5.5/ext/imap/
H A Dphp_imap.c2332 char *body, *sec; in PHP_FUNCTION() local
2337 …if (zend_parse_parameters(argc TSRMLS_CC, "rls|l", &streamind, &msgno, &sec, &sec_len, &flags) == … in PHP_FUNCTION()
2353 …body = mail_fetchbody_full(imap_le_struct->imap_stream, msgno, sec, &len, (argc == 4 ? flags : NIL… in PHP_FUNCTION()
2372 char *body, *sec; in PHP_FUNCTION() local
2377 …if (zend_parse_parameters(argc TSRMLS_CC, "rls|l", &streamind, &msgno, &sec, &sec_len, &flags) == … in PHP_FUNCTION()
2393 body = mail_fetch_mime(imap_le_struct->imap_stream, msgno, sec, &len, (argc == 4 ? flags : NIL)); in PHP_FUNCTION()
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic2372 # by Stefan `Sec` Zehl <sec@42.org>
/PHP-5.5/ext/fileinfo/libmagic/
H A Dreadcdf.c147 const time_t sec = ts.tv_sec; local
151 c = cdf_ctime(&sec, tbuf);
H A Dcdf.c389 cdf_secid_t *msa, mid, sec; in cdf_read_sat() local
440 sec = CDF_TOLE4((uint32_t)msa[k]); in cdf_read_sat()
441 if (sec < 0) in cdf_read_sat()
450 sec) != (ssize_t)ss) { in cdf_read_sat()
H A Dcdf_time.c170 cdf_ctime(const time_t *sec, char *buf) in cdf_ctime() argument
172 char *ptr = ctime_r(sec, buf); in cdf_ctime()
175 (void)snprintf(buf, 26, "*Bad* 0x%16.16llx\n", (long long)*sec); in cdf_ctime()
/PHP-5.5/ext/fileinfo/
H A Dlibmagic.patch2858 + const time_t sec = ts.tv_sec;
2862 + c = cdf_ctime(&sec, tbuf);
/PHP-5.5/ext/date/tests/
H A Dmktime_basic1.phpt19 $sec = 45;
27 var_dump( mktime($hour, $minute, $sec) );
28 var_dump( mktime($hour, $minute, $sec, $month) );
29 var_dump( mktime($hour, $minute, $sec, $month, $day) );
30 var_dump( mktime($hour, $minute, $sec, $month, $day, $year) );
31 var_dump( mktime($hour, $minute, $sec, $month, $day, $year, $is_dst) );
H A Dmktime_error.phpt23 $sec = 45;
29 var_dump( mktime($hour, $minute, $sec, $month, $day, $year, $is_dst, $extra_arg) );
H A Dmktime_variation1.phpt99 $sec = 45;

Completed in 137 milliseconds

123