Home
last modified time | relevance | path

Searched refs:remove (Results 1 – 25 of 1029) sorted by relevance

12345678910>>...42

/freebsd/sys/contrib/openzfs/scripts/
H A Dzfs-helpers.sh52 Install/remove the ZFS helper utilities.
142 remove() { function
174 remove "$INSTALL_MOUNT_HELPER_DIR/mount.zfs"
175 remove "$INSTALL_MOUNT_HELPER_DIR/fsck.zfs"
176 remove "$INSTALL_UDEV_DIR/zvol_id"
177 remove "$INSTALL_UDEV_DIR/vdev_id"
178 remove "$INSTALL_UDEV_RULE_DIR/60-zvol.rules"
179 remove "$INSTALL_UDEV_RULE_DIR/69-vdev.rules"
180 remove "$INSTALL_UDEV_RULE_DIR/90-zfs.rules"
181 remove "$INSTALL_SYSCONF_DIR/zfs/zpool.d"
[all …]
/freebsd/usr.sbin/etcupdate/tests/
H A Dfbsdid_test.sh91 store_id $OLD/remove
92 store_id $TEST/remove ": head/remove 12345 jhb "
201 store_id $OLD/local-remove ": head/local-remove 12000 jhb "
202 store_id $NEW/local-remove ": head/local-remove 12345 jhb "
204 cat >> $i/local-remove <<EOF
304 Modified regular file remains: /remove
305 Removed file changed: /local-remove
312 file /remove "" 1bb4776213af107077be78fead8a351c
324 missing /local-remove
333 D /remove
[all …]
H A Dignore_test.sh87 echo "old" > $i/tree/remove
193 D /tree/remove
203 missing /tree/remove
224 file /tree/remove "old"
245 file /tree/remove "old"
269 file /tree/remove "old"
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.lib_table.lua212 assert(table.remove(a,1) == -1)
213 assert(table.remove(a,1) == -2)
214 assert(table.remove(a,1) == 10)
215 assert(table.remove(a,1) == 20)
216 assert(table.remove(a,1) == 40)
217 assert(table.remove(a,1) == 50)
218 assert(table.remove(a,1) == nil)
231 assert(table.remove(a) == 10)
232 assert(table.remove(a) == 20)
233 assert(table.remove(a) == -1)
[all …]
/freebsd/contrib/atf/atf-c++/
H A Dmacros_test.cpp365 atf::fs::remove(before); in ATF_TEST_CASE_BODY()
367 atf::fs::remove(after); in ATF_TEST_CASE_BODY()
414 atf::fs::remove(before); in ATF_TEST_CASE_BODY()
416 atf::fs::remove(after); in ATF_TEST_CASE_BODY()
459 atf::fs::remove(before); in ATF_TEST_CASE_BODY()
461 atf::fs::remove(after); in ATF_TEST_CASE_BODY()
506 atf::fs::remove(before); in ATF_TEST_CASE_BODY()
508 atf::fs::remove(after); in ATF_TEST_CASE_BODY()
551 atf::fs::remove(before); in ATF_TEST_CASE_BODY()
553 atf::fs::remove(after); in ATF_TEST_CASE_BODY()
[all …]
/freebsd/contrib/netbsd-tests/sbin/resize_ffs/
H A Dcommon.sh142 local remove=$((numdata-numdata*nsize/osize))
143 local dataleft=$((numdata-remove))
144 echo remove is $remove dataleft is $dataleft
145 remove_multiple ${remove}
155 check_data_range $((remove + 1)) ${numdata}
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DLockFileManager.cpp61 sys::fs::remove(LockFileName); in readLockFile()
78 sys::fs::remove(LockFileName); in readLockFile()
151 sys::fs::remove(Filename); in ~RemoveUniqueLockFileOnSignal()
207 sys::fs::remove(UniqueLockFileName); in LockFileManager()
239 sys::fs::remove(UniqueLockFileName); in LockFileManager()
251 if ((EC = sys::fs::remove(LockFileName))) { in LockFileManager()
287 sys::fs::remove(LockFileName); in ~LockFileManager()
288 sys::fs::remove(UniqueLockFileName); in ~LockFileManager()
327 return sys::fs::remove(LockFileName); in unsafeRemoveLockFile()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTImporterLookupTable.cpp110 void ASTImporterLookupTable::remove(DeclContext *DC, NamedDecl *ND) { in remove() function in clang::ASTImporterLookupTable
113 bool EraseResult = Decls.remove(ND); in remove()
135 void ASTImporterLookupTable::remove(NamedDecl *ND) { in remove() function in clang::ASTImporterLookupTable
138 remove(DC, ND); in remove()
141 remove(ReDC, ND); in remove()
153 remove(OldDC, ND); in update()
158 LookupTable[OldDC][ND->getDeclName()].remove(ND); in updateForced()
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dzfs_rlock.c553 zfs_rangelock_exit_reader(zfs_rangelock_t *rl, zfs_locked_range_t *remove, in zfs_rangelock_exit_reader() argument
566 if (remove->lr_count == 1) { in zfs_rangelock_exit_reader()
567 avl_remove(tree, remove); in zfs_rangelock_exit_reader()
568 if (remove->lr_write_wanted) in zfs_rangelock_exit_reader()
569 cv_broadcast(&remove->lr_write_cv); in zfs_rangelock_exit_reader()
570 if (remove->lr_read_wanted) in zfs_rangelock_exit_reader()
571 cv_broadcast(&remove->lr_read_cv); in zfs_rangelock_exit_reader()
572 list_insert_tail(free_list, remove); in zfs_rangelock_exit_reader()
574 ASSERT0(remove->lr_count); in zfs_rangelock_exit_reader()
575 ASSERT0(remove->lr_write_wanted); in zfs_rangelock_exit_reader()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A Dilist.h188 pointer remove(iterator &IT) {
191 base_list_type::remove(*Node);
195 pointer remove(const iterator &IT) {
197 return remove(MutIt);
200 pointer remove(pointer IT) { return remove(iterator(IT)); }
201 pointer remove(reference IT) { return remove(iterator(IT)); }
205 this->deleteNode(remove(where));
/freebsd/tools/regression/zfs/zpool/remove/
H A Dspare.t29 expect_ok ${ZPOOL} remove ${name0} ${disk1} ${disk2}
43 expect_ok ${ZPOOL} remove ${name0} ${disk3}
75 expect_ok ${ZPOOL} remove ${name0} ${file1} ${file2}
89 expect_ok ${ZPOOL} remove ${name0} ${file3}
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DCommonOpts.td18 HelpText<"Allow the tool to remove sections even if it would leave "
45 HelpText<"For ELF, remove all symbols and non-alloc sections not within "
47 "For COFF and Mach-O, remove all symbols, debug sections, and relocations">;
62 defm remove_section : Eq<"remove-section", "Remove <section>">,
66 HelpText<"Alias for --remove-section">;
81 defm keep_symbol : Eq<"keep-symbol", "When removing symbols, do not remove <symbol>">,
91 HelpText<"Do not remove undefined symbols">, Group<grp_macho>;
109 "Additionally, remove all debug sections">;
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_import/
H A Dimport_cachefile_device_removed.ksh55 log_must zpool remove $TESTPOOL1 $removevdev
84 log_must zpool remove $TESTPOOL1 $VDEV4
87 log_must zpool remove $TESTPOOL1 $VDEV3
116 log_must zpool remove $TESTPOOL1 $VDEV1
118 log_must zpool remove $TESTPOOL1 $VDEV3
/freebsd/contrib/kyua/utils/fs/
H A Dauto_cleaners.cpp177 this->remove(); in ~impl()
188 remove(void) in remove() function
258 fs::auto_file::remove(void) in remove() function in fs::auto_file
260 _pimpl->remove(); in remove()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_wait/
H A Dzpool_wait_remove_cancel.ksh51 log_must zpool remove $TESTPOOL $DISK1
53 log_bkgrnd zpool wait -t remove $TESTPOOL
59 log_must zpool remove -s $TESTPOOL
H A Dzpool_wait_remove.ksh55 log_bkgrnd zpool remove -w $TESTPOOL $DISK1
62 log_must zpool remove $TESTPOOL $DISK1
63 log_bkgrnd zpool wait -t remove $TESTPOOL
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/removal/
H A Dremove_raidz.ksh42 log_mustnot zpool remove $TESTPOOL $TMPDIR/dsk1
45 log_mustnot zpool remove $TESTPOOL $TMPDIR/dsk2
48 log_mustnot zpool remove $TESTPOOL raidz1-1
H A Dremove_mirror.ksh45 log_must zpool remove $TESTPOOL $DISK1
48 log_mustnot zpool remove $TESTPOOL $DISK2
56 log_must zpool remove $TESTPOOL mirror-1
/freebsd/tests/sys/cddl/zfs/tests/hotspare/
H A Dhotspare_remove_002_neg.ksh72 log_mustnot $ZPOOL remove $TESTPOOL $dev
99 log_mustnot $ZPOOL remove $TESTPOOL $dev
103 log_mustnot $ZPOOL remove $TESTPOOL $dev
/freebsd/usr.sbin/periodic/etc/monthly/
H A D200.accounting19 remove=NO
26 remove=YES
58 [ $remove = YES ] && rm -f $TMP;;
/freebsd/sys/contrib/openzfs/rpm/redhat/
H A Dzfs-dkms.spec.in79 # remove them, if we find a matching version in dkms.
97 echo "You should manually remove ${opath}" >&2
103 dkms remove -m %{module} -v "$otherver" --all ||:
113 dkms remove -m %{module} -v %{version} --all ||:
142 # Check if we uninstall the package. In that case remove the dkms modules.
144 # 'remove' or 'purge' are the possible names for deb packages.
145 if [ "$1" = "0" -o "$1" = "remove" -o "$1" = "purge" ] ; then
148 dkms remove -m %{module} -v %{version} --all %{!?not_rpm:--rpm_safe_upgrade} && exit 0
154 echo "You should manually remove ${dkms_root}" >&2
/freebsd/sys/contrib/openzfs/rpm/generic/
H A Dzfs-dkms.spec.in79 # remove them, if we find a matching version in dkms.
97 echo "You should manually remove ${opath}" >&2
103 dkms remove -m %{module} -v "$otherver" --all ||:
113 dkms remove -m %{module} -v %{version} --all ||:
142 # Check if we uninstall the package. In that case remove the dkms modules.
144 # 'remove' or 'purge' are the possible names for deb packages.
145 if [ "$1" = "0" -o "$1" = "remove" -o "$1" = "purge" ] ; then
148 dkms remove -m %{module} -v %{version} --all %{!?not_rpm:--rpm_safe_upgrade} && exit 0
154 echo "You should manually remove ${dkms_root}" >&2
/freebsd/contrib/llvm-project/lld/Common/
H A DFilesystem.cpp30 // so remove this when operating systems are improved.
34 // milliseconds to remove a 1 GB file on ext4 filesystem on my machine.
36 // To create a new result file, we first remove existing file. So, if
38 // cycle, every cycle wastes 250 milliseconds only to remove a file.
42 // This function spawns a background thread to remove the file. in unlinkAsync()
75 sys::fs::remove(tmpName); in unlinkAsync()
77 sys::fs::remove(path); in unlinkAsync()
82 // We cannot just remove path from a different thread because we are now going in unlinkAsync()
88 sys::fs::remove(path); in unlinkAsync()
93 // close and therefore remove TempPat in unlinkAsync()
[all...]
/freebsd/contrib/llvm-project/lld/ELF/Arch/
H A DRISCV.cpp736 Relocation &r, uint32_t &remove) { in relaxCall() argument
748 remove = 6; in relaxCall()
753 remove = 6; in relaxCall()
757 remove = 4; in relaxCall()
763 Relocation &r, uint32_t &remove) { in relaxTlsLe() argument
773 remove = 4; in relaxTlsLe()
791 Relocation &r, uint32_t &remove) { in relaxHi20Lo12() argument
803 remove = 4; in relaxHi20Lo12()
827 uint32_t &cur = aux.relocDeltas[i], remove = 0; in relax() local
833 remove = nextLoc - ((loc + align - 1) & -align); in relax()
[all …]
/freebsd/sys/dev/bnxt/bnxt_en/
H A Dbnxt_auxbus_compat.c129 if (auxdrv->remove) in auxiliary_device_delete()
130 auxdrv->remove(auxdev); in auxiliary_device_delete()
186 if (auxdrv->remove) in auxiliary_driver_unregister()
187 auxdrv->remove(auxdev); in auxiliary_driver_unregister()

12345678910>>...42