Searched refs:helper (Results 1 - 25 of 73) sorted by relevance

123

/freebsd-10-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i386/ustack/
H A Dannotated_helper.d29 dtrace:helper:ustack:
H A Dhelper_helper.d29 dtrace:helper:ustack:
/freebsd-10-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/sparc/ustack/
H A Dannotated_helper.d29 dtrace:helper:ustack:
H A Dhelper_helper.d29 dtrace:helper:ustack:
/freebsd-10-stable/sys/sys/
H A Dkhelp.h40 * A KPI for managing kernel helper modules which perform useful functionality
52 struct helper;
60 int khelp_register_helper(struct helper *h);
62 int khelp_deregister_helper(struct helper *h);
H A Dmodule_khelp.h48 struct helper { struct
60 TAILQ_ENTRY(helper) h_next;
65 struct helper *helper; member in struct:khelp_modevent_data
76 .helper = hdata, \
H A Dhhook.h40 * A KPI modelled on the pfil framework for instantiating helper hook points
68 struct helper;
71 /* Signature for helper hook functions. */
76 * Information required to add/remove a helper hook function to/from a helper
81 struct helper *hook_helper;
133 * one helper hook function is registered for the specified helper hook point.
/freebsd-10-stable/secure/libexec/ssh-pkcs11-helper/
H A DMakefile5 PROG= ssh-pkcs11-helper
6 SRCS= ssh-pkcs11.c ssh-pkcs11-helper.c
7 MAN= ssh-pkcs11-helper.8
/freebsd-10-stable/libexec/ulog-helper/
H A DMakefile3 PROG= ulog-helper
/freebsd-10-stable/sys/kern/
H A Dkern_khelp.c55 RW_SYSINIT(khelplistlock, &khelp_list_lock, "helper list lock");
57 static TAILQ_HEAD(helper_head, helper) helpers = TAILQ_HEAD_INITIALIZER(helpers);
60 static inline void khelp_remove_osd(struct helper *h, struct osd *hosd);
70 khelp_register_helper(struct helper *h)
72 struct helper *tmph;
119 khelp_deregister_helper(struct helper *h)
121 struct helper *tmph;
151 struct helper *h;
161 /* If helper is correct class and needs to store OSD... */
188 struct helper *
[all...]
/freebsd-10-stable/contrib/atf/atf-c++/detail/
H A Dtest_helpers.cpp89 const char* helper = "detail/process_helpers"; local
93 ".." / ".." / "atf-c" / helper;
96 ".." / "atf-c" / helper;
98 return atf::fs::path(atf_c_tests_base) / helper;
/freebsd-10-stable/sys/dev/drm2/i915/
H A Dintel_fb.c42 struct drm_device *dev = ifbdev->helper.dev;
105 ifbdev->helper.fb = fb;
106 ifbdev->helper.fbdev = info;
143 drm_fb_helper_fill_var(info, &ifbdev->helper, sizes->fb_width, sizes->fb_height);
167 static int intel_fb_find_or_create_single(struct drm_fb_helper *helper, argument
170 struct intel_fbdev *ifbdev = (struct intel_fbdev *)helper;
174 if (!helper->fb) {
195 if (ifbdev->helper.fbdev) {
196 info = ifbdev->helper.fbdev;
206 drm_fb_helper_fini(&ifbdev->helper);
[all...]
/freebsd-10-stable/secure/libexec/
H A DMakefile7 SUBDIR+=sftp-server ssh-keysign ssh-pkcs11-helper
/freebsd-10-stable/contrib/netbsd-tests/bin/sh/
H A Dt_evaltested.sh38 cat > helper.sh << EOF
48 output="$($TEST_SH helper.sh)"
H A Dt_exit.sh89 echo '( trap "echo exiting" 0 )' >helper.sh
90 atf_check -s exit:0 -o match:exiting -e empty ${TEST_SH} helper.sh
92 # atf_check -s exit:0 -o match:exiting -e empty /bin/ksh helper.sh
101 echo '( trap "echo exiting" 0; exit; echo NO_NO_NO )' >helper.sh
103 ${TEST_SH} helper.sh
105 # atf_check -s exit:0 -o match:exiting -e empty /bin/ksh helper.sh
H A Dt_redir.sh338 cat <<- 'DONE' > helper.sh
370 ${TEST_SH} helper.sh 1 2 3 4 5 6 7 8 9
379 ${TEST_SH} helper.sh 10 15 19 20 25 29
387 ${TEST_SH} helper.sh 32 33 49 50 51 63 64 65 77 88 99
395 ${TEST_SH} helper.sh 100 101 199 200 222 333 444 499
403 ${TEST_SH} helper.sh 1000 1001 1002 1003 1004 1005
418 cat <<- 'DONE' > helper.sh
450 ${TEST_SH} helper.sh 3 4 5 6 7 8 9
456 ${TEST_SH} helper.sh 10 11 13 15 16 19 20 28 29
461 ${TEST_SH} helper
[all...]
/freebsd-10-stable/sys/dev/drm2/radeon/
H A Dradeon_fb.c41 this contains a helper + a radeon fb
42 the helper contains a pointer to radeon framebuffer baseclass.
45 struct drm_fb_helper helper; member in struct:radeon_fbdev
237 /* setup helper */
238 rfbdev->helper.fb = fb;
239 rfbdev->helper.fbdev = info;
251 drm_fb_helper_fill_var(info, &rfbdev->helper, sizes->fb_width, sizes->fb_height);
273 static int radeon_fb_find_or_create_single(struct drm_fb_helper *helper, argument
276 struct radeon_fbdev *rfbdev = (struct radeon_fbdev *)helper;
280 if (!helper
[all...]
/freebsd-10-stable/sys/dev/drm2/
H A Ddrm_fb_helper.h6 * DRM framebuffer helper functions
57 int (*fb_probe)(struct drm_fb_helper *helper,
85 int drm_fb_helper_single_fb_probe(struct drm_fb_helper *helper,
89 struct drm_fb_helper *helper, int crtc_count,
91 void drm_fb_helper_fini(struct drm_fb_helper *helper);
H A Ddrm_fb_helper.c6 * DRM framebuffer helper functions
42 MODULE_DESCRIPTION("DRM KMS helper");
143 * The fb helper functions are useful to provide an fbdev on top of a drm kernel
145 * helper functions used by many drivers to implement the kernel mode setting
149 /* simple single crtc case helper function */
234 static void drm_fb_helper_save_lut_atomic(struct drm_crtc *crtc, struct drm_fb_helper *helper)
244 helper->funcs->gamma_get(crtc, &r_base[i], &g_base[i], &b_base[i], i);
263 struct drm_fb_helper *helper = info->par;
270 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) {
271 for (i = 0; i < helper
355 struct drm_fb_helper *helper; local
488 drm_fb_helper_crtc_free(struct drm_fb_helper *helper) argument
[all...]
/freebsd-10-stable/sys/mips/cavium/octe/
H A Dwrapper-cvmx-includes.h45 #include <contrib/octeon-sdk/cvmx-helper.h>
46 #include <contrib/octeon-sdk/cvmx-helper-board.h>
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/
H A DHashing.h509 /// \brief Construct a recursive hash combining helper.
662 // Recursively hash each argument using a helper class.
663 ::llvm::hashing::detail::hash_combine_recursive_helper helper; local
664 return helper.combine(0, helper.buffer, helper.buffer + 64, args...);
676 ::llvm::hashing::detail::hash_combine_recursive_helper helper;
677 return helper.combine(0, helper.buffer, helper
[all...]
/freebsd-10-stable/contrib/atf/atf-sh/
H A Dintegration_test.sh138 atf_test_case helper
143 atf_add_test_case helper
147 "${ATF_SH}" -s ./custom-shell tp helper
/freebsd-10-stable/contrib/netbsd-tests/lib/libc/gen/posix_spawn/
H A Dt_spawnattr.c115 char helper[FILENAME_MAX]; local
142 sprintf(helper, "%s/h_spawnattr",
144 err = posix_spawn(&pid, helper, NULL, &attr, args, NULL);
/freebsd-10-stable/share/examples/kld/khelp/
H A Dh_example.c32 * This example Khelp module uses the helper hook points available in the TCP
55 * Function prototype for our helper hook (man 9 hhook) compatible hook
70 * Fill in the required bits of our module's struct helper (defined in
73 * - Our helper will be storing persistent state for each TCP connection, so we
77 * - Our helper is related to the TCP subsystem, so tell the Khelp framework
79 * connection is created, the Khelp framework takes care of associating helper
82 struct helper example_helper = {
88 * Set which helper hook points our module wants to hook by creating an array of
111 * Very simple helper hook function. Here's a quick run through the arguments:
/freebsd-10-stable/sys/contrib/octeon-sdk/
H A Dcvmx-helper-loop.c58 #include <asm/octeon/cvmx-helper.h>
68 #include "cvmx-helper.h"
72 #include "cvmx-helper.h"

Completed in 190 milliseconds

123