Home | History | Annotate | Download | only in transport

Lines Matching refs:pair

127         Transaction pair = new Transaction(pattern, responses);
128 mPairs.add(pair);
156 private void sendResponse(Transaction pair) {
157 switch (pair.mAction) {
159 for (String s : pair.mResponses) {
167 Assert.fail("Invalid action for sendResponse: " + pair.mAction);
260 Transaction pair = mPairs.get(0);
261 if (pair.mPattern == null) {
263 sendResponse(pair);
318 Transaction pair = mPairs.remove(0);
319 if (pair.mAction == Transaction.ACTION_IO_EXCEPTION) {
323 + " Expected=" + pair.mPattern, pair.mPattern != null && s.matches(pair.mPattern));
324 if (pair.mResponses != null) {
325 sendResponse(pair);