Home | History | Annotate | Download | only in action

Lines Matching defs:opcode

90     private static void startServiceWithIntent(final int opcode, final Intent intent) {
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) {
128 throw new RuntimeException("Unrecognized opcode in BackgroundWorkerService");
131 sWakeLock.release(intent, opcode);