/Zephyr-Core-3.5.0/tests/bluetooth/host/id/bt_le_oob_set_legacy_tk/src/ |
D | main.c | 45 const uint8_t tk[16] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, in ZTEST() local 50 err = bt_le_oob_set_legacy_tk(&conn, tk); in ZTEST() 52 expect_single_call_bt_smp_le_oob_set_tk(&conn, tk); in ZTEST() 72 const uint8_t tk[16] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, in ZTEST() local 77 err = bt_le_oob_set_legacy_tk(&conn, tk); in ZTEST() 79 expect_single_call_bt_smp_le_oob_set_tk(&conn, tk); in ZTEST()
|
D | test_suite_invalid_inputs.c | 31 const uint8_t tk[16] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, in ZTEST() local 35 bt_le_oob_set_legacy_tk(NULL, tk); in ZTEST()
|
/Zephyr-Core-3.5.0/tests/bluetooth/host/id/mocks/ |
D | smp_expects.c | 28 void expect_single_call_bt_smp_le_oob_set_tk(struct bt_conn *conn, const uint8_t *tk) in expect_single_call_bt_smp_le_oob_set_tk() argument 37 zassert_equal_ptr(bt_smp_le_oob_set_tk_fake.arg1_val, tk, in expect_single_call_bt_smp_le_oob_set_tk()
|
D | smp_expects.h | 31 void expect_single_call_bt_smp_le_oob_set_tk(struct bt_conn *conn, const uint8_t *tk);
|
/Zephyr-Core-3.5.0/subsys/bluetooth/host/ |
D | smp.h | 152 int bt_smp_le_oob_set_tk(struct bt_conn *conn, const uint8_t *tk);
|
D | smp.c | 169 uint8_t tk[16]; member 2241 sys_put_le32(passkey, smp->tk); in legacy_request_tk() 2271 if (smp_c1(smp->tk, smp->prnd, smp->preq, smp->prsp, in legacy_send_pairing_confirm() 2321 err = smp_c1(smp->tk, smp->rrnd, smp->preq, smp->prsp, in legacy_pairing_random() 2339 err = smp_s1(smp->tk, smp->rrnd, smp->prnd, tmp); in legacy_pairing_random() 2372 err = smp_s1(smp->tk, smp->prnd, smp->rrnd, tmp); in legacy_pairing_random() 2378 memcpy(smp->tk, tmp, sizeof(smp->tk)); in legacy_pairing_random() 2379 LOG_DBG("generated STK %s", bt_hex(smp->tk, 16)); in legacy_pairing_random() 2438 memcpy(smp->tk, &passkey, sizeof(passkey)); in legacy_passkey_entry() 2718 memcpy(ltk, smp->tk, enc_size); in bt_smp_request_ltk() [all …]
|
D | id.c | 2019 int bt_le_oob_set_legacy_tk(struct bt_conn *conn, const uint8_t *tk) in bt_le_oob_set_legacy_tk() argument 2021 CHECKIF(conn == NULL || tk == NULL) { in bt_le_oob_set_legacy_tk() 2025 return bt_smp_le_oob_set_tk(conn, tk); in bt_le_oob_set_legacy_tk()
|
/Zephyr-Core-3.5.0/include/zephyr/bluetooth/ |
D | conn.h | 1135 int bt_le_oob_set_legacy_tk(struct bt_conn *conn, const uint8_t *tk);
|
/Zephyr-Core-3.5.0/doc/develop/getting_started/ |
D | installation_linux.rst | 81 …python3-dev python3-pip python3-setuptools python3-tk python3-wheel xz-utils file libpython3.8-dev… 123 python-pip python-setuptools python-wheel tk xz file make
|
D | index.rst | 94 python3-dev python3-pip python3-setuptools python3-tk python3-wheel xz-utils file \
|
/Zephyr-Core-3.5.0/subsys/bluetooth/shell/ |
D | bt.c | 3916 uint8_t tk[16]; in cmd_auth_oob_tk() local 3920 len = hex2bin(argv[1], strlen(argv[1]), tk, sizeof(tk)); in cmd_auth_oob_tk() 3921 if (len != sizeof(tk)) { in cmd_auth_oob_tk() 3926 err = bt_le_oob_set_legacy_tk(default_conn, tk); in cmd_auth_oob_tk() 4136 SHELL_CMD_ARG(auth-oob-tk, NULL, "<tk>", cmd_auth_oob_tk, 2, 0),
|
/Zephyr-Core-3.5.0/doc/build/kconfig/ |
D | menuconfig.rst | 68 something like ``python3-tk``/``python3-tkinter``.
|
/Zephyr-Core-3.5.0/scripts/kconfig/ |
D | guiconfig.py | 405 _root.tk.call("wm", "iconphoto", _root._w, "-default", _icon_img) 413 if _root.tk.call("tk", "windowingsystem") == "x11":
|