Searched refs:write (Results 1 - 25 of 79) sorted by relevance

1234

/art/tools/dexfuzz/src/dexfuzz/listeners/
H A DLogFileListener.java75 private void write(String msg) { method in class:LogFileListener
80 writer.write(msg + "\n");
88 write("Host verification: SUCCESS");
94 write("Host verification: FAILED");
100 write("Target verification: FAILED");
106 write("--> FUZZ " + (iteration + 1));
108 write("Time started: " + now.toString());
114 write("Some executors timed out.");
115 write("Timed out:");
117 write(" "
[all...]
/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DEncodedArrayItem.java31 public void write(DexRandomAccessFile file) throws IOException { method in class:EncodedArrayItem
33 value.write(file);
H A DAnnotationElement.java32 public void write(DexRandomAccessFile file) throws IOException { method in class:AnnotationElement
34 value.write(file);
H A DAnnotationItem.java33 public void write(DexRandomAccessFile file) throws IOException { method in class:AnnotationItem
36 annotation.write(file);
H A DDebugInfoItem.java45 public void write(DexRandomAccessFile file) throws IOException { method in class:DebugInfoItem
47 file.write(data);
H A DEncodedCatchHandlerList.java35 public void write(DexRandomAccessFile file) throws IOException { method in class:EncodedCatchHandlerList
38 encodedCatchHandler.write(file);
H A DEncodedValue.java77 public void write(DexRandomAccessFile file) throws IOException { method in class:EncodedValue
82 encodedArray.write(file);
84 encodedAnnotation.write(file);
86 file.write(value);
H A DRawDexObject.java22 * Base class for any data structure that we may read or write from a DEX file.
37 public void write(DexRandomAccessFile file) throws IOException; method in interface:RawDexObject
H A DAnnotationSetItem.java37 public void write(DexRandomAccessFile file) throws IOException { method in class:AnnotationSetItem
42 annotationOffItem.write(file);
H A DAnnotationSetRefList.java37 public void write(DexRandomAccessFile file) throws IOException { method in class:AnnotationSetRefList
42 annotationSetRefItem.write(file);
H A DEncodedAnnotation.java39 public void write(DexRandomAccessFile file) throws IOException { method in class:EncodedAnnotation
44 annotationElement.write(file);
H A DEncodedArray.java37 public void write(DexRandomAccessFile file) throws IOException { method in class:EncodedArray
41 encodedValue.write(file);
H A DEncodedCatchHandler.java42 public void write(DexRandomAccessFile file) throws IOException { method in class:EncodedCatchHandler
46 encodedTypeAddrPair.write(file);
H A DAnnotationOffItem.java30 public void write(DexRandomAccessFile file) throws IOException { method in class:AnnotationOffItem
H A DAnnotationSetRefItem.java30 public void write(DexRandomAccessFile file) throws IOException { method in class:AnnotationSetRefItem
H A DAnnotationsDirectoryItem.java59 public void write(DexRandomAccessFile file) throws IOException { method in class:AnnotationsDirectoryItem
68 fieldAnnotation.write(file);
73 methodAnnotation.write(file);
78 parameterAnnotation.write(file);
H A DTypeItem.java30 public void write(DexRandomAccessFile file) throws IOException { method in class:TypeItem
H A DClassDataItem.java65 public void write(DexRandomAccessFile file) throws IOException { method in class:ClassDataItem
72 staticFields[i].write(file);
75 instanceFields[i].write(file);
78 directMethods[i].write(file);
81 virtualMethods[i].write(file);
H A DRawDexFile.java77 public void write(DexRandomAccessFile file) throws IOException { method in class:RawDexFile
141 // Use the map list to write the file.
145 header.write(file);
154 stringId.write(file);
163 typeId.write(file);
172 protoId.write(file);
181 fieldId.write(file);
190 methodId.write(file);
199 classDef.write(file);
204 mapList.write(fil
[all...]
/art/runtime/interpreter/mterp/
H A Dgen_mterp.py273 asm_fp.write(" .balign %d\n" % handler_size_bytes)
286 asm_fp.write("\n .global %s\n" % start_label)
287 asm_fp.write("%s = " % start_label + label_prefix + "_op_nop\n")
288 asm_fp.write(" .text\n\n")
309 asm_fp.write(label_prefix + "_op_nop: /* dummy */\n");
312 asm_fp.write(" .global %s\n" % end_label)
313 asm_fp.write("%s:\n" % end_label)
319 asm_fp.write(" .global %s\n" % start_sister_label)
320 asm_fp.write(" .text\n")
321 asm_fp.write("
[all...]
/art/tools/
H A Dstream-trace-converter.py41 f.write(asbytearray)
61 f.write(asbytearray)
67 output.write(buf)
72 header.write('*version\n');
73 header.write('3\n');
74 header.write('data-file-overflow=false\n');
75 header.write('clock=dual\n');
76 header.write('vm=art\n');
171 header.write(line)
173 header.write('*thread
[all...]
H A Dgenerate_cmake_lists.py90 f.write('cmake_minimum_required(VERSION 3.6)\n')
91 f.write('project(%s)\n' % (project_name))
94 f.write('add_subdirectory(%s)\n' % (dr))
/art/libartbase/base/
H A Dlogging.cc129 TEMP_FAILURE_RETRY(write(STDERR_FILENO, program_name, strlen(program_name)));
130 TEMP_FAILURE_RETRY(write(STDERR_FILENO, " ", 1));
131 TEMP_FAILURE_RETRY(write(STDERR_FILENO, &kLogCharacters[static_cast<size_t>(log_severity)], 1));
132 TEMP_FAILURE_RETRY(write(STDERR_FILENO, " ", 1));
134 TEMP_FAILURE_RETRY(write(STDERR_FILENO, file, strlen(file)));
137 TEMP_FAILURE_RETRY(write(STDERR_FILENO, "] ", 2));
138 TEMP_FAILURE_RETRY(write(STDERR_FILENO, message, strlen(message)));
139 TEMP_FAILURE_RETRY(write(STDERR_FILENO, "\n", 1));
/art/compiler/optimizing/
H A Dside_effects_test.cc45 void testWriteAndReadSanity(SideEffects write, SideEffects read) { argument
46 EXPECT_FALSE(write.DoesNothing());
49 EXPECT_TRUE(write.DoesAnyWrite());
50 EXPECT_FALSE(write.DoesAnyRead());
56 EXPECT_TRUE(all.MayDependOn(write));
57 EXPECT_FALSE(write.MayDependOn(all));
63 EXPECT_FALSE(none.MayDependOn(write));
64 EXPECT_FALSE(write.MayDependOn(none));
69 void testWriteAndReadDependence(SideEffects write, SideEffects read) { argument
70 testWriteAndReadSanity(write, rea
77 testNoWriteAndReadDependence(SideEffects write, SideEffects read) argument
[all...]
/art/test/testrunner/
H A Drun_build_test_target.py55 sys.stderr.write("error: invalid build_target, see -l/--list.\n")
73 sys.stdout.write(str(build_command) + '\n')
90 sys.stdout.write(str(cmd) + '\n')
114 sys.stdout.write(str(run_test_command) + '\n')

Completed in 147 milliseconds

1234