Home
last modified time | relevance | path

Searched refs:field (Results 1 – 16 of 16) sorted by relevance

/libuv/include/uv/
H A Dtree.h73 #define RB_LEFT(elm, field) (elm)->field.rbe_left argument
74 #define RB_RIGHT(elm, field) (elm)->field.rbe_right argument
75 #define RB_PARENT(elm, field) (elm)->field.rbe_parent argument
76 #define RB_COLOR(elm, field) (elm)->field.rbe_color argument
82 RB_LEFT(elm, field) = RB_RIGHT(elm, field) = NULL; \
97 if ((RB_RIGHT(elm, field) = RB_LEFT(tmp, field)) != NULL) { \
98 RB_PARENT(RB_LEFT(tmp, field), field) = (elm); \
101 if ((RB_PARENT(tmp, field) = RB_PARENT(elm, field)) != NULL) { \
102 if ((elm) == RB_LEFT(RB_PARENT(elm, field), field)) \
103 RB_LEFT(RB_PARENT(elm, field), field) = (tmp); \
[all …]
/libuv/src/
H A Dqueue.h21 #define uv__queue_data(pointer, type, field) \ argument
22 ((type*) ((char*) (pointer) - offsetof(type, field)))
/libuv/
H A Dtsansupp.txt1 # glibc reads `count` field unsynchronized, not a libuv bug
H A DChangeLog1281 * unix,win: initialize timer `timeout` field (Ben Noordhuis)
2788 * build: add url field to libuv.pc (Ben Noordhuis)
3213 * aix: fix un-initialized pointer field in fs handle (Gireesh Punathil)
4779 * doc: clarify uv_loop_t.data field lifetime (Saúl Ibarra Corretgé)
4856 * windows: remove duplicated field (mattn)
4858 * core: add a reserved field to uv_handle_t and uv_req_t (Saúl Ibarra Corretgé)
5007 * unix: fix bogus structure field name (Saúl Ibarra Corretgé)
5188 * include: mark close_cb field as private (Saúl Ibarra Corretgé)
5230 * fsevent: rename filename field to path (Saúl Ibarra Corretgé)
5697 * windows: Re-implement uv_fs_stat. The st_ctime field now contains the change
/libuv/docs/src/
H A Ddns.rst47 .. versionchanged:: 1.3.0 the field is declared as public.
58 .. versionchanged:: 1.3.0 the field is declared as public.
64 .. versionchanged:: 1.3.0 the field is declared as public.
H A Drequest.rst50 Space for user-defined arbitrary data. libuv does not use this field.
85 * A :c:type:`uv_fs_t` request has its req->result field set to `UV_ECANCELED`.
H A Dprocess.rst45 Flags to be set on the flags field of :c:type:`uv_process_options_t`.
91 * uv_process_options_t's file field, has a directory component,
133 * `data.stream` field must point to a uv_pipe_t object that has
211 The `stdio` field points to an array of :c:type:`uv_stdio_container_t`
H A Dpoll.rst91 and the detected events set on the `events` field.
114 will not be set on the `events` field in the callback.
H A Dudp.rst140 Number of bytes queued for sending. This field strictly shows how much
252 :param namelen: On input it indicates the data of the `name` field. On
270 :param namelen: On input it indicates the data of the `name` field. On
H A Dmigration_010_100.rst237 `uv_fs_readdir` returned a list of strings in the `req->ptr` field upon completion in
H A Dloop.rst55 touch this field.
H A Dhandle.rst101 Space for user-defined arbitrary data. libuv does not use this field.
H A Dmisc.rst27 On Windows this field is ULONG.
/libuv/docs/src/guide/
H A Dthreads.rst220 arbitrary data through it using the ``void* data`` field and use it to
355 After this example, which showed the abuse of the ``data`` field, bnoordhuis_
356 pointed out that using the ``data`` field is not thread safe, and
H A Dfilesystem.rst62 The ``result`` field of a ``uv_fs_t`` is the file descriptor in case of the
122 ``uv_fs_t.result`` field. The full list:
327 #. ``uv_fs_event_t *handle`` - The handle. The ``path`` field of the handle
H A Dprocesses.rst185 The file descriptors of the child process are set using the ``stdio`` field in
186 ``uv_process_options_t``. First set the ``stdio_count`` field to the number of
265 the ``uv_stream_t* stream`` field must be set to point to an initialized,

Completed in 94 milliseconds