Searched refs:field (Results 1 – 16 of 16) sorted by relevance
/libuv/include/uv/ |
H A D | tree.h | 73 #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 D | queue.h | 21 #define uv__queue_data(pointer, type, field) \ argument 22 ((type*) ((char*) (pointer) - offsetof(type, field)))
|
/libuv/ |
H A D | tsansupp.txt | 1 # glibc reads `count` field unsynchronized, not a libuv bug
|
H A D | ChangeLog | 1330 * unix,win: initialize timer `timeout` field (Ben Noordhuis) 2837 * build: add url field to libuv.pc (Ben Noordhuis) 3262 * aix: fix un-initialized pointer field in fs handle (Gireesh Punathil) 4828 * doc: clarify uv_loop_t.data field lifetime (Saúl Ibarra Corretgé) 4905 * windows: remove duplicated field (mattn) 4907 * core: add a reserved field to uv_handle_t and uv_req_t (Saúl Ibarra Corretgé) 5056 * unix: fix bogus structure field name (Saúl Ibarra Corretgé) 5237 * include: mark close_cb field as private (Saúl Ibarra Corretgé) 5279 * fsevent: rename filename field to path (Saúl Ibarra Corretgé) 5746 * windows: Re-implement uv_fs_stat. The st_ctime field now contains the change
|
/libuv/docs/src/ |
H A D | dns.rst | 47 .. 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 D | request.rst | 50 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 D | process.rst | 45 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 D | poll.rst | 91 and the detected events set on the `events` field. 114 will not be set on the `events` field in the callback.
|
H A D | udp.rst | 140 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 D | migration_010_100.rst | 237 `uv_fs_readdir` returned a list of strings in the `req->ptr` field upon completion in
|
H A D | loop.rst | 55 touch this field.
|
H A D | handle.rst | 101 Space for user-defined arbitrary data. libuv does not use this field.
|
H A D | misc.rst | 27 On Windows this field is ULONG.
|
/libuv/docs/src/guide/ |
H A D | threads.rst | 220 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 D | filesystem.rst | 62 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 D | processes.rst | 185 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 49 milliseconds