Home
last modified time | relevance | path

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

12345678910>>...28

/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/jinja2/
D.pre-commit-config.yaml7 hooks:
12 hooks:
17 hooks:
21 hooks:
26 hooks:
28 - repo: https://github.com/pre-commit/pre-commit-hooks
30 hooks:
/third_party/rust/crates/minimal-lexical/scripts/
Dhooks.sh2 # Add hooks to git.
11 echo 'echo "Running rustfmt and clippy checks."' > .git/hooks/pre-commit
12 echo "scripts/check.sh" >> .git/hooks/pre-commit
13 echo 'echo "Running linter checks."' > .git/hooks/pre-commit
14 echo 'RUSTFLAGS="--deny warnings" cargo +nightly build --features=lint' >> .git/hooks/pre-commit
15 chmod +x .git/hooks/pre-commit
/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 …]
/third_party/markupsafe/
D.pre-commit-config.yaml7 hooks:
12 hooks:
18 hooks:
22 hooks:
25 - repo: https://github.com/pre-commit/pre-commit-hooks
27 hooks:
/third_party/alsa-lib/src/conf/cards/
DCMI8738-MC8.conf82 type hooks
89 hooks.0 {
120 type hooks
127 hooks.0 {
154 type hooks
161 hooks.0 {
200 type hooks
206 hooks.0 {
DHdmiLpeAudio.conf24 type hooks
29 hooks.0 {
61 type hooks
67 hooks.0 {
99 type hooks
105 hooks.0 {
DAudigy2.conf12 type hooks
18 hooks.0 {
49 type hooks
55 hooks.0 {
77 type hooks
83 hooks.0 {
113 type hooks
119 hooks.0 {
305 type hooks
311 hooks.0 {
DNFORCE.conf62 type hooks
68 hooks.0 {
121 type hooks
127 hooks.0 {
194 type hooks
200 hooks.0 {
267 type hooks
273 hooks.0 {
DAudigy.conf12 type hooks
18 hooks.0 {
48 type hooks
54 hooks.0 {
76 type hooks
82 hooks.0 {
210 type hooks
216 hooks.0 {
DEMU10K1.conf14 type hooks
20 hooks.0 {
57 type hooks
63 hooks.0 {
88 type hooks
94 hooks.0 {
249 type hooks
255 hooks.0 {
DCMI8738-MC6.conf60 type hooks
67 hooks.0 {
90 type hooks
97 hooks.0 {
131 type hooks
137 hooks.0 {
DATIIXP.conf46 type hooks
52 hooks.0 {
90 type hooks
96 hooks.0 {
156 type hooks
162 hooks.0 {
DVIA8237.conf54 type hooks
61 hooks.0 {
100 type hooks
107 hooks.0 {
156 type hooks
162 hooks.0 {
DVIA8233.conf54 type hooks
61 hooks.0 {
99 type hooks
106 hooks.0 {
166 type hooks
172 hooks.0 {
DICH4.conf62 type hooks
68 hooks.0 {
113 type hooks
119 hooks.0 {
184 type hooks
190 hooks.0 {
DVIA8233A.conf46 type hooks
52 hooks.0 {
97 type hooks
103 hooks.0 {
170 type hooks
176 hooks.0 {
DICH.conf62 type hooks
68 hooks.0 {
121 type hooks
127 hooks.0 {
194 type hooks
199 hooks.0 {
DTRID4DWAVENX.conf24 type hooks
30 hooks.0 {
112 type hooks
118 hooks.0 {
DENS1371.conf46 type hooks
52 hooks.0 {
117 type hooks
122 hooks.0 {
/third_party/libinput/
D.pre-commit-config.yaml2 - repo: https://github.com/pre-commit/pre-commit-hooks
4 hooks:
11 hooks:
16 hooks:
21 hooks:
/third_party/typescript/tests/cases/fourslash/
DimportFixesWithPackageJsonInSideAnotherPackage.ts15 ////import { useEffect } from "preact/hooks";
20 // @Filename: /project/node_modules/preact/hooks/package.json
21 ////{ "name": "hooks", "version": "0.1.0", "types": "src/index.d.ts" }
23 // @Filename: /project/node_modules/preact/hooks/src/index.d.ts
29 getImportFixContent("preact/hooks"),
/third_party/typescript/scripts/
Dlink-hooks.mjs9 const hooks = [ variable
13 hooks.forEach((hook) => {
14 const hookInSourceControl = path.resolve(__dirname, "hooks", hook);
17 const hookInHiddenDirectory = path.resolve(findUpRoot(), ".git", "hooks", hook);
/third_party/rust/crates/env_logger/
D.pre-commit-config.yaml2 - repo: https://github.com/pre-commit/pre-commit-hooks
4 hooks:
19 hooks:
24 hooks:
/third_party/pulseaudio/src/modules/
Dmodule-suspend-on-idle.c455 …pa_module_hook_connect(m, &m->core->hooks[PA_CORE_HOOK_SINK_PUT], PA_HOOK_NORMAL, (pa_hook_cb_t) d… in pa__init()
456 …pa_module_hook_connect(m, &m->core->hooks[PA_CORE_HOOK_SOURCE_PUT], PA_HOOK_NORMAL, (pa_hook_cb_t)… in pa__init()
457 …pa_module_hook_connect(m, &m->core->hooks[PA_CORE_HOOK_SINK_UNLINK_POST], PA_HOOK_NORMAL, (pa_hook… in pa__init()
458 …pa_module_hook_connect(m, &m->core->hooks[PA_CORE_HOOK_SOURCE_UNLINK_POST], PA_HOOK_NORMAL, (pa_ho… in pa__init()
459 …pa_module_hook_connect(m, &m->core->hooks[PA_CORE_HOOK_SINK_STATE_CHANGED], PA_HOOK_NORMAL, (pa_ho… in pa__init()
460 …pa_module_hook_connect(m, &m->core->hooks[PA_CORE_HOOK_SOURCE_STATE_CHANGED], PA_HOOK_NORMAL, (pa_… in pa__init()
462 …pa_module_hook_connect(m, &m->core->hooks[PA_CORE_HOOK_SINK_INPUT_FIXATE], PA_HOOK_NORMAL, (pa_hoo… in pa__init()
463 …pa_module_hook_connect(m, &m->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_FIXATE], PA_HOOK_NORMAL, (pa_… in pa__init()
464 …pa_module_hook_connect(m, &m->core->hooks[PA_CORE_HOOK_SINK_INPUT_UNLINK], PA_HOOK_NORMAL, (pa_hoo… in pa__init()
465 …pa_module_hook_connect(m, &m->core->hooks[PA_CORE_HOOK_SOURCE_OUTPUT_UNLINK], PA_HOOK_NORMAL, (pa_… in pa__init()
[all …]

12345678910>>...28