/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/mcp/ |
D | Request.java | 172 public static final class Opcodes { class in Request 250 entry(Opcodes.PLAY, SupportedOpcodes.PLAY), 251 entry(Opcodes.PAUSE, SupportedOpcodes.PAUSE), 252 entry(Opcodes.FAST_REWIND, SupportedOpcodes.FAST_REWIND), 253 entry(Opcodes.FAST_FORWARD, SupportedOpcodes.FAST_FORWARD), 254 entry(Opcodes.STOP, SupportedOpcodes.STOP), 255 entry(Opcodes.MOVE_RELATIVE, SupportedOpcodes.MOVE_RELATIVE), 256 entry(Opcodes.PREVIOUS_SEGMENT, SupportedOpcodes.PREVIOUS_SEGMENT), 257 entry(Opcodes.NEXT_SEGMENT, SupportedOpcodes.NEXT_SEGMENT), 258 entry(Opcodes.FIRST_SEGMENT, SupportedOpcodes.FIRST_SEGMENT), [all …]
|
D | MediaControlProfile.java | 415 + Request.Opcodes.toString(request.getOpcode())); in onMediaControlRequest() 421 && request.getOpcode() == Request.Opcodes.PLAY) { in onMediaControlRequest() 440 case Request.Opcodes.PLAY: in onMediaControlRequest() 447 case Request.Opcodes.PAUSE: in onMediaControlRequest() 458 case Request.Opcodes.STOP: in onMediaControlRequest() 465 case Request.Opcodes.PREVIOUS_TRACK: in onMediaControlRequest() 471 case Request.Opcodes.NEXT_TRACK: in onMediaControlRequest() 477 case Request.Opcodes.FAST_REWIND: in onMediaControlRequest() 483 case Request.Opcodes.FAST_FORWARD: in onMediaControlRequest() 489 case Request.Opcodes.MOVE_RELATIVE: in onMediaControlRequest()
|
D | MediaControlGattService.java | 1316 case Request.Opcodes.MOVE_RELATIVE: in getMediaControlPointRequestPayloadLength() 1317 case Request.Opcodes.GOTO_SEGMENT: in getMediaControlPointRequestPayloadLength() 1318 case Request.Opcodes.GOTO_TRACK: in getMediaControlPointRequestPayloadLength() 1319 case Request.Opcodes.GOTO_GROUP: in getMediaControlPointRequestPayloadLength() 1336 + Request.Opcodes.toString(opcode) in handleMediaControlPointRequest() 1350 + Request.Opcodes.toString(opcode) in handleMediaControlPointRequest() 1357 if (opcode == Request.Opcodes.MOVE_RELATIVE in handleMediaControlPointRequest() 1358 || opcode == Request.Opcodes.GOTO_SEGMENT in handleMediaControlPointRequest() 1359 || opcode == Request.Opcodes.GOTO_TRACK in handleMediaControlPointRequest() 1360 || opcode == Request.Opcodes.GOTO_GROUP) { in handleMediaControlPointRequest() [all …]
|
/packages/modules/NetworkStack/src/android/net/apf/ |
D | ApfV4GeneratorBase.java | 89 return append(new Instruction(Opcodes.LABEL).setLabel(name)); in defineLabel() 96 return append(new Instruction(Opcodes.JMP).setTargetLabel(target)); in addJump() 103 return append(new Instruction(Opcodes.JMP).addUnsigned(0)); in addNop() 111 return append(new Instruction(Opcodes.LDB, r).addPacketOffset(ofs)); in addLoad8() 119 return append(new Instruction(Opcodes.LDH, r).addPacketOffset(ofs)); in addLoad16() 127 return append(new Instruction(Opcodes.LDW, r).addPacketOffset(ofs)); in addLoad32() 136 return append(new Instruction(Opcodes.LDBX, r).addTwosCompUnsigned(ofs)); in addLoad8Indexed() 145 return append(new Instruction(Opcodes.LDHX, r).addTwosCompUnsigned(ofs)); in addLoad16Indexed() 154 return append(new Instruction(Opcodes.LDWX, r).addTwosCompUnsigned(ofs)); in addLoad32Indexed() 162 return append(new Instruction(Opcodes.ADD).addTwosCompUnsigned(val)); in addAdd() [all …]
|
D | BaseApfGenerator.java | 55 enum Opcodes { enum in BaseApfGenerator 112 Opcodes(int value) { in Opcodes() method in BaseApfGenerator.Opcodes 346 public final Opcodes mOpcode; 360 Instruction(Opcodes opcode, Rbit rbit) { in Instruction() 365 Instruction(Opcodes opcode, Register register) { in Instruction() 370 this(Opcodes.EXT, rbit); in Instruction() 375 this(Opcodes.EXT, register); in Instruction() 381 this(Opcodes.EXT, register); in Instruction() 388 Instruction(Opcodes opcode) { in Instruction() 460 if (mOpcode != Opcodes.LABEL) { in setLabel() [all …]
|
D | ApfV6GeneratorBase.java | 66 return append(new Instruction(Opcodes.PASSDROP, Rbit0).addUnsigned(cnt)); in addCountAndPass() 74 return append(new Instruction(Opcodes.PASSDROP, Rbit1)); in addDrop() 87 return append(new Instruction(Opcodes.PASSDROP, Rbit1).addUnsigned(cnt)); in addCountAndDrop() 126 return append(new Instruction(Opcodes.JMP, Rbit1).addUnsigned(data.length) in addData() 178 return append(new Instruction(Opcodes.WRITE).overrideImmSize(1).addU8(val)); in addWriteU8() 185 return append(new Instruction(Opcodes.WRITE).overrideImmSize(2).addU16(val)); in addWriteU16() 192 return append(new Instruction(Opcodes.WRITE).overrideImmSize(4).addU32(val)); in addWriteU32() 267 return append(new Instruction(Opcodes.PKTDATACOPY, Rbit1).addDataOffset(src).addU8(len)); in addDataCopy() 280 return append(new Instruction(Opcodes.PKTDATACOPY, Rbit0).addPacketOffset(src).addU8(len)); in addPacketCopy() 439 return append(new Instruction(Opcodes.JBSMATCH, R1).addUnsigned( in addJumpIfBytesAtR0Equal() [all …]
|
D | ApfV4Generator.java | 82 void addR0ArithR1(Opcodes opcode) { in addR0ArithR1() 343 return append(new Instruction(Opcodes.LDDW, dst).addSigned(ofs)); in addLoadData() 355 return append(new Instruction(Opcodes.STDW, src).addSigned(ofs)); in addStoreData()
|
/packages/apps/ManagedProvisioning/studio-dev/StubGenerator/src/main/java/com/android/development/ |
D | DexToStubConverter.java | 40 import org.objectweb.asm.Opcodes; 69 private static final int STATIC_FINAL_CODE = Opcodes.ACC_STATIC | Opcodes.ACC_FINAL; 70 private static final int ABS_INTERFACE_CODE = Opcodes.ACC_ABSTRACT | Opcodes.ACC_INTERFACE; 220 accessCode |= Opcodes.ACC_OPEN; in writeClass() 224 cw.visit(Opcodes.V1_8, in writeClass() 238 if ((classDef.getAccessFlags() & Opcodes.ACC_ANNOTATION) == Opcodes.ACC_ANNOTATION) { in writeClass() 290 if ((method.getAccessFlags() & Opcodes.ACC_ABSTRACT) != Opcodes.ACC_ABSTRACT) { in writeClass() 296 mv.visitVarInsn(Opcodes.ALOAD, 0); in writeClass() 298 Opcodes.INVOKESPECIAL, "java/lang/Object", "<init>", "()V", false); in writeClass() 307 if ((method.getAccessFlags() & Opcodes.ACC_STATIC) != Opcodes.ACC_STATIC) { in writeClass() [all …]
|
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/mcp/ |
D | MediaControlGattServiceTest.java | 797 int media_control_request_opcode = Request.Opcodes.MOVE_RELATIVE; in testNotify() 983 Request.Opcodes.PLAY, null, expectedGattResult, invocation_count++); in verifyMediaControlPointRequests() 985 Request.Opcodes.PAUSE, null, expectedGattResult, invocation_count++); in verifyMediaControlPointRequests() 987 Request.Opcodes.FAST_REWIND, null, expectedGattResult, invocation_count++); in verifyMediaControlPointRequests() 989 Request.Opcodes.FAST_FORWARD, in verifyMediaControlPointRequests() 994 Request.Opcodes.STOP, null, expectedGattResult, invocation_count++); in verifyMediaControlPointRequests() 996 Request.Opcodes.MOVE_RELATIVE, in verifyMediaControlPointRequests() 1001 Request.Opcodes.PREVIOUS_SEGMENT, in verifyMediaControlPointRequests() 1006 Request.Opcodes.NEXT_SEGMENT, in verifyMediaControlPointRequests() 1011 Request.Opcodes.FIRST_SEGMENT, in verifyMediaControlPointRequests() [all …]
|
D | MediaControlProfileTest.java | 344 Request request = new Request(Request.Opcodes.PLAY, 0); in testHandleMediaControlRequest() 347 request = new Request(Request.Opcodes.PAUSE, 0); in testHandleMediaControlRequest() 350 request = new Request(Request.Opcodes.STOP, 0); in testHandleMediaControlRequest() 354 request = new Request(Request.Opcodes.PREVIOUS_TRACK, 0); in testHandleMediaControlRequest() 357 request = new Request(Request.Opcodes.NEXT_TRACK, 0); in testHandleMediaControlRequest() 360 request = new Request(Request.Opcodes.FAST_REWIND, 0); in testHandleMediaControlRequest() 363 request = new Request(Request.Opcodes.FAST_FORWARD, 0); in testHandleMediaControlRequest() 369 request = new Request(Request.Opcodes.MOVE_RELATIVE, 100); in testHandleMediaControlRequest() 380 request = new Request(Request.Opcodes.PLAY, 0); in testHandleMediaControlRequest() 383 request = new Request(Request.Opcodes.PAUSE, 0); in testHandleMediaControlRequest()
|
/packages/modules/AdServices/sdksandbox/service/java/com/android/server/sdksandbox/verification/ |
D | DexParserImpl.java | 22 import com.android.tools.smali.dexlib2.Opcodes; 88 apkFile, dexName, /* exactMatch */ true, Opcodes.getDefault()); in loadDexSymbols()
|
/packages/apps/ManagedProvisioning/studio-dev/StubGenerator/ |
D | StubGenerator.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/jf/
org/ ... |