Home
last modified time | relevance | path

Searched refs:machine (Results 1 – 25 of 103) sorted by relevance

12345

/aosp12/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/
H A DDeviceInfoUtilsTest.java46 final String machine = "aarch64"; in formatKernelVersion_regularInputVersion_shouldStripOptionalValues() local
47 final StructUtsname uname = new StructUtsname(sysName, nodeName, release, version, machine); in formatKernelVersion_regularInputVersion_shouldStripOptionalValues()
60 final String machine = "aarch64"; in formatKernelVersion_nonRegularInputVersion_shouldBeUnavailable() local
61 final StructUtsname uname = new StructUtsname(sysName, nodeName, release, version, machine); in formatKernelVersion_nonRegularInputVersion_shouldBeUnavailable()
/aosp12/bionic/libc/kernel/uapi/linux/
H A Dutsname.h27 char machine[9]; member
35 char machine[65]; member
42 char machine[__NEW_UTS_LEN + 1]; member
/aosp12/art/tools/golem/
H A Dbuild-target.sh29 Usage: $(basename "${BASH_SOURCE[0]}") [--golem=<target>] --machine-type=MACHINE_TYPE
39 --machine-type=MT Specify the machine type that will be built.
51 echo >&2 "Available machine types:"
183 --machine-type=*)
/aosp12/frameworks/compile/mclinker/lib/Target/X86/
H A DX86GNUInfo.h21 uint32_t machine() const { return llvm::ELF::EM_386; } in machine() function
34 uint32_t machine() const { return llvm::ELF::EM_X86_64; } in machine() function
/aosp12/system/bt/gd/docs/testing/
H A Dcert_test.md75 ### Run GD cert tests on host machine
125 1. Check if your ADB version is up to date on both host machine and remote
143 Among these ports, ADB Port needs to be forwarded from local machine to
145 machine's adb server (`ssh -R`). Signal Port needs to be forwarded from
146 remote workstation to listen on local machine so that local phone can
149 forwarded from local machine to listen on remote workstation so that Test
167 You should see devices on your local machine shows up
175 You should see same set of devices connected to your local machine
/aosp12/hardware/interfaces/tv/cec/1.0/vts/functional/
H A DREADME.md7 …these CEC VTS tests requires an Android playback, TV or audio device connected to the host machine.
17 On the host machine, ensure that the [software requirements](https://codelabs.developers.google.com…
/aosp12/system/unwinding/libunwindstack/tests/
H A DGenGnuDebugdata.cpp34 void InitEhdr(Ehdr* ehdr, uint32_t elf_class, uint32_t machine) { in InitEhdr() argument
42 ehdr->e_machine = machine; in InitEhdr()
H A DElfTestUtils.cpp60 void TestInitGnuDebugdata(uint32_t elf_class, uint32_t machine, bool init_gnu_debugdata, in TestInitGnuDebugdata() argument
64 TestInitEhdr(&ehdr, elf_class, machine); in TestInitGnuDebugdata()
/aosp12/system/extras/simpleperf/
H A Dread_elf.cpp380 auto machine = elf_->getHeader()->e_machine;
381 bool is_arm = (machine == llvm::ELF::EM_ARM || machine == llvm::ELF::EM_AARCH64);
415 auto machine = elf_->getHeader()->e_machine;
416 bool is_arm = (machine == llvm::ELF::EM_ARM || machine == llvm::ELF::EM_AARCH64);
H A Denvironment.cpp420 char machine[40]; in GetMachineArch() local
421 if (fgets(machine, sizeof(machine), fp.get()) == machine) { in GetMachineArch()
422 arch = GetArchType(android::base::Trim(machine)); in GetMachineArch()
431 ArchType arch = GetArchType(uname_buf.machine); in GetMachineArch()
/aosp12/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
H A Drapidjson.h192 # error Unknown machine endianess detected. User needs to define RAPIDJSON_ENDIAN.
202 # error Unknown machine endianess detected. User needs to define RAPIDJSON_ENDIAN.
217 # error Unknown machine endianess detected. User needs to define RAPIDJSON_ENDIAN.
/aosp12/packages/modules/adb/
H A DOVERVIEW.TXT8 connected to or running on a given host developer machine
18 This is a background process that runs on the host machine. Its purpose
49 or a script. It first tries to locate the ADB server on the host machine,
130 running on another machine. This hasn't been done yet though.
/aosp12/system/core/init/
H A Dbootchart.cpp86 fprintf(&*fp, "system.uname = %s %s %s %s\n", uts.sysname, uts.release, uts.version, uts.machine); in log_header()
89 fprintf(&*fp, "system.cpu = %s\n", uts.machine); in log_header()
/aosp12/bionic/libc/include/sys/
H A Dutsname.h54 char machine[SYS_NMLN]; member
/aosp12/bionic/tests/headers/posix/
H A Dsys_utsname_h.c39 STRUCT_MEMBER_ARRAY(struct utsname, char/*[]*/, machine); in sys_utsname_h()
/aosp12/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64GNUInfo.h21 uint32_t machine() const { return llvm::ELF::EM_AARCH64; } in machine() function
/aosp12/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMGNUInfo.h21 uint32_t machine() const { return llvm::ELF::EM_ARM; } in machine() function
/aosp12/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonGNUInfo.h25 uint32_t machine() const { return llvm::ELF::EM_HEXAGON; } in machine() function
/aosp12/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGNUInfo.h24 uint32_t machine() const;
H A DMipsGNUInfo.cpp28 uint32_t MipsGNUInfo::machine() const { in machine() function in mcld::MipsGNUInfo
/aosp12/frameworks/compile/mclinker/include/mcld/Target/
H A DGNUInfo.h29 virtual uint32_t machine() const = 0;
/aosp12/art/runtime/
H A Druntime_common.h60 os << info.sysname << " " << info.release << " (" << info.machine << ")"; in Dump()
/aosp12/bionic/tests/
H A Dgetauxval_test.cpp52 if (strcmp(u.machine, "aarch64") == 0) { in TEST()
/aosp12/frameworks/compile/mclinker/lib/Support/Windows/
H A DFileSystem.inc36 // FIXME: the extension depends on target machine, not host machine.
/aosp12/hardware/interfaces/biometrics/fingerprint/2.1/
H A DIBiometricsFingerprint.hal25 * This call must block if the HAL state machine is in busy state until HAL
52 * Switches the HAL state machine to collect and store a new fingerprint
96 * to all running clients. Switches the HAL state machine back to the idle

12345