Home
last modified time | relevance | path

Searched full:checker (Results 1 – 25 of 195) sorted by relevance

12345678

/openbmc/linux/lib/
H A Dfortify_kunit.c146 #define TEST_kmalloc(checker, expected_size, alloc_size) do { \ argument
151 checker(expected_size, kmalloc(alloc_size, gfp), \
153 checker(expected_size, \
156 checker(expected_size, kzalloc(alloc_size, gfp), \
158 checker(expected_size, \
161 checker(expected_size, kcalloc(1, alloc_size, gfp), \
163 checker(expected_size, kcalloc(alloc_size, 1, gfp), \
165 checker(expected_size, \
168 checker(expected_size, \
171 checker(expected_size, kmalloc_array(1, alloc_size, gfp), \
[all …]
/openbmc/linux/drivers/net/wireguard/
H A Dcookie.c19 void wg_cookie_checker_init(struct cookie_checker *checker, in wg_cookie_checker_init() argument
22 init_rwsem(&checker->secret_lock); in wg_cookie_checker_init()
23 checker->secret_birthdate = ktime_get_coarse_boottime_ns(); in wg_cookie_checker_init()
24 get_random_bytes(checker->secret, NOISE_HASH_LEN); in wg_cookie_checker_init()
25 checker->device = wg; in wg_cookie_checker_init()
45 void wg_cookie_checker_precompute_device_keys(struct cookie_checker *checker) in wg_cookie_checker_precompute_device_keys() argument
47 if (likely(checker->device->static_identity.has_identity)) { in wg_cookie_checker_precompute_device_keys()
48 precompute_key(checker->cookie_encryption_key, in wg_cookie_checker_precompute_device_keys()
49 checker->device->static_identity.static_public, in wg_cookie_checker_precompute_device_keys()
51 precompute_key(checker->message_mac1_key, in wg_cookie_checker_precompute_device_keys()
[all …]
H A Dcookie.h41 void wg_cookie_checker_init(struct cookie_checker *checker,
43 void wg_cookie_checker_precompute_device_keys(struct cookie_checker *checker);
47 enum cookie_mac_state wg_cookie_validate_packet(struct cookie_checker *checker,
55 struct cookie_checker *checker);
/openbmc/linux/arch/arm/probes/kprobes/
H A Dcheckers-arm.c87 [PROBES_LDRSTRD] = {.checker = arm_check_stack},
88 [PROBES_STORE_EXTRA] = {.checker = arm_check_stack},
89 [PROBES_STORE] = {.checker = arm_check_stack},
90 [PROBES_LDMSTM] = {.checker = arm_check_stack},
145 * from others, a specific checker is required to handle this extra
160 [PROBES_MRS] = {.checker = arm_check_regs_normal},
161 [PROBES_SATURATING_ARITHMETIC] = {.checker = arm_check_regs_normal},
162 [PROBES_MUL1] = {.checker = arm_check_regs_normal},
163 [PROBES_MUL2] = {.checker = arm_check_regs_normal},
164 [PROBES_MUL_ADD_LONG] = {.checker = arm_check_regs_normal},
[all …]
H A Dcheckers-thumb.c79 [PROBES_T32_LDMSTM] = {.checker = t32_check_stack},
80 [PROBES_T32_LDRDSTRD] = {.checker = t32_check_stack},
81 [PROBES_T32_LDRSTR] = {.checker = t32_check_stack},
101 [PROBES_T16_PUSH] = {.checker = t16_check_stack},
/openbmc/openbmc/meta-facebook/meta-bletchley/recipes-bletchley/board-type-checker/
H A Dboard-type-checker.bb1 SUMMARY = "Bletchley board type checker"
2 DESCRIPTION = "Bletchley board type checker to probe i2c device with correct driver in user-space"
14 SRC_URI = " file://board-type-checker-fpb \
15 file://board-type-checker-fpb.service \
19 SYSTEMD_SERVICE:${PN}:append = " board-type-checker-fpb.service"
23 install -m 0755 ${UNPACKDIR}/board-type-checker-fpb ${D}${libexecdir}/
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-security/spectre-meltdown-checker/
H A Dspectre-meltdown-checker_0.46.bb1 SUMMARY = "Hardware vulnerability and mitigation checker"
4 Meltdown vulnerability/mitigation checker for Linux & BSD \
6 HOMEPAGE = "https://github.com/speed47/spectre-meltdown-checker"
7 BUGTRACKER = "https://github.com/speed47/spectre-meltdown-checker/issues"
9 LIC_FILES_CHKSUM = "file://spectre-meltdown-checker.sh;beginline=2;endline=2;md5=3ae5399e70af7be9b9…
11 SRC_URI = "git://github.com/speed47/spectre-meltdown-checker;protocol=https;branch=master"
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-security/kernel-hardening-checker/
H A Dkernel-hardening-checker_0.6.10.bb10 HOMEPAGE = "https://github.com/a13xp0p0v/kernel-hardening-checker"
11 BUGTRACKER = "https://github.com/a13xp0p0v/kernel-hardening-checker/issues"
15 SRC_URI = "git://github.com/a13xp0p0v/kernel-hardening-checker;protocol=https;branch=master"
32 # oe-run-native kernel-hardening-checker-native kernel-hardening-checker ...
/openbmc/linux/drivers/firmware/psci/
H A DKconfig6 bool "ARM PSCI checker"
9 Run the PSCI checker during startup. This checks that hotplug and
12 The torture tests may interfere with the PSCI checker by turning CPUs
13 on and off through hotplug, so for now torture tests and PSCI checker
/openbmc/qemu/tests/unit/
H A Dtest-crypto-der.c211 QCryptoAns1DecoderResultChecker checker[MAX_CHECKER_COUNT]; member
223 QCryptoAns1DecoderResultChecker *checker = in checker_callback() local
226 g_assert(value == checker->exp_value); in checker_callback()
227 g_assert(vlen == checker->exp_vlen); in checker_callback()
242 const QCryptoAns1DecoderResultChecker *checker = in test_ans1() local
243 &test_data->checker[checker_idx++]; in test_ans1()
245 if (!checker->action) { in test_ans1()
249 g_assert(checker->action(&c->data, &c->dlen, checker_callback, in test_ans1()
250 (void *)checker, &error_abort) in test_ans1()
251 == checker->exp_vlen); in test_ans1()
[all …]
/openbmc/openbmc-test-automation/redfish/dmtf_tools/
H A DRedfish_Reference_Checker.robot2 Documentation Test BMC using https://github.com/DMTF/Redfish-Reference-Checker
15 ${rsv_github_url} https://github.com/DMTF/Redfish-Reference-Checker.git
16 ${rsv_dir_path} Redfish-Reference-Checker
33 Run Keyword If ${rc} != 0 Fail Redfish-Reference-Checker Failed.
/openbmc/openbmc/poky/meta/recipes-support/aspell/
H A Daspell_0.60.8.1.bb1 SUMMARY = "GNU Aspell spell-checker"
3 DESCRIPTION = "Spell checker designed to eventually replace Ispell. \
4 It can either be used as a library or as an independent spell checker. \
7 checker out there for the English language."
/openbmc/openbmc/meta-facebook/meta-bletchley/recipes-bletchley/board-type-checker/files/
H A Dboard-type-checker-fpb.service2 Description=Front Panel Board Checker
11 ExecStart=/usr/libexec/board-type-checker-fpb
12 SyslogIdentifier=Front Panel Board Checker
/openbmc/qemu/scripts/qapi/
H A Dpylintrc5 # Disable the message, report, category or checker with the given id(s). You
10 # you want to run only the similarities checker, you can use "--disable=all
11 # --enable=similarities". If you want to run only the classes checker, but have
/openbmc/qemu/tests/qemu-iotests/
H A Dpylintrc3 # Disable the message, report, category or checker with the given id(s). You
8 # you want to run only the similarities checker, you can use "--disable=all
9 # --enable=similarities". If you want to run only the classes checker, but have
/openbmc/qemu/scripts/codeconverter/codeconverter/
H A Dqom_macros.py232 OR(*CHECKER_MACROS, name='checker'),
250 def checker(self) -> CheckerMacroName: member in TypeCheckMacro
251 """Name of checker macro being used"""
252 return self.group('checker') # type: ignore
321 expected_suffix = dict(EXPECTED_CHECKER_SUFFIXES).get(self.checker)
323 # here the available data depends on the checker macro being called:
327 if self.checker in ('OBJECT_GET_CLASS', 'OBJECT_CLASS_CHECK'):
329 elif self.checker == 'OBJECT_CHECK':
350 for checker,suffix in EXPECTED_CHECKER_SUFFIXES:
352 if self.checker != checker:
[all …]
H A Dqom_type_info.py348 # c.info("instance type checker declaration (%s) is here", c.group('uppercase'))
369 # DBG("checker instance type: %r", checker_instancetype)
376 # self.warn("instance type checker for %s (%s) not found", typename, instancetype)
388 # DBG("checker class type: %r", checker_classtype)
395 # self.warn("class type checker for %s (%s) not found", typename, classtype)
400 # c.warn("Type checker declaration for %s (%s) is here",
481 c.warn("class type checker for %s is present here", uppercase)
514 d.warn("instance type checker for %s already declared", uppercase)
516 c.warn("instance checker for %s is here", uppercase)
/openbmc/openbmc/meta-google/recipes-extended/libconfig/files/
H A D0001-makefile-Add-missing-LDFLAGS.patch16 @@ -6,7 +6,7 @@ all: example checker
19 checker: confcheck.o
/openbmc/linux/fs/ubifs/
H A Ddebug.h39 * @chk_lpt_sz: used by LPT tree size checker
40 * @chk_lpt_sz2: used by LPT tree size checker
41 * @chk_lpt_wastage: used by LPT tree size checker
42 * @chk_lpt_lebs: used by LPT tree size checker
43 * @new_nhead_offs: used by LPT tree size checker
/openbmc/qemu/python/
H A Dsetup.cfg133 # Disable the message, report, category or checker with the given id(s). You
138 # you want to run only the similarities checker, you can use "--disable=all
139 # --enable=similarities". If you want to run only the classes checker, but have
/openbmc/linux/fs/affs/
H A DChanges16 - The partition checker (drivers/block/genhd.c)
100 - Changed partition checker to allow devices
103 - The partition checker now also ignores the
338 - Partition checker for genhd.c
/openbmc/u-boot/fs/ubifs/
H A Ddebug.h39 * @chk_lpt_sz: used by LPT tree size checker
40 * @chk_lpt_sz2: used by LPT tree size checker
41 * @chk_lpt_wastage: used by LPT tree size checker
42 * @chk_lpt_lebs: used by LPT tree size checker
43 * @new_nhead_offs: used by LPT tree size checker
/openbmc/openbmc/poky/meta/recipes-graphics/wayland/
H A Dwayland_1.23.1.bb42 cp -rf ${B}/tests/*-test ${B}/tests/*-checker ${D}${PTEST_PATH}/tests
43 cp -rf ${B}/tests/*-checker ${D}${PTEST_PATH}
/openbmc/qemu/tests/functional/qemu_test/
H A Dtestcase.py152 checker = {'tcg': tcg_available,
154 if checker is None:
157 if not checker(qemu_bin=self.qemu_bin):
/openbmc/linux/arch/powerpc/kernel/
H A Dwatchdog.c41 * The local soft-NMI, and the SMP checker.
43 * The soft-NMI checker can detect lockups on the local CPU. When interrupts
50 * The soft-NMI checker will compare the heartbeat timestamp for this CPU
59 * The SMP checker can detect lockups on other CPUs. A global "pending"
86 /* SMP checker bits */

12345678