Home
last modified time | relevance | path

Searched refs:Abort (Results 1 – 24 of 24) sorted by relevance

/system/extras/simpleperf/app_api/cpp/
Dsimpleperf.cpp149 static void Abort(const char* fmt, ...) { in Abort() function
206 Abort("startRecording: session in wrong state %d", state_); in StartRecording()
223 Abort("pauseRecording: session in wrong state %d", state_); in PauseRecording()
226 Abort("--trace-offcpu doesn't work well with pause/resume recording"); in PauseRecording()
235 Abort("resumeRecording: session in wrong state %d", state_); in ResumeRecording()
244 Abort("stopRecording: session in wrong state %d", state_); in StopRecording()
248 Abort("failed to stop simpleperf: %s", strerror(errno)); in StopRecording()
253 Abort("failed to call waitpid: %s", strerror(errno)); in StopRecording()
256 Abort("simpleperf exited with error, status = 0x%x", status); in StopRecording()
265 Abort("failed to send cmd to simpleperf: %s", strerror(errno)); in SendCmd()
[all …]
/system/keymaster/legacy_support/
Decdsa_keymaster1_operation.h35 if (operation_handle_) Abort(); in ~EcdsaKeymaster1WrappedOperation()
40 keymaster_error_t Abort();
84 keymaster_error_t Abort() override { in Abort() function
85 keymaster_error_t error = wrapped_operation_.Abort(); in Abort()
87 return super::Abort(); in Abort()
Drsa_keymaster1_operation.h34 if (operation_handle_) Abort(); in ~RsaKeymaster1WrappedOperation()
39 keymaster_error_t Abort();
83 keymaster_error_t Abort() override { in Abort() function
84 keymaster_error_t error = wrapped_operation_.Abort(); in Abort()
86 return super::Abort(); in Abort()
Decdsa_keymaster1_operation.cpp71 keymaster_error_t EcdsaKeymaster1WrappedOperation::Abort() { in Abort() function in keymaster::EcdsaKeymaster1WrappedOperation
Dkeymaster_passthrough_operation.h76 keymaster_error_t Abort() { return km_device_->abort(km_device_, operation_handle_); } in Abort() function
Drsa_keymaster1_operation.cpp92 keymaster_error_t RsaKeymaster1WrappedOperation::Abort() { in Abort() function in keymaster::RsaKeymaster1WrappedOperation
/system/core/trusty/apploader/fuzz/
Dapp_fuzzer.cpp107 android::trusty::fuzz::Abort(); in LLVMFuzzerTestOneInput()
115 android::trusty::fuzz::Abort(); in LLVMFuzzerTestOneInput()
121 android::trusty::fuzz::Abort(); in LLVMFuzzerTestOneInput()
129 android::trusty::fuzz::Abort(); in LLVMFuzzerTestOneInput()
/system/core/trusty/confirmationui/fuzz/
Dmsg_fuzzer.cpp154 android::trusty::fuzz::Abort(); in LLVMFuzzerTestOneInput()
162 android::trusty::fuzz::Abort(); in LLVMFuzzerTestOneInput()
169 android::trusty::fuzz::Abort(); in LLVMFuzzerTestOneInput()
/system/core/trusty/fuzz/include/trusty/fuzz/
Dutils.h47 void Abort();
/system/teeui/libteeui/include/teeui/
Dgeneric_messages.h36 Abort, enumerator
51 DECLARE_GENERIC_COMMAND(Abort);
Dgeneric_operation.h207 case Command::Abort: in dispatchCommandMessage()
/system/keymaster/include/keymaster/km_openssl/
Decdh_operation.h36 keymaster_error_t Abort() override { return KM_ERROR_OK; } in Abort() function
Decdsa_operation.h40 keymaster_error_t Abort() override { return KM_ERROR_OK; } in Abort() function
Drsa_operation.h48 keymaster_error_t Abort() override { return KM_ERROR_OK; } in Abort() function
/system/keymaster/km_openssl/
Dhmac_operation.h36 virtual keymaster_error_t Abort();
Dhmac_operation.cpp163 keymaster_error_t HmacOperation::Abort() { in Abort() function in keymaster::HmacOperation
Dblock_cipher_operation.h84 keymaster_error_t Abort() override;
Dblock_cipher_operation.cpp551 keymaster_error_t BlockCipherEvpOperation::Abort() { in Abort() function in keymaster::BlockCipherEvpOperation
/system/core/trusty/fuzz/
Dtipc_fuzzer.cpp92 android::trusty::fuzz::Abort(); in LLVMFuzzerTestOneInput()
Dutils.cpp134 void Abort() { in Abort() function
/system/keymaster/include/keymaster/
Doperation.h140 virtual keymaster_error_t Abort() = 0;
/system/security/keystore2/src/
Doperation.rs158 Abort, enumerator
884 |op| op.abort(Outcome::Abort).context("In KeystoreOperation::abort"), in abort()
Dmetrics_store.rs378 Outcome::Abort => MetricsOutcome::ABORT, in process_key_operation_event_stats()
/system/keymaster/android_keymaster/
Dandroid_keymaster.cpp714 response->error = operation->Abort(); in AbortOperation()