Home
last modified time | relevance | path

Searched refs:opcode (Results 1 – 18 of 18) sorted by relevance

/packages/modules/NetworkStack/tests/unit/src/android/net/apf/
DBpf2Apf.java62 String opcode = line.substring(6, 10).trim(); in convertLine() local
64 switch (opcode) { in convertLine()
71 Register dest = opcode.contains("x") ? Register.R1 : Register.R0; in convertLine()
73 if (!opcode.equals("ldxb")) { in convertLine()
80 if (!opcode.equals("ld")) { in convertLine()
87 if (!opcode.equals("ld")) { in convertLine()
94 if (!opcode.startsWith("ld")) { in convertLine()
110 switch (opcode) { in convertLine()
126 switch (opcode) { in convertLine()
144 Register src = opcode.contains("x") ? Register.R1 : Register.R0; in convertLine()
[all …]
/packages/apps/Messaging/src/com/android/messaging/util/
DWakeLockHelper.java51 public void acquire(final Context context, final Intent intent, final int opcode) { in acquire() argument
63 LogUtil.v(TAG, "acquiring " + mWakeLockId + " for opcode " + opcode); in acquire()
80 public boolean ensure(final Intent intent, final int opcode) { in ensure() argument
84 + intent.getAction() + " opcode: " + opcode in ensure()
92 + " opcode: " + opcode + " sWakeLock: " + mWakeLock + " isHeld: " in ensure()
106 public void release(final Intent intent, final int opcode) { in release() argument
113 + intent.getAction() + " opcode: " + opcode + " sWakeLock: " + mWakeLock in release()
/packages/modules/DnsResolver/
Dres_debug.cpp158 int opcode = ns_msg_getflag(*handle, ns_f_opcode); in do_section() local
159 StringAppendF(&s, ";; %s SECTION:\n", p_section(section, opcode)); in do_section()
244 uint32_t opcode, rcode, id; in res_pquery() local
250 opcode = ns_msg_getflag(handle, ns_f_opcode); in res_pquery()
262 StringAppendF(&s, ";; ->>HEADER<<- opcode: %s, status: %s, id: %d\n", _res_opcodes[opcode], in res_pquery()
273 StringAppendF(&s, "; %s: %d", p_section(ns_s_qd, (int)opcode), qdcount); in res_pquery()
274 StringAppendF(&s, ", %s: %d", p_section(ns_s_an, (int)opcode), ancount); in res_pquery()
275 StringAppendF(&s, ", %s: %d", p_section(ns_s_ns, (int)opcode), nscount); in res_pquery()
276 StringAppendF(&s, ", %s: %d", p_section(ns_s_ar, (int)opcode), arcount); in res_pquery()
446 const char* p_section(int section, int opcode) { in p_section() argument
[all …]
Dres_debug.h27 const char* p_section(int section, int opcode);
Dres_mkquery.cpp123 hp->opcode = op; in res_nmkquery()
Dres_send.cpp387 if ((((const HEADER*) (const void*) buf1)->opcode == ns_o_update) && in res_queriesmatch()
388 (((const HEADER*) (const void*) buf2)->opcode == ns_o_update)) in res_queriesmatch()
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
DActionServiceImpl.java140 private static Intent makeIntent(final int opcode) { in makeIntent() argument
143 intent.putExtra(EXTRA_OP_CODE, opcode); in makeIntent()
156 public static Intent makeIntent(final int opcode) { in makeIntent() argument
160 intent.putExtra(EXTRA_OP_CODE, opcode); in makeIntent()
226 final int opcode = intent.getIntExtra(EXTRA_OP_CODE, 0); in startServiceWithIntent() local
245 final int opcode = intent.getIntExtra(EXTRA_OP_CODE, 0); in onHandleWork() local
250 switch(opcode) { in onHandleWork()
DBackgroundWorkerService.java91 private static void startServiceWithIntent(final int opcode, final Intent intent) { in startServiceWithIntent() argument
95 intent.putExtra(EXTRA_OP_CODE, opcode); in startServiceWithIntent()
111 final int opcode = intent.getIntExtra(EXTRA_OP_CODE, 0); in onHandleWork() local
113 switch(opcode) { in onHandleWork()
122 LogUtil.w(TAG, "Unrecognized opcode in BackgroundWorkerService " + opcode); in onHandleWork()
/packages/modules/DnsResolver/tests/testdata/
DREADME.md38 resolv : ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 29827
47 resolv : ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 29827
130 opcode = QUERY
/packages/modules/NetworkStack/src/android/net/apf/
DApfGenerator.java114 Instruction(Opcodes opcode, Register register) { in Instruction() argument
115 mOpcode = (byte)opcode.value; in Instruction()
119 Instruction(Opcodes opcode) { in Instruction() argument
120 this(opcode, Register.R0); in Instruction()
/packages/apps/Stk/src/com/android/stk/
DStkAppService.java552 int opcode = msg.what; in handleMessage() local
555 CatLog.d(LOG_TAG, "handleMessage opcode[" + opcode + "], sim id[" + slotId + "]"); in handleMessage()
556 if (opcode == OP_CMD && msg.obj != null && in handleMessage()
565 mStkContext[slotId].mOpCode = opcode; in handleMessage()
566 switch (opcode) { in handleMessage()
966 private void callSetActivityInstMsg(int opcode, int slotId, Object obj) { in callSetActivityInstMsg() argument
967 Message msg = mServiceHandler.obtainMessage(opcode, 0, slotId, obj); in callSetActivityInstMsg()
/packages/modules/DnsResolver/tests/
Dresolv_test_utils.h151 .opcode = QUERY, // a standard query
/packages/modules/DnsResolver/tests/dns_responder/
Ddns_responder.cpp418 header.flags0 = (qr << 7) | (opcode << 3) | (aa << 2) | (tr << 1) | rd; in write()
471 opcode = (header.flags0 >> 3) & 0x0F; in readHeader()
745 if (header.opcode != ns_opcode::ns_o_query) { in handleDNSRequest()
Ddns_responder.h90 uint8_t opcode; member
/packages/modules/NeuralNetworks/runtime/test/
DTestValidateOperations.cpp55 ANeuralNetworksOperandType getOpType(int32_t opcode, uint32_t dimCount = 0, in getOpType() argument
57 ANeuralNetworksOperandType opType = {.type = opcode, in getOpType()
62 if (opcode == ANEURALNETWORKS_TENSOR_QUANT8_ASYMM || in getOpType()
63 opcode == ANEURALNETWORKS_TENSOR_QUANT8_ASYMM_SIGNED || in getOpType()
64 opcode == ANEURALNETWORKS_TENSOR_QUANT8_SYMM || in getOpType()
65 opcode == ANEURALNETWORKS_TENSOR_QUANT16_ASYMM || in getOpType()
66 opcode == ANEURALNETWORKS_TENSOR_QUANT16_SYMM) { in getOpType()
/packages/apps/Bluetooth/jni/
Dcom_android_bluetooth_btservice_AdapterService.cpp588 static void dut_mode_recv_callback(uint16_t opcode, uint8_t* buf, uint8_t len) { in dut_mode_recv_callback() argument
/packages/inputmethods/LatinIME/dictionaries/
Dit_wordlist.combined.gz1dictionary=main:it,locale=it,description=Italiano,date=1414726258, ...
Dpt_PT_wordlist.combined.gz1dictionary=main:pt_pt,locale=pt_PT,description=Português (Portugal),date ...