Home
last modified time | relevance | path

Searched refs:commandCounter (Results 1 – 10 of 10) sorted by relevance

/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qmldesigner/designercore/instances/
H A Dbaseconnectionmanager.cpp76 unsigned int commandCounter) in writeCommandToIODevice() argument
83 out << quint32(commandCounter); in writeCommandToIODevice()
117 quint32 commandCounter = 0; in readDataStream() local
118 in >> commandCounter; in readDataStream()
119 bool commandLost = !((connection.lastReadCommandCounter == 0 && commandCounter == 0) in readDataStream()
120 || (connection.lastReadCommandCounter + 1 == commandCounter)); in readDataStream()
122 … qDebug() << "server command lost: " << connection.lastReadCommandCounter << commandCounter; in readDataStream()
123 connection.lastReadCommandCounter = commandCounter; in readDataStream()
H A Dbaseconnectionmanager.h70 unsigned int commandCounter);
/dports/devel/arduino-core/Arduino-b439a77/libraries/GSM/src/
H A DGSM3ShieldV1ModemCore.h67 uint8_t commandCounter; variable
128 uint8_t getCommandCounter(){return commandCounter;}; in getCommandCounter()
133 void setCommandCounter(uint8_t c){commandCounter=c;}; in setCommandCounter()
H A DGSM3ShieldV1ModemCore.cpp47 commandCounter=0; in GSM3ShieldV1ModemCore()
107 commandCounter=1; in closeCommand()
186 commandCounter=1; in openCommand()
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/share/qtcreator/qml/qmlpuppet/instances/
H A Dnodeinstanceclientproxy.cpp314 quint32 commandCounter; in readCommandFromIOStream() local
315 in >> commandCounter; in readCommandFromIOStream()
316 …bool commandLost = !((commandCounter == 0 && *readCommandCounter == 0) || (*readCommandCounter + 1… in readCommandFromIOStream()
318 qDebug() << "client command lost: " << *readCommandCounter << commandCounter; in readCommandFromIOStream()
319 *readCommandCounter = commandCounter; in readCommandFromIOStream()
/dports/games/libretro-yabause/yabause-ea5b118/yabause/src/
H A Dvdp1.c467 u32 commandCounter = 0; in Vdp1DrawCommands() local
470 while (!(command & 0x8000) && commandCounter < 2000) { // fix me in Vdp1DrawCommands()
540 commandCounter++; in Vdp1DrawCommands()
548 u32 commandCounter = 0; in Vdp1FakeDrawCommands() local
551 while (!(command & 0x8000) && commandCounter < 2000) { // fix me in Vdp1FakeDrawCommands()
610 commandCounter++; in Vdp1FakeDrawCommands()
737 u32 commandCounter = 0; in Vdp1DebugGetCommandNumberAddr() local
742 while (!(command & 0x8000) && commandCounter != number) in Vdp1DebugGetCommandNumberAddr()
777 commandCounter++; in Vdp1DebugGetCommandNumberAddr()
780 if (commandCounter == number) in Vdp1DebugGetCommandNumberAddr()
/dports/editors/yudit/yudit-3.0.7/swindow/
H A DSFontCFF.h56 int commandCounter; variable
H A DSFontCFF.cpp667 commandCounter = 0; in drawGlyphCFF()
705 commandCounter++; in execute()
714 commandCounter, command, stack.size(), (int)hintStart, stemCount); in execute()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/shell/
H A Dbench.cpp256 commandCounter.updateFrom(other.commandCounter); in updateFrom()
836 BenchRunEventTrace _bret(&stats.commandCounter); in generateLoadOnConnection()
1381 appendAverageMicrosIfAvailable("commandsLatencyAverageMicros", stats.commandCounter); in finish()
1395 appendPerSec("command", stats.commandCounter.getNumEvents()); in finish()
H A Dbench.h313 BenchRunEventCounter commandCounter; member