Lines Matching refs:command

228 															 zend_bool silent, enum php_mysqlnd_server_command command,  in MYSQLND_METHOD()
234 DBG_INF_FMT("silent=%u packet=%u command=%s", silent, ok_packet, mysqlnd_command_to_text[command]); in MYSQLND_METHOD()
245 DBG_ERR_FMT("Error while reading %s's OK packet", mysqlnd_command_to_text[command]); in MYSQLND_METHOD()
247 mysqlnd_command_to_text[command], getpid()); in MYSQLND_METHOD()
292 DBG_ERR_FMT("Error while reading %s's EOF packet", mysqlnd_command_to_text[command]); in MYSQLND_METHOD()
294 mysqlnd_command_to_text[command], getpid()); in MYSQLND_METHOD()
326 …SQLND_METHOD(mysqlnd_conn, simple_command)(MYSQLND * conn, enum php_mysqlnd_server_command command, in MYSQLND_METHOD()
334 …DBG_INF_FMT("command=%s ok_packet=%u silent=%u", mysqlnd_command_to_text[command], ok_packet, sile… in MYSQLND_METHOD()
362 cmd_packet->command = command; in MYSQLND_METHOD()
368 MYSQLND_INC_CONN_STATISTIC(conn->stats, STAT_COM_QUIT + command - 1 /* because of COM_SLEEP */ ); in MYSQLND_METHOD()
372 DBG_ERR_FMT("Error while sending %s packet", mysqlnd_command_to_text[command]); in MYSQLND_METHOD()
373 …php_error(E_WARNING, "Error while sending %s packet. PID=%d", mysqlnd_command_to_text[command], ge… in MYSQLND_METHOD()
378 …ret = conn->m->simple_command_handle_response(conn, ok_packet, silent, command, ignore_upsert_stat… in MYSQLND_METHOD()
807 const char * const command = conn->options.init_commands[current_command]; in MYSQLND_METHOD() local
808 if (command) { in MYSQLND_METHOD()
810 if (PASS != conn->m->query(conn, command, strlen(command) TSRMLS_CC)) { in MYSQLND_METHOD()