/frameworks/base/tools/aapt/tests/ |
D | CrunchCache_test.cpp | 18 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/ |
D | sections.ld | 44 .got : { 45 *(.got) 47 .got.plt : { 48 *(.got.plt)
|
/frameworks/compile/mclinker/lib/Target/X86/ |
D | X86LDBackend.cpp | 350 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/ |
D | MipsGOTPLT.cpp | 35 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()
|
D | MipsRelocator.cpp | 602 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 …]
|
D | MipsGOT.cpp | 496 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/ |
D | BitUtilsTest.java | 149 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/ |
D | ReferencePerfTest.java | 118 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/ |
D | LocalLogTest.java | 102 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/ |
D | AArch64GOT.cpp | 121 AArch64GOTEntry* got = NULL; in emit() local 124 got = &(llvm::cast<AArch64GOTEntry>((*it))); in emit() 125 *buffer = static_cast<uint64_t>(got->getValue()); in emit()
|
D | AArch64LDBackend.cpp | 94 LDSection& got = file_format->getGOT(); in initTargetSections() local 95 m_pGOT = new AArch64GOT(got); in initTargetSections()
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
D | ARMGOT.cpp | 118 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/ |
D | hotword_atoms.proto | 108 // 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/ |
D | TokenBucket.java | 112 int got = mAvailable; in get() local 114 return got; in get()
|
/frameworks/base/cmds/incident_helper/tests/ |
D | PsParser_test.cpp | 56 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/ |
D | DiagGOTPLT.inc | 3 "%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/ |
D | enums.proto | 72 // 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/ |
D | HexagonLDBackend.cpp | 309 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/ |
D | wear_media_extension_atoms.proto | 155 // 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/ |
D | remoteprovisioner_enums.proto | 24 KEYS_SUCCESSFULLY_PROVISIONED = 1; // Success: got keys and certs
|
/frameworks/base/core/java/android/app/backup/ |
D | FullBackup.java | 247 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/ |
D | single_source_script.rscript | 66 rsDebug("got ", actual);
|
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
D | single_source_script.rscript | 68 rsDebug("got ", actual);
|
/frameworks/compile/mclinker/lib/Target/ |
D | GNULDBackend.cpp | 2208 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/ |
D | TarBackupReader.java | 698 final int got = readExactly(mInputStream, block, 0, 512); in readTarHeader() local 699 if (got == 0) { in readTarHeader() 702 if (got < 512) { in readTarHeader()
|