Searched defs:opId (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/media/java/android/media/soundtrigger/
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/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,
/frameworks/base/libs/hwui/
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 DRecordedOp.h161 const int opId; member in struct:android::uirenderer::RecordedOp
176 RecordedOp(unsigned int opId, BASE_PARAMS) argument
177 : opId(opId)
/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...]

Completed in 151 milliseconds