Searched defs:opcode (Results 1 - 25 of 36) sorted by relevance

12

/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 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/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 DDelayedMessageBuffer.java77 boolean isBuffered(int opcode) { argument
79 if (message.getOpcode() == opcode) {
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 DHdmiCecStandbyModeHandler.java147 private void addHandler(int opcode, CecMessageHandler handler) { argument
148 mCecMessageHandlers.put(opcode, handler);
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 DDeviceDiscoveryAction.java209 private boolean mayProcessMessageIfCached(int address, int opcode) { argument
210 HdmiCecMessage message = getCecMessageCache().getMessage(address, opcode);
H A DHdmiCecMessageValidator.java189 private void addValidationInfo(int opcode, ParameterValidator validator, int addrType) { argument
190 mValidationInfo.append(opcode, new ValidationInfo(validator, addrType));
194 int opcode = message.getOpcode();
195 ValidationInfo info = mValidationInfo.get(opcode);
H A DHdmiCecMessageBuilder.java35 * @param body body of message. It includes opcode.
39 byte opcode = body[0];
41 return new HdmiCecMessage(src, dest, opcode, params);
46 * 1 byte original opcode and 1 byte reason fields with basic fields.
50 * @param originalOpcode original opcode causing feature abort
575 * @param opcode opcode for a message
578 private static HdmiCecMessage buildCommand(int src, int dest, int opcode) { argument
579 return new HdmiCecMessage(src, dest, opcode, HdmiCecMessage.EMPTY_PARAM);
587 * @param opcode opcod
591 buildCommand(int src, int dest, int opcode, byte[] params) argument
[all...]
H A DHdmiCecController.java229 private static byte[] buildBody(int opcode, byte[] params) { argument
231 body[0] = (byte) opcode;
/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 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...]
H A DAbstractClassAdapter.java248 public void visitTypeInsn(int opcode, String type) { argument
255 super.visitTypeInsn(opcode, type);
259 public void visitFieldInsn(int opcode, String owner, String name, String desc) { argument
263 super.visitFieldInsn(opcode, owner, name, desc);
267 public void visitMethodInsn(int opcode, String owner, String name, String desc, argument
277 super.visitMethodInsn(opcode, owner, name, desc, itf);
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 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...]
/frameworks/base/media/native/midi/
H A Dmidi.h48 uint32_t opcode; member in struct:__anon1081
/frameworks/av/media/libaaudio/src/legacy/
H A DAudioStreamLegacy.cpp79 void AudioStreamLegacy::processCallbackCommon(aaudio_callback_operation_t opcode, void *info) { argument
86 switch (opcode) {
/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dclient.h73 Status<void> SendImpulse(int opcode);
74 Status<void> SendImpulse(int opcode, const void* buffer, size_t length);
213 Status<T> Send(int opcode) { argument
214 return SendVector<T>(opcode, nullptr, 0, nullptr, 0);
218 Status<T> Send(int opcode, const void* send_buffer, size_t send_length, argument
224 return SendVector<T>(opcode, send ? &send_vector : nullptr, send ? 1 : 0,
229 Status<T> SendVector(int opcode, const iovec* send_vector, size_t send_count, argument
232 SendTransaction(opcode, &ret, send_vector, send_count, receive_vector,
238 Status<T> SendVector(int opcode, const iovec (&send_vector)[send_count], argument
240 return SendVector<T>(opcode, send_vecto
245 SendVector(int opcode, const iovec (&send_vector)[send_count], std::nullptr_t) argument
251 SendVector(int opcode, std::nullptr_t, const iovec (&receive_vector)[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 Dinstructions.h76 bool DeserializeFirstWord(InputWordStream &IS, OpCode opcode) { argument
83 if (codeAndCount.mOpCode != opcode) {
/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/
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);
143 void Transaction::SendTransaction(int opcode, Status<void>* ret, argument
157 state_, opcode, send_vector, send_count, receive_vector, receive_count);
167 void Transaction::SendTransaction(int opcode, Status<int>* ret, argument
183 state_, opcode, send_vector, send_count, receive_vector, receive_count);
188 void Transaction::SendTransaction(int opcode, Status<LocalHandle>* ret, argument
204 state_, opcode, send_vecto
209 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/
H A Dclient_channel.cpp90 TransactionState* transaction_state, int opcode,
94 InitRequest(&transaction_state->request, opcode, send_len, max_recv_len,
162 Status<void> ClientChannel::SendImpulse(int opcode, const void* buffer, argument
173 InitRequest(&request, opcode, length, 0, true);
178 Status<int> ClientChannel::SendAndReceive(void* transaction_state, int opcode, argument
195 opcode, send_vector, send_count, max_recv_len);
210 Status<int> ClientChannel::SendWithInt(void* transaction_state, int opcode, argument
215 return SendAndReceive(transaction_state, opcode, send_vector, send_count,
220 void* transaction_state, int opcode, const iovec* send_vector,
223 SendAndReceive(transaction_state, opcode, send_vecto
89 SendRequest(const BorrowedHandle& socket_fd, TransactionState* transaction_state, int opcode, const iovec* send_vector, size_t send_count, size_t max_recv_len) argument
219 SendWithFileHandle( void* transaction_state, int opcode, const iovec* send_vector, size_t send_count, const iovec* receive_vector, size_t receive_count) argument
239 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/native/opengl/libagl/
H A Dstate.cpp549 void glLogicOp(GLenum opcode) { argument
551 c->rasterizer.procs.logicOp(c, opcode);

Completed in 322 milliseconds

12