Searched defs:microseconds (Results 1 - 2 of 2) sorted by relevance
| /PHP_5_5/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 1448 ** least the number of microseconds given. ^The xCurrentTime() 1490 int (*xSleep)(sqlite3_vfs*, int microseconds); 24111 ** The argument is the number of microseconds we want to sleep. 24112 ** The return value is the number of microseconds of sleep actually 29836 unixSleep(sqlite3_vfs *NotUsed, int microseconds) argument [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | streamsfuncs.c | 824 php_error_docref(NULL TSRMLS_CC, E_WARNING, "The microseconds parameter must be greater than 0"); 1371 /* {{{ proto bool stream_set_timeout(resource stream, int seconds [, int microseconds]) 1377 long seconds, microseconds = 0; local 1382 if (zend_parse_parameters(argc TSRMLS_CC, "rl|l", &socket, &seconds, µseconds) == FAILURE) { 1391 t.tv_usec = microseconds % 1000000; 1392 t.tv_sec += microseconds / 1000000;
|
Completed in 165 milliseconds