Searched refs:microseconds (Results 1 - 4 of 4) sorted by relevance
| /PHP_5_3/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...] |
| H A D | sqlite3.h | 901 ** least the number of microseconds given. ^The xCurrentTime() 943 int (*xSleep)(sqlite3_vfs*, int microseconds);
|
| /PHP_5_3/ext/standard/ |
| H A D | basic_functions.c | 2102 ZEND_ARG_INFO(0, microseconds) 4480 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Number of microseconds must be greater than or equal to 0");
|
| H A D | streamsfuncs.c | 817 php_error_docref(NULL TSRMLS_CC, E_WARNING, "The microseconds parameter must be greater than 0"); 1364 /* {{{ proto bool stream_set_timeout(resource stream, int seconds [, int microseconds]) 1370 long seconds, microseconds = 0; local 1375 if (zend_parse_parameters(argc TSRMLS_CC, "rl|l", &socket, &seconds, µseconds) == FAILURE) { 1384 t.tv_usec = microseconds % 1000000; 1385 t.tv_sec += microseconds / 1000000;
|
Completed in 135 milliseconds