Searched refs:opId (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/media/java/android/media/soundtrigger/
H A DISoundTriggerDetectionServiceClient.aidl25 void onOpFinished(int opId);
H A DISoundTriggerDetectionService.aidl32 void onGenericRecognitionEvent(in ParcelUuid uuid, int opId, in SoundTrigger.GenericRecognitionEvent event);
33 void onError(in ParcelUuid uuid, int opId, int status);
34 void onStopOperation(in ParcelUuid uuid, int opId);
H A DSoundTriggerDetectionService.java147 * @param opId The id of this operation. Once the operation is done, this service needs to call
152 public void onGenericRecognitionEvent(@NonNull UUID uuid, @Nullable Bundle params, int opId, argument
154 operationFinished(uuid, opId);
162 * @param opId The id of this operation. Once the operation is done, this service needs to call
167 public void onError(@NonNull UUID uuid, @Nullable Bundle params, int opId, int status) { argument
168 operationFinished(uuid, opId);
176 * @param opId The id of the operation that took too long
179 public abstract void onStopOperation(@NonNull UUID uuid, @Nullable Bundle params, int opId); argument
185 * @param opId The id of the operation that is processed
187 public final void operationFinished(@Nullable UUID uuid, int opId) { argument
[all...]
/frameworks/base/libs/hwui/
H A DOpDumper.cpp35 output << sOpNameLut[op.opId] << " " << localBounds;
49 return sOpNameLut[op.opId];
H A DLayerBuilder.cpp238 if (bakedState->op->opId != RecordedOpId::CopyToLayerOp) {
346 int opId = batch->getOps()[0]->op->opId; local
351 mergedReceivers[opId](arg, data);
354 unmergedReceivers[op->op->opId](arg, *op);
H A DDisplayList.cpp135 if (op->opId == RecordedOpId::RenderNodeOp) {
H A DRecordedOp.h161 const int opId; member in struct:android::uirenderer::RecordedOp
176 RecordedOp(unsigned int opId, BASE_PARAMS) argument
177 : opId(opId)
H A DFrameBuilder.cpp513 receivers[op->opId](*this, *op);
558 if (op.opId == RecordedOpId::RectOp && op.paint->getStyle() != SkPaint::kStroke_Style) {
/frameworks/base/libs/hwui/tests/unit/
H A DRecordingCanvasTests.cpp120 EXPECT_EQ(RecordedOpId::ArcOp, ops[0]->opId);
123 EXPECT_EQ(RecordedOpId::OvalOp, ops[1]->opId) << "Circular arcs should be converted to ovals";
138 ASSERT_EQ(RecordedOpId::LinesOp, op->opId);
151 ASSERT_EQ(RecordedOpId::RectOp, op.opId);
162 ASSERT_EQ(RecordedOpId::RoundRectOp, dl->getOps()[0]->opId);
169 ASSERT_EQ(RecordedOpId::RectOp, dl->getOps()[0]->opId)
184 ASSERT_EQ(RecordedOpId::TextOp, op.opId);
221 EXPECT_EQ(RecordedOpId::TextOp, ops[index++]->opId); // no underline or strikethrough
223 EXPECT_EQ(RecordedOpId::TextOp, ops[index++]->opId);
224 EXPECT_EQ(RecordedOpId::RectOp, ops[index++]->opId); // strikethroug
[all...]
H A DSkiaCanvasTests.cpp58 ASSERT_EQ(RecordedOpId::TextOp, directOp->opId);
59 EXPECT_EQ(directOp->opId, pictureOp->opId);
H A DBakedOpDispatcherTests.cpp80 unmergedReceivers[op->opId](renderer, *state);
/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger/
H A DSoundTriggerService.java668 void run(int opId, ISoundTriggerDetectionService service) throws RemoteException; argument
688 void run(int opId, @NonNull ISoundTriggerDetectionService service) throws RemoteException { argument
690 mExecuteOp.run(opId, service);
801 public void onOpFinished(int opId) {
805 mRunningOpIds.remove(opId);
985 int opId = mNumTotalOpsPerformed;
988 } while (mRunningOpIds.contains(opId));
992 if (DEBUG) Slog.v(TAG, mPuuid + ": runOp " + opId);
994 op.run(opId, mService);
995 mRunningOpIds.add(opId);
[all...]
/frameworks/base/services/core/java/com/android/server/fingerprint/
H A DAuthenticationClient.java89 IFingerprintServiceReceiver receiver, int targetUserId, int groupId, long opId,
93 mOpId = opId;
88 AuthenticationClient(Context context, long halDeviceId, IBinder token, IFingerprintServiceReceiver receiver, int targetUserId, int groupId, long opId, boolean restricted, String owner, Bundle bundle, IBiometricPromptReceiver dialogReceiver, IStatusBarService statusBarService) argument
H A DFingerprintService.java861 private void startAuthentication(IBinder token, long opId, int callingUserId, int groupId, argument
869 receiver, mCurrentUserId, groupId, opId, restricted, opPackageName, bundle,
1171 public void authenticate(final IBinder token, final long opId, final int groupId, argument
1189 MetricsLogger.histogram(mContext, "fingerprint_token", opId != 0L ? 1 : 0);
1193 = (opId == 0) ? mPerformanceMap : mCryptoPerformanceMap;
1201 startAuthentication(token, opId, callingUserId, groupId, receiver,

Completed in 522 milliseconds