/external/bluetooth/bluedroid/stack/include/ |
avrc_defs.h | 57 by the opcode and operand, 61 opcode but cannot respond because the current state 98 #define AVRC_OP_PASS_THRU 0x7C /* panel subunit opcode */ 764 UINT8 opcode; \/* Op Code (passthrough, vendor, etc) *\/ member in struct:__anon890 970 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon908 979 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon909 988 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon910 998 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon911 1008 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon912 1018 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon913 1029 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon914 1039 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon915 1048 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon916 1058 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon917 1068 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon918 1077 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon919 1086 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon920 1095 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon921 1108 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon922 1119 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon923 1132 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon924 1141 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon925 1152 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon926 1162 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon927 1170 UINT8 opcode; \/* Op Code (assigned by AVRC_BldCommand according to pdu) *\/ member in struct:__anon928 1209 UINT8 opcode; \/* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) *\/ member in struct:__anon930 1220 UINT8 opcode; \/* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) *\/ member in struct:__anon931 1230 UINT8 opcode; \/* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) *\/ member in struct:__anon932 1240 UINT8 opcode; \/* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) *\/ member in struct:__anon933 1250 UINT8 opcode; \/* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) *\/ member in struct:__anon934 1260 UINT8 opcode; \/* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) *\/ member in struct:__anon935 1270 UINT8 opcode; \/* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) *\/ member in struct:__anon936 1313 UINT8 opcode; \/* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) *\/ member in struct:__anon940 1323 UINT8 opcode; \/* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) *\/ member in struct:__anon941 1332 UINT8 opcode; \/* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) *\/ member in struct:__anon942 1345 UINT8 opcode; \/* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) *\/ member in struct:__anon943 1356 UINT8 opcode; \/* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) *\/ member in struct:__anon944 1365 UINT8 opcode; \/* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) *\/ member in struct:__anon945 1375 UINT8 opcode; \/* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) *\/ member in struct:__anon946 1385 UINT8 opcode; \/* Op Code (copied from avrc_cmd.opcode by AVRC_BldResponse user. invalid one to generate according to pdu) *\/ member in struct:__anon947 [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/ |
rbug_demarshal.c | 33 switch(header->opcode) { 95 const char* rbug_proto_get_name(enum rbug_opcode opcode) 97 switch(opcode) {
|
/external/llvm/bindings/python/llvm/ |
core.py | 27 class OpCode(object): 28 """Represents an individual OpCode enumeration.""" 37 return 'OpCode.%s' % self.name 41 """Obtain an OpCode instance from a numeric value.""" 42 result = OpCode._value_map.get(value, None) 45 raise ValueError('Unknown OpCode: %d' % value) 51 """Registers a new OpCode enumeration. 56 if value in OpCode._value_map: 57 raise ValueError('OpCode value already registered: %d' % value) 59 opcode = OpCode(name, value [all...] |
/external/mesa3d/src/gallium/auxiliary/rbug/ |
rbug_demarshal.c | 33 switch(header->opcode) { 95 const char* rbug_proto_get_name(enum rbug_opcode opcode) 97 switch(opcode) {
|
/hardware/qcom/bt/libbt-vendor/src/ |
hardware.c | 113 uint16_t opcode; local 117 STREAM_TO_UINT16(opcode,p); 119 ALOGI("%s Opcode:0x%04X Status: %d", __FUNCTION__, opcode, status);
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
VariableSizeInsn.java | 40 public final DalvInsn withOpcode(Dop opcode) {
|
ZeroSizeInsn.java | 53 public final DalvInsn withOpcode(Dop opcode) {
|
/dalvik/dx/src/com/android/dx/dex/code/ |
VariableSizeInsn.java | 40 public final DalvInsn withOpcode(Dop opcode) {
|
ZeroSizeInsn.java | 53 public final DalvInsn withOpcode(Dop opcode) {
|
/dalvik/dx/src/com/android/dx/io/instructions/ |
DecodedInstruction.java | 28 * numeric opcode, an optional index type, and any additional 43 /** opcode number */ 44 private final int opcode; field in class:DecodedInstruction 71 int opcode = Opcodes.extractOpcodeFromUnit(opcodeUnit); local 72 InstructionCodec format = OpcodeInfo.getFormat(opcode); 101 public DecodedInstruction(InstructionCodec format, int opcode, 107 if (!Opcodes.isValidShape(opcode)) { 108 throw new IllegalArgumentException("invalid opcode"); 112 this.opcode = opcode; [all...] |
/dalvik/vm/mterp/armv5te/ |
OP_FILLED_NEW_ARRAY.S | 18 bne .L${opcode}_continue @ yes, continue on 25 b .L${opcode}_continue 33 .L${opcode}_continue: 46 bne .L${opcode}_notimpl @ no, not handled yet 88 GET_INST_OPCODE(ip) @ ip<- opcode from rINST 97 .L${opcode}_notimpl: 98 ldr r0, .L_strFilledNewArrayNotImpl_${opcode} 108 .L_strFilledNewArrayNotImpl_${opcode}:
|
/dalvik/vm/mterp/mips/ |
OP_AGET_WIDE.S | 20 .L${opcode}_finish: 24 GET_INST_OPCODE(t0) # extract opcode from rINST
|
/dalvik/vm/mterp/x86/ |
OP_CONST_CLASS.S | 12 je .L${opcode}_resolve 20 .L${opcode}_resolve:
|
OP_CONST_STRING.S | 13 je .L${opcode}_resolve 20 .L${opcode}_resolve:
|
OP_CONST_STRING_JUMBO.S | 13 je .L${opcode}_resolve 20 .L${opcode}_resolve:
|
/external/bluetooth/bluedroid/stack/avrc/ |
avrc_pars_ct.c | 123 switch (p_msg->hdr.opcode) 129 case AVRC_OP_PASS_THRU: /* 0x7C panel subunit opcode */ 138 AVRC_TRACE_ERROR1("AVRC_ParsResponse() unknown opcode:0x%x", p_msg->hdr.opcode); 141 p_result->rsp.opcode = p_msg->hdr.opcode;
|
/external/chromium_org/net/websockets/ |
websocket_deflate_stream.cc | 111 if (!WebSocketFrameHeader::IsKnownDataOpCode((*frames)[i]->header.opcode)) { 174 current_writing_opcode_ = frame->header.opcode; 197 const WebSocketFrameHeader::OpCode opcode = current_writing_opcode_; local 205 scoped_ptr<WebSocketFrame> compressed(new WebSocketFrame(opcode)); 207 compressed->header.opcode = opcode; 210 (opcode != WebSocketFrameHeader::kOpCodeContinuation); 225 const WebSocketFrameHeader::OpCode opcode = current_writing_opcode_ local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
r600_hw_context_priv.h | 53 unsigned opcode, unsigned offset_base);
|
/external/chromium_org/third_party/openssl/openssl/crypto/perlasm/ |
x86asm.pl | 16 # each opcode... 18 { my $opcode = $AUTOLOAD; 20 die "more than 4 arguments passed to $opcode" if ($#_>3); 22 $opcode =~ s/.*:://; 23 if ($opcode =~ /^push/) { $stack+=4; } 24 elsif ($opcode =~ /^pop/) { $stack-=4; } 26 &generic($opcode,@_) or die "undefined subroutine \&$AUTOLOAD"; 30 { my $opcode=shift; 32 if ($#_==-1) { push(@out,"\t$opcode\n"); } 33 else { push(@out,"\t$opcode\t".join(',',@_)."\n"); [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/ |
coff-objfmt.h | 46 } opcode; member in struct:coff_unwind_code
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
VariableSizeInsn.java | 40 public final DalvInsn withOpcode(Dop opcode) {
|
ZeroSizeInsn.java | 53 public final DalvInsn withOpcode(Dop opcode) {
|
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/ |
DecodedInstruction.java | 28 * numeric opcode, an optional index type, and any additional 43 /** opcode number */ 44 private final int opcode; field in class:DecodedInstruction 71 int opcode = Opcodes.extractOpcodeFromUnit(opcodeUnit); local 72 InstructionCodec format = OpcodeInfo.getFormat(opcode); 101 public DecodedInstruction(InstructionCodec format, int opcode, 107 if (!Opcodes.isValidShape(opcode)) { 108 throw new IllegalArgumentException("invalid opcode"); 112 this.opcode = opcode; [all...] |
/external/grub/netboot/ |
fsys_tftp.c | 104 if (tr->opcode == ntohs (TFTP_ERROR)) 112 if (tr->opcode == ntohs (TFTP_OACK)) 162 tp.opcode = htons (TFTP_ERROR); 167 + sizeof (tp.opcode) + sizeof (tp.u.err.errcode) 189 else if (tr->opcode == ntohs (TFTP_DATA)) 216 tp.opcode = abort ? htons (TFTP_ERROR) : htons (TFTP_ACK); 338 grub_printf ("opcode = 0x%x, rrq = ", (unsigned long) tp.opcode); 429 tp.opcode = htons (TFTP_RRQ); 436 + sizeof (tp.ip) + sizeof (tp.udp) + sizeof (tp.opcode) + 1) [all...] |
/external/javassist/src/main/javassist/bytecode/ |
InstructionPrinter.java | 26 public class InstructionPrinter implements Opcode { 28 private final static String opcodes[] = Mnemonic.OPCODE; 60 int opcode = iter.byteAt(pos); local 62 if (opcode > opcodes.length || opcode < 0) 63 throw new IllegalArgumentException("Invalid opcode, opcode: " + opcode + " pos: "+ pos); 65 String opstring = opcodes[opcode]; 66 switch (opcode) { 149 int opcode = iter.byteAt(pos + 1); local [all...] |