Home
last modified time | relevance | path

Searched refs:bind (Results 1 – 25 of 497) sorted by relevance

12345678910>>...20

/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DNumberObjectConversionChecker.cpp203 .bind("c_object"))); in checkASTCodeBody()
214 .bind("osnumber")))))))))) in checkASTCodeBody()
215 .bind("cpp_object"))); in checkASTCodeBody()
225 .bind("objc_object"))); in checkASTCodeBody()
243 .bind("objc_bool_type"); in checkASTCodeBody()
247 qualType(anyOf(qualType(booleanType()).bind("cpp_bool_type"), in checkASTCodeBody()
257 .bind("int_type"); in checkASTCodeBody()
275 ))).bind("pedantic"); in checkASTCodeBody()
289 .bind("check_if_null")))) in checkASTCodeBody()
290 .bind("comparison"); in checkASTCodeBody()
[all …]
H A DRunLoopAutoreleaseLeakChecker.cpp136 .bind(RunLoopBind); in getRunLoopRunM()
140 Extra).bind(RunLoopRunBind); in getRunLoopRunM()
143 callExpr(callee(functionDecl(hasName("xpc_main")))).bind(RunLoopRunBind); in getRunLoopRunM()
151 .bind(OtherMsgBind); in getOtherMessageSentM()
159 hasAncestor(autoreleasePoolStmt().bind(OtherStmtAutoreleasePoolBind))); in checkTempObjectsInSamePool()
164 hasDescendant(OtherMessageSentM)).bind(AutoreleasePoolBind); in checkTempObjectsInSamePool()
H A DObjCAutoreleaseWriteChecker.cpp177 .bind(ParamBind); in checkASTCodeBody()
180 declRefExpr(to(parmVarDecl(DoublePointerParamM))).bind(CapturedBind); in checkASTCodeBody()
190 ).bind(ProblematicWriteBind); in checkASTCodeBody()
217 .bind(IsARPBind); in checkASTCodeBody()
225 objcMethodDecl(HasParamAndWritesInMarkedFuncM).bind(IsMethodBind), in checkASTCodeBody()
H A DGCDAntipatternChecker.cpp66 declRefExpr(to(varDecl().bind(DeclName))))); in bindAssignmentToDecl()
99 varDecl(hasDescendant(SemaphoreCreateM)).bind(SemaphoreBinding)), in findGCDAntiPatternWithSemaphore()
128 ).bind(WarnAtNode)); in findGCDAntiPatternWithSemaphore()
141 varDecl(hasDescendant(DispatchGroupCreateM)).bind(GroupBinding)), in findGCDAntiPatternWithGroup()
174 ).bind(WarnAtNode)); in findGCDAntiPatternWithGroup()
/openbsd-src/regress/sys/netinet/bindconnect/
H A DMakefile45 REGRESS_TARGETS += run-${af}-${proto}-bind
46 run-${af}-${proto}-bind:
55 REGRESS_TARGETS += run-${af}-${proto}-bind-connect
56 run-${af}-${proto}-bind-connect:
77 run-${af}-${proto}-localnet-bind-connect \
86 REGRESS_TARGETS += run-${af}-${proto}-localnet-bind-connect
87 run-${af}-${proto}-localnet-bind-connect:
H A DREADME1 Stress test bind(2) and connect(2) system calls in OpenBSD regress.
3 bindconnect [-r] [-b bind] [-c connect] [-d delroute] [-f family] [-N addr/net]
5 -b bind threads binding sockets, default 1
17 Separate threads are started to run socket(2), close(2), bind(2),
25 address to bind and connect is 127.0.0.1 or ::1. LOCAL_NET or
26 LOCAL_NET6 environment variable allows to bind on a local address
/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp192 match(findAll(declRefExpr(to(equalsNode(Dec))).bind(NodeID<Expr>::value)), in tryEachDeclRef()
230 .bind(NodeID<Expr>::value)), in isUnevaluated()
381 .bind("stmt"))), in findDirectMutation()
393 .bind(NodeID<Expr>::value)), in findMemberMutation()
407 .bind(NodeID<Expr>::value)), in findArrayElementMutation()
420 .bind("stmt")), in findCastMutation()
434 .bind(NodeID<Expr>::value)), in findCastMutation()
444 .bind("expr")), in findCastMutation()
463 .bind(NodeID<Decl>::value)), in findRangeLoopMutation()
466 .bind("stmt")), in findRangeLoopMutation()
[all …]
H A DUnsafeBufferUsage.cpp232 ).bind(OpTag)); in matcher()
267 ).bind(OpTag)); in matcher()
305 .bind(ArraySubscrTag)); in matcher()
345 hasRHS(expr(hasPointerType()).bind(PointerArithmeticPointerTag)), in matcher()
350 hasLHS(expr(hasPointerType()).bind(PointerArithmeticPointerTag)), in matcher()
353 return stmt(binaryOperator(anyOf(PtrAtLeft, PtrAtRight)).bind(PointerArithmeticTag)); in matcher()
525 x ## Gadget::matcher().bind(#x), in findGadgets()
530 to(varDecl())).bind("any_dre"), in findGadgets()
534 declStmt().bind("any_ds") in findGadgets()
/openbsd-src/usr.sbin/npppd/l2tp/
H A Dl2tpd.c170 L2TPD_ASSERT(sizeof(plistener->bind) >= addr->sa_len); in l2tpd_add_listener()
171 memcpy(&plistener->bind, addr, addr->sa_len); in l2tpd_add_listener()
173 if (plistener->bind.sin6.sin6_port == 0) in l2tpd_add_listener()
174 plistener->bind.sin6.sin6_port = htons(L2TPD_DEFAULT_UDP_PORT); in l2tpd_add_listener()
268 af = _this->bind.sin6.sin6_family; in l2tpd_listener_start()
274 if ((sock = socket(_this->bind.sin6.sin6_family, in l2tpd_listener_start()
294 if (bind(sock, (struct sockaddr *)&_this->bind, in l2tpd_listener_start()
295 _this->bind.sin6.sin6_len) != 0) { in l2tpd_listener_start()
297 addrport_tostring((struct sockaddr *)&_this->bind, in l2tpd_listener_start()
298 _this->bind.sin6.sin6_len, hbuf, sizeof(hbuf))); in l2tpd_listener_start()
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dc-gimplify.c143 tree decls, bind; in c_build_bind_expr() local
166 bind = build3 (BIND_EXPR, void_type_node, decls, body, block); in c_build_bind_expr()
167 TREE_SIDE_EFFECTS (bind) = 1; in c_build_bind_expr()
170 bind = body; in c_build_bind_expr()
172 return bind; in c_build_bind_expr()
H A Domp-low.c3593 tree new_stmt, stmt, body, bind, block, ilist, olist, new_body; in lower_omp_sections() local
3641 bind = build3 (BIND_EXPR, void_type_node, NULL, body, block); in lower_omp_sections()
3655 append_to_statement_list (bind, &new_body); in lower_omp_sections()
3789 tree t, bind, block, single_stmt = *stmt_p, dlist; in lower_omp_single() local
3794 *stmt_p = bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, block); in lower_omp_single()
3795 TREE_SIDE_EFFECTS (bind) = 1; in lower_omp_single()
3798 &BIND_EXPR_BODY (bind), &dlist, ctx); in lower_omp_single()
3801 append_to_statement_list (single_stmt, &BIND_EXPR_BODY (bind)); in lower_omp_single()
3804 lower_omp_single_copy (single_stmt, &BIND_EXPR_BODY (bind), ctx); in lower_omp_single()
3806 lower_omp_single_simple (single_stmt, &BIND_EXPR_BODY (bind)); in lower_omp_single()
[all …]
/openbsd-src/gnu/llvm/clang/lib/Tooling/DumpTool/
H A DASTSrcLocProcessor.cpp35 .bind("nodeClade")), in ASTSrcLocProcessor()
36 optionally(isDerivedFrom(cxxRecordDecl().bind("derivedFrom")))) in ASTSrcLocProcessor()
37 .bind("className"), in ASTSrcLocProcessor()
42 .bind("templateName"), in ASTSrcLocProcessor()
158 .bind("stmtOrDeclBase"))), in CaptureMethods()
160 cxxRecordDecl(hasName("clang::Expr")).bind("exprBase"))), in CaptureMethods()
163 .bind("typeLocBase"))))), in CaptureMethods()
165 .bind("classMethod")), in CaptureMethods()
/openbsd-src/gnu/usr.bin/perl/t/lib/warnings/
H A Dpp_sys47 bind() on closed socket %s [pp_bind]
49 bind STDIN, "fred" ;
304 # bind not present
318 bind STDIN, "fred" ;
329 bind STDIN, "fred" ;
340 bind FOO, "fred" ;
351 bind FOO, "fred" ;
363 bind STDIN, "fred" ;
374 bind STDIN, "fred" ;
384 bind FOO, "fred" ;
[all …]
/openbsd-src/usr.bin/mg/
H A Dextend.c684 int bind; in excline() local
726 bind = BINDARG; in excline()
729 bind = BINDARG; in excline()
732 bind = BINDNEXT; in excline()
734 bind = BINDNO; in excline()
755 if (bind == BINDARG) in excline()
756 bind = BINDNO; in excline()
760 if (bind != BINDARG) { in excline()
835 if (bind == BINDARG) in excline()
843 switch (bind) { in excline()
[all …]
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DLoopUnrolling.cpp92 declRefExpr(to(varDecl(hasType(isInteger())).bind(BindName))) in simpleCondition()
93 .bind(RefName))), in simpleCondition()
95 ignoringParenImpCasts(integerLiteral().bind("boundNum")))) in simpleCondition()
96 .bind("conditionOperator"); in simpleCondition()
152 integerLiteral().bind("initNum"))), in forLoopMatcher()
157 integerLiteral().bind("initNum")))))), in forLoopMatcher()
166 .bind("forLoop"); in forLoopMatcher()
/openbsd-src/gnu/llvm/llvm/lib/Debuginfod/
H A DHTTPServer.cpp120 Error HTTPServer::bind(unsigned ListenPort, const char *HostInterface) { in bind() function in HTTPServer
128 Expected<unsigned> HTTPServer::bind(const char *HostInterface) { in bind() function in HTTPServer
173 Error HTTPServer::bind(unsigned ListenPort, const char *HostInterface) { in bind() function in HTTPServer
177 Expected<unsigned> HTTPServer::bind(const char *HostInterface) { in bind() function in HTTPServer
/openbsd-src/regress/sys/kern/unveil/
H A Dsocket.c68 (bind(fd1, (struct sockaddr *)&sun1, sizeof(sun1)) == -1), "bind"); in test_bind_unix_socket()
75 (bind(fd2, (struct sockaddr *)&sun2, sizeof(sun2)) == -1), "bind"); in test_bind_unix_socket()
82 (bind(fd3, (struct sockaddr *)&sun3, sizeof(sun3)) == -1), "bind"); in test_bind_unix_socket()
/openbsd-src/sys/dev/pci/drm/include/linux/
H A Dcomponent.h12 int (*bind)(struct device *, struct device *, void *); member
17 int (*bind)(struct device *); member
/openbsd-src/usr.bin/gprof/
H A Delf.c135 int bind; in wantsym() local
138 bind = ELF_ST_BIND(sym->st_info); in wantsym()
140 if (type != STT_FUNC || (aflag && bind == STB_LOCAL)) in wantsym()
/openbsd-src/gnu/lib/libreadline/shlib/
H A DMakefile.in109 $(topdir)/complete.c $(topdir)/bind.c $(topdir)/isearch.c \
129 rltty.so complete.so bind.so isearch.so display.so signals.so \
189 bind.so: $(topdir)/ansi_stdlib.h $(topdir)/posixstat.h
190 bind.so: $(topdir)/rldefs.h ${BUILD_DIR}/config.h $(topdir)/rlconf.h
191 bind.so: $(topdir)/readline.h $(topdir)/keymaps.h $(topdir)/chardefs.h
192 bind.so: $(topdir)/rltypedefs.h
193 bind.so: $(topdir)/tilde.h $(topdir)/history.h
303 bind.so: $(topdir)/rlshell.h
311 bind.so: $(topdir)/rlprivate.h
333 bind.so: $(topdir)/xmalloc.h
[all …]
/openbsd-src/regress/sys/kern/bind/
H A Dbind.c33 if (bind(fd1, (struct sockaddr *)&addr1, sizeof(addr1)) == -1) in main()
43 if (bind(fd2, (struct sockaddr *)&addr2, sizeof(addr2)) == -1) in main()
/openbsd-src/usr.bin/talk/
H A Dctl.c70 if (bind(sockt, (struct sockaddr *)&my_addr, sizeof(my_addr)) != 0) in open_sockt()
88 if (bind(ctl_sockt, in open_ctl()
/openbsd-src/usr.bin/ssh/
H A DPROTOCOL.agent6 1. session-bind@openssh.com extension
8 This extension allows a ssh client to bind an agent connection to a
17 string session-bind@openssh.com
33 a duplicate session identifier, or any attempt to bind a connection
73 constraints against the session-bind@openssh.com bindings recorded for
/openbsd-src/gnu/usr.bin/perl/vos/
H A DChanges22 "perl.bind" to build this version of perl.
45 Update "perl.bind".
68 Updated "perl.bind" to work with either the alpha or GA
84 Updated "perl.bind".
102 Supplied "perl.bind" to control the VOS binder.
/openbsd-src/gnu/llvm/llvm/include/llvm/Debuginfod/
H A DHTTPServer.h108 Error bind(unsigned Port, const char *HostInterface = "0.0.0.0");
112 Expected<unsigned> bind(const char *HostInterface = "0.0.0.0");

12345678910>>...20