Home
last modified time | relevance | path

Searched refs:errorCallback (Results 1 – 16 of 16) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/user/
DUserCreator.kt54 errorCallback: Runnable in createUser()
66 errorCallback.run() in createUser()
/frameworks/av/media/libaaudio/examples/utils/
DAAudioSimpleRecorder.h102 AAudioStream_errorCallback errorCallback = nullptr,
118 if (errorCallback != nullptr) {
119 AAudioStreamBuilder_setErrorCallback(builder, errorCallback, userContext);
DAAudioSimplePlayer.h121 AAudioStream_errorCallback errorCallback = nullptr,
137 if (errorCallback != nullptr) {
138 AAudioStreamBuilder_setErrorCallback(builder, errorCallback, userContext);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/user/
DUserCreatorTest.kt54 val errorCallback = Mockito.mock(Runnable::class.java) in testCreateUser_threadingOrder() constant
60 errorCallback) in testCreateUser_threadingOrder()
/frameworks/base/telephony/java/android/telephony/satellite/
DSatelliteManager.java554 IIntegerConsumer errorCallback = new IIntegerConsumer.Stub() { in requestEnabled() local
562 attributes.isDemoMode(), attributes.isEmergencyMode(), errorCallback); in requestEnabled()
1129 IIntegerConsumer errorCallback = new IIntegerConsumer.Stub() { in startTransmissionUpdates() local
1167 telephony.startSatelliteTransmissionUpdates(mSubId, errorCallback, in startTransmissionUpdates()
1211 IIntegerConsumer errorCallback = new IIntegerConsumer.Stub() { in stopTransmissionUpdates() local
1218 telephony.stopSatelliteTransmissionUpdates(mSubId, errorCallback, in stopTransmissionUpdates()
1268 IIntegerConsumer errorCallback = new IIntegerConsumer.Stub() { in provisionService() local
1276 errorCallback); in provisionService()
1320 IIntegerConsumer errorCallback = new IIntegerConsumer.Stub() { in deprovisionService() local
1327 telephony.deprovisionSatelliteService(mSubId, token, errorCallback); in deprovisionService()
[all …]
/frameworks/av/media/module/codecs/flac/dec/
DFLACDecoder.h99 void errorCallback(FLAC__StreamDecoderErrorStatus status);
DFLACDecoder.cpp115 void FLACDecoder::errorCallback(FLAC__StreamDecoderErrorStatus status) in errorCallback() function in android::FLACDecoder
241 ((FLACDecoder *) client_data)->errorCallback(status); }; in init()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/satellite/
DDemoSimulator.java291 @NonNull IIntegerConsumer errorCallback) { in enableCellularModemWhileSatelliteModeIsOn() argument
293 errorCallback.accept(SatelliteResult.SATELLITE_RESULT_SUCCESS); in enableCellularModemWhileSatelliteModeIsOn()
DSatelliteController.java882 @NonNull public Consumer<Integer> errorCallback; field in SatelliteController.SatelliteTransmissionUpdateArgument
886 SatelliteTransmissionUpdateArgument(Consumer<Integer> errorCallback, in SatelliteTransmissionUpdateArgument() argument
888 this.errorCallback = errorCallback; in SatelliteTransmissionUpdateArgument()
1740 @NonNull IIntegerConsumer errorCallback, in startSatelliteTransmissionUpdates() argument
1742 Consumer<Integer> result = FunctionalUtils.ignoreRemoteException(errorCallback::accept); in startSatelliteTransmissionUpdates()
1764 public void stopSatelliteTransmissionUpdates(int subId, @NonNull IIntegerConsumer errorCallback, in stopSatelliteTransmissionUpdates() argument
1766 Consumer<Integer> result = FunctionalUtils.ignoreRemoteException(errorCallback::accept); in stopSatelliteTransmissionUpdates()
3217 arg.errorCallback.accept(errorCode); in handleStartSatelliteTransmissionUpdatesDone()
3224 arg.errorCallback, arg.callback); in handleStartSatelliteTransmissionUpdatesDone()
DSatelliteModemInterface.java645 IIntegerConsumer errorCallback = new IIntegerConsumer.Stub() { in enableCellularModemWhileSatelliteModeIsOn() local
660 enabled, errorCallback); in enableCellularModemWhileSatelliteModeIsOn()
663 enabled, errorCallback); in enableCellularModemWhileSatelliteModeIsOn()
/frameworks/av/media/libaaudio/src/core/
DAudioStream.cpp595 AAudioStream_errorCallback errorCallback = getErrorCallbackProc(); in maybeCallErrorCallback() local
596 if (errorCallback != nullptr) { in maybeCallErrorCallback()
600 (*errorCallback)( in maybeCallErrorCallback()
/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
DCameraView.java332 public void setErrorCallback(ErrorCallback errorCallback) { in setErrorCallback() argument
333 mErrorCallback = errorCallback; in setErrorCallback()
/frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
DCameraView.java324 public void setErrorCallback(ErrorCallback errorCallback) { in setErrorCallback() argument
325 mErrorCallback = errorCallback; in setErrorCallback()
/frameworks/base/telephony/java/android/telephony/satellite/stub/
DISatellite.aidl78 in IIntegerConsumer errorCallback); in enableCellularModemWhileSatelliteModeIsOn() argument
/frameworks/av/media/module/extractors/flac/
DFLACExtractor.cpp190 void errorCallback(FLAC__StreamDecoderErrorStatus status);
286 ((FLACParser *) client_data)->errorCallback(status); in error_callback()
397 void FLACParser::errorCallback(FLAC__StreamDecoderErrorStatus status) in errorCallback() function in android::FLACParser
/frameworks/base/media/java/android/media/
DAudioSystem.java698 ErrorCallback errorCallback; in errorCallbackFromNative() local
700 errorCallback = sErrorCallback; in errorCallbackFromNative()
702 if (errorCallback != null) { in errorCallbackFromNative()
703 errorCallback.onError(error); in errorCallbackFromNative()