/freebsd/libexec/rc/rc.d/ |
H A D | virecover | 14 desc="Recover crashed vi sessions" 21 [ -d /var/tmp/vi.recover ] || return 22 find /var/tmp/vi.recover ! -type f -a ! -type d -delete 23 vibackup=`echo /var/tmp/vi.recover/vi.*` 24 if [ "${vibackup}" != '/var/tmp/vi.recover/vi.*' ]; then 26 for i in /var/tmp/vi.recover/vi.*; do 41 virecovery=`echo /var/tmp/vi.recover/recover.*` 42 if [ "${virecovery}" != "/var/tmp/vi.recover/recover.*" ]; then 43 for i in /var/tmp/vi.recover/recover.*; do 52 recfile=`awk '/^X-vi-recover-path:/{print $2}' < "${i}"`
|
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_memintrinsics.cpp | 25 CheckAddressSized<ErrorAction::Recover, AccessType::Store>( in __hwasan_memset() 31 CheckAddressSized<ErrorAction::Recover, AccessType::Store>( in __hwasan_memcpy() 33 CheckAddressSized<ErrorAction::Recover, AccessType::Load>( in __hwasan_memcpy() 39 CheckAddressSized<ErrorAction::Recover, AccessType::Store>( in __hwasan_memmove() 41 CheckAddressSized<ErrorAction::Recover, AccessType::Load>( in __hwasan_memmove() 49 CheckAddressSized<ErrorAction::Recover, AccessType::Store>( in __hwasan_memset_match_all() 57 CheckAddressSized<ErrorAction::Recover, AccessType::Store>( in __hwasan_memcpy_match_all() 60 CheckAddressSized<ErrorAction::Recover, AccessType::Load>( in __hwasan_memcpy_match_all() 68 CheckAddressSized<ErrorAction::Recover, AccessType::Store>( in __hwasan_memmove_match_all() 71 CheckAddressSized<ErrorAction::Recover, AccessType::Load>( in __hwasan_memmove_match_all()
|
H A D | hwasan.cpp | 242 bool fatal = flags()->halt_on_error || !ai.recover; in HandleTagMismatch() 252 ai.recover = access_info & 0x20; in HwasanTagMismatch() 517 CheckAddressSized<ErrorAction::Recover, AccessType::Load>(p, sz); in __hwasan_loadN_noabort() 520 CheckAddress<ErrorAction::Recover, AccessType::Load, 0>(p); in __hwasan_load1_noabort() 523 CheckAddress<ErrorAction::Recover, AccessType::Load, 1>(p); in __hwasan_load2_noabort() 526 CheckAddress<ErrorAction::Recover, AccessType::Load, 2>(p); in __hwasan_load4_noabort() 529 CheckAddress<ErrorAction::Recover, AccessType::Load, 3>(p); in __hwasan_load8_noabort() 532 CheckAddress<ErrorAction::Recover, AccessType::Load, 4>(p); in __hwasan_load16_noabort() 562 CheckAddressSized<ErrorAction::Recover, AccessType::Load>(p, sz); in __hwasan_loadN_match_all_noabort() 566 CheckAddress<ErrorAction::Recover, AccessType::Load, 0>(p); in __hwasan_load1_match_all_noabort() [all …]
|
H A D | hwasan_checks.h | 23 enum class ErrorAction { Abort, Recover }; enumerator 29 return 0x20 * (EA == ErrorAction::Recover) + in SigTrapEncoding() 51 .recover = EA == ErrorAction::Recover, in SigTrap() 100 .recover = EA == ErrorAction::Recover, in SigTrap()
|
/freebsd/secure/lib/libcrypto/man/man7/ |
H A D | life_cycle-pkey.7 | 181 .IP "verify recover" 4 182 .IX Item "verify recover" 183 This state represents the \s-1PKEY\s0 when it is ready to recover a public key signature data. 208 …---------------------------+ | | | +--------------------------->| recover | 255 …sign recover … 267 …recover recover recover recover recover recover recover recover… 269 recover 292 …sign recover … 294 …sign recover … 296 …sign recover … [all …]
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | life_cycle-pkey.pod | 61 =item verify recover 63 This state represents the PKEY when it is ready to recover a public key signature data. 95 …---------------------------+ | | | +--------------------------->| recover | 150 …sign recover … 162 …recover recover recover recover recover recover recover recover… 164 recover 187 …sign recover … 189 …sign recover … 191 …sign recover … 193 …sign recover … [all …]
|
/freebsd/contrib/nvi/files/ |
H A D | recover.in | 3 # Script to recover nvi edit sessions. 31 virecovery=`echo ${RECDIR}/recover.*` 32 if [ "${virecovery}" != "${RECDIR}/recover.*" ]; then 33 for i in ${RECDIR}/recover.*; do
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/ |
H A D | MemorySanitizer.h | 26 MemorySanitizerOptions(int TrackOrigins, bool Recover, bool Kernel) in MemorySanitizerOptions() 27 : MemorySanitizerOptions(TrackOrigins, Recover, Kernel, false) {} in MemorySanitizerOptions() 28 MemorySanitizerOptions(int TrackOrigins, bool Recover, bool Kernel, 32 bool Recover; member
|
H A D | HWAddressSanitizer.h | 27 HWAddressSanitizerOptions(bool CompileKernel, bool Recover, in HWAddressSanitizerOptions() 29 : CompileKernel(CompileKernel), Recover(Recover), in HWAddressSanitizerOptions() 32 bool Recover; member
|
/freebsd/sys/contrib/zstd/ |
H A D | Makefile | 306 # run UBsan with -fsanitize-recover=pointer-overflow 309 …$(MAKE) test CC=clang MOREFLAGS="-g -fno-sanitize-recover=all -fsanitize-recover=pointer-overflow … 315 …LDFLAGS=-fuse-ld=gold MOREFLAGS="-g -fno-sanitize-recover=all -fsanitize=address -Werror" $(MAKE) … 321 …LDFLAGS=-fuse-ld=gold MOREFLAGS="-g -fno-sanitize-recover=all -fsanitize=memory -fno-omit-frame-po… 327 …$(MAKE) test CC=clang MOREFLAGS="-g -fno-sanitize-recover=all -fsanitize-recover=pointer-overflow … 330 …LDFLAGS=-fuse-ld=gold MOREFLAGS="-g -fno-sanitize-recover=all -fsanitize-recover=pointer-overflow … 333 …LDFLAGS=-fuse-ld=gold MOREFLAGS="-g -fno-sanitize-recover=all -fsanitize=thread -Werror" $(MAKE) -…
|
/freebsd/lib/libsys/ |
H A D | undelete.2 | 34 .Nd attempt to recover a deleted file 44 system call attempts to recover the deleted file named by 54 functionality may be expanded to other file systems able to recover
|
/freebsd/contrib/nvi/common/ |
H A D | recover.c | 96 * "recover.XXXXXX". 239 /* Make sure that there's something to recover/sync. */ in rcv_sync() 346 if ((mpath = join(dp, "recover.XXXXXX")) == NULL) { in rcv_mailfile() 362 * We keep an open lock on the file so that the recover option can in rcv_mailfile() 371 /* Save the recover file descriptor, and mail path. */ in rcv_mailfile() 419 "You can recover most, if not all, of the changes ", in rcv_mailfile() 518 if (strncmp(dp->d_name, "recover.", 8)) in rcv_list() 589 (void)printf("%s: No files to recover\n", getprogname()); in rcv_list() 627 if (strncmp(dp->d_name, "recover.", 8)) 740 "068|No files named %s, readable by you, to recover"); [all …]
|
H A D | exf.h | 42 * in recover.c. 45 char *rcv_path; /* Recover file name. */ 46 char *rcv_mpath; /* Recover mail file name. */
|
/freebsd/contrib/nvi/ex/ |
H A D | ex_preserve.c | 60 * Recover the file. 80 * affect :recover. in ex_recover() 90 /* Set the recover bit. */ in ex_recover()
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | EVP_PKEY_verify_recover.pod | 7 - recover signature using a public key algorithm 47 signing operation. Only certain public key algorithms can recover a signature 65 Recover digest originally signed using PKCS#1 and SHA256 digest:
|
/freebsd/sbin/recoverdisk/ |
H A D | recoverdisk.1 | 30 .Nd recover data from hard disk or optical media 117 # recover data from failing hard drive ada3 129 # recover a single file from the unreadable media
|
/freebsd/contrib/netbsd-tests/sbin/gpt/ |
H A D | t_gpt.sh | 212 atf_set "descr" "Recover the backup GPT header and table" 218 match "$(recovermsg secondary primary)" gpt recover "$disk" 224 atf_set "descr" "Recover the primary GPT header and table" 230 match "$(recovermsg primary secondary)" gpt recover "$disk"
|
/freebsd/share/mk/ |
H A D | bsd.sanitizer.mk | 9 SANITIZER_CFLAGS+= -fsanitize-recover=address 20 SANITIZER_CFLAGS+= -fsanitize-recover=undefined
|
/freebsd/contrib/llvm-project/compiler-rt/lib/BlocksRuntime/ |
H A D | Block.h | 41 * This must be paired with Block_release to recover memory, even when running 46 /* Lose the reference, and if heap based and last reference, recover the memory. */
|
/freebsd/contrib/nvi/ |
H A D | CMakeLists.txt | 56 common/recover.c common/screen.c common/search.c common/seq.c 237 set(vi_cv_path_preserve /var/tmp/vi.recover/) 245 configure_file(files/recover.in recover @ONLY)
|
/freebsd/usr.sbin/fdread/ |
H A D | fdread.c | 47 static int quiet, recover; variable 116 recover++; in main() 140 if (fname || quiet || recover) in main() 235 if (!recover) { in doread()
|
/freebsd/share/doc/usd/13.viref/ |
H A D | vi.ref | 442 Users may recover any file which they can read, 443 and the superuser may recover any edit session. 448 .LI /var/tmp/vi.recover 457 .QC recover.XXXXXX , 498 user to recover the edit session. 502 .LI /var/tmp/vi.recover 504 .QC recover.XXXXXX 523 .LI nvi/common/recover.c 543 .CO recover , 550 .CO recover
|
/freebsd/secure/lib/libcrypto/man/man3/ |
H A D | EVP_PKEY_verify_recover.3 | 142 \&\- recover signature using a public key algorithm 181 signing operation. Only certain public key algorithms can recover a signature 197 Recover digest originally signed using PKCS#1 and \s-1SHA256\s0 digest:
|
/freebsd/sys/dev/mlx5/mlx5_core/ |
H A D | mlx5_health.c | 310 /* Recover from SW reset */ in mlx5_enter_error_state() 345 * be reloaded to recover after the mode switches to in mlx5_handle_bad_state() 370 bool recover = true; in health_recover() local 384 recover = false; in health_recover() 398 recover = false; in health_recover() 401 if (recover) { in health_recover()
|
/freebsd/usr.sbin/pnfsdscopymr/ |
H A D | pnfsdscopymr.8 | 40 It is normally used to recover data files onto a repaired DS, but can also 61 in order to recover the data
|