Searched refs:check_function (Results 1 – 6 of 6) sorted by relevance
55 check_function: Callable[[CheckContext], Union[Command, None, List[Command]]]80 name = self.check_function.__name__87 if self.check_function.__doc__:88 return self.check_function.__doc__.strip()340 commands = check.check_function(context)
24 static auto check_function = [](int address_family) { in IsAddressFamilySupported()37 static const bool ipv4_supported = check_function(AF_INET); in IsAddressFamilySupported()41 static const bool ipv6_supported = check_function(AF_INET6); in IsAddressFamilySupported()
3 def check_function(foo):
129 for check_function in checks:130 check_function()
1268 auto check_function = [&](absl::Span<const int64_t> indexes) { in TEST_F() local1274 check_function); in TEST_F()1311 auto check_function = [&](absl::Span<const int64_t> indexes) { in TEST_F() local1317 check_function); in TEST_F()
1132 def decorator(check_function): argument1133 return Check(check_function, *args, **kwargs)