Home
last modified time | relevance | path

Searched +full:on +full:- +full:die (Results 1 – 25 of 809) sorted by relevance

12345678910>>...33

/freebsd-src/tools/regression/tmpfs/
H A Dt_rename28 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
44 mkdir a || die
45 mv a/. c 2>/dev/null && die
46 mv a/.. c 2>/dev/null && die
47 rmdir a || die
50 mkdir a || die
51 ${Src_Dir}/h_tools rename a /var/tmp/a >/dev/null 2>&1 && die
52 rmdir a || die
55 mkdir a || die
56 mv a c || die
[all …]
H A Dt_setattr28 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
43 test_name "File owner can be changed on its own"
44 mkdir own || die
45 eval $(stat -s own | sed -e 's|st_|ost_|g')
46 chown 1234 own || die
47 eval $(stat -s own)
48 [ ${st_uid} -eq 1234 ] || die
49 [ ${st_gid} -eq ${ost_gid} ] || die
51 mkdir ownq || die
52 echo 'chown 1234 ownq' | kqueue_monitor 1 ownq || die
[all …]
H A Dt_link28 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
43 touch a || die
44 touch z || die
45 eval $(stat -s a | sed -e 's|st_|sta_|g')
46 eval $(stat -s z | sed -e 's|st_|stz_|g')
47 test ${sta_ino} != ${stz_ino} || die
48 test ${sta_nlink} -eq 1 || die
49 ln a b || die
51 eval $(stat -s a | sed -e 's|st_|sta_|g')
52 eval $(stat -s b | sed -e 's|st_|stb_|g')
[all …]
H A Dt_rmdir28 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
44 rmdir 2>/dev/null && die
46 test_name "Non-existing directories cannot be removed"
47 rmdir non-existent 2>/dev/null && die
50 mkdir a || die
51 eval $(stat -s ${Work_Dir})
52 [ ${st_nlink} = 3 ] || die
53 rmdir a || die
54 eval $(stat -s ${Work_Dir})
55 [ ${st_nlink} = 2 ] || die
[all …]
H A Dt_mkdir28 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
46 eval $(stat -s ${Work_Dir})
47 [ ${st_nlink} = 3 ] || die
51 test -d ${d} && die
53 test -d ${d} || die
55 eval $(stat -s ${Work_Dir})
56 [ ${st_nlink} = 103 ] || die
59 test -d a/b/c/d/e && die
60 mkdir -p a/b/c/d/e || die
61 test -d a/b/c/d/e || die
[all …]
H A Dt_remove28 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
43 test -f a && die
44 touch a || die
45 test -f a || die
46 rm a || die
47 test -f a && die
50 touch a || die
51 chflags uchg a || die
53 #rm -f a 2>/dev/null && die
54 chflags nouchg a || die
[all …]
H A Dt_symlink28 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
43 touch a || die
45 ln -s a b || die
47 [ $(md5 b | cut -d ' ' -f 4) = d41d8cd98f00b204e9800998ecf8427e ] || die
50 echo foo >a || die
52 [ $(md5 b | cut -d ' ' -f 4) = d3b07384d113edec49eaa6238ad5ff00 ] || die
55 ln -s /bin/cp cp || die
57 ./cp b c || die
58 [ -f c ] || die
61 mkdir d || die
[all …]
H A Dt_create28 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
43 umask 022 || die
44 test -f a && die
45 touch a || die
46 test -f a || die
48 eval $(stat -s . | sed -e 's|st_|dst_|g')
49 eval $(stat -s a)
50 test ${st_flags} -eq 0 || die
51 test ${st_size} -eq 0 || die
52 test ${st_uid} -eq $(id -u) || die
[all …]
H A Dt_times28 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
43 touch a || die
44 eval $(stat -s a | sed -e 's|st_|ost_|g') || die
45 [ ${ost_birthtime} -eq ${ost_atime} ] || die
46 [ ${ost_birthtime} -eq ${ost_ctime} ] || die
47 [ ${ost_birthtime} -eq ${ost_mtime} ] || die
51 cat a >/dev/null || die
52 eval $(stat -s a) || die
53 [ ${st_atime} -gt ${ost_atime} ] || die
54 [ ${st_ctime} -eq ${ost_ctime} ] || die
[all …]
H A Dt_readdir28 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
43 /bin/ls -a | grep '^\.$' >/dev/null || die
44 /bin/ls -a | grep '^\..$' >/dev/null || die
47 mkdir dir || die
48 touch reg || die
49 ln -s reg lnk || die
50 mknod b blk 0 0 || die
51 mknod c chr 0 0 || die
52 mkfifo fifo || die
53 ${Src_Dir}/h_tools sockets sock || die
[all …]
H A Dt_read_write28 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
43 echo foo >a || die
45 [ $(md5 a | cut -d ' ' -f 4) = d3b07384d113edec49eaa6238ad5ff00 ] || die
48 echo bar >>a || die
50 [ $(md5 a | cut -d ' ' -f 4) = f47c75614087a8dd938ba4acff252494 ] || die
53 jot 10000 >b || die
55 [ $(md5 b | cut -d ' ' -f 4) = 72d4ff27a28afbc066d5804999d5a504 ] || die
57 dd if=/dev/zero of=c bs=1k count=10 >/dev/null 2>&1 || die
59 '>/dev/null 2>&1' | kqueue_monitor 1 c || die
61 kqueue_check c NOTE_WRITE || die
[all …]
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.h1 //===- llvm/CodeGen/DwarfCompileUnit.h - Dwarf Compile Unit -----*- C++ -*-
34 class DIE; global() variable
174 DIE *Die = nullptr; global() member
[all...]
H A DDIEHash.cpp1 //===-- llvm/CodeGen/DIEHash.cpp - Dwarf Hashing Framework ----------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
30 static StringRef getDIEStringAttr(const DIE &Die, uint16_t Attr) { in getDIEStringAttr() argument
33 for (const auto &V : Die.values()) in getDIEStringAttr()
70 ((Value == -1) && ((Byte & 0x40) != 0)))); in addSLEB128()
78 void DIEHash::addParentContext(const DIE &Parent) { in addParentContext()
84 SmallVector<const DIE *, 1> Parents; in addParentContext()
85 const DIE *Cur = &Parent; in addParentContext()
[all …]
H A DDwarfCompileUnit.cpp1 //===- llvm/CodeGen/DwarfCompileUnit.cpp - Dwarf Compile Units --------
68 addLabelAddress(DIE & Die,dwarf::Attribute Attribute,const MCSymbol * Label) addLabelAddress() argument
108 addLocalLabelAddress(DIE & Die,dwarf::Attribute Attribute,const MCSymbol * Label) addLocalLabelAddress() argument
140 if (DIE *Die = getDIE(GV)) getOrCreateGlobalVariableDIE() local
638 attachRangesOrLowHighPC(DIE & Die,SmallVector<RangeSpan,2> Ranges) attachRangesOrLowHighPC() argument
653 attachRangesOrLowHighPC(DIE & Die,const SmallVectorImpl<InsnRange> & Ranges) attachRangesOrLowHighPC() argument
1384 if (DIE *Die = getDIE(IE)) getOrCreateImportedEntityDIE() local
1412 auto *Die = Entity->getDIE(); finishEntityDefinition() local
1500 addGlobalName(StringRef Name,const DIE & Die,const DIScope * Context) addGlobalName() argument
1521 addGlobalType(const DIType * Ty,const DIE & Die,const DIScope * Context) addGlobalType() argument
1541 addVariableAddress(const DbgVariable & DV,DIE & Die,MachineLocation Location) addVariableAddress() argument
1551 addAddress(DIE & Die,dwarf::Attribute Attribute,const MachineLocation & Location) addAddress() argument
1576 addComplexAddress(const DIExpression * DIExpr,DIE & Die,dwarf::Attribute Attribute,const MachineLocation & Location) addComplexAddress() argument
1603 addLocationList(DIE & Die,dwarf::Attribute Attribute,unsigned Index) addLocationList() argument
1640 addExpr(DIELoc & Die,dwarf::Form Form,const MCExpr * Expr) addExpr() argument
1675 addBaseTypeRef(DIEValueList & Die,int64_t Idx) addBaseTypeRef() argument
1686 DIE &Die = getUnitDie().addChildFront( createBaseTypeDIEs() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/DWARFLinker/Classic/
H A DDWARFLinker.h1 //===- DWARFLinker.h --------------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
75 /// Emit Apple Objective-C accelerator table.
151 /// Recursively emit the DIE tree rooted at \p Die.
152 virtual void emitDIE(DIE &Die) = 0;
230 /// Add object file to be linked. Pre-load compile unit die. Call
231 /// \p OnCUDieLoaded for each compile unit die. If specified \p File
233 /// pre-loaded by \p Loader for !Update case.
266 /// Allow generating valid, but non-deterministic output.
[all …]
/freebsd-src/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFLinker.cpp1 //=== DWARFLinker.cpp ----------
77 resolveDIEReference(const DWARFFile & File,const UnitListTy & Units,const DWARFFormValue & RefValue,const DWARFDie & DIE,CompileUnit * & RefCU) resolveDIEReference() argument
144 getDIENames(const DWARFDie & Die,AttributesInfo & Info,OffsetsStringPool & StringPool,bool StripTemplate) getDIENames() argument
183 analyzeImportedModule(const DWARFDie & DIE,CompileUnit & CU,DWARFLinkerBase::SwiftInterfacesMapTy * ParseableSwiftInterfaces,std::function<void (const Twine &,const DWARFDie &)> ReportWarning) analyzeImportedModule() argument
236 DWARFDie Die; global() member
257 updatePruning(const DWARFDie & Die,CompileUnit & CU,uint64_t ModulesEndOffset) updatePruning() argument
279 updateChildPruning(const DWARFDie & Die,CompileUnit & CU,CompileUnit::DIEInfo & ChildInfo) updateChildPruning() argument
294 analyzeContextInfo(const DWARFDie & DIE,unsigned ParentIdx,CompileUnit & CU,DeclContext * CurrentDeclContext,DeclContextTree & Contexts,uint64_t ModulesEndOffset,DWARFLinkerBase::SwiftInterfacesMapTy * ParseableSwiftInterfaces,std::function<void (const Twine &,const DWARFDie &)> ReportWarning) analyzeContextInfo() argument
407 getVariableRelocAdjustment(AddressesMap & RelocMgr,const DWARFDie & DIE) getVariableRelocAdjustment() argument
499 shouldKeepVariableDIE(AddressesMap & RelocMgr,const DWARFDie & DIE,CompileUnit::DIEInfo & MyInfo,unsigned Flags) shouldKeepVariableDIE() argument
546 shouldKeepSubprogramDIE(AddressesMap & RelocMgr,const DWARFDie & DIE,const DWARFFile & File,CompileUnit & Unit,CompileUnit::DIEInfo & MyInfo,unsigned Flags) shouldKeepSubprogramDIE() argument
608 shouldKeepDIE(AddressesMap & RelocMgr,const DWARFDie & DIE,const DWARFFile & File,CompileUnit & Unit,CompileUnit::DIEInfo & MyInfo,unsigned Flags) shouldKeepDIE() argument
637 updateChildIncompleteness(const DWARFDie & Die,CompileUnit & CU,CompileUnit::DIEInfo & ChildInfo) updateChildIncompleteness() argument
657 updateRefIncompleteness(const DWARFDie & Die,CompileUnit & CU,CompileUnit::DIEInfo & RefInfo) updateRefIncompleteness() argument
682 lookForChildDIEsToKeep(const DWARFDie & Die,CompileUnit & CU,unsigned Flags,SmallVectorImpl<WorklistItem> & Worklist) lookForChildDIEsToKeep() argument
709 isODRCanonicalCandidate(const DWARFDie & Die,CompileUnit & CU) isODRCanonicalCandidate() argument
721 markODRCanonicalDie(const DWARFDie & Die,CompileUnit & CU) markODRCanonicalDie() argument
733 lookForRefDIEsToKeep(const DWARFDie & Die,CompileUnit & CU,unsigned Flags,const UnitListTy & Units,const DWARFFile & File,SmallVectorImpl<WorklistItem> & Worklist) lookForRefDIEsToKeep() argument
839 lookForDIEsToKeep(AddressesMap & AddressesMap,const UnitListTy & Units,const DWARFDie & Die,const DWARFFile & File,CompileUnit & Cu,unsigned Flags) lookForDIEsToKeep() argument
1023 cloneStringAttribute(DIE & Die,AttributeSpec AttrSpec,const DWARFFormValue & Val,const DWARFUnit & U,AttributesInfo & Info) cloneStringAttribute() argument
1069 cloneDieReferenceAttribute(DIE & Die,const DWARFDie & InputDIE,AttributeSpec AttrSpec,unsigned AttrSize,const DWARFFormValue & Val,const DWARFFile & File,CompileUnit & Unit) cloneDieReferenceAttribute() argument
1262 cloneBlockAttribute(DIE & Die,const DWARFDie & InputDIE,const DWARFFile & File,CompileUnit & Unit,AttributeSpec AttrSpec,const DWARFFormValue & Val,bool IsLittleEndian) cloneBlockAttribute() argument
1328 cloneAddressAttribute(DIE & Die,const DWARFDie & InputDIE,AttributeSpec AttrSpec,unsigned AttrSize,const DWARFFormValue & Val,const CompileUnit & Unit,AttributesInfo & Info) cloneAddressAttribute() argument
1393 cloneScalarAttribute(DIE & Die,const DWARFDie & InputDIE,const DWARFFile & File,CompileUnit & Unit,AttributeSpec AttrSpec,const DWARFFormValue & Val,unsigned AttrSize,AttributesInfo & Info) cloneScalarAttribute() argument
1545 cloneAttribute(DIE & Die,const DWARFDie & InputDIE,const DWARFFile & File,CompileUnit & Unit,const DWARFFormValue & Val,const AttributeSpec AttrSpec,unsigned AttrSize,AttributesInfo & Info,bool IsLittleEndian) cloneAttribute() argument
1607 addObjCAccelerator(CompileUnit & Unit,const DIE * Die,DwarfStringPoolEntryRef Name,OffsetsStringPool & StringPool,bool SkipPubSection) addObjCAccelerator() argument
1666 cloneDIE(const DWARFDie & InputDIE,const DWARFFile & File,CompileUnit & Unit,int64_t PCOffset,uint32_t OutOffset,unsigned Flags,bool IsLittleEndian,DIE * Die) cloneDIE() argument
2020 patchAddrBase(DIE & Die,DIEInteger Offset) patchAddrBase() argument
2082 patchStmtList(DIE & Die,DIEInteger Offset) patchStmtList() argument
2349 hashFullyQualifiedName(DWARFDie DIE,CompileUnit & U,const DWARFFile & File,int ChildRecurseDepth) hashFullyQualifiedName() argument
2388 DWARFDie Die = OrigUnit->getDIEAtIndex(CU->getInfo(Idx).ParentIdx); hashFullyQualifiedName() local
2815 __anonbbcaedf40602(const Twine &Warning, const DWARFDie &DIE) link() argument
3014 __anonbbcaedf40e02(const Twine &Warning, const DWARFDie &DIE) cloneModuleUnit() argument
[all...]
/freebsd-src/contrib/elftoolchain/libdwarf/
H A Ddwarf_attr.c1 /*-
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 ELFTC_VCSID("$Id: dwarf_attr.c 3064 2014-06-06 19:35:55Z kaiwang27 $");
33 dwarf_attr(Dwarf_Die die, Dwarf_Half attr, Dwarf_Attribute *atp, in dwarf_attr() argument
39 dbg = die != NULL ? die->die_dbg : NULL; in dwarf_attr()
41 if (die == NULL || atp == NULL) { in dwarf_attr()
46 if ((at = _dwarf_attr_find(die, attr)) == NULL) { in dwarf_attr()
57 dwarf_attrlist(Dwarf_Die die, Dwarf_Attribute **attrbuf, in dwarf_attrlist() argument
64 dbg = die != NULL ? die->die_dbg : NULL; in dwarf_attrlist()
66 if (die == NULL || attrbuf == NULL || attrcount == NULL) { in dwarf_attrlist()
[all …]
H A Ddwarf_pro_die.c1 /*-
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 ELFTC_VCSID("$Id: dwarf_pro_die.c 2074 2011-10-27 03:34:33Z jkoshy $");
41 dbg->dbgp_root_die = first_die; in dwarf_add_die_to_debug()
51 Dwarf_P_Die die; in dwarf_new_die() local
67 if (_dwarf_die_alloc(dbg, &die, error) != DW_DLE_NONE) in dwarf_new_die()
70 die->die_dbg = dbg; in dwarf_new_die()
71 die->die_tag = new_tag; in dwarf_new_die()
73 STAILQ_INSERT_TAIL(&dbg->dbgp_dielist, die, die_pro_next); in dwarf_new_die()
76 return (die); in dwarf_new_die()
[all …]
H A Ddwarf_highpc.320 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 .\" $Id: dwarf_highpc.3 3644 2018-10-15 19:55:01Z jkoshy $
46 .Fa "Dwarf_Die die"
52 .Fa "Dwarf_Die die"
58 .Fa "Dwarf_Die die"
64 .Fa "Dwarf_Die die"
70 .Fa "Dwarf_Die die"
76 .Fa "Dwarf_Die die"
84 .Fa "Dwarf_Die die"
90 .Fa "Dwarf_Die die"
[all …]
H A Ddwarf_attrval.c1 /*-
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 ELFTC_VCSID("$Id: dwarf_attrval.c 3509 2016-12-29 03:58:41Z emaste $");
32 dwarf_attrval_flag(Dwarf_Die die, Dwarf_Half attr, Dwarf_Bool *valp, Dwarf_Error *err) in dwarf_attrval_flag() argument
37 dbg = die != NULL ? die->die_dbg : NULL; in dwarf_attrval_flag()
39 if (die == NULL || valp == NULL) { in dwarf_attrval_flag()
46 if ((at = _dwarf_attr_find(die, attr)) == NULL) { in dwarf_attrval_flag()
51 switch (at->at_form) { in dwarf_attrval_flag()
54 *valp = (Dwarf_Bool) (!!at->u[0].u64); in dwarf_attrval_flag()
65 dwarf_attrval_string(Dwarf_Die die, Dwarf_Half attr, const char **strp, Dwarf_Error *err) in dwarf_attrval_string() argument
[all …]
/freebsd-src/crypto/openssl/test/recipes/
H A D40-test_rehash.t2 # Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved.
21 #If "openssl rehash -help" fails it's most likely because we're on a platform
23 plan skip_all => "test_rehash is not available on this platform"
24 unless run(app(["openssl", "rehash", "-help"]));
37 'Testing rehash operations on readonly files');
42 'Testing rehash operations on empty directory');
54 'Testing rehash operations on readonly directory');
63 die "There are no source files\n" if scalar @pemsourcefiles == 0;
70 open PEM, $_ or die "Can't read $_: $!\n";
72 if ($line =~ m{^-----BEGIN (?:CERTIFICATE|X509 CRL)-----}) {
[all …]
/freebsd-src/contrib/sendmail/contrib/
H A Dbuildvirtuser1 #!/usr/bin/perl -w
3 # Copyright (c) 1999-2004, 2007 Gregory Neil Shapiro. All Rights Reserved.
25 # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 # $Id: buildvirtuser,v 1.8 2007-10-08 18:44:15 gshapiro Exp $
34 buildvirtuser - Build virtusertable support from a directory of files
38 buildvirtuser [-f] [-t]
43 based on the contents of the directory /etc/mail/virtusers/. That
46 usernames on the left and the actual address for that username on the
50 Occurrences of $LHS in the right hand side are replaced by the address on
53 The -f option forces the database to be rebuilt regardless of whether
[all …]
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.h1 //===-- DWARFASTParserClang.h --------
[all...]
H A DDWARFBaseDIE.h1 //===-- DWARFBaseDIE.h --------
32 DWARFBaseDIE(DWARFUnit * cu,DWARFDebugInfoEntry * die) DWARFBaseDIE() argument
35 DWARFBaseDIE(const DWARFUnit * cu,DWARFDebugInfoEntry * die) DWARFBaseDIE() argument
38 DWARFBaseDIE(DWARFUnit * cu,const DWARFDebugInfoEntry * die) DWARFBaseDIE() argument
41 DWARFBaseDIE(const DWARFUnit * cu,const DWARFDebugInfoEntry * die) DWARFBaseDIE() argument
63 Set(DWARFUnit * cu,DWARFDebugInfoEntry * die) Set() argument
[all...]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DAccelTable.h1 //==- include/llvm/CodeGen/AccelTable.h - Accelerator Tables -----*- C++ -*-
[all...]

12345678910>>...33