Searched refs:node (Results 1 – 21 of 21) sorted by relevance
/libuv/src/ |
H A D | timer.c | 43 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 D | heap-inl.h | 56 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 D | getaddrinfo.c | 66 DECLSPEC_IMPORT int WSAAPI GetAddrInfoW(const WCHAR* node, 243 const char* node, in uv_getaddrinfo() argument 255 if (req == NULL || (node == NULL && service == NULL)) { in uv_getaddrinfo() 266 if (node != NULL) { in uv_getaddrinfo() 267 rc = uv__idna_toascii(node, in uv_getaddrinfo() 268 node + strlen(node), in uv_getaddrinfo() 274 node = hostname_ascii; in uv_getaddrinfo() 302 if (node != NULL) { in uv_getaddrinfo() 303 req->node = (WCHAR*) req->alloc; in uv_getaddrinfo() 304 uv_wtf8_to_utf16(node, req->node, nodesize); in uv_getaddrinfo() [all …]
|
/libuv/docs/src/sphinx-plugins/ |
H A D | manpage.py | 26 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 D | introduction.rst | 25 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 D | about.rst | 7 `node-taglib <https://github.com/nikhilm/node-taglib>`_. Although reference
|
H A D | threads.rst | 207 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 D | utilities.rst | 84 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 D | basics.rst | 119 node.js uses the default loop as its main loop. If you are writing bindings
|
H A D | filesystem.rst | 234 scheme. For example, node.js uses its own slab allocator which associates
|
/libuv/ |
H A D | LINKS.md | 31 * [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. 108 * [node.pas](https://github.com/vovach777/node.pas) NodeJS-like ecosystem
|
H A D | configure.ac | 89 AC_CONFIG_LINKS([test/fixtures/load_error.node:test/fixtures/load_error.node])
|
H A D | README.md | 351 [node.js]: http://nodejs.org/
|
H A D | Makefile.am | 122 test/fixtures/load_error.node \
|
H A D | ChangeLog | 5267 * heap: fix node removal (Keno Fischer)
|
/libuv/docs/src/ |
H A D | dns.rst | 72 …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 D | errors.rst | 84 unknown node or service
|
H A D | fs.rst | 487 `here <https://github.com/nodejs/node/issues/7726>`_.
|
/libuv/include/uv/ |
H A D | win.h | 556 } node; \ 592 WCHAR* node; \
|
H A D | unix.h | 334 } node; \
|
/libuv/include/ |
H A D | uv.h | 987 const char* node,
|
Completed in 90 milliseconds