/third_party/FreeBSD/sys/dev/usb/serial/ |
H A D | usb_serial.c | 627 uint8_t onoff; in ucom_modem() local 667 onoff = (sc->sc_mcr & SER_DTR) ? 1 : 0; in ucom_modem() 668 ucom_dtr(sc, onoff); in ucom_modem() 670 onoff = (sc->sc_mcr & SER_RTS) ? 1 : 0; in ucom_modem() 671 ucom_rts(sc, onoff); in ucom_modem() 768 ucom_ring(struct ucom_softc *sc, uint8_t onoff) in ucom_ring() argument 770 DPRINTF("onoff = %d\n", onoff); in ucom_ring() 772 if (onoff) in ucom_ring() 779 ucom_break(struct ucom_softc *sc, uint8_t onoff) in ucom_break() argument 790 ucom_dtr(struct ucom_softc *sc, uint8_t onoff) ucom_dtr() argument 801 ucom_rts(struct ucom_softc *sc, uint8_t onoff) ucom_rts() argument 819 uint8_t onoff; ucom_cfg_status_change() local [all...] |
H A D | u3g.c | 956 u3g_cfg_set_dtr(struct ucom_softc *ucom, uint8_t onoff) in u3g_cfg_set_dtr() argument 960 DPRINTF("onoff = %d\n", onoff); in u3g_cfg_set_dtr() 962 if (onoff) in u3g_cfg_set_dtr() 971 u3g_cfg_set_rts(struct ucom_softc *ucom, uint8_t onoff) in u3g_cfg_set_rts() argument 975 DPRINTF("onoff = %d\n", onoff); in u3g_cfg_set_rts() 977 if (onoff) in u3g_cfg_set_rts()
|
/third_party/node/deps/openssl/openssl/ssl/ |
H A D | ssl_conf.c | 107 uint64_t option_value, int onoff) in ssl_set_option() 114 onoff ^= 1; in ssl_set_option() 126 if (onoff) in ssl_set_option() 136 if (onoff) in ssl_set_option() 143 const char *name, int namelen, int onoff) in ssl_match_option() 154 ssl_set_option(cctx, tbl->name_flags, tbl->option_value, onoff); in ssl_match_option() 163 int onoff = 1; in ssl_set_option_list() local 174 onoff = 1; in ssl_set_option_list() 178 onoff = 0; in ssl_set_option_list() 182 if (ssl_match_option(cctx, tbl, elem, len, onoff)) in ssl_set_option_list() 106 ssl_set_option(SSL_CONF_CTX *cctx, unsigned int name_flags, uint64_t option_value, int onoff) ssl_set_option() argument 142 ssl_match_option(SSL_CONF_CTX *cctx, const ssl_flag_tbl *tbl, const char *name, int namelen, int onoff) ssl_match_option() argument [all...] |
/third_party/openssl/ssl/ |
H A D | ssl_conf.c | 107 uint64_t option_value, int onoff) in ssl_set_option() 114 onoff ^= 1; in ssl_set_option() 126 if (onoff) in ssl_set_option() 136 if (onoff) in ssl_set_option() 143 const char *name, int namelen, int onoff) in ssl_match_option() 154 ssl_set_option(cctx, tbl->name_flags, tbl->option_value, onoff); in ssl_match_option() 163 int onoff = 1; in ssl_set_option_list() local 174 onoff = 1; in ssl_set_option_list() 178 onoff = 0; in ssl_set_option_list() 182 if (ssl_match_option(cctx, tbl, elem, len, onoff)) in ssl_set_option_list() 106 ssl_set_option(SSL_CONF_CTX *cctx, unsigned int name_flags, uint64_t option_value, int onoff) ssl_set_option() argument 142 ssl_match_option(SSL_CONF_CTX *cctx, const ssl_flag_tbl *tbl, const char *name, int namelen, int onoff) ssl_match_option() argument [all...] |
/third_party/skia/third_party/externals/angle2/src/third_party/libXNVCtrl/ |
H A D | NVCtrlLib.h | 551 * is ATTRIBUTE_CHANGED_EVENT); onoff controls whether receiving this 558 Bool XNVCtrlSelectNotify(Display *dpy, int screen, int type, Bool onoff); 566 * XNVCtrlSelectTargetNotify() is TARGET_ATTRIBUTE_CHANGED_EVENT); onoff 578 Bool onoff);
|
H A D | NVCtrl.c | 917 Bool onoff in XNVCtrlSelectTargetNotify() 934 req->onoff = onoff; in XNVCtrlSelectTargetNotify() 946 Bool onoff in XNVCtrlSelectNotify() 962 req->onoff = onoff; in XNVCtrlSelectNotify()
|
H A D | nv_control.h | 530 CARD16 onoff B16; 605 CARD16 onoff B16;
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/ |
H A D | ssl.rs | 433 pub unsafe fn SSL_CTX_set_ecdh_auto(ctx: *mut SSL_CTX, onoff: c_int) -> c_int { in SSL_CTX_set_ecdh_auto() 437 onoff as c_long, in SSL_CTX_set_ecdh_auto() 443 pub unsafe fn SSL_set_ecdh_auto(ssl: *mut SSL, onoff: c_int) -> c_int { in SSL_set_ecdh_auto() 447 onoff as c_long, in SSL_set_ecdh_auto()
|
/third_party/python/Modules/_sqlite/clinic/ |
H A D | connection.c.h | 610 int onoff); 616 int onoff; in pysqlite_connection_enable_load_extension() local 618 onoff = _PyLong_AsInt(arg); in pysqlite_connection_enable_load_extension() 619 if (onoff == -1 && PyErr_Occurred()) { in pysqlite_connection_enable_load_extension() 622 return_value = pysqlite_connection_enable_load_extension_impl(self, onoff); in pysqlite_connection_enable_load_extension()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | crypto.rs | 77 pub fn FIPS_mode_set(onoff: c_int) -> c_int; in FIPS_mode_set()
|
/third_party/curl/lib/ |
H A D | cf-socket.c | 103 curl_socklen_t onoff = (curl_socklen_t) 1; in tcpnodelay() local 107 if(setsockopt(sockfd, level, TCP_NODELAY, (void *)&onoff, in tcpnodelay() 108 sizeof(onoff)) < 0) in tcpnodelay() 125 int onoff = 1; in nosigpipe() local 127 if(setsockopt(sockfd, SOL_SOCKET, SO_NOSIGPIPE, (void *)&onoff, in nosigpipe() 128 sizeof(onoff)) < 0) { in nosigpipe() 151 u_long onoff; member 174 vals.onoff = 1; in tcpkeepalive()
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | ssl.h | 1325 # define SSL_CTX_set_dh_auto(ctx, onoff) \ 1326 SSL_CTX_ctrl(ctx,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1327 # define SSL_set_dh_auto(s, onoff) \ 1328 SSL_ctrl(s,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1486 # define SSL_CTX_set_ecdh_auto(dummy, onoff) ((onoff) != 0) 1487 # define SSL_set_ecdh_auto(dummy, onoff) ((onoff) != 0)
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm_avx2/include/openssl/ |
H A D | ssl.h | 1403 # define SSL_CTX_set_dh_auto(ctx, onoff) \ 1404 SSL_CTX_ctrl(ctx,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1405 # define SSL_set_dh_auto(s, onoff) \ 1406 SSL_ctrl(s,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1586 # define SSL_CTX_set_ecdh_auto(dummy, onoff) ((onoff) != 0) 1587 # define SSL_set_ecdh_auto(dummy, onoff) ((onoff) != 0)
|
/third_party/node/deps/openssl/config/archs/linux-elf/asm/include/openssl/ |
H A D | ssl.h | 1403 # define SSL_CTX_set_dh_auto(ctx, onoff) \ 1404 SSL_CTX_ctrl(ctx,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1405 # define SSL_set_dh_auto(s, onoff) \ 1406 SSL_ctrl(s,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1586 # define SSL_CTX_set_ecdh_auto(dummy, onoff) ((onoff) != 0) 1587 # define SSL_set_ecdh_auto(dummy, onoff) ((onoff) != 0)
|
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/ |
H A D | ssl.h | 1403 # define SSL_CTX_set_dh_auto(ctx, onoff) \ 1404 SSL_CTX_ctrl(ctx,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1405 # define SSL_set_dh_auto(s, onoff) \ 1406 SSL_ctrl(s,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1586 # define SSL_CTX_set_ecdh_auto(dummy, onoff) ((onoff) != 0) 1587 # define SSL_set_ecdh_auto(dummy, onoff) ((onoff) != 0)
|
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/no-asm/include/openssl/ |
H A D | ssl.h | 1403 # define SSL_CTX_set_dh_auto(ctx, onoff) \ 1404 SSL_CTX_ctrl(ctx,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1405 # define SSL_set_dh_auto(s, onoff) \ 1406 SSL_ctrl(s,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1586 # define SSL_CTX_set_ecdh_auto(dummy, onoff) ((onoff) != 0) 1587 # define SSL_set_ecdh_auto(dummy, onoff) ((onoff) != 0)
|
/third_party/node/deps/openssl/config/archs/linux-aarch64/no-asm/include/openssl/ |
H A D | ssl.h | 1403 # define SSL_CTX_set_dh_auto(ctx, onoff) \ 1404 SSL_CTX_ctrl(ctx,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1405 # define SSL_set_dh_auto(s, onoff) \ 1406 SSL_ctrl(s,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1586 # define SSL_CTX_set_ecdh_auto(dummy, onoff) ((onoff) != 0) 1587 # define SSL_set_ecdh_auto(dummy, onoff) ((onoff) != 0)
|
/third_party/node/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/ |
H A D | ssl.h | 1403 # define SSL_CTX_set_dh_auto(ctx, onoff) \ 1404 SSL_CTX_ctrl(ctx,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1405 # define SSL_set_dh_auto(s, onoff) \ 1406 SSL_ctrl(s,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1586 # define SSL_CTX_set_ecdh_auto(dummy, onoff) ((onoff) != 0) 1587 # define SSL_set_ecdh_auto(dummy, onoff) ((onoff) != 0)
|
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/include/openssl/ |
H A D | ssl.h | 1403 # define SSL_CTX_set_dh_auto(ctx, onoff) \ 1404 SSL_CTX_ctrl(ctx,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1405 # define SSL_set_dh_auto(s, onoff) \ 1406 SSL_ctrl(s,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1586 # define SSL_CTX_set_ecdh_auto(dummy, onoff) ((onoff) != 0) 1587 # define SSL_set_ecdh_auto(dummy, onoff) ((onoff) != 0)
|
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/no-asm/include/openssl/ |
H A D | ssl.h | 1403 # define SSL_CTX_set_dh_auto(ctx, onoff) \ 1404 SSL_CTX_ctrl(ctx,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1405 # define SSL_set_dh_auto(s, onoff) \ 1406 SSL_ctrl(s,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1586 # define SSL_CTX_set_ecdh_auto(dummy, onoff) ((onoff) != 0) 1587 # define SSL_set_ecdh_auto(dummy, onoff) ((onoff) != 0)
|
/third_party/node/deps/openssl/config/archs/linux-armv4/asm/include/openssl/ |
H A D | ssl.h | 1403 # define SSL_CTX_set_dh_auto(ctx, onoff) \ 1404 SSL_CTX_ctrl(ctx,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1405 # define SSL_set_dh_auto(s, onoff) \ 1406 SSL_ctrl(s,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1586 # define SSL_CTX_set_ecdh_auto(dummy, onoff) ((onoff) != 0) 1587 # define SSL_set_ecdh_auto(dummy, onoff) ((onoff) != 0)
|
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm/include/openssl/ |
H A D | ssl.h | 1403 # define SSL_CTX_set_dh_auto(ctx, onoff) \ 1404 SSL_CTX_ctrl(ctx,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1405 # define SSL_set_dh_auto(s, onoff) \ 1406 SSL_ctrl(s,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1586 # define SSL_CTX_set_ecdh_auto(dummy, onoff) ((onoff) != 0) 1587 # define SSL_set_ecdh_auto(dummy, onoff) ((onoff) != 0)
|
/third_party/node/deps/openssl/config/archs/linux-elf/asm_avx2/include/openssl/ |
H A D | ssl.h | 1403 # define SSL_CTX_set_dh_auto(ctx, onoff) \ 1404 SSL_CTX_ctrl(ctx,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1405 # define SSL_set_dh_auto(s, onoff) \ 1406 SSL_ctrl(s,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1586 # define SSL_CTX_set_ecdh_auto(dummy, onoff) ((onoff) != 0) 1587 # define SSL_set_ecdh_auto(dummy, onoff) ((onoff) != 0)
|
/third_party/node/deps/openssl/config/archs/BSD-x86/no-asm/include/openssl/ |
H A D | ssl.h | 1403 # define SSL_CTX_set_dh_auto(ctx, onoff) \ 1404 SSL_CTX_ctrl(ctx,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1405 # define SSL_set_dh_auto(s, onoff) \ 1406 SSL_ctrl(s,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1586 # define SSL_CTX_set_ecdh_auto(dummy, onoff) ((onoff) != 0) 1587 # define SSL_set_ecdh_auto(dummy, onoff) ((onoff) != 0)
|
/third_party/node/deps/openssl/config/archs/BSD-x86_64/asm/include/openssl/ |
H A D | ssl.h | 1403 # define SSL_CTX_set_dh_auto(ctx, onoff) \ 1404 SSL_CTX_ctrl(ctx,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1405 # define SSL_set_dh_auto(s, onoff) \ 1406 SSL_ctrl(s,SSL_CTRL_SET_DH_AUTO,onoff,NULL) 1586 # define SSL_CTX_set_ecdh_auto(dummy, onoff) ((onoff) != 0) 1587 # define SSL_set_ecdh_auto(dummy, onoff) ((onoff) != 0)
|