Home
last modified time | relevance | path

Searched full:hooks (Results 1 – 25 of 1284) sorted by relevance

12345678910>>...52

/third_party/boost/libs/intrusive/test/
Ditestvalue.hpp33 template<class Hooks>
36 , Hooks::base_hook_type
37 , Hooks::auto_base_hook_type
39 typename Hooks::member_hook_type node_;
40 typename Hooks::auto_member_hook_type auto_node_;
41 typename Hooks::nonhook_node_member_type nhn_member_;
60 Hooks::base_hook_type::operator=(static_cast<const typename Hooks::base_hook_type&>(src)); in operator =()
61Hooks::auto_base_hook_type::operator=(static_cast<const typename Hooks::auto_base_hook_type&>(src)… in operator =()
71 Hooks::base_hook_type::swap_nodes(static_cast<typename Hooks::base_hook_type&>(other)); in swap_nodes()
72Hooks::auto_base_hook_type::swap_nodes(static_cast<typename Hooks::auto_base_hook_type&>(other)); in swap_nodes()
[all …]
/third_party/node/deps/npm/node_modules/libnpmhook/
DREADME.md4 programmatically managing the npm registry's server-side hooks.
6 For a more general introduction to managing hooks, see [the introductory blog
7 post](https://blog.npmjs.org/post/145260155635/introducing-hooks-get-notifications-of-npm).
12 const hooks = require('libnpmhook')
14 console.log(await hooks.ls('mypkg', {token: 'deadbeef'}))
50 #### <a name="add"></a> `> hooks.add(name, endpoint, secret, [opts]) -> Promise`
66 /v1/hooks/hook`](https://github.com/npm/registry/blob/master/docs/hooks/endpoints.md#post-v1hooksho…
71 await hooks.add('~zkat', 'https://zkat.tech/api/added', 'supersekrit', {
93 #### <a name="find"></a> `> hooks.find(id, [opts]) -> Promise`
101 /v1/hooks/hook/:id`](https://github.com/npm/registry/blob/master/docs/hooks/endpoints.md#get-v1hook…
[all …]
/third_party/node/test/sequential/
Dtest-inspector-async-call-stack.js25 // By default inspector async hooks should not have been installed.
29 verifyAsyncHookDisabled('creating a session should not enable async hooks');
32 verifyAsyncHookDisabled('connecting a session should not enable async hooks');
35 verifyAsyncHookDisabled('enabling debugger should not enable async hooks');
38 verifyAsyncHookDisabled('invalid message should not enable async hooks');
42 'async hooks');
46 'async hooks');
49 verifyAsyncHookEnabled('valid message should enable async hooks');
53 'async hooks');
65 verifyAsyncHookEnabled('valid message should enable async hooks');
[all …]
/third_party/node/test/async-hooks/
Dtest-promise.chain-promise-before-init-hooks.js5 const initHooks = require('./init-hooks');
20 // Init hooks after chained promise is created
21 const hooks = initHooks(); constant
22 hooks._allowNoInit = true;
23 hooks.enable();
27 hooks.disable();
28 hooks.sanityCheck('PROMISE');
30 // Because the init event was never emitted the hooks listener doesn't
32 const as = hooks.activitiesOfTypes('PROMISE');
33 const unknown = hooks.activitiesOfTypes('Unknown');
Dtest-shutdownwrap.js5 const initHooks = require('./init-hooks');
10 const hooks = initHooks(); constant
11 hooks.enable();
25 assert.strictEqual(hooks.activitiesOfTypes('SHUTDOWNWRAP').length, 0);
29 const as = hooks.activitiesOfTypes('SHUTDOWNWRAP');
38 assert.strictEqual(hooks.activitiesOfTypes('SHUTDOWNWRAP').length, 1);
41 assert.strictEqual(hooks.activitiesOfTypes('SHUTDOWNWRAP').length, 0);
46 const as = hooks.activitiesOfTypes('SHUTDOWNWRAP');
54 hooks.disable();
55 hooks.sanityCheck('SHUTDOWNWRAP');
[all …]
Dtest-pipeconnectwrap.js6 const initHooks = require('./init-hooks');
13 const hooks = initHooks(); constant
14 hooks.enable();
26 const pipeservers = hooks.activitiesOfTypes('PIPESERVERWRAP');
27 let pipeconnects = hooks.activitiesOfTypes('PIPECONNECTWRAP');
34 const pipes = hooks.activitiesOfTypes('PIPEWRAP');
35 pipeconnects = hooks.activitiesOfTypes('PIPECONNECTWRAP');
61 const pipes = hooks.activitiesOfTypes('PIPEWRAP');
62 const pipeconnects = hooks.activitiesOfTypes('PIPECONNECTWRAP');
82 hooks.disable();
[all …]
Dtest-promise.promise-before-init-hooks.js5 const initHooks = require('./init-hooks');
12 // Init hooks after promise was created
13 const hooks = initHooks({ allowNoInit: true }); constant
14 hooks.enable();
18 const as = hooks.activitiesOfTypes('PROMISE');
26 hooks.disable();
27 hooks.sanityCheck('PROMISE');
29 const as = hooks.activitiesOfTypes('PROMISE');
Dtest-fsreqcallback-access.js6 const initHooks = require('./init-hooks');
10 const hooks = initHooks(); constant
12 hooks.enable();
16 const as = hooks.activitiesOfTypes('FSREQCALLBACK');
26 hooks.disable();
27 hooks.sanityCheck('FSREQCALLBACK');
29 const as = hooks.activitiesOfTypes('FSREQCALLBACK');
Dtest-promise.js6 const initHooks = require('./init-hooks');
12 const hooks = initHooks(); constant
14 hooks.enable();
19 const as = hooks.activitiesOfTypes('PROMISE');
27 const as = hooks.activitiesOfTypes('PROMISE');
36 hooks.disable();
37 hooks.sanityCheck('PROMISE');
39 const as = hooks.activitiesOfTypes('PROMISE');
Dtest-writewrap.js5 const initHooks = require('./init-hooks');
9 const hooks = initHooks(); constant
10 hooks.enable();
20 assert.strictEqual(hooks.activitiesOfTypes('WRITEWRAP').length, 0);
23 assert.strictEqual(hooks.activitiesOfTypes('WRITEWRAP').length, 0);
31 assert.strictEqual(hooks.activitiesOfTypes('WRITEWRAP').length, 0);
35 const as = hooks.activitiesOfTypes('WRITEWRAP');
110 hooks.disable();
111 hooks.sanityCheck('WRITEWRAP');
Dtest-crypto-pbkdf2.js11 const initHooks = require('./init-hooks');
16 const hooks = initHooks(); constant
18 hooks.enable();
23 const as = hooks.activitiesOfTypes('PBKDF2REQUEST');
31 hooks.disable();
32 hooks.sanityCheck('PBKDF2REQUEST');
34 const as = hooks.activitiesOfTypes('PBKDF2REQUEST');
Dtest-querywrap.js7 const initHooks = require('./init-hooks');
11 const hooks = initHooks(); constant
13 hooks.enable();
18 const as = hooks.activitiesOfTypes('QUERYWRAP');
28 hooks.disable();
29 hooks.sanityCheck('QUERYWRAP');
31 const as = hooks.activitiesOfTypes('QUERYWRAP');
Dtest-crypto-randomBytes.js11 const initHooks = require('./init-hooks');
16 const hooks = initHooks(); constant
18 hooks.enable();
22 const as = hooks.activitiesOfTypes('RANDOMBYTESREQUEST');
32 hooks.disable();
33 hooks.sanityCheck('RANDOMBYTESREQUEST');
35 const as = hooks.activitiesOfTypes('RANDOMBYTESREQUEST');
Dtest-immediate.js6 const initHooks = require('./init-hooks');
9 const hooks = initHooks(); constant
10 hooks.enable();
15 const as = hooks.activitiesOfTypes('Immediate');
27 let as = hooks.activitiesOfTypes('Immediate');
34 as = hooks.activitiesOfTypes('Immediate');
57 hooks.disable();
58 hooks.sanityCheck('Immediate');
Dtest-timers.setTimeout.js6 const initHooks = require('./init-hooks');
10 const hooks = initHooks(); constant
11 hooks.enable();
15 const as = hooks.activitiesOfTypes('Timeout');
29 const as = hooks.activitiesOfTypes('Timeout');
41 const as = hooks.activitiesOfTypes('Timeout');
54 hooks.disable();
55 hooks.sanityCheck('Timeout');
Dtest-tcpwrap.js10 const initHooks = require('./init-hooks');
18 const hooks = initHooks(); constant
19 hooks.enable();
28 const tcpsservers = hooks.activitiesOfTypes('TCPSERVERWRAP');
29 const tcpconnects = hooks.activitiesOfTypes('TCPCONNECTWRAP');
44 const tcps = hooks.activitiesOfTypes('TCPWRAP');
47 const tcpconnects = hooks.activitiesOfTypes('TCPCONNECTWRAP');
63 assert.strictEqual(hooks.activitiesOfTypes('TCPWRAP').length, 1);
83 const tcpconnects = hooks.activitiesOfTypes('TCPCONNECTWRAP');
112 const tcps = hooks.activitiesOfTypes([ 'TCPWRAP' ]);
[all …]
Dtest-getaddrinforeqwrap.js6 const initHooks = require('./init-hooks');
13 const hooks = initHooks(); constant
15 hooks.enable();
21 const as = hooks.activitiesOfTypes('GETADDRINFOREQWRAP');
35 hooks.disable();
36 hooks.sanityCheck('GETADDRINFOREQWRAP');
38 const as = hooks.activitiesOfTypes('GETADDRINFOREQWRAP');
Dtest-getnameinforeqwrap.js6 const initHooks = require('./init-hooks');
13 const hooks = initHooks(); constant
15 hooks.enable();
21 const as = hooks.activitiesOfTypes('GETNAMEINFOREQWRAP');
36 hooks.disable();
37 hooks.sanityCheck('GETNAMEINFOREQWRAP');
39 const as = hooks.activitiesOfTypes('GETNAMEINFOREQWRAP');
Dtest-embedder.api.async-resource.js9 const initHooks = require('./init-hooks');
12 const hooks = initHooks(); constant
13 hooks.enable();
36 const alcazaresActivities = hooks.activitiesOfTypes([ 'alcazares' ]);
72 const pobladoActivities = hooks.activitiesOfTypes([ 'poblado' ]);
86 // After we disable the hooks we shouldn't receive any events anymore
87 hooks.disable();
94 'alcazares emitted destroy a second time after hooks disabled');
101 'poblado emitted destroy after hooks disabled');
/third_party/node/deps/npm/docs/content/cli-commands/
Dnpm-hook.md4 description: Manage registry hooks
9 ## Manage registry hooks
37 List all your active hooks:
42 List your active hooks for the `lodash` package:
59 Allows you to manage [npm hooks](https://blog.npmjs.org/post/145260155635/introducing-hooks-get-not…
62 Hooks allow you to configure URL endpoints that will be notified whenever a
64 entities can be watched by hooks: packages, owners, and scopes.
80 * ["Introducing Hooks" blog post](https://blog.npmjs.org/post/145260155635/introducing-hooks-get-no…
/third_party/node/deps/npm/man/man1/
Dnpm-hook.13 \fBnpm-hook\fR \- Manage registry hooks
40 List all your active hooks:
48 List your active hooks for the \fBlodash\fP package:
73 Allows you to manage npm hooks \fIhttps://blog\.npmjs\.org/post/145260155635/introducing\-hooks\-ge…
76 Hooks allow you to configure URL endpoints that will be notified whenever a
78 entities can be watched by hooks: packages, owners, and scopes\.
94 "Introducing Hooks" blog post \fIhttps://blog\.npmjs\.org/post/145260155635/introducing\-hooks\-get…
/third_party/mbedtls/tests/git-scripts/
DREADME.md1 README for git hooks script
4 The git hooks are located in `<mbed TLS root>/.git/hooks`, and as such are not under version control
7 …d TLS git hooks are located in `<mbed TLS root>/tests/git-scripts` directory, and one must create …
11 Execute the following command to create a link on linux from the mbed TLS `.git/hooks` directory:
14 …ote: Currently the mbed TLS git hooks work only on a GNU platform. If using a non-GNU platform, do…
/third_party/boost/libs/outcome/doc/html/reference/functions/
Dhooks.html3 <title>Hooks - Boost.Outcome documentation</title>
12 …home.png" alt="Home"></a><a accesskey="n" href="../../reference/functions/hooks/spare_storage.html…
14 <div class="titlepage"><div><div><h1 style="clear: both">Hooks</h1></div></div></div>
16 …<a href="../../reference/functions/hooks/spare_storage.html" ><code>uint16_t spare_storage(const b…
18 …<a href="../../reference/functions/hooks/hook_outcome_construction.html" ><code>void hook_outcome_…
20 …<a href="../../reference/functions/hooks/hook_outcome_construction2.html" ><code>void hook_outcome…
22 …<a href="../../reference/functions/hooks/hook_outcome_copy_construction.html" ><code>void hook_out…
24 …<a href="../../reference/functions/hooks/hook_outcome_copy_construction2.html" ><code>void hook_ou…
26 …<a href="../../reference/functions/hooks/hook_outcome_in_place_construction.html" ><code>void hook…
28 …<a href="../../reference/functions/hooks/hook_outcome_move_construction.html" ><code>void hook_out…
[all …]
/third_party/node/deps/npm/test/fixtures/
Dgithub-com-BryanDonovan-npm-git-test.git.tar.gz
/third_party/alsa-lib/src/pcm/
Dpcm_hooks.c53 struct list_head hooks[SND_PCM_HOOK_TYPE_LAST + 1]; member
86 list_for_each_safe(pos, next, &h->hooks[SND_PCM_HOOK_TYPE_CLOSE]) { in snd_pcm_hooks_close()
93 struct list_head *hooks = &h->hooks[k]; in snd_pcm_hooks_close() local
94 while (!list_empty(hooks)) { in snd_pcm_hooks_close()
96 pos = hooks->next; in snd_pcm_hooks_close()
118 list_for_each_safe(pos, next, &h->hooks[SND_PCM_HOOK_TYPE_HW_PARAMS]) { in snd_pcm_hooks_hw_params()
134 list_for_each_safe(pos, next, &h->hooks[SND_PCM_HOOK_TYPE_HW_FREE]) { in snd_pcm_hooks_hw_free()
146 snd_output_printf(out, "Hooks PCM\n"); in snd_pcm_hooks_dump()
206 * \brief Creates a new hooks PCM
210 * \param close_slave If set, slave PCM handle is closed when hooks PCM is closed
[all …]

12345678910>>...52