HomeSort by relevance Sort by last modified time
    Searched refs:methodDef (Results 1 - 10 of 10) sorted by null

  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
InstructionMethodItemFactory.java 44 MethodDefinition methodDef, int codeAddress, Instruction instruction) {
47 return new OffsetInstructionFormatMethodItem(methodDef.classDef.options, methodDef, codeAddress,
52 return new UnresolvedOdexInstructionMethodItem(methodDef, codeAddress,
58 return new ArrayDataMethodItem(methodDef, codeAddress, (ArrayPayload)instruction);
60 return new PackedSwitchMethodItem(methodDef, codeAddress, (PackedSwitchPayload)instruction);
62 return new SparseSwitchMethodItem(methodDef, codeAddress, (SparseSwitchPayload)instruction);
64 return new InstructionMethodItem<Instruction>(methodDef, codeAddress, instruction);
UnresolvedOdexInstructionMethodItem.java 39 public UnresolvedOdexInstructionMethodItem(@Nonnull MethodDefinition methodDef, int codeAddress,
41 super(methodDef, codeAddress, instruction);
OffsetInstructionFormatMethodItem.java 44 public OffsetInstructionFormatMethodItem(@Nonnull BaksmaliOptions options, @Nonnull MethodDefinition methodDef,
46 super(methodDef, codeAddress, instruction);
49 label = methodDef.getLabelCache().internLabel(label);
PackedSwitchMethodItem.java 50 public PackedSwitchMethodItem(MethodDefinition methodDef, int codeAddress, PackedSwitchPayload instruction) {
51 super(methodDef, codeAddress, instruction);
53 int baseCodeAddress = methodDef.getPackedSwitchBaseAddress(codeAddress);
65 LabelMethodItem label = methodDef.getLabelCache().internLabel(
66 new LabelMethodItem(methodDef.classDef.options, baseCodeAddress + switchElement.getOffset(),
SparseSwitchMethodItem.java 49 public SparseSwitchMethodItem(MethodDefinition methodDef, int codeAddress, SparseSwitchPayload instruction) {
50 super(methodDef, codeAddress, instruction);
52 int baseCodeAddress = methodDef.getSparseSwitchBaseAddress(codeAddress);
57 LabelMethodItem label = methodDef.getLabelCache().internLabel(
58 new LabelMethodItem( methodDef.classDef.options, baseCodeAddress + switchElement.getOffset(),
ArrayDataMethodItem.java 40 public ArrayDataMethodItem(MethodDefinition methodDef, int codeAddress, ArrayPayload instruction) {
41 super(methodDef, codeAddress, instruction);
InstructionMethodItem.java 55 @Nonnull protected final MethodDefinition methodDef;
58 public InstructionMethodItem(@Nonnull MethodDefinition methodDef, int codeAddress, @Nonnull T instruction) {
60 this.methodDef = methodDef;
70 BaksmaliOptions options = methodDef.classDef.options;
75 if (methodDef.classDef.options.apiLevel >= 14) {
113 if (methodDef.classDef.options.implicitReferences) {
114 classContext = methodDef.method.getDefiningClass();
158 int baseAddress = methodDef.getPackedSwitchBaseAddress(
165 baseAddress = methodDef.getSparseSwitchBaseAddress
    [all...]
  /external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
ServerImpl.java 529 ServerMethodDefinition<ReqT, RespT> methodDef, Metadata headers,
534 methodDef.getMethodDescriptor(), // notify with original method descriptor
537 ServerCallHandler<ReqT, RespT> handler = methodDef.getServerCallHandler();
541 ServerMethodDefinition<ReqT, RespT> interceptedDef = methodDef.withServerCallHandler(handler);
549 ServerMethodDefinition<WReqT, WRespT> methodDef,
555 methodDef.getMethodDescriptor(),
563 methodDef.getServerCallHandler().startCall(call, headers);
  /external/grpc-grpc-java/services/src/test/java/io/grpc/services/
BinaryLogProviderTest.java 210 ServerMethodDefinition<String, Integer> methodDef =
220 ServerMethodDefinition<?, ?> wMethodDef = binlogProvider.wrapMethodDefinition(methodDef);
230 ServerMethodDefinition<String, Integer> methodDef =
246 ServerMethodDefinition<?, ?> wDef = binlogProvider.wrapMethodDefinition(methodDef);
288 final ServerMethodDefinition<ReqT, RespT> methodDef,
298 return methodDef.getMethodDescriptor();
301 return methodDef.getServerCallHandler().startCall(serverCall, new Metadata());
  /external/grpc-grpc-java/core/
grpc-core-1.14.0.jar 

Completed in 377 milliseconds