| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/android/ |
| H A D | cloexec-accept.cpp | 7 extern "C" int accept(int sockfd, struct sockaddr *addr, socklen_t *addrlen); 10 accept(0, NULL, NULL); in f() 16 int accept(int sockfd, struct sockaddr *addr, socklen_t *addrlen); 18 accept(0, NULL, NULL); in g() 24 int accept(int sockfd, struct sockaddr *addr, socklen_t *addrlen); 26 accept(0, NULL, NULL); in h()
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/android/ |
| H A D | cloexec-accept.rst | 1 .. title:: clang-tidy - android-cloexec-accept 3 android-cloexec-accept 6 The usage of ``accept()`` is not recommended, it's better to use ``accept4()``. 14 accept(sockfd, addr, addrlen);
|
| /llvm-project-15.0.7/llvm/lib/ObjCopy/ELF/ |
| H A D | ELFObject.h | 490 Error accept(SectionVisitor &Visitor) const override; 491 Error accept(MutableSectionVisitor &Visitor) override; 531 Error accept(SectionVisitor &Sec) const override; 553 Error accept(SectionVisitor &Visitor) const override; 572 Error accept(SectionVisitor &Visitor) const override; 597 Error accept(SectionVisitor &Visitor) const override; 670 Error accept(SectionVisitor &Visitor) const override; 718 Error accept(SectionVisitor &Visitor) const override; 786 Error accept(SectionVisitor &Visitor) const override; 826 Error accept(SectionVisitor &) const override; [all …]
|
| H A D | ELFObject.cpp | 424 Error Section::accept(SectionVisitor &Visitor) const { in accept() function in Section 428 Error Section::accept(MutableSectionVisitor &Visitor) { in accept() function in Section 467 Error OwnedDataSection::accept(SectionVisitor &Visitor) const { in accept() function in OwnedDataSection 471 Error OwnedDataSection::accept(MutableSectionVisitor &Visitor) { in accept() function in OwnedDataSection 1148 Error GroupSection::accept(SectionVisitor &Visitor) const { in accept() function in GroupSection 1152 Error GroupSection::accept(MutableSectionVisitor &Visitor) { in accept() function in GroupSection 2038 if (Error Err = Sec.accept(*SecWriter)) in writeSectionData() 2545 if (Error Err = Sec.accept(*SecSizer)) in finalize() 2592 if (Error Err = Sec.accept(*SecWriter)) in write() 2675 if (Error Err = Sec->accept(Writer)) in write() [all …]
|
| /llvm-project-15.0.7/llvm/test/tools/UpdateTestChecks/update_llc_test_checks/Inputs/ |
| H A D | x86-basic.ll | 1 ;; Check that we accept functions with '$' in the name. 4 ;; Check that we accept .Ldsolocal$local: below the function label. 7 ;; Check that we accept .seh_proc below the function label.
|
| H A D | x86-basic.ll.expected | 2 ;; Check that we accept functions with '$' in the name. 5 ;; Check that we accept .Ldsolocal$local: below the function label. 8 ;; Check that we accept .seh_proc below the function label.
|
| H A D | avr_function_name.ll | 1 ; Check that we accept functions with '$' in the name.
|
| H A D | lanai_function_name.ll | 1 ; Check that we accept functions with '$' in the name.
|
| H A D | mips_function_name.ll | 1 ; Check that we accept functions with '$' in the name.
|
| H A D | ppc_function_name.ll | 1 ; Check that we accept functions with '$' in the name.
|
| H A D | systemz_function_name.ll | 1 ; Check that we accept functions with '$' in the name.
|
| /llvm-project-15.0.7/llvm/test/MC/ARM/ |
| H A D | thumb2-branches.s | 4 @ unconditional branches accept narrow suffix and encode to short encodings 14 @ unconditional branches accept wide suffix and encode to wide encodings 82 @ conditional branches accept narrow suffix and encode to short encodings 92 @ unconditional branches accept wide suffix and encode to wide encodings 153 @ unconditional branches accept narrow suffix and encode to short encodings 163 @ unconditional branches accept wide suffix and encode to wide encodings 231 @ conditional branches accept narrow suffix and encode to short encodings 241 @ unconditional branches accept wide suffix and encode to wide encodings
|
| H A D | fp-const-errors.s | 10 @ Test that vmov.f instructions do not accept an 8-bit encoded float as an operand 17 @ Test that fconst instructions do not accept a float constant as an operand
|
| /llvm-project-15.0.7/lldb/examples/interposing/darwin/fd_interposing/ |
| H A D | FDInterposing.cpp | 72 int accept$NOCANCEL(int, struct sockaddr *__restrict, socklen_t *__restrict); 691 extern "C" int accept$__interposed__(int socket, struct sockaddr *address, in accept$__interposed__() 696 const int fd = ::accept(socket, address, address_len); in accept$__interposed__() 706 return ::accept(socket, address, address_len); in accept$__interposed__() 711 extern "C" int accept$NOCANCEL$__interposed__(int socket, in accept$NOCANCEL$__interposed__() 717 const int fd = ::accept$NOCANCEL(socket, address, address_len); in accept$NOCANCEL$__interposed__() 727 return ::accept$NOCANCEL(socket, address, address_len); in accept$NOCANCEL$__interposed__() 915 DYLD_INTERPOSE(accept$__interposed__, accept); 916 DYLD_INTERPOSE(accept$NOCANCEL$__interposed__, accept$NOCANCEL);
|
| /llvm-project-15.0.7/lldb/source/Plugins/StructuredData/DarwinLog/ |
| H A D | StructuredDataDarwinLog.cpp | 183 std::function<FilterRuleSP(bool accept, size_t attribute_index, 234 : m_accept(accept), m_attribute_index(attribute_index), in FilterRule() 304 RegexFilterRule(bool accept, size_t attribute_index, in RegexFilterRule() argument 306 : FilterRule(accept, attribute_index, StaticGetOperation()), in RegexFilterRule() 341 new ExactMatchFilterRule(accept, attribute_index, op_arg)); in CreateOperation() 349 ExactMatchFilterRule(bool accept, size_t attribute_index, in ExactMatchFilterRule() argument 351 : FilterRule(accept, attribute_index, StaticGetOperation()), in ExactMatchFilterRule() 669 bool accept; in ParseFilterRule() local 671 accept = true; in ParseFilterRule() 673 accept = false; in ParseFilterRule() [all …]
|
| /llvm-project-15.0.7/llvm/utils/lit/lit/ |
| H A D | BooleanExpression.py | 73 def accept(self, t): member in BooleanExpression 108 if self.accept('!'): 111 elif self.accept('('): 122 while self.accept('&&'): 132 while self.accept('||'):
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/abseil/ |
| H A D | upgrade-duration-conversions.rst | 11 accept an argument of class type that is convertible to an arithmetic type. Such 16 ``absl::Minutes``, etc) currently accept an ``int64_t`` or a floating-point 20 These operators and factories will be changed to only accept arithmetic types to
|
| /llvm-project-15.0.7/llvm/test/tools/yaml2obj/ELF/ |
| H A D | relocation-addend.yaml | 5 ## Case 1.1: Document we accept any hex/decimal addends in [INT64_MIN, UINT64_MAX]. 31 ## We do not accept negative hex addends. 39 # Case 1.2: Document we do not accept any hex/decimal addends outside of the range specified. 75 ## Case 2.1: Document we accept any hex/decimal addends in [INT32_MIN, UINT32_MAX]. 98 ## We do not accept negative hex addends. 105 # Case 2.2: Document we do not accept any hex/decimal addends outside of the range specified.
|
| /llvm-project-15.0.7/llvm/lib/Target/VE/ |
| H A D | VE.td | 36 // Use both VE register name matcher to accept "S0~S63" register names 37 // and default register matcher to accept other registeres.
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | AMDGPUInstructionNotation.rst | 72 * Operands which only accept *vector* registers are labelled with 'v' prefix. 73 * Operands which only accept *scalar* values are labelled with 's' prefix. 74 * Operands which accept both *vector* registers and *scalar* values have no prefix.
|
| /llvm-project-15.0.7/llvm/test/CodeGen/Mips/ |
| H A D | abiflags32.ll | 16 ; doesn't accept .module. 25 ; doesn't accept .module.
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A D | taint-generic.c | 806 size_t strspn(const char *s, const char *accept); 807 void testStrspnFirstArgTainted(const char *accept) { in testStrspnFirstArgTainted() argument 811 size_t result = strspn(s, accept); in testStrspnFirstArgTainted() 816 char accept[10]; in testStrspnSecondArgTainted() local 817 scanf("%9s", accept); in testStrspnSecondArgTainted() 819 size_t result = strspn(s, accept); in testStrspnSecondArgTainted() 840 char *strpbrk(const char *s, const char *accept); 841 void testStrpbrk(const char *accept) { in testStrpbrk() argument 845 char *result = strpbrk(s, accept); in testStrpbrk()
|
| /llvm-project-15.0.7/llvm/tools/llvm-jitlink/llvm-jitlink-executor/ |
| H A D | llvm-jitlink-executor.cpp | 106 return accept(SockFD, AI->ai_addr, &AddrLen); in openListener() 108 return accept(SockFD, AI->ai_addr, &AI->ai_addrlen); in openListener()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/ |
| H A D | asm-constraints.ll | 7 ; Check that we accept 'U' and 'X' constraints. 41 ; Check that we accept the 'd' constraint.
|
| /llvm-project-15.0.7/llvm/test/tools/UpdateTestChecks/update_test_checks/Inputs/ |
| H A D | function_name.ll | 1 ; Check that we accept functions with '$' in the name.
|