Searched defs:target (Results 1 - 25 of 37) sorted by relevance

12

/dalvik/dexgen/src/com/android/dexgen/util/
H A DDexJarMaker.java50 JarOutputStream target = null;
52 target = new JarOutputStream(
55 add(new File(pathHolder.getDexFilePath()), target);
62 if (target != null) {
63 target.close();
75 * @param target {@code non-null;} target jar archive
78 private void add(File source, JarOutputStream target) throws IOException { argument
87 target.putNextEntry(entry);
91 target
[all...]
/dalvik/dx/src/com/android/dx/io/instructions/
H A DZeroRegisterDecodedInstruction.java29 int index, IndexType indexType, int target, long literal) {
30 super(format, opcode, index, indexType, target, literal);
28 ZeroRegisterDecodedInstruction(InstructionCodec format, int opcode, int index, IndexType indexType, int target, long literal) argument
H A DOneRegisterDecodedInstruction.java32 int index, IndexType indexType, int target, long literal,
34 super(format, opcode, index, indexType, target, literal);
31 OneRegisterDecodedInstruction(InstructionCodec format, int opcode, int index, IndexType indexType, int target, long literal, int a) argument
H A DRegisterRangeDecodedInstruction.java36 int index, IndexType indexType, int target, long literal,
38 super(format, opcode, index, indexType, target, literal);
35 RegisterRangeDecodedInstruction(InstructionCodec format, int opcode, int index, IndexType indexType, int target, long literal, int a, int registerCount) argument
H A DTwoRegisterDecodedInstruction.java35 int index, IndexType indexType, int target, long literal,
37 super(format, opcode, index, indexType, target, literal);
34 TwoRegisterDecodedInstruction(InstructionCodec format, int opcode, int index, IndexType indexType, int target, long literal, int a, int b) argument
H A DFiveRegisterDecodedInstruction.java44 int index, IndexType indexType, int target, long literal,
46 super(format, opcode, index, indexType, target, literal);
43 FiveRegisterDecodedInstruction(InstructionCodec format, int opcode, int index, IndexType indexType, int target, long literal, int a, int b, int c, int d, int e) argument
H A DFourRegisterDecodedInstruction.java41 int index, IndexType indexType, int target, long literal,
43 super(format, opcode, index, indexType, target, literal);
40 FourRegisterDecodedInstruction(InstructionCodec format, int opcode, int index, IndexType indexType, int target, long literal, int a, int b, int c, int d) argument
H A DThreeRegisterDecodedInstruction.java38 int index, IndexType indexType, int target, long literal,
40 super(format, opcode, index, indexType, target, literal);
37 ThreeRegisterDecodedInstruction(InstructionCodec format, int opcode, int index, IndexType indexType, int target, long literal, int a, int b, int c) argument
H A DDecodedInstruction.java53 * target address argument. This is an absolute address, not just
57 private final int target; field in class:DecodedInstruction
102 int index, IndexType indexType, int target, long literal) {
115 this.target = target;
150 * Gets the raw target.
153 return target;
157 * Gets the target as a relative offset from the given address.
160 return target - baseAddress;
164 * Gets the target a
101 DecodedInstruction(InstructionCodec format, int opcode, int index, IndexType indexType, int target, long literal) argument
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DTargetInsn.java23 * Instruction which has a single branch target.
26 /** {@code non-null;} the branch target */
27 private CodeAddress target; field in class:TargetInsn
31 * unknown ({@code -1}), and the target is initially
39 * @param target {@code non-null;} the branch target
42 RegisterSpecList registers, CodeAddress target) {
45 if (target == null) {
46 throw new NullPointerException("target == null");
49 this.target
41 TargetInsn(Dop opcode, SourcePosition position, RegisterSpecList registers, CodeAddress target) argument
74 withNewTargetAndReversed(CodeAddress target) argument
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DTargetInsn.java23 * Instruction which has a single branch target.
26 /** {@code non-null;} the branch target */
27 private CodeAddress target; field in class:TargetInsn
31 * unknown ({@code -1}), and the target is initially
39 * @param target {@code non-null;} the branch target
42 RegisterSpecList registers, CodeAddress target) {
45 if (target == null) {
46 throw new NullPointerException("target == null");
49 this.target
41 TargetInsn(Dop opcode, SourcePosition position, RegisterSpecList registers, CodeAddress target) argument
74 withNewTargetAndReversed(CodeAddress target) argument
[all...]
/dalvik/dx/src/com/android/dx/cf/code/
H A DSwitchList.java23 * List of (value, target) mappings representing the choices of a
25 * also holds the default target for the switch.
33 * is always one extra element in the target list, to hold the
34 * default target
81 * Gets the indicated target. Asking for the target at {@code size()}
82 * returns the default target.
85 * @return {@code >= 0;} the target
92 * Gets the default target. This is just a shorthand for
95 * @return {@code >= 0;} the default target
127 setDefaultTarget(int target) argument
147 add(int value, int target) argument
[all...]
H A DMachine.java29 * branch target information.
170 * indicating a branch target.
172 * @param target the argument value
174 public void auxTargetArg(int target); argument
183 * @param cases {@code non-null;} the list of key-target pairs, plus the default
184 * target
198 * Indicates that the target of this operation is the given local.
H A DBaseMachine.java54 /** auxiliary branch target argument */
69 /** {@code null-ok;} local target spec, if salient and calculated */
241 public final void auxTargetArg(int target) { argument
242 auxTarget = target;
336 * Gets the branch target auxiliary argument.
381 * Gets the target local register spec of the current operation, if any.
382 * The local target spec is the combination of the values indicated
391 * local target was set since the last time {@link #clearArgs} was
400 throw new SimException("local target with " +
529 * there is a local target (se
[all...]
H A DBasicBlocker.java216 int target) {
220 targetLists[offset] = IntList.makeImmutable(target);
228 * target and next instruction begin new blocks.)
237 targetLists[offset] = IntList.makeImmutable(next, target);
242 addWorkIfNecessary(target, true);
286 * there isn't any, then "next" is the sole target.
215 visitBranch(int opcode, int offset, int length, int target) argument
H A DBytecodeArray.java704 int target = offset + bytes.getShort(offset + 1);
705 visitor.visitBranch(opcode, offset, 3, target);
794 int target = offset + bytes.getInt(offset + 1);
798 visitor.visitBranch(newop, offset, 5, target);
844 int target = offset + bytes.getInt(at);
846 cases.add(low + i, target);
882 int target = offset + bytes.getInt(at + 4);
884 cases.add(match, target);
1232 * Visits an instruction which has a branch target argument.
1237 * @param target th
1239 visitBranch(int opcode, int offset, int length, int target) argument
1318 visitBranch(int opcode, int offset, int length, int target) argument
1394 visitBranch(int opcode, int offset, int length, int target) argument
[all...]
H A DSimulator.java696 int target) {
739 machine.auxTargetArg(target);
695 visitBranch(int opcode, int offset, int length, int target) argument
/dalvik/vm/compiler/codegen/arm/
H A DArchUtility.cpp201 lir->generic.target);
206 intptr_t target = local
210 sprintf(tbuf, "%p", (void *) target);
/dalvik/dx/src/com/android/dx/cf/direct/
H A DCodeObserver.java144 int target) {
145 String targetStr = (length <= 3) ? Hex.u2(target) : Hex.u4(target);
143 visitBranch(int opcode, int offset, int length, int target) argument
/dalvik/vm/
H A DSignalCatcher.cpp75 static void printProcessName(const DebugOutputTarget* target) argument
91 dvmPrintDebugMessage(target, "Cmd line: %s\n", tmpBuf);
104 DebugOutputTarget target; local
106 dvmCreateFileOutputTarget(&target, fp);
117 dvmPrintDebugMessage(&target,
121 printProcessName(&target);
122 dvmPrintDebugMessage(&target, "\n");
123 dvmDumpJniStats(&target);
124 dvmDumpAllThreadsEx(&target, true);
153 DebugOutputTarget target; local
[all...]
/dalvik/vm/compiler/codegen/x86/
H A DNcgAot.cpp114 bool jumpToException(const char* target) { argument
116 if(!strncmp(target, "common_err", 10)) isException = true;
117 if(!strncmp(target, "common_throw", 12)) isException = true;
118 if(!strncmp(target, "common_exception", 16)) isException = true;
123 ConditionCode cc, const char* target,
125 if(jumpToException(target) && currentExceptionBlockIdx >= 0) { //jump to the exceptionThrow block
129 conditional_jump(cc, target, isShortTerm);
133 const char* target, bool isShortTerm) {
134 if(jumpToException(target) && currentExceptionBlockIdx >= 0) { //jump to the exceptionThrow block
138 unconditional_jump(target, isShortTer
122 conditional_jump_global_API( ConditionCode cc, const char* target, bool isShortTerm) argument
132 unconditional_jump_global_API( const char* target, bool isShortTerm) argument
[all...]
/dalvik/vm/compiler/codegen/arm/Thumb/
H A DGen.cpp260 ArmLIR *target = newLIR0(cUnit, kArmPseudoTargetLabel); local
261 target->defMask = ENCODE_ALL;
263 branch1->generic.target = (LIR *)target;
/dalvik/vm/compiler/codegen/arm/Thumb2/
H A DGen.cpp240 ArmLIR *target; local
265 hopBranch->generic.target = (LIR *)hopTarget;
281 target = newLIR0(cUnit, kArmPseudoTargetLabel);
282 target->defMask = ENCODE_ALL;
283 branch->generic.target = (LIR *)target;
295 ArmLIR *target; local
321 hopBranch->generic.target = (LIR *)hopTarget;
341 target = newLIR0(cUnit, kArmPseudoTargetLabel);
342 target
[all...]
/dalvik/dx/src/com/android/dx/merge/
H A DIndexMap.java58 private final Dex target; field in class:IndexMap
71 public IndexMap(Dex target, TableOfContents tableOfContents) { argument
72 this.target = target;
153 return new TypeList(target, types);
193 return new MethodId(target,
200 return new FieldId(target,
208 return new ProtoId(target,
215 return new ClassDef(target, classDef.getOffset(), adjustType(classDef.getTypeIndex()),
243 return new Annotation(target, annotatio
[all...]
/dalvik/vm/native/
H A Ddalvik_system_Zygote.cpp265 const char* target = getenv("EMULATED_STORAGE_TARGET"); local
267 if (source == NULL || target == NULL || legacy == NULL) {
279 snprintf(target_user, PATH_MAX, "%s/%d", target, userid);
288 if (mount(source, target, NULL, MS_BIND, NULL) == -1) {
289 ALOGE("Failed to mount %s to %s: %s", source, target, strerror(errno));

Completed in 637 milliseconds

12