HomeSort by relevance Sort by last modified time
    Searched full:cleanup (Results 76 - 100 of 8848) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cleanup_push/
assertions.xml 7 Shall push the specified cancelation cleanup handler routine onto the calling thread's
8 cancelation cleanup stack.
10 The cancelation cleanup handler shall be popped from the cancelation cleanup stack and invoked
  /external/ply/ply/test/
README 7 The script 'cleanup.sh' cleans up this directory to its original state.
  /external/valgrind/cachegrind/tests/
notpower2.vgtest 3 cleanup: rm cachegrind.out.*
  /external/valgrind/callgrind/tests/
notpower2.vgtest 3 cleanup: rm callgrind.out.*
threads-use.vgtest 3 cleanup: rm callgrind.out.*
  /external/valgrind/exp-bbv/tests/amd64-linux/
complex_rep.vgtest 3 cleanup: rm complex_rep.out.bb
fldcw_check.vgtest 3 cleanup: rm fldcw_check.out.bb
rep_prefix.vgtest 3 cleanup: rm rep_prefix.out.bb
  /external/valgrind/exp-bbv/tests/x86/
complex_rep.vgtest 4 cleanup: rm complex_rep.out.bb
fldcw_check.vgtest 4 cleanup: rm fldcw_check.out.bb
rep_prefix.vgtest 4 cleanup: rm rep_prefix.out.bb
  /external/valgrind/none/tests/amd64-solaris/
coredump_single_thread_sse.vgtest 5 cleanup: rm -f vgcore.*
  /external/valgrind/none/tests/solaris/
coredump_many_threads.vgtest 6 cleanup: rm -f vgcore.*
  /external/valgrind/none/tests/x86/
int.disabled 4 cleanup: rm -f vgcore.*
  /external/valgrind/none/tests/x86-solaris/
coredump_single_thread_sse.vgtest 5 cleanup: rm -f vgcore.*
  /external/ltp/testcases/kernel/containers/userns/
userns07.c 42 static void cleanup(void) function
73 TST_SAFE_CHECKPOINT_WAKE(cleanup, 0);
99 tst_brkm(TBROK | TERRNO, cleanup, "clone failed");
106 fd = SAFE_OPEN(cleanup, path, O_WRONLY, 0644);
107 SAFE_WRITE(cleanup, 1, fd, "deny", 4);
108 SAFE_CLOSE(cleanup, fd);
111 updatemap(cpid1, UID_MAP, 0, parentuid, cleanup);
112 updatemap(cpid1, GID_MAP, 0, parentgid, cleanup);
114 TST_SAFE_CHECKPOINT_WAKE(cleanup, 0);
115 tst_record_childstatus(cleanup, cpid1)
    [all...]
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl32.c 31 static void cleanup(void);
73 cleanup();
79 tst_sig(NOFORK, DEF_HANDLER, cleanup);
84 switch ((type = tst_fs_type(cleanup, "."))) {
88 tst_brkm(TCONF, cleanup,
96 SAFE_TOUCH(cleanup, "file", FILE_MODE, NULL);
101 fd1 = SAFE_OPEN(cleanup, "file", test_cases[i].fd1_flag);
102 fd2 = SAFE_OPEN(cleanup, "file", test_cases[i].fd2_flag);
122 SAFE_CLOSE(cleanup, fd1);
124 SAFE_CLOSE(cleanup, fd2)
128 static void cleanup(void) function
    [all...]
  /external/ltp/testcases/kernel/syscalls/mount/
mount04.c 31 static void cleanup(void);
60 tst_brkm(TBROK, cleanup, "umount() failed");
80 cleanup();
89 tst_sig(FORK, DEF_HANDLER, cleanup);
96 device = tst_acquire_device(cleanup);
99 tst_brkm(TCONF, cleanup, "Failed to obtain block device");
101 tst_mkfs(cleanup, device, fs_type, NULL, NULL);
103 ltpuser = SAFE_GETPWNAM(cleanup, nobody_uid);
104 SAFE_SETEUID(cleanup, ltpuser->pw_uid);
105 SAFE_MKDIR(cleanup, mntpoint, DIR_MODE)
110 static void cleanup(void) function
    [all...]
  /external/autotest/server/control_segments/
cleanup 22 def cleanup(machine):
25 job.record('START', None, 'cleanup')
42 host.cleanup()
44 provision.Cleanup)
46 logging.exception('Cleanup failed due to Exception.')
47 job.record('END FAIL', None, 'cleanup')
52 job.record('END GOOD', None, 'cleanup',
56 job.parallel_simple(cleanup, machines, log=False)
  /external/autotest/server/tests/cleanup_test/
control 1 NAME = 'Cleanup Test'
10 Run the same cleanup function that the scheduler uses in between tests and
  /external/ltp/testcases/kernel/syscalls/getegid/
getegid02.c 33 static void cleanup(void);
52 TEST(GETEGID(cleanup));
55 tst_brkm(TBROK, cleanup, "This should never happen");
62 tst_brkm(TBROK, cleanup, "geteuid() returned "
65 GID16_CHECK(pwent->pw_gid, getegid, cleanup);
78 cleanup();
84 tst_sig(NOFORK, DEF_HANDLER, cleanup);
88 static void cleanup(void) function
  /external/ltp/testcases/kernel/syscalls/getgid/
getgid03.c 33 static void cleanup(void);
52 TEST(GETGID(cleanup));
55 tst_brkm(TBROK, cleanup, "This should never happen");
62 tst_brkm(TBROK, cleanup, "getuid() returned "
65 GID16_CHECK(pwent->pw_gid, getgid, cleanup);
77 cleanup();
83 tst_sig(NOFORK, DEF_HANDLER, cleanup);
87 static void cleanup(void) function
  /external/icu/icu4c/source/common/
ucln_cmn.h 23 /* These are the cleanup functions for various APIs. */
24 /* @return true if cleanup complete successfully.*/
33 as the cleanup functions are suppose to be called. */
59 contain resource bundles which means that unified cache cleanup
67 /* Main library cleanup registration function. */
68 /* See common/ucln.h for details on adding a cleanup function. */
ucln.h 24 /** These are the functions used to register a library's memory cleanup
28 * None of the cleanup functions should use a mutex to clean up an API's
29 * allocated memory because a cleanup function is not meant to be thread safe,
33 * In order to make a cleanup function get called when u_cleanup is called,
34 * You should add your function to the library specific cleanup function.
35 * If the cleanup function is not in the common library, the code that
36 * allocates the memory should call the library specific cleanup function.
39 * cleanup functions are needed in order to prevent a circular dependency
42 * The order of the cleanup is very important. In general, an API that
53 * Data Type for cleanup function selector. These roughly correspond to libraries
    [all...]
  /external/ltp/include/old/
cleanup.c 2 * Default cleanup logic because linux_syscall_numbers.h's need for cleanup
31 /* Did the user define a cleanup function? */
32 #ifndef CLEANUP
34 #define CLEANUP dummy_cleanup
38 static void CLEANUP(void) __attribute__ ((unused));

Completed in 3996 milliseconds

1 2 34 5 6 7 8 91011>>