| /src/external/mpl/bind/dist/lib/isc/ |
| helper.c | 1 /* $NetBSD: helper.c,v 1.2 2025/01/26 16:25:37 christos Exp $ */ 23 #include <isc/helper.h> 47 isc_loop_t *helper = &loop->loopmgr->helpers[loop->tid]; local 49 isc_job_t *job = isc_mem_get(helper->mctx, sizeof(*job)); 64 if (!cds_wfcq_enqueue(&helper->async_jobs.head, 65 &helper->async_jobs.tail, &job->wfcq_node)) 67 int r = uv_async_send(&helper->async_trigger);
|
| loop.c | 281 isc_loop_t *helper = (isc_loop_t *)arg; local 283 int r = uv_prepare_start(&helper->quiescent, quiescent_cb); 286 isc_barrier_wait(&helper->loopmgr->starting); 288 r = uv_run(&helper->loop, UV_RUN_DEFAULT); 291 /* Invalidate the helper early */ 292 helper->magic = 0; 294 isc_barrier_wait(&helper->loopmgr->stopping); 303 isc_loop_t *helper = &loopmgr->helpers[loop->tid]; local 312 /* Start the helper thread */ 313 isc_thread_create(helper_thread, helper, &helper->thread) 531 isc_loop_t *helper = &loopmgr->helpers[i]; local 596 isc_loop_t *helper = &loopmgr->helpers[i]; local 609 isc_loop_t *helper = &loopmgr->helpers[i]; local [all...] |
| /src/sys/external/bsd/drm2/dist/drm/nouveau/ |
| nouveau_fbcon.h | 37 struct drm_fb_helper helper; /* must be first */ member in struct:nouveau_fbdev
|
| /src/external/bsd/atf/dist/atf-c++/detail/ |
| test_helpers.cpp | 92 const char* helper = "detail/process_helpers"; local 96 ".." / ".." / "atf-c" / helper; 99 ".." / "atf-c" / helper; 101 return atf::fs::path(atf_c_tests_base) / helper;
|
| /src/external/bsd/kyua-cli/dist/bootstrap/ |
| plain_helpers.cpp | 91 /// Mapping of the name of a helper to its implementation. 92 struct helper { struct in namespace:__anon6930 93 /// The name of the helper, as will be provided by the user on the CLI. 96 /// A pointer to the function implementing the helper. 101 /// NULL-terminated table mapping helper names to their implementations. 102 static const helper helpers[] = { 115 /// The caller must select a helper to execute by defining the HELPER 116 /// environment variable to the name of the desired helper. Think of this main 117 /// method as a subprogram dispatcher, to avoid having many individual helper [all...] |
| /src/external/mit/libcbor/dist/src/cbor/internal/ |
| loaders.c | 73 union _cbor_float_helper helper = {.as_uint = _cbor_load_uint32(source)}; local 74 return helper.as_float; 78 union _cbor_double_helper helper = {.as_uint = _cbor_load_uint64(source)}; local 79 return helper.as_double;
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| dict_file.c | 153 ssize_t helper; local 159 helper = (LEN(dict->file_buf) + 2) / 3; 160 if (helper > SSIZE_T_MAX / 4) { 165 VSTRING_SPACE(dict->file_b64, helper * 4); 174 ssize_t helper; local 179 helper = strlen(value) / 4; 181 VSTRING_SPACE(dict->file_buf, helper * 3);
|
| /src/sys/external/bsd/drm2/amdgpu/ |
| amdgpufb.c | 165 struct drm_fb_helper *const helper = sc->sc_afa.afa_fb_helper; local 166 struct drm_framebuffer *const fb = helper->fb;
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04/ |
| nouveau_dispnv04_tvnv04.c | 133 const struct drm_encoder_helper_funcs *helper = encoder->helper_private; local 135 helper->dpms(encoder, DRM_MODE_DPMS_OFF); 175 const struct drm_encoder_helper_funcs *helper = encoder->helper_private; local 177 helper->dpms(encoder, DRM_MODE_DPMS_ON);
|
| /src/sys/external/bsd/drm2/i915drm/ |
| intelfb.c | 172 struct drm_fb_helper *const helper = sc->sc_ifa.ifa_fb_helper; local 173 struct intel_fbdev *const fbdev = container_of(helper, 174 struct intel_fbdev, helper); 175 struct drm_device *const dev = helper->dev;
|
| /src/sys/external/bsd/drm2/nouveau/ |
| nouveaufb.c | 170 struct drm_fb_helper *const helper = sc->sc_nfa.nfa_fb_helper; local 171 struct drm_framebuffer *const fb = helper->fb;
|
| /src/sys/external/bsd/drm2/radeon/ |
| radeondrmkmsfb.c | 165 struct drm_fb_helper *const helper = sc->sc_rfa.rfa_fb_helper; local 166 struct drm_framebuffer *const fb = helper->fb;
|
| /src/sys/external/bsd/drm2/vmwgfx/ |
| vmwgfxfb.c | 161 struct drm_fb_helper *const helper = sc->sc_vfa.vfa_fb_helper; local 162 struct drm_framebuffer *const fb = helper->fb;
|
| /src/tests/lib/libc/gen/posix_spawn/ |
| t_spawnattr.c | 114 char helper[FILENAME_MAX]; local 142 snprintf(helper, sizeof(helper), "%s/h_spawnattr", 144 RZ(posix_spawn(&pid, helper, NULL, &attr, args, NULL));
|
| t_fileactions.c | 280 char helper[FILENAME_MAX]; local 300 snprintf(helper, sizeof helper, "%s/h_fileactions", 302 RZ(posix_spawn(&pid, helper, &fa, NULL, args, NULL));
|
| /src/sys/external/bsd/drm2/dist/drm/radeon/ |
| radeon_fb.c | 53 * this contains a helper + a radeon fb 54 * the helper contains a pointer to radeon framebuffer baseclass. 57 struct drm_fb_helper helper; /* must be first */ member in struct:radeon_fbdev 224 static int radeonfb_create(struct drm_fb_helper *helper, 228 container_of(helper, struct radeon_fbdev, helper); 273 rfa.rfa_fb_helper = helper; 279 helper->fbdev = config_found(rdev->ddev->dev, &rfa, NULL, 282 if (helper->fbdev == NULL) { 288 rfbdev->helper.fb = fb [all...] |
| /src/crypto/external/bsd/openssh/dist/ |
| ssh-sk-client.c | 53 const char *helper, *verbosity = NULL; local 59 helper = getenv("SSH_SK_HELPER"); 60 if (helper == NULL || strlen(helper) == 0) 61 helper = _PATH_SSH_SK_HELPER; 62 if (access(helper, X_OK) != 0) { 64 error_f("helper \"%s\" unusable: %s", helper, strerror(errno)); 72 /* Start helper */ 96 debug_f("starting %s %s", helper, [all...] |
| ssh-pkcs11-client.c | 51 * Maintain a list of ssh-pkcs11-helper subprocesses. These may be looked up 54 struct helper { struct 61 static struct helper **helpers; 64 static struct helper * 79 static struct helper * 108 helper_add_key(struct helper *helper, struct sshkey *key) 112 helper->keyblobs = xrecallocarray(helper->keyblobs, helper->nkeyblobs 239 struct helper *helper; local 297 struct helper *helper = NULL; local 338 struct helper *helper; local 395 struct helper *helper; local 451 struct helper *helper; local 466 struct helper *helper; local [all...] |
| /src/games/warp/ |
| term.c | 478 helper(void) function
|
| /src/sys/arch/arm/rockchip/ |
| rk_drm.h | 88 struct drm_fb_helper helper; member in struct:rk_drm_fbdev
|
| /src/sys/arch/arm/sunxi/ |
| sunxi_drm.h | 90 struct drm_fb_helper helper; member in struct:sunxi_drm_fbdev
|
| /src/sys/arch/arm/ti/ |
| ti_lcdc.h | 98 struct drm_fb_helper helper; member in struct:tilcdc_fbdev
|
| /src/tests/lib/libc/sys/ |
| t_eventfd.c | 174 pthread_t helper; local 181 ATF_REQUIRE(pthread_create(&helper, NULL, 185 * Wait for the helper to block in read(). Give it some time 194 /* Write a distinct value; helper will assert it. */ 197 /* Wait for helper to read the value. */ 200 /* Helper is now blocked in a barrier. */ 206 /* Satisfy the barrier; helper will read value and assert 0xbeefcafe. */ 212 /* Reap the helper. */ 213 ATF_REQUIRE(pthread_join(helper, &join_val) == 0); 504 pthread_t helper; local 691 pthread_t helper; local [all...] |
| t_timerfd.c | 476 pthread_t helper; local 492 ATF_REQUIRE(pthread_create(&helper, NULL, 497 ATF_REQUIRE(pthread_join(helper, &join_val) == 0); 723 pthread_t helper; local 738 ATF_REQUIRE(pthread_create(&helper, NULL, 742 * Wait for the helper to be ready, and then immediately block 743 * in read(). The helper will close the file, and we should get 753 /* Reap the helper. */ 754 ATF_REQUIRE(pthread_join(helper, &join_val) == 0);
|
| /src/external/mit/libuv/dist/test/ |
| runner.c | 184 /* If it's a helper the user asks for, start it directly. */ 386 const task_entry_t* helper; local 389 for (n_helpers = 0, helper = TASKS; helper->main; helper++) { 390 if (helper->is_helper && strcmp(helper->task_name, task->task_name) == 0) { 391 *helpers++ = helper;
|