Home
last modified time | relevance | path

Searched refs:newAction (Results 1 – 4 of 4) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
DBleClientTestBaseActivity.java212 String newAction = null;
228 newAction = BleClientService.BLE_CLIENT_ACTION_BLE_DISCOVER_SERVICE;
235 newAction = BleClientService.BLE_CLIENT_ACTION_READ_CHARACTERISTIC;
242 newAction = BleClientService.BLE_CLIENT_ACTION_REQUEST_MTU_512;
250 newAction = BleClientService.BLE_CLIENT_ACTION_READ_CHARACTERISTIC_NO_PERMISSION;
257 newAction = BleClientService.BLE_CLIENT_ACTION_WRITE_CHARACTERISTIC;
263 newAction = BleClientService.BLE_CLIENT_ACTION_REQUEST_MTU_23;
271 newAction = BleClientService.BLE_CLIENT_ACTION_WRITE_CHARACTERISTIC_NO_PERMISSION;
278 newAction = BleClientService.BLE_CLIENT_ACTION_RELIABLE_WRITE;
290 newAction = BleClientService.BLE_CLIENT_ACTION_NOTIFY_CHARACTERISTIC;
[all …]
DBleCocClientTestBaseActivity.java162 String newAction = null;
175 newAction = BleCocClientService.BLE_COC_CLIENT_ACTION_GET_PSM;
183 newAction = BleCocClientService.BLE_COC_CLIENT_ACTION_COC_CLIENT_CONNECT;
191 newAction = BleCocClientService.BLE_COC_CLIENT_ACTION_CHECK_CONNECTION_TYPE;
199 newAction = BleCocClientService.BLE_COC_CLIENT_ACTION_SEND_DATA_8BYTES;
207 newAction = BleCocClientService.BLE_COC_CLIENT_ACTION_READ_DATA_8BYTES;
215 newAction = BleCocClientService.BLE_COC_CLIENT_ACTION_EXCHANGE_DATA;
223 newAction = BleCocClientService.BLE_CLIENT_ACTION_CLIENT_DISCONNECT;
230 newAction = null;
257 if (newAction != null) {
[all …]
DBleCocServerTestBaseActivity.java146 String newAction = null;
177 newAction = BleCocServerService.BLE_COC_SERVER_ACTION_SEND_DATA_8BYTES;
183 newAction = BleCocServerService.BLE_COC_SERVER_ACTION_EXCHANGE_DATA;
189 newAction = BleCocServerService.BLE_COC_SERVER_ACTION_DISCONNECT;
225 if (newAction != null) {
226 Log.d(TAG, "Starting " + newAction);
227 startIntent.setAction(newAction);
/cts/tests/tests/content/src/android/content/cts/
DIntentTest.java1391 final String newAction = "foo"; in testFillIn_actionSet() local
1393 sourceIntent.setAction(newAction); in testFillIn_actionSet()
1406 final String newAction = "foo"; in testFillIn_actionOverride() local
1408 sourceIntent.setAction(newAction); in testFillIn_actionOverride()
1412 assertEquals(newAction, destIntent.getAction()); in testFillIn_actionOverride()