Home
last modified time | relevance | path

Searched refs:startLocal (Results 1 – 11 of 11) sorted by relevance

/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Debug/
DStartLocalMethodItem.java42 @Nonnull private final StartLocal startLocal; field in StartLocalMethodItem
46 @Nonnull StartLocal startLocal) { in StartLocalMethodItem() argument
48 this.startLocal = startLocal; in StartLocalMethodItem()
55 registerFormatter.writeTo(writer, startLocal.getRegister()); in writeTo()
57 String name = startLocal.getName(); in writeTo()
58 String type = startLocal.getType(); in writeTo()
59 String signature = startLocal.getSignature(); in writeTo()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/debug/
DImmutableStartLocal.java63 public static ImmutableStartLocal of(@Nonnull StartLocal startLocal) { in of() argument
64 if (startLocal instanceof ImmutableStartLocal) { in of()
65 return (ImmutableStartLocal)startLocal; in of()
68 startLocal.getCodeAddress(), in of()
69 startLocal.getRegister(), in of()
70 startLocal.getName(), in of()
71 startLocal.getType(), in of()
72 startLocal.getSignature()); in of()
/external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/
DAndroidProxy.java62 public InetSocketAddress startLocal() { in startLocal() method in AndroidProxy
63 return startLocal(0); in startLocal()
66 public InetSocketAddress startLocal(int port) { in startLocal() method in AndroidProxy
67 mAddress = mJsonRpcServer.startLocal(port); in startLocal()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
DDebugInfo.java183 ImmutableStartLocal startLocal = in iterator() local
186 locals[register] = startLocal; in iterator()
188 return startLocal; in iterator()
195 ImmutableStartLocal startLocal = in iterator() local
198 locals[register] = startLocal; in iterator()
200 return startLocal; in iterator()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
DClassPool.java176 StartLocal startLocal = (StartLocal)debugItem; in internDebug() local
177 dexPool.stringSection.internNullable(startLocal.getName()); in internDebug()
178 dexPool.typeSection.internNullable(startLocal.getType()); in internDebug()
179 dexPool.stringSection.internNullable(startLocal.getSignature()); in internDebug()
458 StartLocal startLocal = (StartLocal)debugItem;
459 writer.writeStartLocal(startLocal.getCodeAddress(),
460 startLocal.getRegister(),
461 startLocal.getName(),
462 startLocal.getType(),
463 startLocal.getSignature());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
DBuilderClassPool.java387 StartLocal startLocal = (StartLocal)debugItem;
388 writer.writeStartLocal(startLocal.getCodeAddress(),
389 startLocal.getRegister(),
390 checkStringReference(startLocal.getNameReference()),
391 checkTypeReference(startLocal.getTypeReference()),
392 checkStringReference(startLocal.getSignatureReference()));
/external/r8/src/main/java/com/android/tools/r8/graph/
DDexDebugEntryBuilder.java67 startLocal(argumentRegister, name, type, null); in DexDebugEntryBuilder()
75 startLocal(argumentRegister, names[i], types[i], null); in DexDebugEntryBuilder()
106 public void startLocal(int register, DexString name, DexType type, DexString signature) { in startLocal() method in DexDebugEntryBuilder
DDexDebugEvent.java199 builder.startLocal(registerNum, name, type, signature); in addToBuilder()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
DMutableMethodImplementation.java978 StartLocal startLocal = (StartLocal)debugItem;
979 … return new BuilderStartLocal(startLocal.getRegister(), startLocal.getNameReference(),
980 startLocal.getTypeReference(), startLocal.getSignatureReference());
/external/sl4a/Utils/src/com/googlecode/android_scripting/
DSimpleServer.java197 public InetSocketAddress startLocal(int port) { in startLocal() method in SimpleServer
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
DScriptingLayerService.java237 return (androidProxy.startLocal(usePort) != null); in tryPort()