Home
last modified time | relevance | path

Searched refs:microseconds (Results 1 – 12 of 12) sorted by relevance

/PHP-5.5/ext/standard/tests/general_functions/
H A Dgetrusage_variation1.phpt81 User time used (microseconds) %d
84 User time used (microseconds) %d
87 User time used (microseconds) %d
90 User time used (microseconds) %d
93 User time used (microseconds) %d
96 User time used (microseconds) %d
99 User time used (microseconds) %d
102 User time used (microseconds) %d
105 User time used (microseconds) %d
108 User time used (microseconds) %d
[all …]
H A Dgetrusage_basic.phpt26 echo "User time used (microseconds) " . $dat["ru_utime.tv_usec"] . "\n";
32 User time used (microseconds) %d
H A Dusleep_error.phpt43 Warning: usleep(): Number of microseconds must be greater than or equal to 0 in %s on line %d
H A Duniqid_basic.phpt6 * Description: Gets a prefixed unique identifier based on the current time in microseconds.
H A Duniqid_error.phpt6 * Description: Gets a prefixed unique identifier based on the current time in microseconds.
/PHP-5.5/ext/standard/tests/streams/
H A Dstream_set_timeout_error.phpt5 /* Prototype : proto bool stream_set_timeout(resource stream, int seconds, int microseconds)
28 $microseconds = 10;
30 var_dump( stream_set_timeout($client, $seconds, $microseconds, $extra_arg) );
/PHP-5.5/ext/standard/
H A Dstreamsfuncs.c1381 long seconds, microseconds = 0; in PHP_FUNCTION() local
1386 if (zend_parse_parameters(argc TSRMLS_CC, "rl|l", &socket, &seconds, &microseconds) == FAILURE) { in PHP_FUNCTION()
1395 t.tv_usec = microseconds % 1000000; in PHP_FUNCTION()
1396 t.tv_sec += microseconds / 1000000; in PHP_FUNCTION()
H A Dbasic_functions.c2117 ZEND_ARG_INFO(0, microseconds)
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.h1186 int (*xSleep)(sqlite3_vfs*, int microseconds);
H A Dsqlite3.c1393 int (*xSleep)(sqlite3_vfs*, int microseconds);
31611 static int unixSleep(sqlite3_vfs *NotUsed, int microseconds){
31615 sp.tv_sec = microseconds / 1000000;
31616 sp.tv_nsec = (microseconds % 1000000) * 1000;
31619 return microseconds;
31621 usleep(microseconds);
31623 return microseconds;
31625 int seconds = (microseconds+999999)/1000000;
/PHP-5.5/sapi/fpm/
H A Dphp-fpm.conf.in391 ; - %{microseconds}d
/PHP-5.5/ext/fileinfo/
H A Dlibmagic.patch1133 + /* Time interval, in microseconds */

Completed in 391 milliseconds