Lines Matching refs:instance

133           // instance to invalidate it.
226 ABIInstance instance;
228 instance.name = name;
230 instance.description = description;
231 instance.create_callback = create_callback;
233 GetABIInstances().push_back(instance);
355 DisassemblerInstance instance;
357 instance.name = name;
359 instance.description = description;
360 instance.create_callback = create_callback;
362 GetDisassemblerInstances().push_back(instance);
440 DynamicLoaderInstance instance;
442 instance.name = name;
444 instance.description = description;
445 instance.create_callback = create_callback;
446 instance.debugger_init_callback = debugger_init_callback;
448 GetDynamicLoaderInstances().push_back(instance);
525 JITLoaderInstance instance;
527 instance.name = name;
529 instance.description = description;
530 instance.create_callback = create_callback;
531 instance.debugger_init_callback = debugger_init_callback;
533 GetJITLoaderInstances().push_back(instance);
605 EmulateInstructionInstance instance;
607 instance.name = name;
609 instance.description = description;
610 instance.create_callback = create_callback;
612 GetEmulateInstructionInstances().push_back(instance);
689 OperatingSystemInstance instance;
691 instance.name = name;
693 instance.description = description;
694 instance.create_callback = create_callback;
695 instance.debugger_init_callback = debugger_init_callback;
697 GetOperatingSystemInstances().push_back(instance);
770 LanguageInstance instance;
772 instance.name = name;
774 instance.description = description;
775 instance.create_callback = create_callback;
777 GetLanguageInstances().push_back(instance);
852 LanguageRuntimeInstance instance;
854 instance.name = name;
856 instance.description = description;
857 instance.create_callback = create_callback;
858 instance.command_callback = command_callback;
859 instance.precondition_callback = precondition_callback;
861 GetLanguageRuntimeInstances().push_back(instance);
952 SystemRuntimeInstance instance;
954 instance.name = name;
956 instance.description = description;
957 instance.create_callback = create_callback;
959 GetSystemRuntimeInstances().push_back(instance);
1041 ObjectFileInstance instance;
1043 instance.name = name;
1045 instance.description = description;
1046 instance.create_callback = create_callback;
1047 instance.create_memory_callback = create_memory_callback;
1048 instance.save_core = save_core;
1049 instance.get_module_specifications = get_module_specifications;
1051 GetObjectFileInstances().push_back(instance);
1178 ObjectContainerInstance instance;
1180 instance.name = name;
1182 instance.description = description;
1183 instance.create_callback = create_callback;
1184 instance.get_module_specifications = get_module_specifications;
1186 GetObjectContainerInstances().push_back(instance);
1275 PlatformInstance instance;
1277 instance.name = name;
1279 instance.description = description;
1280 instance.create_callback = create_callback;
1281 instance.debugger_init_callback = debugger_init_callback;
1282 GetPlatformInstances().push_back(instance);
1391 ProcessInstance instance;
1393 instance.name = name;
1395 instance.description = description;
1396 instance.create_callback = create_callback;
1397 instance.debugger_init_callback = debugger_init_callback;
1399 GetProcessInstances().push_back(instance);
1491 ScriptInterpreterInstance instance;
1493 instance.name = name;
1495 instance.description = description;
1496 instance.create_callback = create_callback;
1497 instance.language = script_language;
1499 GetScriptInterpreterInstances().push_back(instance);
1586 StructuredDataPluginInstance instance;
1588 instance.name = name;
1590 instance.description = description;
1591 instance.create_callback = create_callback;
1592 instance.debugger_init_callback = debugger_init_callback;
1593 instance.filter_callback = filter_callback;
1595 GetStructuredDataPluginInstances().push_back(instance);
1688 SymbolFileInstance instance;
1690 instance.name = name;
1692 instance.description = description;
1693 instance.create_callback = create_callback;
1694 instance.debugger_init_callback = debugger_init_callback;
1696 GetSymbolFileInstances().push_back(instance);
1768 SymbolVendorInstance instance;
1770 instance.name = name;
1772 instance.description = description;
1773 instance.create_callback = create_callback;
1775 GetSymbolVendorInstances().push_back(instance);
1848 UnwindAssemblyInstance instance;
1850 instance.name = name;
1852 instance.description = description;
1853 instance.create_callback = create_callback;
1855 GetUnwindAssemblyInstances().push_back(instance);
1928 MemoryHistoryInstance instance;
1930 instance.name = name;
1932 instance.description = description;
1933 instance.create_callback = create_callback;
1935 GetMemoryHistoryInstances().push_back(instance);
2012 InstrumentationRuntimeInstance instance;
2014 instance.name = name;
2016 instance.description = description;
2017 instance.create_callback = create_callback;
2018 instance.get_type_callback = get_type_callback;
2021 GetInstrumentationRuntimeInstances().push_back(instance);
2111 TypeSystemInstance instance;
2113 instance.name = name;
2115 instance.description = description;
2116 instance.create_callback = create_callback;
2117 instance.supported_languages_for_types = supported_languages_for_types;
2118 instance.supported_languages_for_expressions = supported_languages_for_expressions;
2120 GetTypeSystemInstances().push_back(instance);
2211 REPLInstance instance;
2213 instance.name = name;
2215 instance.description = description;
2216 instance.create_callback = create_callback;
2217 instance.supported_languages = supported_languages;
2219 GetREPLInstances().push_back(instance);