HomeSort by relevance Sort by last modified time
    Searched defs:Cleanup (Results 1 - 25 of 155) sorted by null

1 2 3 4 5 6 7

  /external/clang/test/CodeGenCXX/
mingw-w64-seh-exceptions.cpp 7 struct Cleanup {
8 ~Cleanup() {
14 Cleanup x;
exceptions-cxx-new.cpp 44 struct Cleanup {
45 ~Cleanup() { f(-1); }
49 Cleanup C;
55 // CHECK: to label %[[LEAVE_FUNC:.*]] unwind label %[[CLEANUP:.*]]
61 // CHECK: [[CLEANUP]]
67 // CHECK-LABEL: define {{.*}} void @"\01??1Cleanup@@QAE@XZ"(
exceptions-cxx-ehsc.cpp 4 struct Cleanup { ~Cleanup(); };
9 Cleanup x;
19 struct Cleanup { ~Cleanup(); };
24 Cleanup x;
  /external/autotest/server/cros/ap_configurators/
fetch_prebuilt_pyauto.py 126 def Cleanup(self):
  /external/toolchain-utils/crosperf/
crosperf.py 58 def Cleanup(experiment):
60 experiment.Cleanup()
119 atexit.register(Cleanup, experiment)
experiment.py 193 def Cleanup(self):
196 # We are using the file locks mechanism, so call machine_manager.Cleanup
198 self.machine_manager.Cleanup()
  /test/vts-testcase/kernel/ltp/shell_environment/definitions/
directory_exists.py 29 to_cleanup: bool, whether or not to cleanup the defined environment
80 def Cleanup(self):
path_permission.py 29 to_cleanup: bool, whether or not to cleanup the defined environment
89 def Cleanup(self):
  /test/vts-testcase/kernel/ltp/shell_environment/
shell_environment.py 27 '''Class for executing environment definition classes and do cleanup jobs.
41 def Cleanup(self):
42 '''Final cleanup jobs. Will run all the stored cleanup jobs'''
46 '''Add a clean up job for final cleanup'''
  /external/tensorflow/tensorflow/core/lib/gtl/
cleanup.h 16 // MakeCleanup(f) returns an RAII cleanup object that calls 'f' in its
37 // You can use Cleanup<F> directly, instead of using MakeCleanup and auto,
40 // You can call 'release()' on a Cleanup object to cancel the cleanup.
53 // A move-only RAII object that calls a stored cleanup functor when
54 // destroyed. Cleanup<F> is the return type of gtl::MakeCleanup(F).
56 class Cleanup {
58 Cleanup() : released_(true), f_() {}
61 explicit Cleanup(G&& f) // NOLINT
64 Cleanup(Cleanup&& src) // NOLIN
    [all...]
  /system/netd/libnetdutils/include/netdutils/
Misc.h 33 // for running arbitrary cleanup or logging code when exiting a scope.
37 class Cleanup {
39 Cleanup() = delete;
40 Cleanup(FnT fn) : mFn(fn) {}
41 ~Cleanup() { mFn(); }
49 // Helper to make a new Cleanup. Avoids complex or impossible syntax
53 // auto cleanup = makeCleanup([](){ your_code_here; });
55 Cleanup<FnT> makeCleanup(FnT fn) {
56 return Cleanup<FnT>(fn);
  /sdk/files/
post_tools_install.bat 45 if not exist "%src%" goto Cleanup
49 :Cleanup
  /test/vts-testcase/kernel/ltp/
environment_requirement_checker.py 73 def Cleanup(self):
74 """Run all cleanup jobs at the end of tests"""
75 self._shell_env.Cleanup()
  /external/tensorflow/tensorflow/core/lib/io/
iterator.h 82 struct Cleanup {
86 Cleanup* next;
88 Cleanup cleanup_;
  /external/toolchain-utils/
chromiumos_image_diff.py 143 def Cleanup(self):
355 image_comparator.Cleanup()
  /system/update_engine/payload_consumer/
filesystem_verifier_action.cc 70 Cleanup(ErrorCode::kSuccess); // error code is ignored if canceled_ is true.
77 void FilesystemVerifierAction::Cleanup(ErrorCode code) {
91 Cleanup(ErrorCode::kSuccess);
111 return Cleanup(ErrorCode::kFilesystemVerifierError);
122 return Cleanup(ErrorCode::kFilesystemVerifierError);
152 Cleanup(ErrorCode::kError);
164 Cleanup(ErrorCode::kError);
171 return Cleanup(ErrorCode::kError);
178 return Cleanup(ErrorCode::kFilesystemVerifierError);
189 Cleanup(ErrorCode::kError)
    [all...]
  /art/test/1946-list-descriptors/
descriptors.cc 44 static void Cleanup(char** data, jint cnt) {
75 Cleanup(classes, cnt);
82 Cleanup(classes, cnt);
86 Cleanup(classes, cnt);
124 // Cleanup the cur_info
128 // Cleanup the array.
  /external/autotest/client/deps/glbench/src/
egl_stuff.cc 38 void EGLInterface::Cleanup() {
glx_stuff.cc 63 void GLXInterface::Cleanup() {
  /external/toolchain-utils/dejagnu/
gdb_dejagnu.py 56 parser.add_option('--cleanup',
57 dest='cleanup',
71 if options.cleanup == 'mount' and not options.mount:
72 raise SyntaxError('--cleanup=\'mount\' not valid unless --mount is given.')
73 if options.cleanup and not (options.cleanup == 'mount' or
74 options.cleanup == 'chroot' or
75 options.cleanup == 'chromeos'):
76 raise SyntaxError('Invalid option value for --cleanup')
85 cleanup)
    [all...]
run_dejagnu.py 71 parser.add_option('--cleanup',
72 dest='cleanup',
97 if options.cleanup == 'mount' and not options.mount:
98 raise SyntaxError('--cleanup=\'mount\' not valid unless --mount is given.')
99 if options.cleanup and not (
100 options.cleanup == 'mount' or \
101 options.cleanup == 'chroot' or options.cleanup == 'chromeos'):
102 raise ValueError('Invalid option value for --cleanup')
103 if options.cleanup and options.keep_intermediate_files
    [all...]
  /test/vts-testcase/kernel/ltp/shell_environment/definitions/base_definitions/
check_setup_cleanup.py 25 Usually such a job contains check -> setup -> cleanup workflow
32 to_cleanup: bool, whether or not to cleanup the defined environment
63 """Execute the check, setup, and cleanup.
65 Will execute setup and cleanup only if the boolean switches for them
66 are True. It will NOT execute cleanup if check function passes.
88 self.context.AddCleanupJob(self.InternalCall, self.Cleanup)
204 def Cleanup(self):
207 Used to cleanup setup if check fail. Can be override by sub-class
209 self.note = "Cleanup step undefined."
  /tools/acloud/public/
device_driver.py 163 cleanup=True,
182 implies cleanup=False.
185 cleanup: boolean, if True clean up compute engine image after creating
197 cleanup = False
226 if cleanup:
361 cleanup=True,
373 implies cleanup=False.
376 cleanup: boolean, if True clean up compute engine image and
398 cleanup,
486 def Cleanup(cfg, expiration_mins)
    [all...]
  /build/soong/ui/logger/
logger.go 25 // In order to better handle resource cleanup after a Fatal error, the Fatal
26 // functions panic instead of calling os.Exit(). To actually do the cleanup,
27 // and prevent the printing of the panic, call defer logger.Cleanup() at the
61 // to a call to os.Exit(1) with a deferred call to Cleanup()
192 // Cleanup should be used with defer in your main function. It will close the
194 func (s *stdLogger) Cleanup() {
272 // Cleanup will convert to a os.Exit(1).
280 // Cleanup will convert to a os.Exit(1).
288 // Cleanup will convert to a os.Exit(1).
  /external/autotest/client/site_tests/cellular_ActivateLTE/
cellular_ActivateLTE.py 34 def Cleanup(self):
63 self.Cleanup()

Completed in 893 milliseconds

1 2 3 4 5 6 7