Lines Matching refs:Current

1129     ASL_EXPECTED_MSG_NODE   *Current = AslGbl_ExpectedErrorCodeList;  in AslCheckExpectedExceptions()  local
1142 while (Current) in AslCheckExpectedExceptions()
1144 LocationNode = Current->LocationList; in AslCheckExpectedExceptions()
1153 LocationNode->Filename, Current->MessageIdStr); in AslCheckExpectedExceptions()
1159 Current = Current->Next; in AslCheckExpectedExceptions()
1232 ASL_EXPECTED_MSG_NODE *Current = AslGbl_ExpectedErrorCodeList; in AslLogExpectedExceptionByLine() local
1247 while (Current && Current->MessageId != MessageId ) in AslLogExpectedExceptionByLine()
1249 Current = Current->Next; in AslLogExpectedExceptionByLine()
1251 if (!Current) in AslLogExpectedExceptionByLine()
1255 Current = UtLocalCalloc (sizeof (ASL_EXPECTED_MSG_NODE)); in AslLogExpectedExceptionByLine()
1257 Current->Next = AslGbl_ExpectedErrorCodeList; in AslLogExpectedExceptionByLine()
1258 Current->MessageIdStr = MessageIdString; in AslLogExpectedExceptionByLine()
1259 Current->MessageId = MessageId; in AslLogExpectedExceptionByLine()
1260 AslGbl_ExpectedErrorCodeList = Current; in AslLogExpectedExceptionByLine()
1263 NewErrorLocationNode->Next = Current->LocationList; in AslLogExpectedExceptionByLine()
1264 Current->LocationList = NewErrorLocationNode; in AslLogExpectedExceptionByLine()
1380 ASL_EXPECTED_MSG_NODE *Current = AslGbl_ExpectedErrorCodeList; in AslIsExceptionExpected() local
1399 while (Current && Current->MessageId != EncodedMessageId) in AslIsExceptionExpected()
1401 Current = Current->Next; in AslIsExceptionExpected()
1403 if (!Current) in AslIsExceptionExpected()
1408 CurrentErrorLocation = Current->LocationList; in AslIsExceptionExpected()