OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetAndClearErrorMask
(Results
1 - 3
of
3
) sorted by null
/system/connectivity/shill/net/
rtnl_handler_unittest.cc
107
RTNLHandler::ErrorMask
GetAndClearErrorMask
(uint32_t sequence) {
108
return RTNLHandler::GetInstance()->
GetAndClearErrorMask
(sequence);
276
EXPECT_TRUE(
GetAndClearErrorMask
(kSequenceNumber).empty());
288
EXPECT_TRUE(
GetAndClearErrorMask
(kSequenceNumber + 1).empty());
289
EXPECT_THAT(
GetAndClearErrorMask
(kSequenceNumber), ElementsAre(1, 2, 3));
291
// A second call to
GetAndClearErrorMask
() returns an empty vector.
292
EXPECT_TRUE(
GetAndClearErrorMask
(kSequenceNumber).empty());
320
EXPECT_EQ(expectation.mask,
GetAndClearErrorMask
(kSequenceNumber));
rtnl_handler.h
178
ErrorMask
GetAndClearErrorMask
(uint32_t sequence);
rtnl_handler.cc
298
GetAndClearErrorMask
(hdr->nlmsg_seq); // Clear any queued error mask.
310
if (!ContainsValue(
GetAndClearErrorMask
(hdr->nlmsg_seq),
498
RTNLHandler::ErrorMask RTNLHandler::
GetAndClearErrorMask
(uint32_t sequence) {
Completed in 42 milliseconds