OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:msg_readcount
(Results
1 - 8
of
8
) sorted by null
/external/quake/quake/src/QW/qwfwd/
misc.c
80
int
msg_readcount
;
variable
85
start = packet_data +
msg_readcount
;
87
for ( ;
msg_readcount
< packet_length ;
msg_readcount
++)
88
if (packet_data[
msg_readcount
] == '\n'
89
|| packet_data[
msg_readcount
] == 0)
92
packet_data[
msg_readcount
] = 0;
93
msg_readcount
++;
/external/quake/quake/src/WinQuake/
common.cpp
597
int
msg_readcount
;
variable
602
msg_readcount
= 0;
611
if (
msg_readcount
+1 > net_message.cursize)
617
c = (signed char)net_message.data[
msg_readcount
];
618
msg_readcount
++;
627
if (
msg_readcount
+1 > net_message.cursize)
633
c = (unsigned char)net_message.data[
msg_readcount
];
634
msg_readcount
++;
643
if (
msg_readcount
+2 > net_message.cursize)
649
c = (short)(net_message.data[
msg_readcount
]
[
all
...]
common.h
113
extern int
msg_readcount
;
cl_parse.cpp
713
#define SHOWNET(x) if(cl_shownet.value==2)Con_Printf ("%3i:%s\n",
msg_readcount
-1, x);
/external/quake/quake/src/QW/client/
common.c
652
int
msg_readcount
;
variable
657
msg_readcount
= 0;
663
return
msg_readcount
;
671
if (
msg_readcount
+1 > net_message.cursize)
677
c = (signed char)net_message.data[
msg_readcount
];
678
msg_readcount
++;
687
if (
msg_readcount
+1 > net_message.cursize)
693
c = (unsigned char)net_message.data[
msg_readcount
];
694
msg_readcount
++;
703
if (
msg_readcount
+2 > net_message.cursize
[
all
...]
cl_parse.c
347
msg_readcount
+= size;
377
msg_readcount
+= size;
384
fwrite (net_message.data +
msg_readcount
, 1, size, cls.download);
385
msg_readcount
+= size;
1090
#define SHOWNET(x) if(cl_shownet.value==2)Con_Printf ("%3i:%s\n",
msg_readcount
-1, x);
1133
msg_readcount
++; // so the EOM showner has the right value
common.h
115
extern int
msg_readcount
;
/external/quake/quake/src/QW/server/
sv_user.c
589
msg_readcount
+= size;
611
fwrite (net_message.data +
msg_readcount
, 1, size, host_client->upload);
612
msg_readcount
+= size;
[
all
...]
Completed in 79 milliseconds