Home
last modified time | relevance | path

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

/PHP-5.3/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.3/ext/standard/tests/streams/
H A Dstream_set_timeout_error.phpt5 /* Prototype : proto bool stream_set_timeout(resource stream, int seconds, int microseconds)
22 $microseconds = 10;
24 var_dump( stream_set_timeout($client, $seconds, $microseconds, $extra_arg) );
/PHP-5.3/ext/standard/
H A Dstreamsfuncs.c1370 long seconds, microseconds = 0; in PHP_FUNCTION() local
1375 if (zend_parse_parameters(argc TSRMLS_CC, "rl|l", &socket, &seconds, &microseconds) == FAILURE) { in PHP_FUNCTION()
1384 t.tv_usec = microseconds % 1000000; in PHP_FUNCTION()
1385 t.tv_sec += microseconds / 1000000; in PHP_FUNCTION()
H A Dbasic_functions.c2102 ZEND_ARG_INFO(0, microseconds)
/PHP-5.3/ext/sqlite3/libsqlite/
H A Dsqlite3.h943 int (*xSleep)(sqlite3_vfs*, int microseconds);
H A Dsqlite3.c1490 int (*xSleep)(sqlite3_vfs*, int microseconds);
29836 static int unixSleep(sqlite3_vfs *NotUsed, int microseconds){
29840 sp.tv_sec = microseconds / 1000000;
29841 sp.tv_nsec = (microseconds % 1000000) * 1000;
29844 return microseconds;
29846 usleep(microseconds);
29848 return microseconds;
29850 int seconds = (microseconds+999999)/1000000;
/PHP-5.3/sapi/fpm/
H A Dphp-fpm.conf.in378 ; - %{microseconds}d
/PHP-5.3/ext/fileinfo/
H A Dlibmagic.patch946 + /* Time interval, in microseconds */

Completed in 259 milliseconds