Searched refs:opcode (Results 1 - 25 of 59) sorted by relevance

123

/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecMessageCache.java23 * Cache for incoming message. It caches {@link HdmiCecMessage} with source address and opcode
46 * {@code opcode}.
49 * @param opcode opcode of message
51 * opcode}
53 public HdmiCecMessage getMessage(int address, int opcode) { argument
59 return messages.get(opcode);
79 * Cache incoming {@link HdmiCecMessage}. If opcode of message is not listed on
85 int opcode = message.getOpcode();
86 if (!isCacheable(opcode)) {
99 isCacheable(int opcode) argument
[all...]
H A DHdmiCecMessage.java26 * source and destination address, command (or opcode), and optional parameters.
40 public HdmiCecMessage(int source, int destination, int opcode, byte[] params) { argument
43 mOpcode = opcode & 0xFF;
68 * Return the opcode field of the message. It is the type of the message that
71 * @return opcode
79 * from opcode to opcode, and is used together with opcode to describe
102 private static String opcodeToString(int opcode) { argument
103 switch (opcode) {
[all...]
H A DNewDeviceAction.java99 int opcode = cmd.getOpcode();
108 if (opcode == Constants.MESSAGE_SET_OSD_NAME) {
116 } else if (opcode == Constants.MESSAGE_FEATURE_ABORT) {
124 if (opcode == Constants.MESSAGE_DEVICE_VENDOR_ID) {
129 } else if (opcode == Constants.MESSAGE_FEATURE_ABORT) {
141 private boolean mayProcessCommandIfCached(int destAddress, int opcode) { argument
142 HdmiCecMessage message = getCecMessageCache().getMessage(destAddress, opcode);
H A DRequestArcAction.java54 int opcode = cmd.getOpcode();
55 switch (opcode) {
H A DDelayedMessageBuffer.java77 boolean isBuffered(int opcode) { argument
79 if (message.getOpcode() == opcode) {
H A DSetArcTransmissionStateAction.java122 int opcode = cmd.getOpcode();
123 if (opcode == Constants.MESSAGE_FEATURE_ABORT) {
H A DRoutingControlAction.java96 int opcode = cmd.getOpcode();
99 && opcode == Constants.MESSAGE_ROUTING_INFORMATION) {
113 && opcode == Constants.MESSAGE_REPORT_POWER_STATUS) {
/frameworks/av/media/libaaudio/src/binding/
H A DIAAudioClient.cpp45 void onStreamChange(aaudio_handle_t handle, int32_t opcode, int32_t value) override {
49 data.writeInt32(opcode);
64 int32_t opcode = 0; local
72 data.readInt32(&opcode);
74 onStreamChange(streamHandle, opcode, value);
75 ALOGD("BnAAudioClient onStreamChange(%x, %d, %d)", streamHandle, opcode, value);
H A DIAAudioClient.h36 virtual void onStreamChange(aaudio::aaudio_handle_t handle, int32_t opcode, int32_t value) = 0;
H A DAAudioBinderClient.h111 void onStreamChange(aaudio_handle_t handle, int32_t opcode, int32_t value) { argument
134 void onStreamChange(aaudio_handle_t handle, int32_t opcode, int32_t value) { argument
137 client->onStreamChange(handle, opcode, value);
/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dclient.h72 Status<void> SendImpulse(int opcode);
73 Status<void> SendImpulse(int opcode, const void* buffer, size_t length);
212 Status<T> Send(int opcode) { argument
213 return SendVector<T>(opcode, nullptr, 0, nullptr, 0);
217 Status<T> Send(int opcode, const void* send_buffer, size_t send_length, argument
223 return SendVector<T>(opcode, send ? &send_vector : nullptr, send ? 1 : 0,
228 Status<T> SendVector(int opcode, const iovec* send_vector, size_t send_count, argument
231 SendTransaction(opcode, &ret, send_vector, send_count, receive_vector,
237 Status<T> SendVector(int opcode, const iovec (&send_vector)[send_count], argument
239 return SendVector<T>(opcode, send_vecto
244 SendVector(int opcode, const iovec (&send_vector)[send_count], std::nullptr_t) argument
250 SendVector(int opcode, std::nullptr_t, const iovec (&receive_vector)[receive_count]) argument
[all...]
H A Dmock_client_channel.h20 Status<void>(int opcode, const void* buffer, size_t length));
22 Status<int>(void* transaction_state, int opcode,
26 Status<LocalHandle>(void* transaction_state, int opcode,
31 Status<LocalChannelHandle>(void* transaction_state, int opcode,
H A Dclient_channel.h38 virtual Status<void> SendImpulse(int opcode, const void* buffer,
41 virtual Status<int> SendWithInt(void* transaction_state, int opcode,
46 void* transaction_state, int opcode, const iovec* send_vector,
49 void* transaction_state, int opcode, const iovec* send_vector,
/frameworks/base/tests/net/java/android/net/apf/
H A DBpf2Apf.java62 String opcode = line.substring(6, 10).trim();
64 switch (opcode) {
71 Register dest = opcode.contains("x") ? Register.R1 : Register.R0;
73 if (!opcode.equals("ldxb")) {
80 if (!opcode.equals("ld")) {
87 if (!opcode.equals("ld")) {
94 if (!opcode.startsWith("ld")) {
110 switch (opcode) {
126 switch (opcode) {
144 Register src = opcode
[all...]
/frameworks/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAfterConstructorMethodAdapter.java78 public void visitInsn(int opcode) { argument
79 if (opcode == Opcodes.RETURN) {
83 super.visitInsn(opcode);
H A DStubMethodAdapter.java257 public void visitInsn(int opcode) { argument
259 switch (opcode) {
272 mParentVisitor.visitInsn(opcode);
292 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { argument
294 mParentVisitor.visitMethodInsn(opcode, owner, name, desc, itf);
299 public void visitFieldInsn(int opcode, String owner, String name, String desc) { argument
301 mParentVisitor.visitFieldInsn(opcode, owner, name, desc);
320 public void visitIntInsn(int opcode, int operand) { argument
322 mParentVisitor.visitIntInsn(opcode, operand);
327 public void visitJumpInsn(int opcode, Labe argument
370 visitTypeInsn(int opcode, String type) argument
377 visitVarInsn(int opcode, int var) argument
[all...]
H A DDelegateMethodAdapter.java354 public void visitInsn(int opcode) { argument
356 mOrgWriter.visitInsn(opcode);
375 public void visitMethodInsn(int opcode, String owner, String name, String desc, boolean itf) { argument
377 mOrgWriter.visitMethodInsn(opcode, owner, name, desc, itf);
382 public void visitFieldInsn(int opcode, String owner, String name, String desc) { argument
384 mOrgWriter.visitFieldInsn(opcode, owner, name, desc);
403 public void visitIntInsn(int opcode, int operand) { argument
405 mOrgWriter.visitIntInsn(opcode, operand);
410 public void visitJumpInsn(int opcode, Label label) { argument
412 mOrgWriter.visitJumpInsn(opcode, labe
453 visitTypeInsn(int opcode, String type) argument
460 visitVarInsn(int opcode, int var) argument
[all...]
H A DReplaceMethodCallsAdapter.java90 mi.opcode = Opcodes.INVOKESTATIC;
179 mi.opcode = Opcodes.INVOKESTATIC;
252 public void visitMethodInsn(int opcode, String owner, String name, String desc, argument
256 MethodInformation mi = new MethodInformation(opcode, owner, name, desc);
258 opcode = mi.opcode;
265 super.visitMethodInsn(opcode, owner, name, desc, itf);
270 public int opcode; field in class:ReplaceMethodCallsAdapter.MethodInformation
275 public MethodInformation(int opcode, String owner, String name, String desc) { argument
276 this.opcode
[all...]
/frameworks/native/libs/vr/libpdx/
H A Dclient.cpp83 Status<void> Client::SendImpulse(int opcode) { argument
90 status = channel_->SendImpulse(opcode, nullptr, 0);
95 Status<void> Client::SendImpulse(int opcode, const void* buffer, argument
103 status = channel_->SendImpulse(opcode, buffer, length);
139 void Transaction::SendTransaction(int opcode, Status<void>* ret, argument
153 state_, opcode, send_vector, send_count, receive_vector, receive_count);
163 void Transaction::SendTransaction(int opcode, Status<int>* ret, argument
179 state_, opcode, send_vector, send_count, receive_vector, receive_count);
184 void Transaction::SendTransaction(int opcode, Status<LocalHandle>* ret, argument
200 state_, opcode, send_vecto
205 SendTransaction(int opcode, Status<LocalChannelHandle>* ret, const iovec* send_vector, size_t send_count, const iovec* receive_vector, size_t receive_count) argument
[all...]
/frameworks/native/libs/vr/libpdx_uds/private/uds/
H A Dclient_channel.h47 Status<void> SendImpulse(int opcode, const void* buffer,
50 Status<int> SendWithInt(void* transaction_state, int opcode,
54 Status<LocalHandle> SendWithFileHandle(void* transaction_state, int opcode,
60 void* transaction_state, int opcode, const iovec* send_vector,
80 Status<int> SendAndReceive(void* transaction_state, int opcode,
/frameworks/native/libs/vr/libpdx_uds/
H A Dclient_channel.cpp89 TransactionState* transaction_state, int opcode,
93 InitRequest(&transaction_state->request, opcode, send_len, max_recv_len,
161 Status<void> ClientChannel::SendImpulse(int opcode, const void* buffer, argument
172 InitRequest(&request, opcode, length, 0, true);
177 Status<int> ClientChannel::SendAndReceive(void* transaction_state, int opcode, argument
194 opcode, send_vector, send_count, max_recv_len);
209 Status<int> ClientChannel::SendWithInt(void* transaction_state, int opcode, argument
214 return SendAndReceive(transaction_state, opcode, send_vector, send_count,
219 void* transaction_state, int opcode, const iovec* send_vector,
222 SendAndReceive(transaction_state, opcode, send_vecto
88 SendRequest(const BorrowedHandle& socket_fd, TransactionState* transaction_state, int opcode, const iovec* send_vector, size_t send_count, size_t max_recv_len) argument
218 SendWithFileHandle( void* transaction_state, int opcode, const iovec* send_vector, size_t send_count, const iovec* receive_vector, size_t receive_count) argument
238 SendWithChannelHandle( void* transaction_state, int opcode, const iovec* send_vector, size_t send_count, const iovec* receive_vector, size_t receive_count) argument
[all...]
/frameworks/rs/rsov/compiler/spirit/
H A Dcore_defs.h64 OpCodeAndWordCount(uint32_t opcode, uint32_t wordCount) argument
65 : mOpCode((uint16_t)opcode), mWordCount((uint16_t)wordCount) {}
H A Dgenerate.py207 wc = 1 # for the first word of opcode and word count
231 def string_for_constructor(opname, opcode, members):
270 def string_for_serializer_body(opcode, members):
376 opcode = inst['opcode']
401 string_for_constructor(opname, opcode, members),
402 string_for_serializer_body(opcode, members),
416 # Generate opcode enum
424 opcode = inst['opcode']
[all...]
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64InsnHelpers.h212 unsigned opcode = (insn >> 12) & 0xf; local
215 switch (opcode) {
238 } // switch (opcode)
241 unsigned opcode = (insn >> 13) & 0x7; local
244 switch (opcode) {
262 } // switch (opcode)
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dremote_method_type.h15 // Utility class binding a remote method opcode to its function signature.
62 #define PDX_REMOTE_METHOD(name, opcode, ... /*signature*/) \
63 using name = ::android::pdx::rpc::RemoteMethodType<opcode, __VA_ARGS__>

Completed in 375 milliseconds

123