Searched refs:Events (Results 1 – 14 of 14) sorted by relevance
| /edtt-latest/src/components/ |
| D | events.py | 6 class Events(IntEnum): class 231 …__eventFormats__ = { Events.BT_HCI_EVT_DISCONN_COMPLETE: 'Disconnect Complete Event … 232 …Events.BT_HCI_EVT_ENCRYPT_CHANGE_V1: 'Encryption Change v1 Event for handle {1:d} s… 233 …Events.BT_HCI_EVT_REMOTE_VERSION_INFO: 'Read Remote Version Information Event for han… 234 …Events.BT_HCI_EVT_CMD_COMPLETE: 'Command Complete Event for opCode 0x{1:04X} s… 235 …Events.BT_HCI_EVT_CMD_STATUS: 'Command Status Event for opCode 0x{1:04X} sta… 236 … Events.BT_HCI_EVT_HARDWARE_ERROR: 'Hardware Error Event error {0:d}', 237 …Events.BT_HCI_EVT_NUM_COMPLETED_PACKETS: 'Number of Completed Packets Event num_handles… 238 … Events.BT_HCI_EVT_DATA_BUF_OVERFLOW: 'Data Buffer Overflow Event link type {0:d}', 239 …Events.BT_HCI_EVT_ENCRYPT_KEY_REFRESH_COMPLETE: 'Encryption Key Refresh Complete Event for han… [all …]
|
| D | pairing.py | 54 dataSent = event.event == Events.BT_HCI_EVT_NUM_COMPLETED_PACKETS; 452 success = event.event == Events.BT_HCI_EVT_CMD_COMPLETE; 460 …success = (event.event == Events.BT_HCI_EVT_ENCRYPT_CHANGE_V1) or (event.event == Events.BT_HCI_EV… 463 if event.event == Events.BT_HCI_EVT_ENCRYPT_CHANGE_V1: 478 …success = (event.event == Events.BT_HCI_EVT_ENCRYPT_CHANGE_V1) or (event.event == Events.BT_HCI_EV… 481 if event.event == Events.BT_HCI_EVT_ENCRYPT_CHANGE_V1:
|
| D | initiator.py | 112 if event.event == Events.BT_HCI_EVT_DISCONN_COMPLETE: 442 success = success and (event.event == Events.BT_HCI_EVT_CMD_COMPLETE); 460 success = success and (event.event == Events.BT_HCI_EVT_CMD_COMPLETE);
|
| D | resolvable.py | 49 return not self.rawMode or self.__verifyAndShowEvent(Events.BT_HCI_EVT_CMD_COMPLETE);
|
| D | advertiser.py | 110 return self.__verifyAndShowEvent(Events.BT_HCI_EVT_CMD_COMPLETE);
|
| D | scanner.py | 104 return self.__verifyAndShowEvent(Events.BT_HCI_EVT_CMD_COMPLETE);
|
| D | preambles.py | 61 return __verifyAndShowEvent(transport, idx, Events.BT_HCI_EVT_CMD_COMPLETE, trace);
|
| D | basic_commands.py | 395 class Events(IntEnum): class
|
| /edtt-latest/src/tests/ |
| D | test_utils.py | 34 success = (event.event == Events.BT_HCI_EVT_NUM_COMPLETED_PACKETS and 60 return verifyAndShowEvent(transport, idx, Events.BT_HCI_EVT_CMD_COMPLETE, trace); 123 … return verifyAndShowEvent(transport, idx, Events.BT_HCI_EVT_CMD_STATUS, trace) and (status == 0); 129 … return verifyAndShowEvent(transport, idx, Events.BT_HCI_EVT_CMD_STATUS, trace) and (status == 0); 148 … dataSent = verifyAndShowEvent(transport, idx, Events.BT_HCI_EVT_NUM_COMPLETED_PACKETS, trace); 235 …success, event = verifyAndFetchEvent(transport, idx, Events.BT_HCI_EVT_REMOTE_VERSION_INFO, trace); 266 if event.event == Events.BT_HCI_EVT_ENCRYPT_CHANGE_V1: 268 elif event.event == Events.BT_HCI_EVT_ENCRYPT_CHANGE_V2: 513 if event.event != Events.BT_HCI_EVT_NUM_COMPLETED_PACKETS: 688 …success = verifyAndShowEvent(transport, central, Events.BT_HCI_EVT_CMD_STATUS, trace) and (status … [all …]
|
| D | ll_verification.py | 1640 success = success and event.event == Events.BT_HCI_EVT_CMD_COMPLETE 7216 …success = verifyAndShowEvent(transport, central, Events.BT_HCI_EVT_CMD_STATUS, trace) and (status … 7566 s = verifyAndShowEvent(transport, upper_tester, Events.BT_HCI_EVT_CMD_STATUS, trace) 7583 s = verifyAndShowEvent(transport, upper_tester, Events.BT_HCI_EVT_CMD_STATUS, trace) 7679 …return verifyAndShowEvent(transport, lower_tester, Events.BT_HCI_EVT_CMD_STATUS, trace) and status… 7692 …success = verifyAndShowEvent(transport, upper_tester, Events.BT_HCI_EVT_CMD_STATUS, trace) and (st… 7695 … s, event = verifyAndFetchEvent(transport, lower_tester, Events.BT_HCI_EVT_DISCONN_COMPLETE, trace) 7699 … s, event = verifyAndFetchEvent(transport, upper_tester, Events.BT_HCI_EVT_DISCONN_COMPLETE, trace) 8035 …success = verifyAndShowEvent(transport, lower_tester, Events.BT_HCI_EVT_CMD_STATUS, trace) and (st… 8039 … s, event = verifyAndFetchEvent(transport, lower_tester, Events.BT_HCI_EVT_DISCONN_COMPLETE, trace) [all …]
|
| D | hci_verification.py | 968 if event.event == Events.BT_HCI_EVT_DISCONN_COMPLETE: 975 if event.event == Events.BT_HCI_EVT_DISCONN_COMPLETE:
|
| D | ial_verification.py | 143 …success = verifyAndShowEvent(transport, transmitter, Events.BT_HCI_EVT_NUM_COMPLETED_PACKETS, trac…
|
| D | gatt_verification.py | 43 dataSent = event.event == Events.BT_HCI_EVT_NUM_COMPLETED_PACKETS;
|
| /edtt-latest/docs/ |
| D | EDTT_framework_Babblesim.md | 12 …tions responds to standard HCI commands sent from the test and returns standard Events to the test. 214 success = success and (event == Events.BT_HCI_EVT_CMD_COMPLETE);
|