Home
last modified time | relevance | path

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

/cts/hostsidetests/securitybulletin/securityPatch/CVE-2021-39665/
Dpoc.cpp30 struct sigaction newAction, oldAction; variable
59 sigemptyset(&newAction.sa_mask); in main()
60 newAction.sa_flags = SA_SIGINFO; in main()
61 newAction.sa_sigaction = sigsegv_handler; in main()
62 sigaction(SIGSEGV, &newAction, &oldAction); in main()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
DBleClientTestBaseActivity.java235 String newAction = null;
253 newAction = BleClientService.BLE_CLIENT_ACTION_BLE_DISCOVER_SERVICE;
260 newAction = BleClientService.BLE_CLIENT_ACTION_READ_CHARACTERISTIC;
267 newAction = BleClientService.BLE_CLIENT_ACTION_REQUEST_MTU_512;
275 newAction =
283 newAction = BleClientService.BLE_CLIENT_ACTION_WRITE_CHARACTERISTIC;
289 newAction = BleClientService.BLE_CLIENT_ACTION_REQUEST_MTU_23;
297 newAction =
305 newAction = BleClientService.BLE_CLIENT_ACTION_RELIABLE_WRITE;
317 newAction = BleClientService.BLE_CLIENT_ACTION_NOTIFY_CHARACTERISTIC;
[all …]
DBleCocClientTestBaseActivity.java168 String newAction = null;
181 newAction = BleCocClientService.BLE_COC_CLIENT_ACTION_GET_PSM;
189 newAction = BleCocClientService.BLE_COC_CLIENT_ACTION_COC_CLIENT_CONNECT;
197 newAction = BleCocClientService.BLE_COC_CLIENT_ACTION_CHECK_CONNECTION_TYPE;
205 newAction = BleCocClientService.BLE_COC_CLIENT_ACTION_SEND_DATA_8BYTES;
213 newAction = BleCocClientService.BLE_COC_CLIENT_ACTION_READ_DATA_8BYTES;
221 newAction = BleCocClientService.BLE_COC_CLIENT_ACTION_EXCHANGE_DATA;
229 newAction = BleCocClientService.BLE_CLIENT_ACTION_CLIENT_DISCONNECT;
236 newAction = null;
263 if (newAction != null) {
[all …]
DBleCocServerTestBaseActivity.java148 String newAction = null;
179 newAction = BleCocServerService.BLE_COC_SERVER_ACTION_SEND_DATA_8BYTES;
185 newAction = BleCocServerService.BLE_COC_SERVER_ACTION_EXCHANGE_DATA;
191 newAction = BleCocServerService.BLE_COC_SERVER_ACTION_DISCONNECT;
227 if (newAction != null) {
228 Log.d(TAG, "Starting " + newAction);
229 startIntent.setAction(newAction);
/cts/tests/tests/content/src/android/content/cts/
DIntentTest.java1702 final String newAction = "foo"; in testFillIn_actionSet() local
1704 sourceIntent.setAction(newAction); in testFillIn_actionSet()
1718 final String newAction = "foo"; in testFillIn_actionOverride() local
1720 sourceIntent.setAction(newAction); in testFillIn_actionOverride()
1724 assertEquals(newAction, destIntent.getAction()); in testFillIn_actionOverride()