Home
last modified time | relevance | path

Searched refs:output (Results 26 – 50 of 93) sorted by relevance

1234

/art/dexlayout/
Dcompact_dex_writer.cc378 bool CompactDexWriter::Write(DexContainer* output, std::string* error_msg) { in Write() argument
381 CHECK(output->IsCompactDexContainer()); in Write()
387 Container* const container = down_cast<Container*>(output); in Write()
389 Stream temp_main_stream(output->GetMainSection()); in Write()
390 CHECK_EQ(output->GetMainSection()->Size(), 0u); in Write()
391 Stream temp_data_stream(output->GetDataSection()); in Write()
398 static_cast<uint32_t>(output->GetDataSection()->Size()), in Write()
511 output->GetMainSection()->Resize(header_->FileSize()); in Write()
512 output->GetDataSection()->Resize(data_stream->Tell()); in Write()
516 header_->SetChecksum(CompactDexFile::CalculateChecksum(output->GetMainSection()->Begin(), in Write()
[all …]
/art/tools/checker/
DREADME8 followed by a pattern that the engine attempts to match in the compiler output.
12 header which specifies the output group it should be tested against. The group
13 name must exactly match one of the groups recognized in the output (they can
19 - CHECK: Must match an output line which appears in the output group
23 - CHECK-DAG: Must match an output line which appears in the output group
25 In other words, the order of output lines does not matter
27 - CHECK-NOT: Must not match any output line which appears in the output group
32 - CHECK-NEXT: Must match the output line which comes right after the line which
57 The engine will attempt to match the check lines against the output of the
/art/tools/dexfuzz/src/dexfuzz/listeners/
DUpdatingConsoleListener.java68 String output = String.format("| %-9d| %-9d| %-9d| %-9d| %-9d| %-9d|", in handleIterationFinished() local
71 System.out.print("\r" + output); in handleIterationFinished()
/art/compiler/
Dcfi_test.h93 std::vector<std::string>* output) { in ReformatAsm() argument
105 output->push_back(line); in ReformatAsm()
111 std::vector<std::string>* output) { in ReformatCfi() argument
133 output->push_back(address + ": " + new_line); in ReformatCfi()
/art/test/961-default-iface-resolution-gen/
Dinfo.txt13 return equivalent output when run multiple times and the expected output should
/art/test/970-iface-super-resolution-gen/
Dinfo.txt13 return equivalent output when run multiple times and the expected output should
/art/test/964-default-iface-init-gen/
Dinfo.txt13 return equivalent output when run multiple times and the expected output should
/art/test/etc/
Ddefault-build279 echo ${D8} ${D8_FLAGS} $d8_local_flags --output $d8_output $d8_inputs
281 ${D8} ${D8_FLAGS} $d8_local_flags --output $d8_output $d8_inputs
319 ${DEXMERGER} --min-api 1000 --output ./d8_merge_out "${dex_files_to_merge[@]}"
420 ${SMALI} -JXmx512m assemble ${SMALI_ARGS} --output smali_classes.dex `find smali -name '*.smali'`
444 …${SMALI} -JXmx512m assemble ${SMALI_ARGS} --output smali_classes2.dex `find smali-multidex -name '…
473 …${SMALI} -JXmx512m assemble ${SMALI_ARGS} --output smali_classes-ex.dex `find smali-ex -name '*.sm…
/art/test/971-iface-super/
Dinfo.txt13 return equivalent output when run multiple times and the expected output should
/art/test/968-default-partial-compile-gen/
Dinfo.txt13 return equivalent output when run multiple times and the expected output should
/art/compiler/linker/
Doutput_stream_test.cc96 std::vector<uint8_t> output; in TEST_F() local
97 VectorOutputStream output_stream("test vector output", &output); in TEST_F()
100 CheckTestOutput(output); in TEST_F()
/art/compiler/debug/dwarf/
Ddwarf_test.h91 FILE* output = popen(cmd.data(), "r"); in Objdump() local
94 while ((line = fgets(buffer, sizeof(buffer), output)) != nullptr) { in Objdump()
109 pclose(output); in Objdump()
/art/test/999-redefine-hiddenapi/src-redefine/
Dgen.sh25 d8 --output . "$TMP/${CLASS}.class" &&
/art/tools/class2greylist/src/com/android/class2greylist/
DAnnotationPropertyWriter.java29 public AnnotationPropertyWriter(OutputStream output) { in AnnotationPropertyWriter() argument
30 mOutput = new PrintStream(output); in AnnotationPropertyWriter()
/art/tools/dexfuzz/src/dexfuzz/executors/
DExecutor.java230 String output = executionResult.getFlattenedAll(); in didTargetVerify() local
231 if (output.contains("VerifyError") || output.contains("Verification failed on class")) { in didTargetVerify()
/art/compiler/optimizing/
Dregister_allocator_linear_scan.cc344 Location output = locations->Out(); in ProcessInstruction() local
345 if (output.IsUnallocated() && output.GetPolicy() == Location::kSameAsFirstInput) { in ProcessInstruction()
357 } else if (output.IsRegister() || output.IsFpuRegister()) { in ProcessInstruction()
360 current->SetRegister(output.reg()); in ProcessInstruction()
361 BlockRegister(output, position, position + 1); in ProcessInstruction()
362 } else if (output.IsPair()) { in ProcessInstruction()
364 current->SetRegister(output.low()); in ProcessInstruction()
366 high->SetRegister(output.high()); in ProcessInstruction()
368 BlockRegister(output.ToLow(), position, position + 1); in ProcessInstruction()
369 BlockRegister(output.ToHigh(), position, position + 1); in ProcessInstruction()
[all …]
/art/test/693-vdex-inmem-loader-evict/src-secondary/
Dgen.sh41 d8 --output "$TMP" "$TMP/MyClass${suffix}.class" && \
/art/oatdump/
Doatdump_test.cc102 std::string output; in TEST_F() local
104 ForkAndExecResult res = ForkAndExec({dexdump, "-d", dex_location}, post_fork_fn, &output); in TEST_F()
/art/test/050-sync-test/src/
DMain.java109 output(mNumber); in run()
117 void output(int num) { in output() method in CpuThread
/art/tools/
Dsymbolize.sh46 oatdump --symbolize=/tmp/$2 --output=$OUT/symbols/$1/$2
Dwrap-logcat.py47 stdout=args.output,
/art/test/989-method-trace-throw/
Dinfo.txt15 change the output of this test.
/art/test/988-method-trace/
Dinfo.txt15 change the output of this test.
/art/test/800-smali/smali/
Db_29778499_1.smali4 # Test returning an object that doesn't implement the declared output interface.
/art/tools/dexfuzz/
DREADME44 --dump-output <combination of ISA(s) and and backend(s)>
82 As the fuzzer works, you'll see output like:
102 output. NB: if all backends crashed with the same output, this would
105 resulting output. Divergent programs are run multiple times with a

1234