Searched refs:set_client_option (Results 1 – 8 of 8) sorted by relevance
/PHP-7.2/ext/mysqlnd/ |
H A D | mysqlnd_protocol_frame_codec.c | 357 MYSQLND_METHOD(mysqlnd_pfc, set_client_option)(MYSQLND_PFC * const pfc, enum_mysqlnd_client_option … in MYSQLND_METHOD() argument 423 pfc->data->m.set_client_option(pfc, MYSQLND_OPT_NET_CMD_BUFFER_SIZE, (char *) &buf_size); in MYSQLND_METHOD() 457 MYSQLND_METHOD(mysqlnd_pfc, set_client_option),
|
H A D | mysqlnd_vio.c | 327 MYSQLND_METHOD(mysqlnd_vio, set_client_option)(MYSQLND_VIO * const net, enum_mysqlnd_client_option … in MYSQLND_METHOD() argument 677 net->data->m.set_client_option(net, MYSQLND_OPT_NET_READ_BUFFER_SIZE, (char *)&buf_size); in MYSQLND_METHOD() 680 net->data->m.set_client_option(net, MYSQL_OPT_READ_TIMEOUT, (char *)&buf_size); in MYSQLND_METHOD() 755 MYSQLND_METHOD(mysqlnd_vio, set_client_option),
|
H A D | mysqlnd_connection.c | 655 conn->m->set_client_option(conn, MYSQLND_OPT_MAX_ALLOWED_PACKET, (char *)&max_allowed_size); 1027 ret = (PASS == vio->data->m.set_client_option(vio, MYSQLND_OPT_SSL_KEY, key) && 1028 PASS == vio->data->m.set_client_option(vio, MYSQLND_OPT_SSL_CERT, cert) && 1029 PASS == vio->data->m.set_client_option(vio, MYSQLND_OPT_SSL_CA, ca) && 1030 PASS == vio->data->m.set_client_option(vio, MYSQLND_OPT_SSL_CAPATH, capath) && 1031 PASS == vio->data->m.set_client_option(vio, MYSQLND_OPT_SSL_CIPHER, cipher)) ? PASS : FAIL; 1681 MYSQLND_METHOD(mysqlnd_conn_data, set_client_option)(MYSQLND_CONN_DATA * const conn, argument 1686 …size_t this_func = STRUCT_OFFSET(MYSQLND_CLASS_METHODS_TYPE(mysqlnd_conn_data), set_client_option); 1705 ret = conn->vio->data->m.set_client_option(conn->vio, option, value); 1710 …ret = conn->protocol_frame_codec->data->m.set_client_option(conn->protocol_frame_codec, option, va… [all …]
|
H A D | mysqlnd_net.c | 717 MYSQLND_METHOD(mysqlnd_net, set_client_option)(MYSQLND_NET * const net, enum mysqlnd_option option,… in MYSQLND_METHOD() argument 1099 net->data->m.set_client_option(net, MYSQLND_OPT_NET_CMD_BUFFER_SIZE, (char *) &buf_size); in MYSQLND_METHOD() 1102 net->data->m.set_client_option(net, MYSQLND_OPT_NET_READ_BUFFER_SIZE, (char *)&buf_size); in MYSQLND_METHOD() 1105 net->data->m.set_client_option(net, MYSQL_OPT_READ_TIMEOUT, (char *)&buf_size); in MYSQLND_METHOD() 1172 MYSQLND_METHOD(mysqlnd_net, set_client_option),
|
H A D | mysqlnd_structs.h | 354 func_mysqlnd_vio__set_client_option set_client_option; in MYSQLND_CLASS_METHODS_TYPE() local 530 func_mysqlnd_conn_data__set_client_option set_client_option; in MYSQLND_CLASS_METHODS_TYPE() local 1090 func_mysqlnd_pfc__set_client_option set_client_option; in MYSQLND_CLASS_METHODS_TYPE() local
|
H A D | mysqlnd.h | 211 #define mysqlnd_options(conn, opt, value) ((conn)->data)->m->set_client_option((conn)->data, (opt),…
|
H A D | mysqlnd_auth.c | 163 conn->m->set_client_option(conn, MYSQLND_OPT_AUTH_PROTOCOL, requested_protocol); in mysqlnd_run_authentication()
|
H A D | mysqlnd_commands.c | 1214 …conn->vio->data->m.set_client_option(conn->vio, MYSQL_OPT_SSL_VERIFY_SERVER_CERT, (const char *) &… in mysqlnd_com_enable_ssl_run()
|
Completed in 43 milliseconds