Lines Matching refs:command

210 															 zend_bool silent, enum php_mysqlnd_server_command command,  in MYSQLND_METHOD()
216 DBG_INF_FMT("silent=%u packet=%u command=%s", silent, ok_packet, mysqlnd_command_to_text[command]); in MYSQLND_METHOD()
227 DBG_ERR_FMT("Error while reading %s's OK packet", mysqlnd_command_to_text[command]); in MYSQLND_METHOD()
229 mysqlnd_command_to_text[command], getpid()); in MYSQLND_METHOD()
275 DBG_ERR_FMT("Error while reading %s's EOF packet", mysqlnd_command_to_text[command]); in MYSQLND_METHOD()
277 mysqlnd_command_to_text[command], getpid()); in MYSQLND_METHOD()
309 …sqlnd_conn_data, simple_command)(MYSQLND_CONN_DATA * conn, enum php_mysqlnd_server_command command, in MYSQLND_METHOD()
317 …DBG_INF_FMT("command=%s ok_packet=%u silent=%u", mysqlnd_command_to_text[command], ok_packet, sile… in MYSQLND_METHOD()
342 cmd_packet->command = command; in MYSQLND_METHOD()
348 MYSQLND_INC_CONN_STATISTIC(conn->stats, STAT_COM_QUIT + command - 1 /* because of COM_SLEEP */ ); in MYSQLND_METHOD()
352 DBG_ERR_FMT("Error while sending %s packet", mysqlnd_command_to_text[command]); in MYSQLND_METHOD()
353 …php_error(E_WARNING, "Error while sending %s packet. PID=%d", mysqlnd_command_to_text[command], ge… in MYSQLND_METHOD()
359 …ret = conn->m->simple_command_handle_response(conn, ok_packet, silent, command, ignore_upsert_stat… in MYSQLND_METHOD()
923 const char * const command = conn->options->init_commands[current_command]; local
924 if (command) {
926 if (PASS != conn->m->query(conn, command, strlen(command) TSRMLS_CC)) {