Searched refs:i (Results 1 – 12 of 12) sorted by relevance
/php-uv/examples/ |
H A D | timer.php | 5 $i = 0; variable 6 uv_timer_start($timer, 1000, 1000, function($stat) use (&$i, $timer, $loop) { 7 echo "count: {$i}" . PHP_EOL; 8 $i++; 10 if ($i > 3) {
|
H A D | idle.php | 5 $i = 0; variable 6 uv_idle_start($idle, function($stat) use (&$i, $idle, $loop) { 7 echo "count: {$i}" . PHP_EOL; 8 $i++; 10 if ($i > 3) {
|
H A D | check.php | 7 $i = 0; variable 8 uv_idle_start($idle, function($status) use (&$i, $idle, $loop){ 9 echo "count: {$i}" . PHP_EOL; 10 $i++; 12 if ($i > 3) {
|
/php-uv/tests/ |
H A D | 100-uv_stop.phpt | 8 $i = 0; 9 uv_timer_start($timer, 10, 10, function($timer) use (&$i, $loop) { 10 echo "count: {$i}" . PHP_EOL; 11 $i++; 13 if ($i > 3) {
|
H A D | 100-uv_timer.phpt | 8 $i = 0; 9 uv_timer_start($timer, 10, 10, function($timer) use (&$i) { 10 echo "count: {$i}" . PHP_EOL; 11 $i++; 13 if ($i > 3) {
|
H A D | 101-uv-idle.phpt | 8 $i = 0; 10 use (&$i, $idle, $loop) { 12 echo "count: {$i}" . PHP_EOL; 13 $i++; 15 if ($i > 3) {
|
H A D | 320-fs-poll.phpt | 11 $i = 0; 12 uv_fs_poll_start($poll,function($rsc,$stat,$p,$c) use (&$i) { 15 if ($i > 3) { 19 $i++; 23 uv_timer_start($timer, 100, 100, function($timer) use (&$i) { 28 if ($i > 4) {
|
H A D | 100-uv_check.phpt | 10 $i = 0; 11 uv_idle_start($idle, function($stat) use (&$i, $idle, $loop){ 12 $i++; 14 if ($i > 3) {
|
H A D | 005-uv_listen_cb-not-destroyed.phpt | 50 for ($i = 0; $i < 4; $i++) {
|
/php-uv/ |
H A D | config.m4 | 71 for i in $SEARCH_PATH ; do 72 if test -r $i/$SEARCH_FOR; then 73 UV_DIR=$i 74 AC_MSG_RESULT(from default path: found in $i)
|
H A D | php_uv.c | 1268 int i; local 1271 for (i = 0; i < PHP_UV_CB_MAX; i++) { 1854 int argc, i = 0; local 1979 for (i = 0; i < argc; i++) { 2547 int i; local 2556 for (i = 0; i < PHP_UV_CB_MAX; i++) { 5042 int i, count; local 5052 for (i = 0; i < count; i++) { 5084 int i, count; local 5094 for (i = 0; i < count; i++) { [all …]
|
H A D | README.md | 866 $i = 0; 868 echo "count: {$i}" . PHP_EOL; 869 $i++; 871 if ($i > 3) { 903 $i = 0; 905 echo "count: {$i}" . PHP_EOL; 906 $i++; 908 if ($i > 3) { 2058 $i = 0; 2061 $i++; [all …]
|
Completed in 34 milliseconds