Searched refs:bind (Results 1 - 25 of 334) sorted by relevance

1234567891011>>

/openbsd-current/regress/sys/kern/bind/
H A DMakefile3 PROG= bind
H A Dbind.c33 if (bind(fd1, (struct sockaddr *)&addr1, sizeof(addr1)) == -1)
43 if (bind(fd2, (struct sockaddr *)&addr2, sizeof(addr2)) == -1)
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/cpp/
H A D20000625-1.c7 #define socket bind
/openbsd-current/sys/dev/pci/drm/include/linux/
H A Dcomponent.h12 int (*bind)(struct device *, struct device *, void *); member in struct:component_ops
17 int (*bind)(struct device *); member in struct:component_master_ops
/openbsd-current/usr.sbin/npppd/npppd/
H A Dnpppd.conf28 bind tunnel from L2TP authenticated by LOCAL to pppx0
32 #bind tunnel from L2TP authenticated by LOCAL to pppac0
/openbsd-current/gnu/gcc/gcc/
H A Dc-gimplify.c143 tree decls, bind; local
166 bind = build3 (BIND_EXPR, void_type_node, decls, body, block);
167 TREE_SIDE_EFFECTS (bind) = 1;
170 bind = body;
172 return bind;
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DNumberObjectConversionChecker.cpp203 .bind("c_object")));
214 .bind("osnumber"))))))))))
215 .bind("cpp_object")));
225 .bind("objc_object")));
239 // The .bind here is in order to compose the error message more accurately.
243 .bind("objc_bool_type");
245 // The .bind here is in order to compose the error message more accurately.
247 qualType(anyOf(qualType(booleanType()).bind("cpp_bool_type"),
250 // The .bind here is in order to compose the error message more accurately.
257 .bind("int_typ
[all...]
H A DRunLoopAutoreleaseLeakChecker.cpp136 .bind(RunLoopBind);
140 Extra).bind(RunLoopRunBind);
143 callExpr(callee(functionDecl(hasName("xpc_main")))).bind(RunLoopRunBind);
151 .bind(OtherMsgBind);
159 hasAncestor(autoreleasePoolStmt().bind(OtherStmtAutoreleasePoolBind)));
164 hasDescendant(OtherMessageSentM)).bind(AutoreleasePoolBind);
H A DGCDAntipatternChecker.cpp66 declRefExpr(to(varDecl().bind(DeclName)))));
99 varDecl(hasDescendant(SemaphoreCreateM)).bind(SemaphoreBinding)),
128 ).bind(WarnAtNode));
141 varDecl(hasDescendant(DispatchGroupCreateM)).bind(GroupBinding)),
174 ).bind(WarnAtNode));
H A DObjCAutoreleaseWriteChecker.cpp177 .bind(ParamBind);
180 declRefExpr(to(parmVarDecl(DoublePointerParamM))).bind(CapturedBind);
190 ).bind(ProblematicWriteBind);
217 .bind(IsARPBind);
225 objcMethodDecl(HasParamAndWritesInMarkedFuncM).bind(IsMethodBind),
/openbsd-current/regress/lib/libc/sys/
H A Dt_bind.c61 * those structure members shall not be accessed if bind
69 ATF_REQUIRE(-1 == bind(sock, (struct sockaddr *)&addr, sizeof(addr)));
/openbsd-current/lib/libc/hidden/sys/
H A Dsocket.h25 PROTO_NORMAL(bind); variable
/openbsd-current/usr.bin/talk/
H A Dctl.c70 if (bind(sockt, (struct sockaddr *)&my_addr, sizeof(my_addr)) != 0)
88 if (bind(ctl_sockt,
90 quit("Couldn't bind to control socket", 1);
/openbsd-current/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");
/openbsd-current/gnu/llvm/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp192 match(findAll(declRefExpr(to(equalsNode(Dec))).bind(NodeID<Expr>::value)),
230 .bind(NodeID<Expr>::value)),
381 .bind("stmt"))),
393 .bind(NodeID<Expr>::value)),
407 .bind(NodeID<Expr>::value)),
420 .bind("stmt")),
434 .bind(NodeID<Expr>::value)),
444 .bind("expr")),
463 .bind(NodeID<Decl>::value)),
466 .bind("stm
[all...]
/openbsd-current/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:
/openbsd-current/usr.bin/gprof/
H A Delf.c135 int bind; local
138 bind = ELF_ST_BIND(sym->st_info);
140 if (type != STT_FUNC || (aflag && bind == STB_LOCAL))
/openbsd-current/regress/sys/kern/unveil/
H A Dsocket.c55 printf("testing bind and connect on unix socket\n");
56 /* printf("testing bind on unix socket %s and %s\n", path1, path2); */
57 if (unveil(uv_dir1, "wc") == -1) /* both bind and connect work */
59 if (unveil(uv_dir2, "c") == -1) /* bind works, connect fails */
61 if (unveil(uv_dir3, "") == -1) /* no bind, dont test anything else */
68 (bind(fd1, (struct sockaddr *)&sun1, sizeof(sun1)) == -1), "bind");
75 (bind(fd2, (struct sockaddr *)&sun2, sizeof(sun2)) == -1), "bind");
82 (bind(fd
[all...]
/openbsd-current/gnu/llvm/clang/utils/CIndex/
H A Dcompletion_logger_server.py18 # Create socket and bind to address
20 UDPSock.bind(addr)
/openbsd-current/libexec/login_ldap/
H A DMakefile4 SRCS= aldap.c util.c search.c bind.c
/openbsd-current/gnu/llvm/llvm/lib/Debuginfod/
H A DHTTPServer.cpp120 Error HTTPServer::bind(unsigned ListenPort, const char *HostInterface) { function in class:HTTPServer
128 Expected<unsigned> HTTPServer::bind(const char *HostInterface) { function in class:HTTPServer
173 Error HTTPServer::bind(unsigned ListenPort, const char *HostInterface) { function in class:HTTPServer
177 Expected<unsigned> HTTPServer::bind(const char *HostInterface) { function in class:HTTPServer
/openbsd-current/gnu/usr.bin/cvs/vms/
H A Drcmd.c64 rs = bind(s, (struct sockaddr *)&local_isa, sizeof(local_isa));
79 rs = bind(s, (struct sockaddr *)&local_isa, sizeof(local_isa));
/openbsd-current/regress/lib/libpthread/blocked_dup2/
H A Dblocked_dup2.c81 CHECKr(bind(fd, (struct sockaddr *)&addr, sizeof(addr)));
84 CHECKr(bind(newfd, (struct sockaddr *)&addr, sizeof(addr)));
/openbsd-current/gnu/llvm/clang/lib/Tooling/DumpTool/
H A DASTSrcLocProcessor.cpp35 .bind("nodeClade")),
36 optionally(isDerivedFrom(cxxRecordDecl().bind("derivedFrom"))))
37 .bind("className"),
42 .bind("templateName"),
158 .bind("stmtOrDeclBase"))),
160 cxxRecordDecl(hasName("clang::Expr")).bind("exprBase"))),
163 .bind("typeLocBase"))))),
165 .bind("classMethod")),
/openbsd-current/usr.sbin/npppd/l2tp/
H A Dl2tpd.c139 * @param bindaddr bind address
170 L2TPD_ASSERT(sizeof(plistener->bind) >= addr->sa_len);
171 memcpy(&plistener->bind, addr, addr->sa_len);
173 if (plistener->bind.sin6.sin6_port == 0)
174 plistener->bind.sin6.sin6_port = htons(L2TPD_DEFAULT_UDP_PORT);
268 af = _this->bind.sin6.sin6_family;
274 if ((sock = socket(_this->bind.sin6.sin6_family,
294 if (bind(sock, (struct sockaddr *)&_this->bind,
295 _this->bind
[all...]

Completed in 215 milliseconds

1234567891011>>