Home
last modified time | relevance | path

Searched refs:cap (Results 1 – 2 of 2) sorted by relevance

/tools/test/connectivity/acts/framework/acts/controllers/ap_lib/
Dhostapd_config.py108 for cap in hostapd_constants.N_CAPABILITIES_MAPPING.keys():
109 if cap in self._n_capabilities:
110 ret.append(hostapd_constants.N_CAPABILITIES_MAPPING[cap])
118 for cap in hostapd_constants.AC_CAPABILITIES_MAPPING.keys():
119 if cap in self._ac_capabilities:
120 ret.append(hostapd_constants.AC_CAPABILITIES_MAPPING[cap])
374 cap for cap in n_capabilities
375 if cap not in hostapd_constants.N_CAPABILITIES_MAPPING
/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DSubprocessTestResultsParserTest.java242 Capture<Throwable> cap = new Capture<Throwable>(); in testParse_invocationFailed() local
243 mockRunListener.invocationFailed((EasyMock.capture(cap))); in testParse_invocationFailed()
262 String expected = cap.getValue().getMessage(); in testParse_invocationFailed()