Home
last modified time | relevance | path

Searched refs:handler (Results 1 – 3 of 3) sorted by relevance

/php-uv/tests/
H A D003-uv_write_different-callbacks.phpt7 $handler = uv_pipe_init($loop, false);
8 uv_pipe_open($handler, (int) STDOUT);
10 uv_write($handler, 'A', function () { echo 'A'; });
11 uv_write($handler, 'B', function () { echo 'B'; });
12 uv_write($handler, 'C', function () { echo 'C'; });
15 uv_close($handler);
H A D004-uv_write-no-memory_leak.phpt11 $handler = uv_pipe_init($loop, false);
12 uv_pipe_open($handler, (int) STDOUT);
17 uv_write($handler, '', function() {
23 uv_close($handler);
/php-uv/
H A Dphp_uv.c274 #define PHP_UV_DEBUG_OBJ_ADD_REFCOUNT(handler, uv) \ argument
276 …PHP_UV_DEBUG_PRINT("# %s add(%p - %s): %u->%u\n", #handler, uv, ZSTR_VAL(uv->std.ce->name), GC_REF…
278 #define PHP_UV_DEBUG_OBJ_DEL_REFCOUNT(handler, uv) \ argument
280 …PHP_UV_DEBUG_PRINT("# %s del(%p - %s): %u->%u\n", #handler, uv, ZSTR_VAL(uv->std.ce->name), GC_REF…

Completed in 20 milliseconds