Home
last modified time | relevance | path

Searched refs:node (Results 1 – 22 of 22) sorted by relevance

/libuv/src/
H A Dtimer.c43 a = container_of(ha, uv_timer_t, node.heap); in timer_less_than()
44 b = container_of(hb, uv_timer_t, node.heap); in timer_less_than()
63 uv__queue_init(&handle->node.queue); in uv_timer_init()
90 (struct heap_node*) &handle->node.heap, in uv_timer_start()
101 (struct heap_node*) &handle->node.heap, in uv_timer_stop()
105 uv__queue_remove(&handle->node.queue); in uv_timer_stop()
108 uv__queue_init(&handle->node.queue); in uv_timer_stop()
153 handle = container_of(heap_node, uv_timer_t, node.heap); in uv__next_timeout()
178 handle = container_of(heap_node, uv_timer_t, node.heap); in uv__run_timers()
183 uv__queue_insert_tail(&ready_queue, &handle->node.queue); in uv__run_timers()
[all …]
H A Dheap-inl.h56 struct heap_node* node,
151 struct heap_node* node, in HEAP_EXPORT() argument
187 if (child == node) { in HEAP_EXPORT()
196 child->left = node->left; in HEAP_EXPORT()
197 child->right = node->right; in HEAP_EXPORT()
198 child->parent = node->parent; in HEAP_EXPORT()
208 if (node->parent == NULL) { in HEAP_EXPORT()
210 } else if (node->parent->left == node) { in HEAP_EXPORT()
211 node->parent->left = child; in HEAP_EXPORT()
213 node->parent->right = child; in HEAP_EXPORT()
/libuv/src/win/
H A Dgetaddrinfo.c66 DECLSPEC_IMPORT int WSAAPI GetAddrInfoW(const WCHAR* node,
241 const char* node, in uv_getaddrinfo() argument
251 if (req == NULL || (node == NULL && service == NULL)) { in uv_getaddrinfo()
262 if (node != NULL) { in uv_getaddrinfo()
263 rc = uv__idna_toascii(node, in uv_getaddrinfo()
264 node + strlen(node), in uv_getaddrinfo()
270 node = hostname_ascii; in uv_getaddrinfo()
295 if (node != NULL) { in uv_getaddrinfo()
296 req->node = (WCHAR*) alloc_ptr; in uv_getaddrinfo()
297 uv_wtf8_to_utf16(node, (WCHAR*) alloc_ptr, nodesize); in uv_getaddrinfo()
[all …]
/libuv/docs/src/sphinx-plugins/
H A Dmanpage.py26 node = nodes.reference(rawtext, "%s(%s)" % (name, manpage_num), refuri=ref, **options)
27 return node
37 node = make_link_node(rawtext, app, name, manpage_num, options)
38 return [node], []
/libuv/docs/src/guide/
H A Dintroduction.rst25 2) a node.js module writer, who wants to wrap platform APIs
27 JavaScript. You will use libuv purely in the context of node.js. For
29 specific to v8/node.js.
36 The node.js_ project began in 2009 as a JavaScript environment decoupled
37 from the browser. Using Google's V8_ and Marc Lehmann's libev_, node.js
40 node.js grew in popularity, it was important to make it work on Windows, but
44 In the node-v0.9.0 version of libuv `libev was removed`_.
47 library for system programming. Users outside of node.js include Mozilla's
H A Dabout.rst7 `node-taglib <https://github.com/nikhilm/node-taglib>`_. Although reference
H A Dthreads.rst207 Here is a simple example inspired by `node.js is cancer`_. We are going to
367 node.js, a v8 engine instance, contexts and its objects are bound to the thread
369 another thread can lead to undefined results. Now consider some node.js module
372 1. In node, the third party library is set up with a JavaScript callback to be
396 .. _node.js is cancer: http://widgetsandshit.com/teddziuba/2011/10/node-js-is-cancer.html
H A Dutilities.rst84 This is also used in node.js where some libuv methods are being bubbled up to
313 used by node.js to implement ``require()`` support for bindings. The usage is
446 Käfer's excellent slides on writing node.js bindings --
447 https://kkaefer.com/node-cpp-modules/#baton
H A Dbasics.rst119 node.js uses the default loop as its main loop. If you are writing bindings
H A Dfilesystem.rst234 scheme. For example, node.js uses its own slab allocator which associates
/libuv/
H A DLINKS.md31 * [node.js](http://www.nodejs.org/): Javascript (using Google's V8) + libuv
32 * [node.native](https://github.com/d5/node.native): node.js-like API for C++11
33 …//github.com/nodeuv): An organization with several c++ wrappers for libs which are used in node.js.
107 * [node.pas](https://github.com/vovach777/node.pas) NodeJS-like ecosystem
H A Dconfigure.ac89 AC_CONFIG_LINKS([test/fixtures/load_error.node:test/fixtures/load_error.node])
H A DREADME.md339 [node.js]: http://nodejs.org/
H A DMakefile.am122 test/fixtures/load_error.node \
H A DChangeLog5016 * heap: fix node removal (Keno Fischer)
/libuv/docs/src/
H A Ddns.rst72 …oop, uv_getaddrinfo_t* req, uv_getaddrinfo_cb getaddrinfo_cb, const char* node, const char* servic…
76 Either node or service may be NULL but not both.
H A Derrors.rst84 unknown node or service
H A Dfs.rst477 `here <https://github.com/nodejs/node/issues/7726>`_.
/libuv/include/uv/
H A Dwin.h556 } node; \
592 WCHAR* node; \
H A Dunix.h334 } node; \
H A Dtree.h112 #define SPLAY_ASSEMBLE(head, node, left, right, field) do { \ argument
115 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(node, field); \
116 SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(node, field); \
/libuv/include/
H A Duv.h969 const char* node,

Completed in 175 milliseconds