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

/packages/apps/Messaging/src/com/android/messaging/util/
H A DWakeLockHelper.java51 public void acquire(final Context context, final Intent intent, final int opcode) { argument
63 LogUtil.v(TAG, "acquiring " + mWakeLockId + " for opcode " + opcode);
80 public boolean ensure(final Intent intent, final int opcode) { argument
84 + intent.getAction() + " opcode: " + opcode
92 + " opcode: " + opcode + " sWakeLock: " + mWakeLock + " isHeld: "
106 public void release(final Intent intent, final int opcode) { argument
113 + intent.getAction() + " opcode
[all...]
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/
H A DBackgroundWorkerService.java90 private static void startServiceWithIntent(final int opcode, final Intent intent) { argument
94 intent.putExtra(EXTRA_OP_CODE, opcode);
95 sWakeLock.acquire(context, intent, opcode);
97 LogUtil.v(TAG, "acquiring wakelock for opcode " + opcode);
103 + opcode);
104 sWakeLock.release(intent, opcode);
115 final int opcode = intent.getIntExtra(EXTRA_OP_CODE, 0);
116 sWakeLock.ensure(intent, opcode);
119 switch(opcode) {
[all...]
H A DActionServiceImpl.java133 * Allocate an intent with a specific opcode.
135 private static Intent makeIntent(final int opcode) { argument
138 intent.putExtra(EXTRA_OP_CODE, opcode);
149 * Allocate an intent with a specific opcode and alarm action.
151 public static Intent makeIntent(final int opcode) { argument
155 intent.putExtra(EXTRA_OP_CODE, opcode);
227 final int opcode = intent.getIntExtra(EXTRA_OP_CODE, 0);
230 LogUtil.v(TAG, "acquiring wakelock for opcode " + opcode);
232 sWakeLock.acquire(context, intent, opcode);
[all...]
/packages/apps/Stk/src/com/android/stk/
H A DStkAppService.java489 int opcode = msg.arg1;
492 CatLog.d(LOG_TAG, "handleMessage opcode[" + opcode + "], sim id[" + slotId + "]");
493 if (opcode == OP_CMD && msg.obj != null &&
497 mStkContext[slotId].mOpCode = opcode;
498 switch (opcode) {
/packages/apps/Bluetooth/jni/
H A Dcom_android_bluetooth_btservice_AdapterService.cpp393 static void dut_mode_recv_callback(uint16_t opcode, uint8_t* buf, uint8_t len) { argument

Completed in 454 milliseconds