Home
last modified time | relevance | path

Searched refs:Cleanup (Results 1 – 5 of 5) sorted by relevance

/system/update_engine/payload_consumer/
Dfilesystem_verifier_action.cc70 Cleanup(ErrorCode::kSuccess); // error code is ignored if canceled_ is true. in TerminateProcessing()
77 void FilesystemVerifierAction::Cleanup(ErrorCode code) { in Cleanup() function in chromeos_update_engine::FilesystemVerifierAction
91 Cleanup(ErrorCode::kSuccess); in StartPartitionHashing()
111 return Cleanup(ErrorCode::kFilesystemVerifierError); in StartPartitionHashing()
122 return Cleanup(ErrorCode::kFilesystemVerifierError); in StartPartitionHashing()
152 Cleanup(ErrorCode::kError); in ScheduleRead()
164 Cleanup(ErrorCode::kError); in OnReadDoneCallback()
171 return Cleanup(ErrorCode::kError); in OnReadDoneCallback()
178 return Cleanup(ErrorCode::kFilesystemVerifierError); in OnReadDoneCallback()
189 Cleanup(ErrorCode::kError); in OnReadErrorCallback()
[all …]
Dfilesystem_verifier_action.h87 void Cleanup(ErrorCode code);
Dpostinstall_runner_action.cc276 void PostinstallRunnerAction::Cleanup() { in Cleanup() function in chromeos_update_engine::PostinstallRunnerAction
296 Cleanup(); in CompletePartitionPostinstall()
392 Cleanup(); in TerminateProcessing()
Dpostinstall_runner_action.h89 void Cleanup();
/system/netd/libnetdutils/include/netdutils/
DMisc.h37 class Cleanup {
39 Cleanup() = delete;
40 Cleanup(FnT fn) : mFn(fn) {} in Cleanup() function
41 ~Cleanup() { mFn(); } in ~Cleanup()
55 Cleanup<FnT> makeCleanup(FnT fn) { in makeCleanup()
56 return Cleanup<FnT>(fn); in makeCleanup()