HomeSort by relevance Sort by last modified time
    Searched refs:abi (Results 1 - 25 of 707) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/oprofile/libabi/
abi.h 2 * @file abi.h
4 * Contains internal ABI management class
28 class abi { class
30 abi();
34 bool operator==(abi const & other) const;
35 friend std::ostream & operator<<(std::ostream & o, abi const & abi);
36 friend std::istream & operator>>(std::istream & i, abi & abi);
abi.cpp 2 * @file abi.cpp
12 #include "abi.h"
28 abi::abi() function in class:abi
38 int abi::need(string const key) const throw (abi_exception)
43 throw abi_exception(string("missing ABI key: ") + key);
47 bool abi::operator==(abi const & other) const
53 ostream & operator<<(ostream & o, abi const & abi)
    [all...]
opimport.cpp 3 * Import sample files from other ABI
11 #include "abi.h"
44 popt::option(abi_filename, "abi", 'a', "abi description", "filename"),
51 abi const & theabi;
58 extractor(abi const & a, unsigned char const * src, size_t len)
107 void import_from_abi(abi const & abi, void const * srcv,
114 extractor ext(abi, src, len);
116 memcpy(head->magic, src + abi.need("offsetof_header_magic"), 4)
    [all...]
  /abi/cpp/
use_rtti.mk 1 # To use RTTI, "include abi/cpp/use_rtti.mk" in your target.
4 abi/cpp/include \
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/util/
CtsHostStore.java 36 * @param abi
40 public static void storeCtsResult(String deviceSerial, String abi, String classMethodName, String result) {
41 mMap.put(generateTestKey(deviceSerial, abi, classMethodName), result);
48 public static String removeCtsResult(String deviceSerial, String abi, String classMethodName) {
49 return mMap.remove(generateTestKey(deviceSerial, abi, classMethodName));
53 * @return test key in the form of device_serial#abi#class_name#method_name
55 private static String generateTestKey(String deviceSerial, String abi, String classMethodName) {
56 return String.format("%s#%s#%s", deviceSerial, abi, classMethodName);
  /external/compiler-rt/lib/ubsan/
ubsan_type_hash.cc 12 // permitted to use language features which require a C++ ABI library.
21 // given in the Itanium ABI. We make no attempt to be ODR-compatible with
22 // those definitions, since existing ABI implementations aren't.
73 namespace abi = __cxxabiv1;
118 static bool isDerivedFromAtOffset(const abi::__class_type_info *Derived,
119 const abi::__class_type_info *Base,
124 if (const abi::__si_class_type_info *SI =
125 dynamic_cast<const abi::__si_class_type_info*>(Derived))
128 const abi::__vmi_class_type_info *VTI =
129 dynamic_cast<const abi::__vmi_class_type_info*>(Derived)
    [all...]
  /art/compiler/trampolines/
trampoline_compiler.h 28 const std::vector<uint8_t>* CreateTrampoline32(InstructionSet isa, EntryPointCallingConvention abi,
31 const std::vector<uint8_t>* CreateTrampoline64(InstructionSet isa, EntryPointCallingConvention abi,
trampoline_compiler.cc 31 static const std::vector<uint8_t>* CreateTrampoline(EntryPointCallingConvention abi,
35 switch (abi) {
36 case kInterpreterAbi: // Thread* is first argument (R0) in interpreter ABI.
59 static const std::vector<uint8_t>* CreateTrampoline(EntryPointCallingConvention abi,
63 switch (abi) {
64 case kInterpreterAbi: // Thread* is first argument (X0) in interpreter ABI.
96 static const std::vector<uint8_t>* CreateTrampoline(EntryPointCallingConvention abi,
100 switch (abi) {
101 case kInterpreterAbi: // Thread* is first argument (A0) in interpreter ABI.
160 const std::vector<uint8_t>* CreateTrampoline64(InstructionSet isa, EntryPointCallingConvention abi,
    [all...]
  /abi/cpp/src/
dynamic_cast.cc 31 // Itanium C++ ABI at http://www.codesourcery.com/public/cxx-abi/abi.html
62 inline const abi::__class_type_info*
66 return *reinterpret_cast<abi::__class_type_info*const*>(type_info_ptr);
100 const abi::__base_class_type_info* base_info)
116 const abi::__class_type_info *type,
118 const abi::__class_type_info *match_type)
125 case abi::__class_type_info::CLASS_TYPE_INFO_CODE:
129 case abi::__class_type_info::SI_CLASS_TYPE_INFO_CODE
    [all...]
  /bionic/libc/kernel/uapi/mtd/
mtd-user.h 22 #include <mtd/mtd-abi.h>
  /development/ndk/platforms/android-3/include/mtd/
mtd-user.h 17 #include <mtd/mtd-abi.h>
  /external/kernel-headers/original/uapi/mtd/
mtd-user.h 26 #include <mtd/mtd-abi.h>
  /cts/libs/commonutil/src/com/android/cts/util/
AbiUtils.java 54 * The set of ABI names which CTS supports.
59 * The map of architecture to ABI.
118 * @param abi The ABI name to test.
119 * @return true if the given ABI is supported by CTS.
121 public static boolean isAbiSupportedByCts(String abi) {
122 return ABIS_SUPPORTED_BY_CTS.contains(abi);
126 * Creates a flag for the given ABI.
127 * @param abi the ABI to create the flag for
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
CpuFeatures.java 68 for (String abi : Build.SUPPORTED_64_BIT_ABIS) {
69 if (abi.equals("arm64-v8a")) {
  /external/llvm/test/MC/Mips/
mips-abi-bad.s 1 # Error checking for malformed abi related directives
5 # CHECK : mips-abi-bad.s:4:16: error: unsupported option
10 # CHECK :mips-abi-bad.s:5:15: error: unexpected token in statement
18 # CHECK :mips-abi-bad.s:14:13: error: .module directive must come before any code
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
extension_helper.py 105 def all_entrypoints_in_abi(f, abi, api):
108 if category not in abi:
114 def any_entrypoints_in_abi(f, abi, api):
117 if category in abi:
123 def condition_for_function(f, abi, all_not_in_ABI):
128 not in the selected ABI. If all_not_in_ABI is not set, a condition
129 is created if any entryp-point name is not in the selected ABI.
135 if category not in abi:
160 abi = [ "1.0", "1.1", "1.2", "GL_ARB_multitexture" ]
170 condition = condition_for_function(f, abi, 0
    [all...]
  /external/mesa3d/src/mapi/glapi/gen/
extension_helper.py 105 def all_entrypoints_in_abi(f, abi, api):
108 if category not in abi:
114 def any_entrypoints_in_abi(f, abi, api):
117 if category in abi:
123 def condition_for_function(f, abi, all_not_in_ABI):
128 not in the selected ABI. If all_not_in_ABI is not set, a condition
129 is created if any entryp-point name is not in the selected ABI.
135 if category not in abi:
160 abi = [ "1.0", "1.1", "1.2", "GL_ARB_multitexture" ]
170 condition = condition_for_function(f, abi, 0
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
TestPackageRepo.java 43 /** mapping of ABI to a mapping of appPackageName to test definition */
81 String abi = def.getAbi().getName(); local
82 if (!mTestMap.containsKey(abi)) {
83 mTestMap.put(abi, new HashMap<String, TestPackageDef>());
85 mTestMap.get(abi).put(name, def);
128 String abi = parts[0]; local
130 if (mTestMap.containsKey(abi) && mTestMap.get(abi).containsKey(name)) {
131 return mTestMap.get(abi).get(name);
142 for (String abi : mTestMap.keySet())
    [all...]
  /external/libunwind/src/mips/
Gcreate_addr_space.c 61 as->abi = UNW_MIPS_ABI_O32;
63 as->abi = UNW_MIPS_ABI_N64;
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/device/
DeviceInfoCollector.java 44 for (String abi : AbiUtils.getAbisSupportedByCts()) {
45 IDS.add(AbiUtils.createId(abi, APP_PACKAGE_NAME));
57 public static void collectDeviceInfo(ITestDevice device, String abi, File testApkDir,
71 instrTest.setRunName(AbiUtils.createId(abi, APP_PACKAGE_NAME));
  /external/conscrypt/
update_prebuilts.sh 109 abi="${ABI_NAMES[$i]}"
111 if [[ ! -d "jni/$abi" ]]; then
112 mkdir -p "jni/$abi"
114 cp "$sys_lib_dir/libconscrypt_jni.so" "jni/$abi/" || exit 4
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/
TestPlanTest.java 99 for (String abi : sortedAbis) {
100 String test1Id = AbiUtils.createId(abi, TEST_NAME1);
101 String test2Id = AbiUtils.createId(abi, TEST_NAME2);
118 for (String abi : abis) {
119 String test1Id = AbiUtils.createId(abi, TEST_NAME1);
142 for (String abi : abis) {
143 String test1Id = AbiUtils.createId(abi, TEST_NAME1);
160 for (String abi : abis) {
161 String test1Id = AbiUtils.createId(abi, TEST_NAME1);
183 for (String abi : abis)
    [all...]
  /external/lldb/source/Plugins/Process/Utility/
UnwindLLDB.cpp 47 ABI *abi = process_sp ? process_sp->GetABI().get() : NULL; local
49 while (AddOneMoreFrame (abi))
105 UnwindLLDB::AddOneMoreFrame (ABI *abi)
161 if (abi && !abi->CallFrameAddressIsValid(cursor_sp->cfa))
179 if (abi && !abi->CodeAddressIsValid (cursor_sp->start_pc))
194 else if (abi && abi->StackUsesFrames()
222 ABI *abi = process_sp ? process_sp->GetABI().get() : NULL; local
254 ABI *abi = process_sp ? process_sp->GetABI().get() : NULL; local
    [all...]
  /external/chromium_org/build/android/
avd.py 36 opt_parser.add_option('--abi', default='x86',
51 if options.abi == 'x86':
88 emulator.LaunchEmulator(options.name, options.abi)
90 emulator.LaunchTempEmulators(options.emulator_count, options.abi,
  /external/lldb/source/Symbol/
FuncUnwinders.cpp 17 #include "lldb/Target/ABI.h"
173 ABI *abi = process_sp->GetABI().get(); local
174 if (abi)
178 abi->CreateDefaultUnwindPlan(*m_unwind_plan_arch_default_sp);
209 ABI *abi = process_sp->GetABI().get(); local
210 if (abi)
214 abi->CreateFunctionEntryUnwindPlan(*m_unwind_plan_arch_default_at_func_entry_sp);

Completed in 660 milliseconds

1 2 3 4 5 6 7 8 91011>>