Searched refs:architecture (Results 26 - 50 of 70) sorted by relevance

123

/haiku/headers/os/storage/
H A DFindDirectory.h180 const char* architecture, path_base_directory baseDirectory,
187 const char* architecture, path_base_directory baseDirectory,
193 status_t find_paths_etc(const char* architecture,
/haiku/src/kits/package/
H A DRepositoryInfo.cpp38 const char* const BRepositoryInfo::kArchitectureField = "architecture";
251 BRepositoryInfo::SetArchitecture(BPackageArchitecture architecture) argument
253 fArchitecture = architecture;
383 "architecture", NULL, NULL);
394 BPackageArchitecture architecture; local
395 if (BPackageInfo::GetArchitectureByName(architectureString, architecture)
396 != B_OK || architecture == B_PACKAGE_ARCHITECTURE_ANY) {
406 fArchitecture = architecture;
H A DPackageInfo.cpp38 "architecture",
218 int32 architecture; local
226 && (error = archive->FindInt32("architecture", &architecture)) == B_OK
260 if (architecture >= 0
261 && architecture <= B_PACKAGE_ARCHITECTURE_ENUM_COUNT) {
262 fArchitecture = (BPackageArchitecture)architecture;
722 BPackageInfo::SetArchitecture(BPackageArchitecture architecture) argument
724 fArchitecture = architecture;
1045 || (error = archive->AddInt32("architecture", fArchitectur
[all...]
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DRegistersView.cpp119 RegisterTableModel(Architecture* architecture) argument
121 fArchitecture(architecture),
199 RegistersView::RegistersView(Architecture* architecture) argument
202 fArchitecture(architecture),
220 RegistersView::Create(Architecture* architecture) argument
222 RegistersView* self = new RegistersView(architecture);
/haiku/src/kits/debugger/value/
H A DValueWriter.cpp20 ValueWriter::ValueWriter(Architecture* architecture, argument
23 fArchitecture(architecture),
H A DValueLoader.cpp19 ValueLoader::ValueLoader(Architecture* architecture, TeamMemory* teamMemory, argument
22 fArchitecture(architecture),
/haiku/src/system/runtime_loader/
H A Druntime_loader.cpp653 // check the architecture
658 const char* architecture = NULL; local
665 architecture = "x86_gcc2";
667 architecture = "x86";
671 architecture = "m68k";
674 architecture = "ppc";
677 architecture = "arm";
680 architecture = "arm64";
683 architecture = "x86_64";
686 architecture
[all...]
/haiku/src/kits/debugger/debug_info/
H A DDebuggerImageDebugInfo.h24 Architecture* architecture);
H A DDwarfStackFrameDebugInfo.h38 Architecture* architecture,
H A DDwarfImageDebugInfo.h45 Architecture* architecture,
H A DDwarfStackFrameDebugInfo.cpp167 DwarfStackFrameDebugInfo::DwarfStackFrameDebugInfo(Architecture* architecture, argument
175 fTypeContext(new(std::nothrow) DwarfTypeContext(architecture, imageID, file,
H A DDwarfImageDebugInfo.cpp88 RegisterMap* fromDwarfMap, Architecture* architecture,
94 fArchitecture(architecture),
180 Architecture* architecture, TeamMemory* teamMemory)
183 architecture, teamMemory),
331 DebuggerInterface* interface, Architecture* architecture,
339 fArchitecture(architecture),
496 // get the DWARF <-> architecture register maps
609 // get the DWARF <-> architecture register maps
1254 // simply default to the architecture's register width.
87 BasicTargetInterface(const Register* registers, int32 registerCount, RegisterMap* fromDwarfMap, Architecture* architecture, TeamMemory* teamMemory) argument
178 UnwindTargetInterface(const Register* registers, int32 registerCount, RegisterMap* fromDwarfMap, RegisterMap* toDwarfMap, CpuState* cpuState, Architecture* architecture, TeamMemory* teamMemory) argument
330 DwarfImageDebugInfo(const ImageInfo& imageInfo, DebuggerInterface* interface, Architecture* architecture, FileManager* fileManager, GlobalTypeLookup* typeLookup, GlobalTypeCache* typeCache, TeamFunctionSourceInformation* sourceInfo, DwarfFile* file) argument
/haiku/src/kits/debugger/jobs/
H A DJobs.h102 Architecture* architecture,
160 Architecture* architecture, Team* team,
182 Architecture* architecture,
215 Architecture* architecture,
H A DResolveValueNodeJob.cpp26 DebuggerInterface* debuggerInterface, Architecture* architecture,
32 fArchitecture(architecture),
25 ResolveValueNodeValueJob( DebuggerInterface* debuggerInterface, Architecture* architecture, CpuState* cpuState, TeamTypeInformation* typeInformation, ValueNodeContainer* container, ValueNode* valueNode) argument
/haiku/src/bin/
H A Dfindpaths.cpp100 " -a <architecture>\n"
101 " If the path(s) specified by <kind> are architecture specific, use\n"
102 " architecture <architecture>. If not specified, the primary\n"
103 " architecture is used, unless the -p/--path option is specified, in\n"
104 " which case the architecture associated with the given <path> is\n"
146 const char* architecture = NULL; local
156 { "architecture", required_argument, 0, 'a' },
174 architecture = optarg;
263 status_t error = pathFinder.FindPath(architecture, baseDirector
[all...]
/haiku/src/apps/debugger/user_interface/gui/utility_windows/
H A DWatchPromptWindow.cpp28 WatchPromptWindow::WatchPromptWindow(Architecture* architecture, argument
37 fArchitecture(architecture),
72 WatchPromptWindow::Create(Architecture* architecture, target_addr_t address, argument
75 WatchPromptWindow* self = new WatchPromptWindow(architecture, address,
/haiku/src/add-ons/kernel/file_systems/packagefs/package/
H A DPackage.h79 BPackageArchitecture architecture)
80 { fArchitecture = architecture; }
78 SetArchitecture( BPackageArchitecture architecture) argument
/haiku/src/apps/haikudepot/server/
H A DWebAppInterface.h68 const BString& architecture,
77 const BString& architecture,
/haiku/headers/config/
H A DHaikuConfig.h9 /* Determine the architecture and define macros for some fundamental
11 __HAIKU_ARCH - short name of the architecture (used in paths)
12 __HAIKU_ARCH_ABI - name of ABI (as in package architecture)
13 __HAIKU_ARCH_<arch> - defined to 1 for the respective architecture
87 # error Unsupported architecture!
131 /* architecture specific include macros */
/haiku/src/bin/package/
H A DPackageInfoPrinter.h269 void PrintArchitecture(uint32 architecture) const
272 architecture < B_PACKAGE_ARCHITECTURE_ENUM_COUNT
273 ? BPackageInfo::kArchitectureNames[architecture]
/haiku/headers/private/debugger/debug_info/
H A DTeamDebugInfo.h43 Architecture* architecture,
/haiku/src/system/libroot/os/
H A Dfind_directory.cpp482 // resolve "$a" placeholder to the architecture subdirectory, if not
488 const char* architecture = __get_architecture(); local
489 if (strcmp(architecture, __get_primary_architecture()) != 0) {
491 pathBuffer.Append(architecture);
671 // resolve "$a" placeholder to the architecture subdirectory, if not
/haiku/src/apps/haikudepot/packagemodel/
H A DPackageInfo.h58 const char* architecture);
/haiku/src/kits/package/hpkg/
H A DWriterImplBase.cpp409 // architecture
410 PackageAttribute* architecture = new PackageAttribute( local
413 architecture->unsignedInt = packageInfo.Architecture();
414 attributeList.Add(architecture);
/haiku/
H A Dconfigure33 <arch> specifies the target architecture, either
73 --target-arch <arch> Haiku only: Specify the target architecture to
76 architecture will be used.
79 architecture of the Haiku to build, subsequent
113 HAIKU_CPPFLAGS_<arch> The preprocessor flags for target architecture
115 HAIKU_CCFLAGS_<arch> The C flags for target architecture <arch>.
117 HAIKU_CXXFLAGS_<arch> The C++ flags for target architecture <arch>.
120 target architecture <arch>. Defaults to "".
121 HAIKU_LDFLAGS_<arch> The linker flags for target architecture <arch>.
124 architecture <arc
[all...]

Completed in 126 milliseconds

123