Home
last modified time | relevance | path

Searched refs:pendingCommands (Results 1 – 25 of 65) sorted by relevance

123

/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/app/cn3d/
H A Dfile_messaging.cpp119 if (pendingCommands.size() > 0) { in ~FileMessenger()
175 pendingCommands.resize(pendingCommands.size() + 1); in SendCommand()
176 pendingCommands.back().to = targetApp; in SendCommand()
177 pendingCommands.back().id = id; in SendCommand()
179 pendingCommands.back().data = data; in SendCommand()
203 pendingCommands.resize(pendingCommands.size() + 1); in SendReply()
205 pendingCommands.back().id = id; in SendReply()
215 pendingCommands.back().data = data; in SendReply()
253 if (pendingCommands.size() > 0) in PollMessageFile()
409 if (pendingCommands.size() == 0) in SendPendingCommands()
[all …]
/dports/multimedia/kaffeine/kaffeine-2.0.18/src/dvb/
H A Ddvbcam_linux.cpp75 pendingCommands = ResetCa; in startCa()
78 pendingCommands = 0; in startCa()
162 pendingCommands &= ~ExpectingReply; in pollModule()
166 if (pendingCommands == 0) { in pollModule()
167 pendingCommands |= SendPoll; in pollModule()
203 pendingCommands &= ~ExpectingReply; in readyRead()
252 if (pendingCommands == 0) { in detectSlot()
460 int pendingCommand = pendingCommands & (~pendingCommands + 1); in handlePendingCommands()
461 pendingCommands &= ~pendingCommand; in handlePendingCommands()
474 pendingCommands = 0; in handlePendingCommands()
[all …]
/dports/games/glest/glest_source_3.2.2/source/glest_game/network/
H A Dnetwork_interface.h65 Commands pendingCommands; //commands ready to be given variable
89 int getPendingCommandCount() const {return pendingCommands.size();} in getPendingCommandCount()
90 const NetworkCommand* getPendingCommand(int i) const {return &pendingCommands[i];} in getPendingCommand()
91 void clearPendingCommands() {pendingCommands.clear();} in clearPendingCommands()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/scripttools/debugging/
H A Dqscriptdebuggerfrontend.cpp131 while (!pendingCommands.isEmpty()) { in processCommands()
132 QScriptDebuggerCommand command(pendingCommands.takeFirst()); in processCommands()
180 d->pendingCommands.append(command); in scheduleCommand()
184 if (d->pendingCommands.size() == 1) { in scheduleCommand()
/dports/devel/qt5-scripttools/kde-qtscript-5.15.2p4/src/scripttools/debugging/
H A Dqscriptdebuggerfrontend.cpp129 while (!pendingCommands.isEmpty()) { in processCommands()
130 QScriptDebuggerCommand command(pendingCommands.takeFirst()); in processCommands()
178 d->pendingCommands.append(command); in scheduleCommand()
182 if (d->pendingCommands.size() == 1) { in scheduleCommand()
/dports/devel/qt5-script/kde-qtscript-5.15.2p4/src/scripttools/debugging/
H A Dqscriptdebuggerfrontend.cpp129 while (!pendingCommands.isEmpty()) { in processCommands()
130 QScriptDebuggerCommand command(pendingCommands.takeFirst()); in processCommands()
178 d->pendingCommands.append(command); in scheduleCommand()
182 if (d->pendingCommands.size() == 1) { in scheduleCommand()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/dawn/src/dawn_native/metal/
H A DDeviceMTL.mm213 id<MTLCommandBuffer> pendingCommands = mCommandContext.AcquireCommands();
219 mLastSubmittedCommands = pendingCommands;
222 [pendingCommands addScheduledHandler:^(id<MTLCommandBuffer>) {
223 // This is DRF because we hold the mutex for mLastSubmittedCommands and pendingCommands
226 if (this->mLastSubmittedCommands == pendingCommands) {
234 [pendingCommands addCompletedHandler:^(id<MTLCommandBuffer>) {
243 [pendingCommands commit];
244 [pendingCommands release];
/dports/games/cockatrice/Cockatrice-2021-01-26-Release-2.8.0/webclient/src/websocket/
H A DWebClient.tsx32 private pendingCommands = {};
114 this.pendingCommands = {};
122 this.pendingCommands[this.cmdId] = callback;
295 if (!this.pendingCommands.hasOwnProperty(cmdId)) {
299 this.pendingCommands[cmdId](response);
300 delete this.pendingCommands[cmdId];
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/dawn/src/dawn_native/metal/
H A DDeviceMTL.mm224 id<MTLCommandBuffer> pendingCommands = mCommandContext.AcquireCommands();
230 mLastSubmittedCommands = pendingCommands;
233 [pendingCommands addScheduledHandler:^(id<MTLCommandBuffer>) {
234 // This is DRF because we hold the mutex for mLastSubmittedCommands and pendingCommands
237 if (this->mLastSubmittedCommands == pendingCommands) {
246 [pendingCommands addCompletedHandler:^(id<MTLCommandBuffer>) {
255 [pendingCommands commit];
256 [pendingCommands release];
/dports/games/cockatrice/Cockatrice-2021-01-26-Release-2.8.0/cockatrice/src/
H A Dabstractclient.cpp68 PendingCommand *pend = pendingCommands.value(cmdId, 0); in processProtocolItem()
71 pendingCommands.remove(cmdId); in processProtocolItem()
161 pendingCommands.insert(cmdId, pend); in queuePendingCommand()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/libs/ssh/
H A Dsftpsession.cpp64 QQueue<Command> pendingCommands; member
89 pendingCommands.enqueue(Command(command, paths, jobId)); in queueCommand()
98 if (pendingCommands.empty()) in runNextCommand()
101 activeCommand = pendingCommands.dequeue(); in runNextCommand()
/dports/net/quiterss/quiterss-0.19.4_1/3rdparty/qftp/
H A Dqftp.cpp219 QStringList pendingCommands; member in QFtpPI
872 if (!pendingCommands.isEmpty()) { in sendCommands()
881 pendingCommands = cmds; in sendCommands()
888 pendingCommands.clear(); in clearPendingCommands()
896 pendingCommands.clear(); in abort()
1154 pendingCommands.pop_front(); in processReply()
1194 pendingCommands.prepend(QLatin1String("PASV\r\n")); in processReply()
1198 pendingCommands.prepend(QLatin1String("PORT\r\n")); in processReply()
1232 if (pendingCommands.isEmpty()) { in startNextCmd()
1237 currentCmd = pendingCommands.first(); in startNextCmd()
[all …]
/dports/emulators/qmc2/qmc2-0.195_4/qmc2/qftp/
H A Dqftp.cpp217 QStringList pendingCommands; member in QFtpPI
837 if (!pendingCommands.isEmpty()) in sendCommands()
845 pendingCommands = cmds; in sendCommands()
852 pendingCommands.clear(); in clearPendingCommands()
860 pendingCommands.clear(); in abort()
1096 pendingCommands.pop_front(); in processReply()
1133 pendingCommands.prepend(QLatin1String("PASV\r\n")); in processReply()
1136 pendingCommands.prepend(QLatin1String("PORT\r\n")); in processReply()
1166 if (pendingCommands.isEmpty()) { in startNextCmd()
1171 currentCmd = pendingCommands.first(); in startNextCmd()
[all …]
/dports/games/megaglest/megaglest-source-3.13.0/source/glest_game/network/
H A Dnetwork_interface.h311 Commands pendingCommands; //commands ready to be given variable
340 int getPendingCommandCount() const {return (int)pendingCommands.size();} in getPendingCommandCount()
341 NetworkCommand* getPendingCommand(int i) {return &pendingCommands[i];} in getPendingCommand()
342 void clearPendingCommands() {pendingCommands.clear();} in clearPendingCommands()
/dports/shells/ksh93/ast-93u/src/lib/libtk/generic/
H A DtkSend.c110 static PendingCommand *pendingCommands = NULL; variable
1066 pending.nextPtr = pendingCommands;
1067 pendingCommands = &pending;
1091 if (pendingCommands == &pending) {
1092 pendingCommands = pending.nextPtr;
1096 for (pcPtr = pendingCommands; pcPtr != NULL;
1561 for (pcPtr = pendingCommands; pcPtr != NULL;
1668 for (pcPtr = pendingCommands; pcPtr != NULL;
1718 for (pcPtr2 = pendingCommands; pcPtr2 != NULL;
/dports/shells/ksh93-devel/ast-cc1bca27/src/lib/libtk/generic/
H A DtkSend.c110 static PendingCommand *pendingCommands = NULL; variable
1066 pending.nextPtr = pendingCommands;
1067 pendingCommands = &pending;
1091 if (pendingCommands == &pending) {
1092 pendingCommands = pending.nextPtr;
1096 for (pcPtr = pendingCommands; pcPtr != NULL;
1561 for (pcPtr = pendingCommands; pcPtr != NULL;
1668 for (pcPtr = pendingCommands; pcPtr != NULL;
1718 for (pcPtr2 = pendingCommands; pcPtr2 != NULL;
/dports/shells/ast-ksh/ast-ksh93v/src/lib/libtk/generic/
H A DtkSend.c110 static PendingCommand *pendingCommands = NULL; variable
1066 pending.nextPtr = pendingCommands;
1067 pendingCommands = &pending;
1091 if (pendingCommands == &pending) {
1092 pendingCommands = pending.nextPtr;
1096 for (pcPtr = pendingCommands; pcPtr != NULL;
1561 for (pcPtr = pendingCommands; pcPtr != NULL;
1668 for (pcPtr = pendingCommands; pcPtr != NULL;
1718 for (pcPtr2 = pendingCommands; pcPtr2 != NULL;
/dports/irc/kvirc/KVIrc-5.0.0-73-gbdeac0429/src/modules/objects/qtftp/
H A Dqftp.cpp721 if(!pendingCommands.isEmpty()) in sendCommands()
730 pendingCommands = cmds; in sendCommands()
737 pendingCommands.clear(); in clearPendingCommands()
745 pendingCommands.clear(); in abort()
1008 …if(currentCmd.startsWith(QLatin1String("USER ")) && pendingCommands.count() > 0 && pendingCommands in processReply()
1011 pendingCommands.pop_front(); in processReply()
1055 pendingCommands.prepend(QLatin1String("PASV\r\n")); in processReply()
1060 pendingCommands.prepend(QLatin1String("PORT\r\n")); in processReply()
1093 if(pendingCommands.isEmpty()) in startNextCmd()
1099 currentCmd = pendingCommands.first(); in startNextCmd()
[all …]
/dports/databases/qt5-sqldrivers-sqlite2/kde-qtbase-5.15.2p263/src/network/access/
H A Dqftp.cpp212 QStringList pendingCommands; member in QFtpPI
840 if (!pendingCommands.isEmpty()) in sendCommands()
848 pendingCommands = cmds; in sendCommands()
855 pendingCommands.clear(); in clearPendingCommands()
863 pendingCommands.clear(); in abort()
1102 pendingCommands.pop_front(); in processReply()
1139 pendingCommands.prepend(QLatin1String("PASV\r\n")); in processReply()
1142 pendingCommands.prepend(QLatin1String("PORT\r\n")); in processReply()
1174 if (pendingCommands.isEmpty()) { in startNextCmd()
1179 currentCmd = pendingCommands.constFirst(); in startNextCmd()
[all …]
/dports/databases/qt5-sqldrivers-tds/kde-qtbase-5.15.2p263/src/network/access/
H A Dqftp.cpp212 QStringList pendingCommands; member in QFtpPI
840 if (!pendingCommands.isEmpty()) in sendCommands()
848 pendingCommands = cmds; in sendCommands()
855 pendingCommands.clear(); in clearPendingCommands()
863 pendingCommands.clear(); in abort()
1102 pendingCommands.pop_front(); in processReply()
1139 pendingCommands.prepend(QLatin1String("PASV\r\n")); in processReply()
1142 pendingCommands.prepend(QLatin1String("PORT\r\n")); in processReply()
1174 if (pendingCommands.isEmpty()) { in startNextCmd()
1179 currentCmd = pendingCommands.constFirst(); in startNextCmd()
[all …]
/dports/databases/qt5-sqldrivers-sqlite3/kde-qtbase-5.15.2p263/src/network/access/
H A Dqftp.cpp212 QStringList pendingCommands; member in QFtpPI
840 if (!pendingCommands.isEmpty()) in sendCommands()
848 pendingCommands = cmds; in sendCommands()
855 pendingCommands.clear(); in clearPendingCommands()
863 pendingCommands.clear(); in abort()
1102 pendingCommands.pop_front(); in processReply()
1139 pendingCommands.prepend(QLatin1String("PASV\r\n")); in processReply()
1142 pendingCommands.prepend(QLatin1String("PORT\r\n")); in processReply()
1174 if (pendingCommands.isEmpty()) { in startNextCmd()
1179 currentCmd = pendingCommands.constFirst(); in startNextCmd()
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/network/access/
H A Dqftp.cpp217 QStringList pendingCommands; member in QFtpPI
870 if (!pendingCommands.isEmpty()) in sendCommands()
878 pendingCommands = cmds; in sendCommands()
885 pendingCommands.clear(); in clearPendingCommands()
893 pendingCommands.clear(); in abort()
1140 pendingCommands.pop_front(); in processReply()
1177 pendingCommands.prepend(QLatin1String("PASV\r\n")); in processReply()
1180 pendingCommands.prepend(QLatin1String("PORT\r\n")); in processReply()
1210 if (pendingCommands.isEmpty()) { in startNextCmd()
1215 currentCmd = pendingCommands.first(); in startNextCmd()
[all …]
/dports/comms/qsstv/qsstv/utils/
H A Dqftp.cpp219 QStringList pendingCommands; member in QFtpPI
816 if (!pendingCommands.isEmpty()) in sendCommands()
825 pendingCommands = cmds; in sendCommands()
832 pendingCommands.clear(); in clearPendingCommands()
840 pendingCommands.clear(); in abort()
1070 pendingCommands.pop_front(); in processReply()
1108 pendingCommands.prepend(QLatin1String("PASV\r\n")); in processReply()
1111 pendingCommands.prepend(QLatin1String("PORT\r\n")); in processReply()
1139 if (pendingCommands.isEmpty()) { in startNextCmd()
1144 currentCmd = pendingCommands.first(); in startNextCmd()
[all …]
/dports/databases/qt5-sqldrivers-odbc/kde-qtbase-5.15.2p263/src/network/access/
H A Dqftp.cpp212 QStringList pendingCommands; member in QFtpPI
840 if (!pendingCommands.isEmpty()) in sendCommands()
848 pendingCommands = cmds; in sendCommands()
855 pendingCommands.clear(); in clearPendingCommands()
863 pendingCommands.clear(); in abort()
1102 pendingCommands.pop_front(); in processReply()
1139 pendingCommands.prepend(QLatin1String("PASV\r\n")); in processReply()
1142 pendingCommands.prepend(QLatin1String("PORT\r\n")); in processReply()
1174 if (pendingCommands.isEmpty()) { in startNextCmd()
1179 currentCmd = pendingCommands.constFirst(); in startNextCmd()
[all …]
/dports/databases/qt5-sqldrivers-mysql/kde-qtbase-5.15.2p263/src/network/access/
H A Dqftp.cpp212 QStringList pendingCommands; member in QFtpPI
840 if (!pendingCommands.isEmpty()) in sendCommands()
848 pendingCommands = cmds; in sendCommands()
855 pendingCommands.clear(); in clearPendingCommands()
863 pendingCommands.clear(); in abort()
1102 pendingCommands.pop_front(); in processReply()
1139 pendingCommands.prepend(QLatin1String("PASV\r\n")); in processReply()
1142 pendingCommands.prepend(QLatin1String("PORT\r\n")); in processReply()
1174 if (pendingCommands.isEmpty()) { in startNextCmd()
1179 currentCmd = pendingCommands.constFirst(); in startNextCmd()
[all …]

123