HomeSort by relevance Sort by last modified time
    Searched defs:kRuntimeISA (Results 1 - 4 of 4) sorted by null

  /system/core/libnativebridge/tests/
NeedsNativeBridge_test.cpp 25 static const char* kRuntimeISA = "arm";
27 static const char* kRuntimeISA = "arm64";
29 static const char* kRuntimeISA = "mips";
31 static const char* kRuntimeISA = "x86";
33 static const char* kRuntimeISA = "x86_64";
35 static const char* kRuntimeISA = "unknown";
39 EXPECT_EQ(false, NeedsNativeBridge(kRuntimeISA));
43 EXPECT_EQ(kISAs[i] == nullptr ? false : strcmp(kISAs[i], kRuntimeISA) != 0,
  /art/runtime/arch/
instruction_set.h 40 static constexpr InstructionSet kRuntimeISA = kArm;
42 static constexpr InstructionSet kRuntimeISA = kArm64;
44 static constexpr InstructionSet kRuntimeISA = kMips;
46 static constexpr InstructionSet kRuntimeISA = kMips64;
48 static constexpr InstructionSet kRuntimeISA = kX86;
50 static constexpr InstructionSet kRuntimeISA = kX86_64;
52 static constexpr InstructionSet kRuntimeISA = kNone;
  /system/core/libnativebridge/
native_bridge.cc 231 static const char* kRuntimeISA = "arm";
233 static const char* kRuntimeISA = "arm64";
235 static const char* kRuntimeISA = "mips";
237 static const char* kRuntimeISA = "x86";
239 static const char* kRuntimeISA = "x86_64";
241 static const char* kRuntimeISA = "unknown";
250 return strncmp(instruction_set, kRuntimeISA, strlen(kRuntimeISA) + 1) != 0;
  /art/dex2oat/
dex2oat.cc 499 instruction_set_(kRuntimeISA),
    [all...]

Completed in 502 milliseconds