/frameworks/base/tools/incident_report/ |
D | printer.cpp | 29 Out::Out(int fd) in Out() function in Out 38 Out::~Out() in ~Out() 44 Out::reallocate(int size) in reallocate() 59 Out::printf(const char* format, ...) in printf() 102 Out::indent() in indent() 109 Out::dedent() in dedent() 117 Out::print_indent() in print_indent()
|
D | printer.h | 22 class Out 25 explicit Out(int fd); 26 ~Out();
|
D | main.cpp | 41 static void print_message(Out* out, Descriptor const* descriptor, GenericMessage const* message); 143 print_value(Out* out, FieldDescriptor const* field, GenericMessage::Node const& node) in print_value() 221 print_message(Out* out, Descriptor const* descriptor, GenericMessage const* message) in print_message() 438 Out out(outFd); in main()
|
/frameworks/compile/mclinker/lib/Target/AArch64/ |
D | AArch64PLT.cpp | 121 uint32_t* Out = NULL; in applyPLT1() local 124 Out = static_cast<uint32_t*>(malloc(AArch64PLT1::EntrySize)); in applyPLT1() 125 memcpy(Out, aarch64_plt1, AArch64PLT1::EntrySize); in applyPLT1() 129 Out[0] = helper_reencode_adr_imm(Out[0], imm >> 12); in applyPLT1() 131 Out[1] = helper_reencode_add_imm( in applyPLT1() 132 Out[1], helper_get_page_offset(GOTEntryAddress) >> 3); in applyPLT1() 134 Out[2] = helper_reencode_add_imm(Out[2], in applyPLT1() 137 plt1->setValue(reinterpret_cast<unsigned char*>(Out)); in applyPLT1()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/ |
D | GSMPhoneTest.java.broken | 100 assertNotNull("Message Time Out", msg); 166 assertNotNull("Message Time Out", msg); 201 assertNotNull("Message Time Out", mGSMTestHandler.waitForMessage(ANY_MESSAGE)); 229 assertNotNull("Message Time Out", mGSMTestHandler.waitForMessage(ANY_MESSAGE)); 255 assertNotNull("Message Time Out", msg); 306 assertNotNull("Message Time Out", msg); 340 assertNotNull("Message Time Out", mGSMTestHandler.waitForMessage(ANY_MESSAGE)); 376 assertNotNull("Message Time Out", msg); 435 assertNotNull("Message Time Out", mGSMTestHandler.waitForMessage(ANY_MESSAGE)); 462 assertNotNull("Message Time Out", mGSMTestHandler.waitForMessage(ANY_MESSAGE)); [all …]
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
D | ARMPLT.cpp | 115 uint32_t* Out = NULL; in applyPLT1() local 118 Out = static_cast<uint32_t*>(malloc(ARMPLT1::EntrySize)); in applyPLT1() 120 if (!Out) in applyPLT1() 127 Out[0] = arm_plt1[0] | ((Offset >> 20) & 0xFF); in applyPLT1() 128 Out[1] = arm_plt1[1] | ((Offset >> 12) & 0xFF); in applyPLT1() 129 Out[2] = arm_plt1[2] | (Offset & 0xFFF); in applyPLT1() 131 plt1->setValue(reinterpret_cast<unsigned char*>(Out)); in applyPLT1()
|
/frameworks/compile/libbcc/tools/bcc_strip_attr/ |
D | bcc_strip_attr.cpp | 134 tool_output_file Out(OutputFilename.c_str(), EC, in main() local 147 Out.os() << *M; in main() 148 } else if (!CheckBitcodeOutputToConsole(Out.os(), true)) { in main() 149 WriteBitcodeToFile(M.get(), Out.os()); in main() 152 Out.keep(); in main()
|
/frameworks/compile/slang/ |
D | llvm-rs-as.cpp | 89 std::unique_ptr<tool_output_file> Out in WriteOutputFile() local 97 if (Force || !CheckBitcodeOutputToConsole(Out->os(), true)) { in WriteOutputFile() 98 slang::writeBitcode(Out->os(), *M, in WriteOutputFile() 103 if (!Out->os().has_error()) { in WriteOutputFile() 105 Out->keep(); in WriteOutputFile()
|
D | slang_bitcode_gen.cpp | 32 void writeBitcode(llvm::raw_ostream &Out, in writeBitcode() argument 99 Out.write(reinterpret_cast<char*>(&Wrapper), ActualWrapperLen); in writeBitcode() 100 Out << Bitcode.str(); in writeBitcode()
|
D | slang_bitcode_gen.h | 31 void writeBitcode(llvm::raw_ostream &Out,
|
D | slang_rs_reflection.cpp | 80 GeneratedFile &Out, bool Parens); 87 GeneratedFile *Out, const RSContext *RSContext, 426 GeneratedFile &Out, bool Parens) { in genCheck64BitInternal() argument 430 Out << '('; in genCheck64BitInternal() 431 Out << "RenderScript.getPointerSize() == 8"; in genCheck64BitInternal() 433 Out << ')'; in genCheck64BitInternal() 436 Out << "sIs64Bit"; in genCheck64BitInternal() 1602 void genReduceResultRangeCheck(GeneratedFile &Out, const char *InVal) { in genReduceResultRangeCheck() argument 1603 Out.indent() << "if (" << InVal << " < 0)\n"; in genReduceResultRangeCheck() 1604 Out.indent() << " throw new RSRuntimeException(\"Result is not representible in Java\");\n"; in genReduceResultRangeCheck() [all …]
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
D | HexagonPLT.cpp | 140 uint32_t* Out = NULL; in applyPLT1() local 143 Out = static_cast<uint32_t*>(malloc(HexagonPLT1::EntrySize)); in applyPLT1() 145 if (!Out) in applyPLT1() 148 memcpy(Out, hexagon_plt1, plt1->size()); in applyPLT1() 150 int32_t* dest = reinterpret_cast<int32_t*>(Out); in applyPLT1() 160 plt1->setValue(reinterpret_cast<unsigned char*>(Out)); in applyPLT1()
|
/frameworks/base/libs/hwui/pipeline/skia/ |
D | SkiaDisplayList.cpp | 119 nsecs_t timeTilNextFrame = TreeInfo::Out::kNoAnimatedImageDelay; in prepareListAndChildren() 126 timeTilNextFrame != TreeInfo::Out::kNoAnimatedImageDelay) { in prepareListAndChildren() 128 if (delay == TreeInfo::Out::kNoAnimatedImageDelay || timeTilNextFrame < delay) { in prepareListAndChildren()
|
/frameworks/ml/nn/common/operations/ |
D | ArgMinMax.cpp | 32 template <typename In, typename Out> 34 Out* outputData, const Shape& outputShape) { in argMinMaxImpl()
|
/frameworks/base/libs/hwui/ |
D | TreeInfo.h | 102 struct Out { struct
|
/frameworks/compile/slang/BitWriter_2_9/ |
D | ReaderWriter_2_9.h | 56 void WriteBitcodeToFile(const llvm::Module *M, llvm::raw_ostream &Out);
|
D | BitcodeWriter.cpp | 1708 void llvm_2_9::WriteBitcodeToFile(const Module *M, raw_ostream &Out) { in WriteBitcodeToFile() argument 1738 Out.write((char*)&Buffer.front(), Buffer.size()); in WriteBitcodeToFile()
|
/frameworks/compile/slang/BitWriter_2_9_func/ |
D | ReaderWriter_2_9_func.h | 56 void WriteBitcodeToFile(const llvm::Module *M, llvm::raw_ostream &Out);
|
D | BitcodeWriter.cpp | 1772 void llvm_2_9_func::WriteBitcodeToFile(const Module *M, raw_ostream &Out) { in WriteBitcodeToFile() argument 1802 Out.write((char*)&Buffer.front(), Buffer.size()); in WriteBitcodeToFile()
|
/frameworks/compile/slang/BitWriter_3_2/ |
D | ReaderWriter_3_2.h | 56 void WriteBitcodeToFile(const llvm::Module *M, llvm::raw_ostream &Out);
|
D | BitcodeWriter.cpp | 1846 void llvm_3_2::WriteBitcodeToFile(const Module *M, raw_ostream &Out) { in WriteBitcodeToFile() argument 1876 Out.write((char*)&Buffer.front(), Buffer.size()); in WriteBitcodeToFile()
|
/frameworks/compile/libbcc/lib/ |
D | RSKernelExpand.cpp | 533 SmallGEPIndices Out(I32Args.size()); in GEPHelper() local 535 std::transform(I32Args.begin(), I32Args.end(), Out.begin(), in GEPHelper() 537 return Out; in GEPHelper()
|
/frameworks/base/services/core/java/com/android/server/ |
D | EventLogTags.logtags | 180 # Out of memory for surfaces.
|
/frameworks/base/libs/hwui/renderthread/ |
D | CanvasContext.cpp | 388 info.out.animatedImageDelay != TreeInfo::Out::kNoAnimatedImageDelay) { in prepareTree()
|
/frameworks/base/core/proto/android/stats/dnsresolver/ |
D | dns_resolver.proto | 275 SYS_ENOSR = 63; // Out of streams resources
|