Home
last modified time | relevance | path

Searched refs:Events (Results 1 – 14 of 14) sorted by relevance

/edtt-latest/src/components/
Devents.py6 class Events(IntEnum): class
231 …__eventFormats__ = { Events.BT_HCI_EVT_DISCONN_COMPLETE: 'Disconnect Complete Event …
232Events.BT_HCI_EVT_ENCRYPT_CHANGE_V1: 'Encryption Change v1 Event for handle {1:d} s…
233Events.BT_HCI_EVT_REMOTE_VERSION_INFO: 'Read Remote Version Information Event for han…
234Events.BT_HCI_EVT_CMD_COMPLETE: 'Command Complete Event for opCode 0x{1:04X} s…
235Events.BT_HCI_EVT_CMD_STATUS: 'Command Status Event for opCode 0x{1:04X} sta…
236Events.BT_HCI_EVT_HARDWARE_ERROR: 'Hardware Error Event error {0:d}',
237Events.BT_HCI_EVT_NUM_COMPLETED_PACKETS: 'Number of Completed Packets Event num_handles…
238Events.BT_HCI_EVT_DATA_BUF_OVERFLOW: 'Data Buffer Overflow Event link type {0:d}',
239Events.BT_HCI_EVT_ENCRYPT_KEY_REFRESH_COMPLETE: 'Encryption Key Refresh Complete Event for han…
[all …]
Dpairing.py54 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:
Dinitiator.py112 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);
Dresolvable.py49 return not self.rawMode or self.__verifyAndShowEvent(Events.BT_HCI_EVT_CMD_COMPLETE);
Dadvertiser.py110 return self.__verifyAndShowEvent(Events.BT_HCI_EVT_CMD_COMPLETE);
Dscanner.py104 return self.__verifyAndShowEvent(Events.BT_HCI_EVT_CMD_COMPLETE);
Dpreambles.py61 return __verifyAndShowEvent(transport, idx, Events.BT_HCI_EVT_CMD_COMPLETE, trace);
Dbasic_commands.py395 class Events(IntEnum): class
/edtt-latest/src/tests/
Dtest_utils.py34 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 …]
Dll_verification.py1640 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 …]
Dhci_verification.py968 if event.event == Events.BT_HCI_EVT_DISCONN_COMPLETE:
975 if event.event == Events.BT_HCI_EVT_DISCONN_COMPLETE:
Dial_verification.py143 …success = verifyAndShowEvent(transport, transmitter, Events.BT_HCI_EVT_NUM_COMPLETED_PACKETS, trac…
Dgatt_verification.py43 dataSent = event.event == Events.BT_HCI_EVT_NUM_COMPLETED_PACKETS;
/edtt-latest/docs/
DEDTT_framework_Babblesim.md12 …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);