本文整理汇总了C++中setOpenMode函数的典型用法代码示例。如果您正苦于以下问题:C++ setOpenMode函数的具体用法?C++ setOpenMode怎么用?C++ setOpenMode使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了setOpenMode函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: setOpenMode
/*!
\fn Win_QextSerialPort& Win_QextSerialPort::operator=(const Win_QextSerialPort& s)
overrides the = operator
*/
Win_QextSerialPort& Win_QextSerialPort::operator=(const Win_QextSerialPort& s)
{
setOpenMode(s.openMode());
lastErr=s.lastErr;
port = s.port;
Settings.FlowControl=s.Settings.FlowControl;
Settings.Parity=s.Settings.Parity;
Settings.DataBits=s.Settings.DataBits;
Settings.StopBits=s.Settings.StopBits;
Settings.BaudRate=s.Settings.BaudRate;
Win_Handle=s.Win_Handle;
memcpy(&Win_CommTimeouts, &s.Win_CommTimeouts, sizeof(COMMTIMEOUTS));
return *this;
}
开发者ID:bcabebe,项目名称:Serial-Bootloader-AN1310-v1.05,代码行数:18,代码来源:win_qextserialport.cpp
示例2: resetStatus
void Q3SocketDevice::close()
{
if ( fd == -1 || !isOpen() ) // already closed
return;
resetStatus();
setOpenMode(NotOpen);
::close( fd );
#if defined(QSOCKETDEVICE_DEBUG)
qDebug( "Q3SocketDevice::close: Closed socket %x", fd );
#endif
fd = -1;
fetchConnectionParameters();
QIODevice::close();
}
开发者ID:stephaneAG,项目名称:PengPod700,代码行数:14,代码来源:q3socketdevice_unix.cpp
示例3: setOpenMode
bool ByteArrayModelIoDevice::open( OpenMode openMode )
{
QIODevice::open( openMode );
openMode ^= WriteOnly | Append;
setOpenMode( openMode );
if( ! isReadable() )
return false;
seek( 0 );
return true;
}
开发者ID:ShermanHuang,项目名称:kdesdk,代码行数:14,代码来源:bytearraymodeliodevice.cpp
示例4: data
CustomDeviceReply::CustomDeviceReply(QByteArray &fileData)
: data(fileData), origLen(fileData.length())
{
qDebug() << "CustomDeviceReply::CustomDeviceReply() ";
setOpenMode(QIODevice::ReadOnly | QIODevice::Unbuffered);
//setOpenMode(QIODevice::Text);
//data = QString::fromStdString("div,html{background-color:red;}").toUtf8();
//emit readyRead();
QTimer::singleShot(0, this, &QIODevice::readyRead);
QTimer::singleShot(0, this, &QIODevice::readChannelFinished);
}
开发者ID:teremo4ek,项目名称:Qt_56_QML_QWebEngine,代码行数:14,代码来源:customdevicereply.cpp
示例5: data
HelpNetworkReply::HelpNetworkReply(const QNetworkRequest &request,
const QByteArray &fileData, const QString& mimeType)
: data(fileData), origLen(fileData.length())
{
TRACE_OBJ
setRequest(request);
setUrl(request.url());
setOpenMode(QIODevice::ReadOnly);
setHeader(QNetworkRequest::ContentTypeHeader, mimeType);
setHeader(QNetworkRequest::ContentLengthHeader, QByteArray::number(origLen));
QTimer::singleShot(0, this, SIGNAL(metaDataChanged()));
QTimer::singleShot(0, this, SIGNAL(readyRead()));
QTimer::singleShot(0, this, SIGNAL(finished()));
}
开发者ID:FlavioFalcao,项目名称:qt5,代码行数:15,代码来源:helpviewer_qwv.cpp
示例6: QextSerialBase
/*!
\fn Win_QextSerialPort::Win_QextSerialPort(const Win_QextSerialPort&)
Copy constructor.
*/
Win_QextSerialPort::Win_QextSerialPort(const Win_QextSerialPort& s):
QextSerialBase(s.port)
{
Win_Handle=INVALID_HANDLE_VALUE;
setOpenMode(s.openMode());
lastErr=s.lastErr;
port = s.port;
Settings.FlowControl=s.Settings.FlowControl;
Settings.Parity=s.Settings.Parity;
Settings.DataBits=s.Settings.DataBits;
Settings.StopBits=s.Settings.StopBits;
Settings.BaudRate=s.Settings.BaudRate;
Win_Handle=s.Win_Handle;
memcpy(&Win_CommTimeouts, &s.Win_CommTimeouts, sizeof(COMMTIMEOUTS));
}
开发者ID:bcabebe,项目名称:Serial-Bootloader-AN1310-v1.05,代码行数:19,代码来源:win_qextserialport.cpp
示例7: flush
void CryptFileDevice::close()
{
if (!isOpen())
return;
if ((openMode() & WriteOnly) || (openMode() & Append))
flush();
seek(0);
m_device->close();
setOpenMode(NotOpen);
if (m_encrypted)
m_encrypted = false;
}
开发者ID:Vardan07,项目名称:CryptFileDevice,代码行数:15,代码来源:cryptfiledevice.cpp
示例8: setRequest
KCHMNetworkReply::KCHMNetworkReply( const QNetworkRequest &request, const QUrl &url )
{
setRequest( request );
setOpenMode( QIODevice::ReadOnly );
m_data = loadResource( url );
m_length = m_data.length();
setHeader( QNetworkRequest::ContentLengthHeader, QByteArray::number(m_data.length()) );
QMetaObject::invokeMethod(this, "metaDataChanged", Qt::QueuedConnection);
if ( m_length )
QMetaObject::invokeMethod(this, "readyRead", Qt::QueuedConnection);
QMetaObject::invokeMethod(this, "finished", Qt::QueuedConnection);
}
开发者ID:gyunaev,项目名称:kchmviewer,代码行数:16,代码来源:dataprovider_qwebkit.cpp
示例9: Q_D
void QBluetoothSocket::abort()
{
if (state() == UnconnectedState)
return;
Q_D(QBluetoothSocket);
setOpenMode(QIODevice::NotOpen);
setSocketState(ClosingState);
d->abort();
#ifndef QT_ANDROID_BLUETOOTH
//Android closes when the Java event loop comes around
setSocketState(QBluetoothSocket::UnconnectedState);
emit disconnected();
#endif
}
开发者ID:Drakey83,项目名称:steamlink-sdk,代码行数:16,代码来源:qbluetoothsocket.cpp
示例10: fileName
/*!
\reimp
Creates a unique file name for the temporary file, and opens it. You can
get the unique name later by calling fileName(). The file is guaranteed to
have been created by this function (i.e., it has never existed before).
*/
bool QTemporaryFile::open(OpenMode flags)
{
Q_D(QTemporaryFile);
if (!d->fileName.isEmpty()) {
if (static_cast<QTemporaryFileEngine*>(d->engine())->isReallyOpen()) {
setOpenMode(flags);
return true;
}
}
if (QFile::open(flags)) {
d->fileName = d->fileEngine->fileName(QAbstractFileEngine::DefaultName);
return true;
}
return false;
}
开发者ID:3163504123,项目名称:phantomjs,代码行数:23,代码来源:qtemporaryfile.cpp
示例11: LOCK_MUTEX
/*!
\fn bool Posix_QextSerialPort::open(OpenMode mode)
Opens the serial port associated to this class.
This function has no effect if the port associated with the class is already open.
The port is also configured to the current settings, as stored in the Settings structure.
*/
bool Posix_QextSerialPort::open(OpenMode mode)
{
LOCK_MUTEX();
if (mode == QIODevice::NotOpen)
return isOpen();
if (!isOpen()) {
/*open the port*/
qDebug("trying to open file");
//note: linux 2.6.21 seems to ignore O_NDELAY flag
if ((fd = ::open(port.toAscii() ,O_RDWR | O_NOCTTY | O_NDELAY)) != -1) {
qDebug("file opened succesfully");
setOpenMode(mode); // Flag the port as opened
tcgetattr(fd, &old_termios); // Save the old termios
Posix_CommConfig = old_termios; // Make a working copy
cfmakeraw(&Posix_CommConfig); // Enable raw access
/*set up other port settings*/
Posix_CommConfig.c_cflag|=CREAD|CLOCAL;
Posix_CommConfig.c_lflag&=(~(ICANON|ECHO|ECHOE|ECHOK|ECHONL|ISIG));
Posix_CommConfig.c_iflag&=(~(INPCK|IGNPAR|PARMRK|ISTRIP|ICRNL|IXANY));
Posix_CommConfig.c_oflag&=(~OPOST);
Posix_CommConfig.c_cc[VMIN]= 0;
#ifdef _POSIX_VDISABLE // Is a disable character available on this system?
// Some systems allow for per-device disable-characters, so get the
// proper value for the configured device
const long vdisable = fpathconf(fd, _PC_VDISABLE);
Posix_CommConfig.c_cc[VINTR] = vdisable;
Posix_CommConfig.c_cc[VQUIT] = vdisable;
Posix_CommConfig.c_cc[VSTART] = vdisable;
Posix_CommConfig.c_cc[VSTOP] = vdisable;
Posix_CommConfig.c_cc[VSUSP] = vdisable;
#endif //_POSIX_VDISABLE
setBaudRate(Settings.BaudRate);
setDataBits(Settings.DataBits);
setParity(Settings.Parity);
setStopBits(Settings.StopBits);
setFlowControl(Settings.FlowControl);
setTimeout(Settings.Timeout_Millisec);
tcsetattr(fd, TCSAFLUSH, &Posix_CommConfig);
} else {
qDebug("could not open file: %s", strerror(errno));
}
}
UNLOCK_MUTEX();
return isOpen();
}
开发者ID:MatthiasEgli,项目名称:qgroundcontrol,代码行数:53,代码来源:posix_qextserialport.cpp
示例12: QIODevice
Nuria::ReferenceDevice::ReferenceDevice (QIODevice *referencedDevice, QObject *parent)
: QIODevice (parent), d_ptr (new ReferenceDevicePrivate)
{
this->d_ptr->device = referencedDevice;
setOpenMode (referencedDevice->openMode ());
if (this->d_ptr->device->isSequential ()) {
nWarn() << "Device" << referencedDevice << "is not random-access!";
}
// Signal connections
connect (referencedDevice, &QIODevice::aboutToClose, this, &ReferenceDevice::close);
connect (referencedDevice, &QIODevice::readyRead, this, &ReferenceDevice::autoExtendRange);
connect (referencedDevice, &QObject::destroyed, this, &ReferenceDevice::referencedDeviceDestroyed);
}
开发者ID:NuriaProject,项目名称:Core,代码行数:17,代码来源:referencedevice.cpp
示例13: kWarning
bool KoLimitedIODevice::open( QIODevice::OpenMode m )
{
//kDebug(7005) << "m=" << m;
if ( m & QIODevice::ReadOnly ) {
/*bool ok = false;
if ( m_dev->isOpen() )
ok = ( m_dev->mode() == QIODevice::ReadOnly );
else
ok = m_dev->open( m );
if ( ok )*/
m_dev->seek( m_start ); // No concurrent access !
}
else
kWarning(7005) << "KoLimitedIODevice::open only supports QIODevice::ReadOnly!";
setOpenMode( QIODevice::ReadOnly );
return true;
}
开发者ID:NavyZhao1978,项目名称:QCalligra,代码行数:17,代码来源:kclimitediodevice.cpp
示例14: setOpenMode
/*!
\fn Posix_QextSerialPort& Posix_QextSerialPort::operator=(const Posix_QextSerialPort& s)
Override the = operator.
*/
Posix_QextSerialPort& Posix_QextSerialPort::operator=(const Posix_QextSerialPort& s)
{
setOpenMode(s.openMode());
port = s.port;
Settings.BaudRate=s.Settings.BaudRate;
Settings.DataBits=s.Settings.DataBits;
Settings.Parity=s.Settings.Parity;
Settings.StopBits=s.Settings.StopBits;
Settings.FlowControl=s.Settings.FlowControl;
lastErr=s.lastErr;
Posix_File=s.Posix_File;
memcpy(&Posix_Timeout, &(s.Posix_Timeout), sizeof(struct timeval));
memcpy(&Posix_Copy_Timeout, &(s.Posix_Copy_Timeout), sizeof(struct timeval));
memcpy(&Posix_CommConfig, &(s.Posix_CommConfig), sizeof(struct termios));
return *this;
}
开发者ID:Gabriel0402,项目名称:QTFaceRec,代码行数:21,代码来源:posix_qextserialport.cpp
示例15: writeData
void SocksClient::grantUDPAssociate(const QString &relayHost, int relayPort)
{
if(d->step != StepRequest || !d->waiting)
return;
// response
d->waiting = false;
writeData(sp_set_request(relayHost, relayPort, RET_SUCCESS));
d->udp = true;
setOpenMode(QIODevice::ReadWrite);
#ifdef PROX_DEBUG
fprintf(stderr, "SocksClient: server << Success >>\n");
#endif
if(!d->recvBuf.isEmpty())
d->recvBuf.resize(0);
}
开发者ID:psi-im,项目名称:iris,代码行数:17,代码来源:socks.cpp
示例16: QextSerialBase
/*!
\fn Posix_QextSerialPort::Posix_QextSerialPort(const Posix_QextSerialPort&)
Copy constructor.
*/
Posix_QextSerialPort::Posix_QextSerialPort(const Posix_QextSerialPort& s)
: QextSerialBase(s.port)
{
setOpenMode(s.openMode());
port = s.port;
Settings.BaudRate=s.Settings.BaudRate;
Settings.DataBits=s.Settings.DataBits;
Settings.Parity=s.Settings.Parity;
Settings.StopBits=s.Settings.StopBits;
Settings.FlowControl=s.Settings.FlowControl;
lastErr=s.lastErr;
fd = s.fd;
memcpy(&Posix_Timeout, &s.Posix_Timeout, sizeof(struct timeval));
memcpy(&Posix_Copy_Timeout, &s.Posix_Copy_Timeout, sizeof(struct timeval));
memcpy(&Posix_CommConfig, &s.Posix_CommConfig, sizeof(struct termios));
}
开发者ID:MatthiasEgli,项目名称:qgroundcontrol,代码行数:21,代码来源:posix_qextserialport.cpp
示例17: lock
/*!
Opens the serial port associated to this class.
This function has no effect if the port associated with the class is already open.
The port is also configured to the current settings, as stored in the Settings structure.
*/
bool QextSerialPort::open(OpenMode mode)
{
QMutexLocker lock(mutex);
if (mode == QIODevice::NotOpen)
return isOpen();
if (!isOpen()) {
// qDebug() << "trying to open file" << port.toAscii();
//note: linux 2.6.21 seems to ignore O_NDELAY flag
if ((fd = ::open(port.toAscii() ,O_RDWR | O_NOCTTY | O_NDELAY)) != -1) {
//qDebug("file opened succesfully");
setOpenMode(mode); // Flag the port as opened
tcgetattr(fd, &old_termios); // Save the old termios
Posix_CommConfig = old_termios; // Make a working copy
cfmakeraw(&Posix_CommConfig); // Enable raw access
/*set up other port settings*/
Posix_CommConfig.c_cflag|=CREAD|CLOCAL;
Posix_CommConfig.c_lflag&=(~(ICANON|ECHO|ECHOE|ECHOK|ECHONL|ISIG));
Posix_CommConfig.c_iflag&=(~(INPCK|IGNPAR|PARMRK|ISTRIP|ICRNL|IXANY));
Posix_CommConfig.c_oflag&=(~OPOST);
Posix_CommConfig.c_cc[VMIN]= 0;
#ifdef _POSIX_VDISABLE // Is a disable character available on this system?
// Some systems allow for per-device disable-characters, so get the
// proper value for the configured device
const long vdisable = fpathconf(fd, _PC_VDISABLE);
Posix_CommConfig.c_cc[VINTR] = vdisable;
Posix_CommConfig.c_cc[VQUIT] = vdisable;
Posix_CommConfig.c_cc[VSTART] = vdisable;
Posix_CommConfig.c_cc[VSTOP] = vdisable;
Posix_CommConfig.c_cc[VSUSP] = vdisable;
#endif //_POSIX_VDISABLE
setBaudRate(Settings.BaudRate);
setDataBits(Settings.DataBits);
setParity(Settings.Parity);
setStopBits(Settings.StopBits);
setFlowControl(Settings.FlowControl);
setTimeout(Settings.Timeout_Millisec);
tcsetattr(fd, TCSAFLUSH, &Posix_CommConfig);
if (queryMode() == QextSerialPort::EventDriven) {
readNotifier = new QSocketNotifier(fd, QSocketNotifier::Read, this);
connect(readNotifier, SIGNAL(activated(int)), this, SIGNAL(readyRead()));
}
} else {
开发者ID:no3m,项目名称:so2sdr,代码行数:50,代码来源:posix_qextserialport.cpp
示例18: open
/*!
\reimp
Closes the socket and sets the socket identifier to -1 (invalid).
(This function ignores errors; if there are any then a file
descriptor leakage might result. As far as we know, the only error
that can arise is EBADF, and that would of course not cause
leakage. There may be OS-specific errors that we haven't come
across, however.)
\sa open()
*/
void MSocketDevice::close()
{
if (fd == -1 || !isOpen()) // already closed
return;
setOpenMode(NotOpen);
::close(fd);
LOG(VB_SOCKET, LOG_DEBUG,
QString("MSocketDevice::close: Closed socket %1").arg(fd));
fd = -1;
fetchConnectionParameters();
QIODevice::close();
}
开发者ID:DaveDaCoda,项目名称:mythtv,代码行数:31,代码来源:msocketdevice_unix.cpp
示例19: setOpenMode
/*!
Closes the serial device.
*/
void QSerialPort::close()
{
if ( d->notifier ) {
d->notifier->deleteLater();
d->notifier = 0;
}
if ( d->timer ) {
delete d->timer;
d->timer = 0;
}
#ifdef USE_POSIX_SYSCALLS
if ( d->fd != -1 ) {
::close( d->fd );
d->fd = -1;
}
#endif
setOpenMode( NotOpen );
}
开发者ID:radekp,项目名称:alfi,代码行数:21,代码来源:qserialport.cpp
示例20: flush
void CryptFileDevice::close()
{
if (!isOpen())
return;
if ((openMode() & WriteOnly) || (openMode() & Append))
flush();
seek(0);
m_device->close();
setOpenMode(NotOpen);
if (m_encrypted)
{
EVP_CIPHER_CTX_cleanup(&m_encCtx);
EVP_CIPHER_CTX_cleanup(&m_decCtx);
m_encrypted = false;
}
}
开发者ID:ruslanec,项目名称:CryptFileDevice,代码行数:19,代码来源:cryptfiledevice.cpp
注:本文中的setOpenMode函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论