| /freebsd-12.1/contrib/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_external.cc | 21 const char *object_type; member 38 return tag_data ? tag_data->object_type : nullptr; in GetObjectTypeFromTag() 76 void *__tsan_external_register_tag(const char *object_type) { in __tsan_external_register_tag() argument 79 GetTagData(new_tag)->object_type = internal_strdup(object_type); in __tsan_external_register_tag() 81 internal_snprintf(header, sizeof(header), "race on %s", object_type); in __tsan_external_register_tag()
|
| H A D | tsan_report.cc | 171 const char *object_type = GetObjectTypeFromTag(mop->external_tag); in PrintMop() local 172 if (object_type == nullptr) in PrintMop() 173 object_type = "external object"; in PrintMop() 175 ExternalMopDesc(first, mop->write), object_type, in PrintMop() 201 const char *object_type = GetObjectTypeFromTag(loc->external_tag); in PrintLocation() local 202 if (!object_type) { in PrintLocation() 208 object_type, loc->heap_chunk_size, loc->heap_chunk_start, in PrintLocation()
|
| H A D | tsan_debugging.cc | 145 const char **object_type) { in __tsan_get_report_loc_object_type() argument 149 *object_type = GetObjectTypeFromTag(loc->external_tag); in __tsan_get_report_loc_object_type()
|
| H A D | tsan_interface.h | 83 void *__tsan_external_register_tag(const char *object_type); 153 const char **object_type);
|
| /freebsd-12.1/sys/dev/drm2/ttm/ |
| H A D | ttm_object.c | 150 enum ttm_object_type object_type, in ttm_base_object_init() argument 162 base->object_type = object_type; in ttm_base_object_init()
|
| H A D | ttm_object.h | 124 enum ttm_object_type object_type; member
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/ |
| H A D | TSanRuntime.cpp | 661 std::string object_type = loc->GetAsDictionary() in GenerateSummary() local 665 if (!object_type.empty()) { in GenerateSummary() 666 summary = "Race on " + object_type + " object"; in GenerateSummary() 760 std::string object_type = loc->GetAsDictionary() in GetLocationDescription() local 764 if (!object_type.empty()) { in GetLocationDescription() 766 object_type.c_str(), addr); in GetLocationDescription()
|
| /freebsd-12.1/contrib/gcc/cp/ |
| H A D | typeck.c | 1802 tree object_type; in build_class_member_access_expr() local 1815 object_type = TREE_TYPE (object); in build_class_member_access_expr() 1819 if (!CLASS_TYPE_P (object_type)) in build_class_member_access_expr() 1843 object_type)) in build_class_member_access_expr() 1963 | cp_type_quals (object_type)); in build_class_member_access_expr() 2124 tree object_type; in finish_class_member_access_expr() local 2142 dependent_type_p (object_type) in finish_class_member_access_expr() 2167 if (!CLASS_TYPE_P (object_type)) in finish_class_member_access_expr() 2170 name, object, object_type); in finish_class_member_access_expr() 2208 scope, name, object_type); in finish_class_member_access_expr() [all …]
|
| H A D | semantics.c | 1503 tree object_type, in check_accessibility_of_qualified_id() argument 1519 if (object_type in check_accessibility_of_qualified_id() 1528 && CLASS_TYPE_P (object_type) in check_accessibility_of_qualified_id() 1529 && DERIVED_FROM_P (scope, object_type)) in check_accessibility_of_qualified_id() 1532 qualifying_type = object_type; in check_accessibility_of_qualified_id()
|
| H A D | pt.c | 1710 tree object_type = NULL_TREE; in copy_default_args_to_explicit_spec() local 1753 if (object_type) in copy_default_args_to_explicit_spec() 7907 if (!object_type) in tsubst_baselink() 7908 object_type = current_class_type; in tsubst_baselink() 7911 object_type); in tsubst_baselink() 9311 tree object_type; in tsubst_copy_and_build() local 9319 object_type = TREE_TYPE (object); in tsubst_copy_and_build() 9331 if (object_type && !CLASS_TYPE_P (object_type)) in tsubst_copy_and_build() 9336 object_type); in tsubst_copy_and_build() 9341 object_type); in tsubst_copy_and_build() [all …]
|
| H A D | parser.c | 1214 tree object_type; member 1302 context->object_type = next->object_type; in cp_parser_context_new() 4836 parser->context->object_type = scope; in cp_parser_postfix_dot_deref_expression() 4931 parser->context->object_type = NULL_TREE; in cp_parser_postfix_dot_deref_expression() 15508 tree object_type = parser->context->object_type; in cp_parser_lookup_name() local 15546 else if (object_type) in cp_parser_lookup_name() 15547 type = object_type; in cp_parser_lookup_name() 15633 else if (object_type) in cp_parser_lookup_name() 15638 if (CLASS_TYPE_P (object_type)) in cp_parser_lookup_name() 15643 object_decl = lookup_member (object_type, in cp_parser_lookup_name() [all …]
|
| H A D | class.c | 498 tree object_type; in convert_to_base() local 502 object_type = TREE_TYPE (TREE_TYPE (object)); in convert_to_base() 506 object_type = TREE_TYPE (object); in convert_to_base() 508 binfo = lookup_base (object_type, type, in convert_to_base()
|
| H A D | ChangeLog-2003 | 6514 an object_type which is not a class type.
|
| /freebsd-12.1/contrib/compiler-rt/include/sanitizer/ |
| H A D | tsan_interface.h | 134 void *__tsan_external_register_tag(const char *object_type);
|
| /freebsd-12.1/share/examples/ses/srcs/ |
| H A D | getobjmap.c | 82 objp[i].obj_id, geteltnm((int)objp[i].object_type)); in main()
|
| /freebsd-12.1/lib/libc/rpc/ |
| H A D | auth_des.c | 68 #define ALLOC(object_type) (object_type *) mem_alloc(sizeof(object_type)) argument
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | PythonDataObjects.cpp | 963 PythonObject object_type(PyRefType::Owned, PyObject_Type(py_obj)); in Check() 965 if (1 != PyObject_IsSubclass(object_type.get(), io_base_class.get())) in Check() 967 if (!object_type.HasAttribute("fileno")) in Check()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/ |
| H A D | ClangASTContext.cpp | 3987 const clang::ObjCObjectType *object_type = in GetObjCClassName() local 3989 if (object_type) { in GetObjCClassName() 3990 const clang::ObjCInterfaceDecl *interface = object_type->getInterface(); in GetObjCClassName() 8874 const clang::ObjCObjectType *object_type = in StartTagDeclarationDefinition() local 8876 if (object_type) { in StartTagDeclarationDefinition() 8877 clang::ObjCInterfaceDecl *interface_decl = object_type->getInterface(); in StartTagDeclarationDefinition()
|