Home
last modified time | relevance | path

Searched refs:usec (Results 1 – 21 of 21) sorted by relevance

/PHP-7.4/ext/standard/
H A Duniqid.c49 int sec, usec; in PHP_FUNCTION() local
72 usec = (int) (tv.tv_usec % 0x100000); in PHP_FUNCTION()
78 uniqid = strpprintf(0, "%s%08x%05x%.8F", prefix, sec, usec, php_combined_lcg() * 10); in PHP_FUNCTION()
80 uniqid = strpprintf(0, "%s%08x%05x", prefix, sec, usec); in PHP_FUNCTION()
H A Dstreamsfuncs.c754 zend_long sec, usec = 0; in PHP_FUNCTION() local
764 Z_PARAM_LONG(usec) in PHP_FUNCTION()
804 } else if (usec < 0) { in PHP_FUNCTION()
810 tv.tv_sec = (long)(sec + (usec / 1000000)); in PHP_FUNCTION()
811 tv.tv_usec = (long)(usec % 1000000); in PHP_FUNCTION()
/PHP-7.4/ext/sockets/tests/
H A Dsocket_select-wrongparams-4.phpt4 usec > 999999
23 $usec = 2000000;
24 var_dump(socket_select($sockets, $write, $except, $time, $usec));
H A Dsocket_setopt_basic.phpt21 $options = array("sec" => 1, "usec" => 0);
H A Dsocket_set_option_rcvtimeo.phpt24 $options = array("sec" => 1, "usec" => 0);
H A Dsocket_set_option_sndtimeo.phpt24 $options = array("sec" => 1, "usec" => 0);
/PHP-7.4/ext/date/tests/
H A Dgettimeofday_basic.phpt38 ["usec"]=>
48 ["usec"]=>
H A Dbug35143.phpt15 ["usec"]=>
H A Dbug64887.phpt14 '-6 usec',
/PHP-7.4/ext/standard/tests/mail/
H A Dmail_skipif.inc9 socket_set_option($socket, SOL_SOCKET, SO_RCVTIMEO, array('sec' => 10, 'usec' => 10));
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_poll.phpt137 Warning: mysqli_poll(): Negative values passed for sec and/or usec in %s on line %d
139 Warning: mysqli_poll(): Negative values passed for sec and/or usec in %s on line %d
H A Dmysqli_class_mysqli_reflection.phpt690 Inspecting parameter 'usec' of method 'poll'
/PHP-7.4/ext/sockets/
H A Dsockets.c981 zend_long usec = 0; local
983 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "a!a!a!z!|l", &r_array, &w_array, &e_array, &sec, &usec
1007 if (usec > 999999) {
1008 tv.tv_sec = s + (usec / 1000000);
1009 tv.tv_usec = usec % 1000000;
1012 tv.tv_usec = usec;
2107 zval *sec, *usec; local
2183 if ((usec = zend_hash_str_find(opt_ht, usec_key, sizeof(usec_key) - 1)) == NULL) {
2189 convert_to_long_ex(usec);
2192 tv.tv_usec = Z_LVAL_P(usec);
[all …]
/PHP-7.4/ext/mysqli/
H A Dmysqli_nonapi.c839 zend_long sec = 0, usec = 0; local
843 …eters(ZEND_NUM_ARGS(), "a!a!al|l", &r_array, &e_array, &dont_poll_array, &sec, &usec) == FAILURE) {
846 if (sec < 0 || usec < 0) {
863 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, usec)
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_connection.c2589 mysqlnd_poll(MYSQLND **r_array, MYSQLND **e_array, MYSQLND ***dont_poll, long sec, long usec, int *… argument
2599 if (sec < 0 || usec < 0) {
2634 if (usec > 999999) {
2635 tv.tv_sec = sec + (usec / 1000000);
2636 tv.tv_usec = usec % 1000000;
2639 tv.tv_usec = usec;
H A Dmysqlnd.h121 …l(MYSQLND **r_array, MYSQLND **e_array, MYSQLND ***dont_poll, long sec, long usec, int * desc_num);
/PHP-7.4/sapi/cgi/
H A Dcgi_main.c2678 int usec; local
2683 usec = (int)(end.tv_usec - start.tv_usec);
2686 usec = (int)(end.tv_usec + 1000000 - start.tv_usec);
2688 fprintf(stderr, "\nElapsed time: %d.%06d sec\n", sec, usec);
/PHP-7.4/ext/date/
H A Dphp_date.c2683 static void php_date_get_current_time_with_fraction(time_t *sec, suseconds_t *usec) in php_date_get_current_time_with_fraction() argument
2690 *usec = tp.tv_usec; in php_date_get_current_time_with_fraction()
2693 *usec = 0; in php_date_get_current_time_with_fraction()
2706 suseconds_t usec; in php_date_initialize() local
2771 php_date_get_current_time_with_fraction(&sec, &usec); in php_date_initialize()
2773 php_date_set_time_fraction(now, usec); in php_date_initialize()
/PHP-7.4/ext/date/lib/
H A Dparse_date.re176 { "usec", TIMELIB_MICROSEC, 1 },
1005 reltextunit = 'ms' | 'µs' | (('msec'|'millisecond'|'µsec'|'microsecond'|'usec'|'sec'|'second'|'min'…
/PHP-7.4/
H A DNEWS761 to return usec). (Herbert256)

Completed in 70 milliseconds