Searched defs:source (Results 1 - 10 of 10) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/util/
H A DDexJarMaker.java74 * @param source {@code non-null;} dex file to add
78 private void add(File source, JarOutputStream target) throws IOException { argument
80 if (!source.isFile()) {
81 throw new IllegalArgumentException("Wrong source dex file provided");
84 BufferedInputStream in = new BufferedInputStream(new FileInputStream(source));
86 entry.setTime(source.lastModified());
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DPlainInsn.java35 * @param position {@code non-null;} source position
58 * Constructs a single-source instance.
61 * @param position {@code non-null;} source position
63 * @param source {@code non-null;} spec for the source
66 RegisterSpec source) {
67 this(opcode, position, result, RegisterSpecList.make(source));
65 PlainInsn(Rop opcode, SourcePosition position, RegisterSpec result, RegisterSpec source) argument
H A DRops.java1118 * @param sources {@code non-null;} list of source types
1168 Type source = sources.getType(0);
1170 if (source == Type.KNOWN_NULL) {
1177 componentType = source.getComponentType();
1182 Type source = sources.getType(1);
1184 if (source == Type.KNOWN_NULL) {
1191 componentType = source.getComponentType();
1341 * @param types {@code non-null;} source types
1353 * @param types {@code non-null;} source types
1365 * @param types {@code non-null;} source type
1715 opConv(TypeBearer dest, TypeBearer source) argument
[all...]
/dalvik/dx/src/com/android/dx/rop/code/
H A DPlainInsn.java36 * @param position {@code non-null;} source position
59 * Constructs a single-source instance.
62 * @param position {@code non-null;} source position
64 * @param source {@code non-null;} spec for the source
67 RegisterSpec source) {
68 this(opcode, position, result, RegisterSpecList.make(source));
110 // Check for reverse subtraction, where first source is constant
66 PlainInsn(Rop opcode, SourcePosition position, RegisterSpec result, RegisterSpec source) argument
H A DRops.java1118 * @param sources {@code non-null;} list of source types
1168 Type source = sources.getType(0);
1170 if (source == Type.KNOWN_NULL) {
1177 componentType = source.getComponentType();
1182 Type source = sources.getType(1);
1184 if (source == Type.KNOWN_NULL) {
1191 componentType = source.getComponentType();
1341 * @param types {@code non-null;} source types
1353 * @param types {@code non-null;} source types
1365 * @param types {@code non-null;} source type
1715 opConv(TypeBearer dest, TypeBearer source) argument
[all...]
/dalvik/vm/native/
H A Ddalvik_system_Zygote.cpp251 // See storage config details at http://source.android.com/tech/storage/
264 const char* source = getenv("EMULATED_STORAGE_SOURCE"); local
267 if (source == NULL || target == NULL || legacy == NULL) {
272 // Prepare source paths
277 snprintf(source_user, PATH_MAX, "%s/%d", source, userid);
288 if (mount(source, target, NULL, MS_BIND, NULL) == -1) {
289 ALOGE("Failed to mount %s to %s: %s", source, target, strerror(errno));
/dalvik/dx/src/com/android/dx/ssa/
H A DSsaBasicBlock.java568 * is the source in question, then the move is placed at the beginning of
572 * @param source move source
574 public void addMoveToEnd(RegisterSpec result, RegisterSpec source) { argument
576 if (result.getReg() == source.getReg()) {
590 * The final insn in this block has a source or result
606 succ.addMoveToBeginning(result, source);
614 RegisterSpecList sources = RegisterSpecList.make(source);
629 * @param source move source
631 addMoveToBeginning(RegisterSpec result, RegisterSpec source) argument
[all...]
/dalvik/dx/src/com/android/dx/merge/
H A DDexMerger.java310 updateIndex(e1.offset, getIndexMap(e1.source), e1.index, outCount - 1);
314 updateIndex(e2.offset, getIndexMap(e2.source), e2.index, outCount - 1);
324 private List<UnsortedValue> readUnsortedValues(Dex source, IndexMap indexMap) { argument
325 TableOfContents.Section section = getSection(source.getTableOfContents());
331 Dex.Section in = source.open(section.off);
335 result.add(new UnsortedValue(source, indexMap, value, i, offset));
346 final Dex source; field in class:DexMerger.IdMerger.UnsortedValue
352 UnsortedValue(Dex source, IndexMap indexMap, T value, int index, int offset) { argument
353 this.source = source;
[all...]
/dalvik/vm/
H A DException.cpp1225 void dvmThrowArrayStoreExceptionIncompatibleArrays(ClassObject* source, ClassObject* destination) argument
1229 source, destination);
1238 "source[%d] of type %s cannot be stored in destination array of type %s",
/dalvik/dx/etc/
H A Djasmin.jar ... vars java.util.Vector methods jas.SourceAttr source jas.SignatureAttr signature jas.SourceDebugExtensionAttr debug jas. ...

Completed in 214 milliseconds