OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:input_count_
(Results
1 - 4
of
4
) sorted by null
/art/runtime/jdwp/
jdwp_main.cc
43
input_count_
= 0;
76
CHECK_LE(count,
input_count_
);
78
if (count ==
input_count_
) {
79
input_count_
= 0;
83
memmove(input_buffer_, input_buffer_ + count,
input_count_
- count);
84
input_count_
-= count;
89
return (
input_count_
>= kMagicHandshakeLen);
91
if (
input_count_
< 4) {
95
return (
input_count_
>= length);
383
JDWP::Request request(netStateBase->input_buffer_, netStateBase->
input_count_
);
[
all
...]
jdwp_priv.h
80
size_t
input_count_
;
member in class:art::JDWP::JdwpNetStateBase
jdwp_adb.cc
277
input_count_
= 0;
382
readCount = read(clientSock, input_buffer_ +
input_count_
, sizeof(input_buffer_) -
input_count_
);
400
input_count_
+= readCount;
jdwp_socket.cc
246
input_count_
= 0;
322
input_count_
= 0;
439
readCount = read(clientSock, input_buffer_ +
input_count_
, sizeof(input_buffer_) -
input_count_
);
457
input_count_
+= readCount;
Completed in 191 milliseconds