Lines Matching defs:check

166 /* Structure used to check the range of integer types.a */
173 /* Structure used to check whether an integer value is in a set. */
180 /* Used to check whether a parameter matches the area of memory referenced by
804 CheckParameterEvent * const check =
805 event ? event : (CheckParameterEvent*)malloc(sizeof(*check));
807 check->parameter_name = parameter;
808 check->check_value = check_function;
809 check->check_value_data = check_data;
810 set_source_location(&check->location, file, line);
811 add_symbol_value(&global_function_parameter_map_head, symbols, 2, check,
995 /* CheckParameterValue callback to check whether a value is within a set. */
1004 /* CheckParameterValue callback to check whether a value isn't within a set. */
1014 * register a check event. */
1037 /* Add an event to check whether a value is in a set. */
1048 /* Add an event to check whether a value isn't in a set. */
1059 /* CheckParameterValue callback to check whether a value is within a range. */
1071 /* CheckParameterValue callback to check whether a value is not within a range. */
1084 * register a check event. */
1122 /* CheckParameterValue callback to check whether a value is equal to an
1130 /* Add an event to check a parameter equals an expected value. */
1140 /* CheckParameterValue callback to check whether a value is not equal to an
1148 /* Add an event to check a parameter is not equal to an expected 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. */
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. */
1200 /* CheckParameterValue callback to check whether a parameter equals an area of
1204 CheckMemoryData * const check = cast_largest_integral_type_to_pointer(
1206 assert_non_null(check);
1209 (const char*)check->memory, check->size);
1214 * register a check event. */
1234 /* Add an event to check whether a parameter matches an area of memory. */
1244 /* CheckParameterValue callback to check whether a parameter is not equal to
1248 CheckMemoryData * const check = cast_largest_integral_type_to_pointer(
1250 assert_non_null(check);
1253 (const char*)check->memory,
1254 check->size);
1258 /* Add an event to check whether a parameter doesn't match an area of memory. */
1294 CheckParameterEvent * const check = (CheckParameterEvent*)result;
1296 global_last_parameter_location = check->location;
1297 check_succeeded = check->check_value(value, check->check_value_data);
1299 free(check);
1314 "to check parameter %s of function %s\n", file, line,
1710 /* Display the blocks allocated after the specified check point. This
1737 /* Free all blocks allocated after the specified check point. */
1754 /* Fail if any any blocks are allocated after the specified check point. */
2274 /* FIXME check only one test or fixture is set */
2392 /* Setup the memory check point, it will be evaluated on teardown */
2556 "Could not run the test - check test fixtures");