/aosp12/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/ |
H A D | DeviceInfoUtilsTest.java | 46 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 D | utsname.h | 27 char machine[9]; member 35 char machine[65]; member 42 char machine[__NEW_UTS_LEN + 1]; member
|
/aosp12/art/tools/golem/ |
H A D | build-target.sh | 29 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 D | X86GNUInfo.h | 21 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 D | cert_test.md | 75 ### 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 D | README.md | 7 …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 D | GenGnuDebugdata.cpp | 34 void InitEhdr(Ehdr* ehdr, uint32_t elf_class, uint32_t machine) { in InitEhdr() argument 42 ehdr->e_machine = machine; in InitEhdr()
|
H A D | ElfTestUtils.cpp | 60 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 D | read_elf.cpp | 380 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 D | environment.cpp | 420 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 D | rapidjson.h | 192 # 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 D | OVERVIEW.TXT | 8 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 D | bootchart.cpp | 86 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 D | utsname.h | 54 char machine[SYS_NMLN]; member
|
/aosp12/bionic/tests/headers/posix/ |
H A D | sys_utsname_h.c | 39 STRUCT_MEMBER_ARRAY(struct utsname, char/*[]*/, machine); in sys_utsname_h()
|
/aosp12/frameworks/compile/mclinker/lib/Target/AArch64/ |
H A D | AArch64GNUInfo.h | 21 uint32_t machine() const { return llvm::ELF::EM_AARCH64; } in machine() function
|
/aosp12/frameworks/compile/mclinker/lib/Target/ARM/ |
H A D | ARMGNUInfo.h | 21 uint32_t machine() const { return llvm::ELF::EM_ARM; } in machine() function
|
/aosp12/frameworks/compile/mclinker/lib/Target/Hexagon/ |
H A D | HexagonGNUInfo.h | 25 uint32_t machine() const { return llvm::ELF::EM_HEXAGON; } in machine() function
|
/aosp12/frameworks/compile/mclinker/lib/Target/Mips/ |
H A D | MipsGNUInfo.h | 24 uint32_t machine() const;
|
H A D | MipsGNUInfo.cpp | 28 uint32_t MipsGNUInfo::machine() const { in machine() function in mcld::MipsGNUInfo
|
/aosp12/frameworks/compile/mclinker/include/mcld/Target/ |
H A D | GNUInfo.h | 29 virtual uint32_t machine() const = 0;
|
/aosp12/art/runtime/ |
H A D | runtime_common.h | 60 os << info.sysname << " " << info.release << " (" << info.machine << ")"; in Dump()
|
/aosp12/bionic/tests/ |
H A D | getauxval_test.cpp | 52 if (strcmp(u.machine, "aarch64") == 0) { in TEST()
|
/aosp12/frameworks/compile/mclinker/lib/Support/Windows/ |
H A D | FileSystem.inc | 36 // FIXME: the extension depends on target machine, not host machine.
|
/aosp12/hardware/interfaces/biometrics/fingerprint/2.1/ |
H A D | IBiometricsFingerprint.hal | 25 * 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
|