OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:first_packet_byte
(Results
1 - 2
of
2
) sorted by null
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
CommunicationKDP.h
307
ExtractIsReply (uint8_t
first_packet_byte
) const
310
return (
first_packet_byte
& ePacketTypeMask) != 0;
314
ExtractCommand (uint8_t
first_packet_byte
) const
317
return (CommandType)(
first_packet_byte
& eCommandTypeMask);
CommunicationKDP.cpp
852
const uint8_t
first_packet_byte
= packet.GetU8 (&offset);
local
856
const CommandType command = ExtractCommand (
first_packet_byte
);
860
const bool is_reply = ExtractIsReply(
first_packet_byte
);
865
first_packet_byte
,
[
all
...]
Completed in 1761 milliseconds