/freebsd/contrib/llvm-project/openmp/runtime/src/include/ |
H A D | omp_lib.F90.var | 212 subroutine omp_set_num_threads(num_threads) bind(c) 217 subroutine omp_set_dynamic(dynamic_threads) bind(c) 222 subroutine omp_set_nested(nested) bind(c) 227 function omp_get_num_threads() bind(c) 232 function omp_get_max_threads() bind(c) 237 function omp_get_thread_num() bind(c) 242 function omp_get_num_procs() bind(c) 247 function omp_in_parallel() bind(c) 252 function omp_in_final() bind(c) 257 function omp_get_dynamic() bind(c) [all …]
|
H A D | omp_lib.h.var | 276 subroutine omp_set_num_threads(num_threads) bind(c) 281 subroutine omp_set_dynamic(dynamic_threads) bind(c) 286 subroutine omp_set_nested(nested) bind(c) 291 function omp_get_num_threads() bind(c) 296 function omp_get_max_threads() bind(c) 301 function omp_get_thread_num() bind(c) 306 function omp_get_num_procs() bind(c) 311 function omp_in_parallel() bind(c) 316 function omp_in_final() bind(c) 321 function omp_get_dynamic() bind(c) [all …]
|
/freebsd/share/examples/BSD_daemon/ |
H A D | eps.patch | 25 /col-1 {0 setgray} bind def 26 /col0 {0.000 0.000 0.000 srgb} bind def 28 /sh {show} bind def 29 /slc {setlinecap} bind def 30 /slj {setlinejoin} bind def 31 -/slw {setlinewidth} bind def 32 +/slw {linethickness mul setlinewidth} bind def 33 /srgb {setrgbcolor} bind def 34 /rot {rotate} bind def 35 /sc {scale} bind def
|
/freebsd/contrib/ofed/libibverbs/man/ |
H A D | ibv_bind_mw.3 | 6 ibv_bind_mw \- post a request to bind a type 1 memory window to a memory region 18 a request to bind the memory window 32 struct ibv_mw_bind_info bind_info; /* MW bind information */ 40 struct ibv_mr *mr; /* The MR to bind the MW to */ 48 The QP Transport Service Type must be either UC, RC or XRC_SEND for bind operations. 57 The mw_access_flags define the allowed access to the MW after the bind 72 memory window after the bind is returned in the mw_bind->mw->rkey field. 74 The bind does not complete when the function return - it is merely 76 fix the mw structure if the subsequent CQE for the bind operation 78 request on the same QP, (based on QP ordering rules: a send after a bind [all …]
|
/freebsd/contrib/kyua/store/ |
H A D | dbtypes.cpp | 45 /// \param stmt The statement to which to bind the parameter. 47 /// \param value The value to bind. 51 stmt.bind(field, value ? "true" : "false"); in bind_bool() 57 /// \param stmt The statement to which to bind the parameter. 59 /// \param delta The value to bind. 64 stmt.bind(field, static_cast< int64_t >(delta.to_microseconds())); in bind_delta() 73 /// \param stmt The statement to which to bind the parameter. 75 /// \param str The string to bind. 81 stmt.bind(field, sqlite::null()); in bind_optional_string() 83 stmt.bind(field, str); in bind_optional_string() [all …]
|
H A D | write_transaction.cpp | 86 stmt.bind(":var_name", (*iter).first); in put_env_vars() 87 stmt.bind(":var_value", (*iter).second); in put_env_vars() 131 stmt.bind(":metadata_id", metadata_id); in put_metadata() 135 stmt.bind(":property_name", (*iter).first); in put_metadata() 136 stmt.bind(":property_value", (*iter).second); in put_metadata() 178 stmt.bind(":contents", sqlite::blob(contents.c_str(), contents.length())); in put_file() 268 stmt.bind(":cwd", context.cwd().str()); in put_context() 302 stmt.bind(":absolute_path", test_program.absolute_path().str()); in put_test_program() 306 stmt.bind(":root", test_program.root().str()); in put_test_program() 307 stmt.bind(":relative_path", test_program.relative_path().str()); in put_test_program() [all …]
|
/freebsd/tools/regression/sockets/unix_bindconnect/ |
H A D | unix_bindconnect.c | 40 * bind() and connect() on UNIX domain sockets. In particular, make sure 112 if (bind(sock1, (struct sockaddr *)&sun, sizeof(sun)) < 0) { in bind_test() 113 warn("bind_test: bind(sun) #1"); in bind_test() 124 if (bind(sock1, (struct sockaddr *)&sun, sizeof(sun)) == 0) { in bind_test() 125 warnx("bind_test: bind(sun) #2 succeeded"); in bind_test() 130 warn("bind_test: bind(sun) #2"); in bind_test() 146 if (bind(sock2, (struct sockaddr *)&sun, sizeof(sun)) == 0) { in bind_test() 147 warnx("bind_test: bind(sun) #3 succeeded"); in bind_test() 153 warn("bind_test: bind(sun) #2"); in bind_test() 166 if (bind(sock2, (struct sockaddr *)&sun, sizeof(sun)) == 0) { in bind_test() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | NumberObjectConversionChecker.cpp | 203 .bind("c_object"))); in checkASTCodeBody() 214 .bind("osnumber")))))))))) in checkASTCodeBody() 215 .bind("cpp_object"))); in checkASTCodeBody() 225 .bind("objc_object"))); in checkASTCodeBody() 239 // The .bind here is in order to compose the error message more accurately. in checkASTCodeBody() 243 .bind("objc_bool_type"); in checkASTCodeBody() 245 // The .bind here is in order to compose the error message more accurately. in checkASTCodeBody() 247 qualType(anyOf(qualType(booleanType()).bind("cpp_bool_type"), in checkASTCodeBody() 250 // The .bind here is in order to compose the error message more accurately. in checkASTCodeBody() 257 .bind("int_type"); in checkASTCodeBody() [all …]
|
/freebsd/tests/sys/netinet/ |
H A D | fibs_multibind_test.c | 156 * Make sure that different users can't bind to the same port from different 184 error = bind(s[0], (struct sockaddr *)&ss, sslen); in multibind_different_user() 185 ATF_REQUIRE_MSG(error == 0, "bind failed: %s", strerror(errno)); in multibind_different_user() 191 * Create a second socket in a different FIB, and bind it to the same in multibind_different_user() 196 error = bind(s[1], (struct sockaddr *)&ss, sslen); in multibind_different_user() 197 ATF_REQUIRE_MSG(error == 0, "bind failed: %s", strerror(errno)); in multibind_different_user() 206 /* Repeat the bind as a different user. */ in multibind_different_user() 208 error = bind(s[1], (struct sockaddr *)&ss, sslen); in multibind_different_user() 241 error = bind(ls1, (struct sockaddr *)&ss, sslen); in per_fib_listening_socket() 242 ATF_REQUIRE_MSG(error == 0, "bind failed: %s", strerror(errno)); in per_fib_listening_socket() [all …]
|
H A D | so_reuseport_lb_test.c | 148 error = bind(sds[0], (const struct sockaddr *)&addr, sizeof(addr)); in ATF_TC_BODY() 149 ATF_REQUIRE_MSG(error == 0, "bind() failed: %s", strerror(errno)); in ATF_TC_BODY() 168 error = bind(sds[i], (const struct sockaddr *)&addr, in ATF_TC_BODY() 170 ATF_REQUIRE_MSG(error == 0, "bind() failed: %s", in ATF_TC_BODY() 204 error = bind(sds[0], (const struct sockaddr *)&addr, sizeof(addr)); in ATF_TC_BODY() 205 ATF_REQUIRE_MSG(error == 0, "bind() failed: %s", strerror(errno)); in ATF_TC_BODY() 224 error = bind(sds[i], (const struct sockaddr *)&addr, in ATF_TC_BODY() 226 ATF_REQUIRE_MSG(error == 0, "bind() failed: %s", in ATF_TC_BODY() 345 error = bind(s, (struct sockaddr *)sin, sizeof(*sin)); in ATF_TC_BODY() 346 ATF_REQUIRE_MSG(error == 0, "bind() failed: %s", in ATF_TC_BODY() [all …]
|
H A D | socket_afinet.c | 70 * so we bind to 0:0. in ATF_TC_BODY() 72 rc = bind(sd, (struct sockaddr *)&sin, sizeof(sin)); in ATF_TC_BODY() 92 rc = bind(sd, (struct sockaddr *)&sin, sizeof(sin)); in ATF_TC_BODY() 119 rc = bind(ss, (struct sockaddr *)&sin, sizeof(sin)); in ATF_TC_BODY() 183 rc = bind(ss, (struct sockaddr *)&sin, sizeof(sin)); in ATF_TC_BODY() 264 rc = bind(ss, (struct sockaddr *)&sin, sizeof(sin)); in ATF_TC_BODY() 334 * Bind a socket to the specified address, optionally dropping privileges and 337 * Returns true if the bind succeeded, and false if it failed with EADDRINUSE. 370 if (bind(s, sa, sa->sa_len) == 0) in child_bind() 379 if (bind(s, sa, sa->sa_len) == 0) in child_bind() [all …]
|
/freebsd/lib/libsys/ |
H A D | bind.2 | 32 .Nm bind 39 .Fn bind "int s" "const struct sockaddr *addr" "socklen_t addrlen" 42 .Fn bind 50 .Fn bind 65 .Fn bind . 67 .Rv -std bind 70 .Fn bind 136 .Fn bind
|
/freebsd/lib/libc/rpc/ |
H A D | bindresvport.3 | 9 .Nd bind a socket to a privileged IP port 25 are used to bind a socket descriptor to a privileged 45 .Xr bind 2 60 Only root can bind to a privileged port; this call will fail for any 93 .Xr bind 2 , 98 .Xr bind 2 ,
|
/freebsd/crypto/krb5/src/lib/krb5/os/ |
H A D | dnsglue.h | 29 * whether we are using BIND 4, 8, or 9. This header is not used on 34 * BIND 4 doesn't have the ns_initparse() API, so we need to do some 35 * manual parsing via the HEADER struct. BIND 8 does have 37 * rather than the BIND 4 macros. BIND 9 (at least on macOS 10.3) 89 * Some BIND 8 / BIND 9 implementations disable the BIND 4 style 105 * Some BIND implementations might be old enough to lack these.
|
/freebsd/share/skel/ |
H A D | dot.shrc | 34 bind ^[[A ed-search-prev-history 35 bind ^[[B ed-search-next-history 39 bind "\\e[1;5C" em-next-word 40 bind "\\e[1;5D" ed-prev-word 45 bind ^[[5~ ed-move-to-beg 46 bind ^[[6~ ed-move-to-end
|
/freebsd/bin/sh/ |
H A D | dot.shrc | 34 bind ^[[A ed-search-prev-history 35 bind ^[[B ed-search-next-history 39 bind "\\e[1;5C" em-next-word 40 bind "\\e[1;5D" ed-prev-word 45 bind ^[[5~ ed-move-to-beg 46 bind ^[[6~ ed-move-to-end
|
/freebsd/contrib/tcsh/nls/C/ |
H A D | set20 | 1 $ tc.bind.c 15 13 -a list or bind KEY in alternative key map\n 19 17 -v bind all keys to vi bindings\n 20 18 -e bind all keys to emacs bindings\n 21 19 -d bind all keys to default editor's bindings (%s)\n 38 36 usage: bind [KEY | COMMAND KEY | "emacs" | "vi" | "-a"]\n
|
/freebsd/contrib/tcsh/nls/finnish/ |
H A D | set20 | 1 $ tc.bind.c 15 13 -a list or bind KEY in alternative key map\n 19 17 -v bind all keys to vi bindings\n 20 18 -e bind all keys to emacs bindings\n 21 19 -d bind all keys to default editor's bindings (%s)\n 38 36 Käyttö: bind [NÄPPÄIN | KOMENTO NÄPPÄIN | "emacs" | "vi" | "-a"]\n
|
/freebsd/contrib/tcsh/nls/ukrainian/ |
H A D | set20 | 1 $ tc.bind.c 15 13 -a list or bind KEY in alternative key map\n 19 17 -v bind all keys to vi bindings\n 20 18 -e bind all keys to emacs bindings\n 21 19 -d bind all keys to default editor's bindings (%s)\n 38 36 Використання: bind [KEY | COMMAND KEY | "emacs" | "vi" | "-a"]\n
|
/freebsd/sys/dev/bhnd/nvram/ |
H A D | bhnd_nvram_data_spromvar.h | 86 * SPROM opcode per-bind evaluation state. 100 uint32_t mask; /**< current bind input mask */ 101 int8_t shift; /**< current bind input shift */ 102 bhnd_nvram_type base_type; /**< current bind input type */ 104 bhnd_sprom_opcode_bind bind; /**< current bind state */ member 105 bool have_bind; /**< if bind state is defined */ 106 size_t bind_total; /**< total count of bind operations performed */
|
H A D | bhnd_nvram_data_sprom_subr.c | 450 * Register a new BIND/BINDN operation with @p state. 454 * @param skip_in The number of input elements to skip after each bind. 456 * the current offset after each bind. If false, the input skip should be 458 * @param skip_out The number of output elements to skip after each bind. 482 SPROM_OP_BAD(state, "BIND outside of variable definition\n"); in bhnd_sprom_opcode_set_bind() 486 /* Cannot overwite an existing bind definition */ in bhnd_sprom_opcode_set_bind() 488 SPROM_OP_BAD(state, "BIND overwrites existing definition\n"); in bhnd_sprom_opcode_set_bind() 494 SPROM_OP_BAD(state, "BIND with zero count\n"); in bhnd_sprom_opcode_set_bind() 529 state->var.bind.count = count; in bhnd_sprom_opcode_set_bind() 530 state->var.bind.skip_in = skip_in; in bhnd_sprom_opcode_set_bind() [all …]
|
/freebsd/contrib/kyua/utils/sqlite/ |
H A D | statement.hpp | 118 void bind(const int, const blob&); 119 void bind(const int, const double); 120 void bind(const int, const int); 121 void bind(const int, const int64_t); 122 void bind(const int, const null&); 123 void bind(const int, const std::string&); 124 template< class T > void bind(const char*, const T&);
|
/freebsd/lib/libc/net/ |
H A D | sctp_bindx.3 | 33 .Nd bind or unbind an SCTP socket to a list of addresses 47 This allows a user to bind a subset of 52 .Fn bind 53 but allows a list of addresses and also allows a bind or an 61 length) that the user wishes to bind or unbind to the 106 .Xr bind 2 ,
|
/freebsd/contrib/ofed/opensm/include/vendor/ |
H A D | osm_vendor_api.h | 77 * [in] User context supplied during the bind call. 108 * [in] User context supplied during the bind call. 267 * [in] pointer to a struct defining the type of bind to perform. 283 * On success, a valid bind handle. 296 * Unbind the given bind handle (obtained by osm_vendor_bind). 304 * [in] the bind handle to release. 330 * [in] the bind handle obtained by calling osm_vendor_bind 360 * [in] the bind handle obtained by calling osm_vendor_bind 395 * [in] the bind handle obtained by calling osm_vendor_bind 423 * [in] the bind handle obtained by calling osm_vendor_bind [all …]
|
/freebsd/tools/regression/netinet/ipdivert/ |
H A D | ipdivert.c | 102 err = bind(s, (struct sockaddr *)&sin, sizeof(sin)); in ipdivert_bind() 105 fail(test, "bind"); in ipdivert_bind() 107 fail(test, "bind"); in ipdivert_bind() 110 failx(test, "bind"); in ipdivert_bind() 129 * Second test: create, bind, and close an IP divert socket. in main() 138 * Third test: create two sockets, bind to different ports, and close. in main() 151 * Fourth test: create two sockets, bind to the *same* port, and in main()
|