Lines Matching defs:parameter
180 /* Used to check whether a parameter matches the area of memory referenced by
258 /* Location of last parameter value checked was declared. */
386 /* Create function results and expected parameter lists. */
409 "%s parameter still has values that haven't been checked.\n", 2)) {
613 * The value is returned as an output parameter with the function returning the
793 * Add a custom parameter checking function. If the event parameter is NULL
795 * parameter is provided it must be allocated on the heap and doesn't need to
799 const char* const function, const char* const parameter,
806 const char* symbols[] = {function, parameter};
807 check->parameter_name = parameter;
1016 const char* const function, const char* const parameter,
1032 function, parameter, file, line, check_function,
1039 const char* const function, const char* const parameter,
1043 expect_set(function, parameter, file, line, values, number_of_values,
1050 const char* const function, const char* const parameter,
1054 expect_set(function, parameter, file, line, values, number_of_values,
1086 const char* const function, const char* const parameter,
1095 _expect_check(function, parameter, file, line, check_function,
1100 /* Add an event to determine whether a parameter is within a range. */
1102 const char* const function, const char* const parameter,
1106 expect_range(function, parameter, file, line, minimum, maximum,
1111 /* Add an event to determine whether a parameter is not within a range. */
1113 const char* const function, const char* const parameter,
1117 expect_range(function, parameter, file, line, minimum, maximum,
1130 /* Add an event to check a parameter equals an expected value. */
1132 const char* const function, const char* const parameter,
1135 _expect_check(function, parameter, file, line, check_value, value, NULL,
1148 /* Add an event to check a parameter is not equal to an expected value. */
1150 const char* const function, const char* const parameter,
1153 _expect_check(function, parameter, file, line, check_not_value, value,
1158 /* CheckParameterValue callback to check whether a parameter equals a string. */
1167 /* Add an event to check whether a parameter is equal to a string. */
1169 const char* const function, const char* const parameter,
1174 _expect_check(function, parameter, file, line, check_string,
1179 /* CheckParameterValue callback to check whether a parameter is not equals to
1189 /* Add an event to check whether a parameter is not equal to a string. */
1191 const char* const function, const char* const parameter,
1196 _expect_check(function, parameter, file, line, check_not_string,
1200 /* CheckParameterValue callback to check whether a parameter equals an area of
1216 const char* const function, const char* const parameter,
1229 _expect_check(function, parameter, file, line, check_function,
1234 /* Add an event to check whether a parameter matches an area of memory. */
1236 const char* const function, const char* const parameter,
1239 expect_memory_setup(function, parameter, file, line, memory, size,
1244 /* CheckParameterValue callback to check whether a parameter is not equal to
1258 /* Add an event to check whether a parameter doesn't match an area of memory. */
1260 const char* const function, const char* const parameter,
1263 expect_memory_setup(function, parameter, file, line, memory, size,
1277 /* Add an event to allow any value for a parameter. */
1279 const char* const function, const char* const parameter,
1281 _expect_check(function, parameter, file, line, check_any, 0, NULL,
1303 ": error: Check of parameter %s, function %s failed\n"
1305 ": note: Expected parameter declared here\n",
1314 "to check parameter %s of function %s\n", file, line,
1318 ": note: Previously declared parameter value was declared here\n",
1322 cm_print_error("There were no previously declared parameter values "