Home
last modified time | relevance | path

Searched refs:got (Results 1 – 25 of 36) sorted by relevance

12

/frameworks/base/tools/aapt/tests/
DCrunchCache_test.cpp18 void expectEqual(int got, int expected, const char* desc) { in expectEqual() argument
20 cout << "Got " << got << ", expected " << expected << "..."; in expectEqual()
21 cout << ( (got == expected) ? "PASSED" : "FAILED") << endl; in expectEqual()
22 errno += ((got == expected) ? 0 : 1); in expectEqual()
/frameworks/libs/binary_translation/exec_region/
Dsections.ld44 .got : {
45 *(.got)
47 .got.plt : {
48 *(.got.plt)
/frameworks/compile/mclinker/lib/Target/X86/
DX86LDBackend.cpp350 LDSection& got = file_format->getGOT(); in initTargetSections() local
351 m_pGOT = new X86_32GOT(got); in initTargetSections()
473 X86_32GOTEntry* got = 0; in emitGOTSectionData() local
479 got = &(llvm::cast<X86_32GOTEntry>((*it))); in emitGOTSectionData()
480 *buffer = static_cast<uint32_t>(got->getValue()); in emitGOTSectionData()
496 X86_32GOTEntry* got = 0; in emitGOTPLTSectionData() local
503 got = &(llvm::cast<X86_32GOTEntry>((*it))); in emitGOTPLTSectionData()
504 *buffer = static_cast<uint32_t>(got->getValue()); in emitGOTPLTSectionData()
617 LDSection& got = file_format->getGOT(); in initTargetSections() local
618 m_pGOT = new X86_64GOT(got); in initTargetSections()
[all …]
/frameworks/compile/mclinker/lib/Target/Mips/
DMipsGOTPLT.cpp35 GOTPLTEntry* got = &(llvm::cast<GOTPLTEntry>((*it))); in emit() local
36 *buffer = static_cast<uint32_t>(got->getValue()); in emit()
37 result += got->size(); in emit()
DMipsRelocator.cpp602 MipsGOT& got = getTarget().getGOT(); in getLocalGOTEntry() local
607 Fragment* got_entry = got.lookupLocalEntry(rsym, entryValue); in getLocalGOTEntry()
614 got_entry = got.consumeLocal(); in getLocalGOTEntry()
616 if (got.isPrimaryGOTConsumed()) in getLocalGOTEntry()
619 got.setEntryValue(got_entry, entryValue); in getLocalGOTEntry()
621 got.recordLocalEntry(rsym, entryValue, got_entry); in getLocalGOTEntry()
629 MipsGOT& got = getTarget().getGOT(); in getGlobalGOTEntry() local
634 Fragment* got_entry = got.lookupGlobalEntry(rsym); in getGlobalGOTEntry()
641 got_entry = got.consumeGlobal(); in getGlobalGOTEntry()
643 if (got.isPrimaryGOTConsumed()) in getGlobalGOTEntry()
[all …]
DMipsGOT.cpp496 Mips32GOTEntry* got = &(llvm::cast<Mips32GOTEntry>((*it))); in emit() local
497 *buffer = static_cast<uint32_t>(got->getValue()); in emit()
498 result += got->size(); in emit()
531 Mips64GOTEntry* got = &(llvm::cast<Mips64GOTEntry>((*it))); in emit() local
532 *buffer = static_cast<uint64_t>(got->getValue()); in emit()
533 result += got->size(); in emit()
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
DBitUtilsTest.java149 int[] got = unpackBits(tc.packedBits); in testBitsPacking() local
156 + Arrays.toString(got), in testBitsPacking()
157 Arrays.equals(tc.bits, got)); in testBitsPacking()
160 long got = packBits(tc.bits); in testBitsPacking() local
167 + got, in testBitsPacking()
169 got); in testBitsPacking()
/frameworks/base/apct-tests/perftests/core/src/android/libcore/
DReferencePerfTest.java118 int got = count.get(); in timeFinalization() local
119 if (n != got) { in timeFinalization()
121 String.format("Only %d of %d objects finalized?", got, n)); in timeFinalization()
/frameworks/base/core/tests/utiltests/src/android/util/
DLocalLogTest.java102 String got = gotLines[i]; in verifyAllLines() local
103 String msg = String.format("%s did not contain %s", quote(got), quote(want)); in verifyAllLines()
104 assertTrue(msg, got.contains(want)); in verifyAllLines()
/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64GOT.cpp121 AArch64GOTEntry* got = NULL; in emit() local
124 got = &(llvm::cast<AArch64GOTEntry>((*it))); in emit()
125 *buffer = static_cast<uint64_t>(got->getValue()); in emit()
DAArch64LDBackend.cpp94 LDSection& got = file_format->getGOT(); in initTargetSections() local
95 m_pGOT = new AArch64GOT(got); in initTargetSections()
/frameworks/compile/mclinker/lib/Target/ARM/
DARMGOT.cpp118 ARMGOTEntry* got = NULL; in emit() local
121 got = &(llvm::cast<ARMGOTEntry>((*it))); in emit()
122 *buffer = static_cast<uint32_t>(got->getValue()); in emit()
/frameworks/proto_logging/stats/atoms/hotword/
Dhotword_atoms.proto108 // Indicates that the system got the keyphrase from DSP.
118 // Indicates that the system got the exception after informing the service.
130 // Indicates that the system got the unexpected detected callback.
133 // Indicates that the system got the security exception when handling detected callback.
136 // Indicates that the system got the unexpected rejected callback.
149 // Indicates that system got security exception when handling training data callback.
152 // Indicates that system got remote exception when handling training data callback.
211 // Indicates that the system got the security exception when handling external
242 // Indicates that the audio egress got interrupted exception.
308 // Indicates that the audio egress got interrupted exception.
/frameworks/base/core/java/com/android/internal/util/
DTokenBucket.java112 int got = mAvailable; in get() local
114 return got; in get()
/frameworks/base/cmds/incident_helper/tests/
DPsParser_test.cpp56 PsProto got; in TEST_F() local
215 got.ParseFromString(GetCapturedStdout()); in TEST_F()
218 if (got.processes_size() != expected.processes_size()) { in TEST_F()
219 … fprintf(stderr, "Got %d processes, want %d\n", got.processes_size(), expected.processes_size()); in TEST_F()
222 int n = got.processes_size(); in TEST_F()
224 PsProto::Process g = got.processes(i); in TEST_F()
/frameworks/compile/mclinker/include/mcld/LD/
DDiagGOTPLT.inc3 "%0 is not a dynamic symbol, do not put it in global got",
4 "%0 is not a dynamic symbol, do not put it in global got")
/frameworks/proto_logging/stats/enums/federatedcompute/
Denums.proto72 // Client issued an eligibility eval checkin request, but got interrupted on
80 // Client issued a regular checkin request, but got an IO error.
89 // Client issued a regular checin request, but got interrupted on the
93 // Client issued a regular checin request, but got aborted by the server.
165 // Client got interrupted during computation.
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagonLDBackend.cpp309 HexagonGOTEntry* got = 0; in emitGOTSectionData() local
315 got = &(llvm::cast<HexagonGOTEntry>((*it))); in emitGOTSectionData()
316 *buffer = static_cast<uint32_t>(got->getValue()); in emitGOTSectionData()
358 HexagonGOTEntry* got = 0; in emitGOTPLTSectionData() local
365 got = &(llvm::cast<HexagonGOTEntry>((*it))); in emitGOTPLTSectionData()
366 *buffer = static_cast<uint32_t>(got->getValue()); in emitGOTPLTSectionData()
409 LDSection& got = file_format->getGOT(); in initTargetSections() local
410 m_pGOT = new HexagonGOT(got); in initTargetSections()
/frameworks/proto_logging/stats/atoms/wear/media/
Dwear_media_extension_atoms.proto155 // Name of the media app package from where Output Switcher got triggered.
170 // Name of the media app package from where Output Switcher got triggered.
181 // Name of the media app package from where Output Switcher got triggered.
/frameworks/proto_logging/stats/enums/app/
Dremoteprovisioner_enums.proto24 KEYS_SUCCESSFULLY_PROVISIONED = 1; // Success: got keys and certs
/frameworks/base/core/java/android/app/backup/
DFullBackup.java247 int got = in.read(buffer, 0, toRead); in restoreFile() local
248 if (got <= 0) { in restoreFile()
255 out.write(buffer, 0, got); in restoreFile()
265 size -= got; in restoreFile()
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
Dsingle_source_script.rscript66 rsDebug("got ", actual);
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
Dsingle_source_script.rscript68 rsDebug("got ", actual);
/frameworks/compile/mclinker/lib/Target/
DGNULDBackend.cpp2208 LDSection& got = getOutputFormat()->getGOT(); in setOutputSectionAddress() local
2209 if ((getSectionOrder(got) == SHO_RELRO_LAST) && in setOutputSectionAddress()
2210 (got.addr() + got.size() < vma)) { in setOutputSectionAddress()
2211 uint64_t diff = vma - got.addr() - got.size(); in setOutputSectionAddress()
2212 got.setAddr(vma - got.size()); in setOutputSectionAddress()
2213 got.setOffset(got.offset() + diff); in setOutputSectionAddress()
/frameworks/base/services/backup/java/com/android/server/backup/utils/
DTarBackupReader.java698 final int got = readExactly(mInputStream, block, 0, 512); in readTarHeader() local
699 if (got == 0) { in readTarHeader()
702 if (got < 512) { in readTarHeader()

12