/Zephyr-latest/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-latest/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-latest/subsys/bluetooth/host/ |
D | smp.h | 153 int bt_smp_le_oob_set_tk(struct bt_conn *conn, const uint8_t *tk);
|
D | smp.c | 169 uint8_t tk[16]; member 2319 sys_put_le32(passkey, smp->tk); in legacy_request_tk() 2349 if (smp_c1(smp->tk, smp->prnd, smp->preq, smp->prsp, in legacy_send_pairing_confirm() 2399 err = smp_c1(smp->tk, smp->rrnd, smp->preq, smp->prsp, in legacy_pairing_random() 2417 err = smp_s1(smp->tk, smp->rrnd, smp->prnd, tmp); in legacy_pairing_random() 2450 err = smp_s1(smp->tk, smp->prnd, smp->rrnd, tmp); in legacy_pairing_random() 2456 memcpy(smp->tk, tmp, sizeof(smp->tk)); in legacy_pairing_random() 2457 LOG_DBG("generated STK %s", bt_hex(smp->tk, 16)); in legacy_pairing_random() 2516 memcpy(smp->tk, &passkey, sizeof(passkey)); in legacy_passkey_entry() 2805 memcpy(ltk, smp->tk, enc_size); in bt_smp_request_ltk() [all …]
|
D | id.c | 2134 int bt_le_oob_set_legacy_tk(struct bt_conn *conn, const uint8_t *tk) in bt_le_oob_set_legacy_tk() argument 2136 CHECKIF(conn == NULL || tk == NULL) { in bt_le_oob_set_legacy_tk() 2140 return bt_smp_le_oob_set_tk(conn, tk); in bt_le_oob_set_legacy_tk()
|
/Zephyr-latest/doc/develop/getting_started/ |
D | installation_linux.rst | 81 python3-dev python3-pip python3-setuptools python3-tk python3-wheel xz-utils file \ 122 python-pip python-setuptools python-wheel tk xz file make
|
D | index.rst | 95 python3-dev python3-pip python3-setuptools python3-tk python3-wheel xz-utils file \ 136 brew install cmake ninja gperf python3 python-tk ccache qemu dtc libmagic wget openocd
|
/Zephyr-latest/doc/build/kconfig/ |
D | menuconfig.rst | 68 something like ``python3-tk``/``python3-tkinter``.
|
/Zephyr-latest/subsys/bluetooth/host/shell/ |
D | bt.c | 4557 uint8_t tk[16]; in cmd_auth_oob_tk() local 4561 len = hex2bin(argv[1], strlen(argv[1]), tk, sizeof(tk)); in cmd_auth_oob_tk() 4562 if (len != sizeof(tk)) { in cmd_auth_oob_tk() 4567 err = bt_le_oob_set_legacy_tk(default_conn, tk); in cmd_auth_oob_tk() 5078 SHELL_CMD_ARG(auth-oob-tk, NULL, "<tk>", cmd_auth_oob_tk, 2, 0),
|
/Zephyr-latest/include/zephyr/bluetooth/ |
D | conn.h | 2048 int bt_le_oob_set_legacy_tk(struct bt_conn *conn, const uint8_t *tk);
|
/Zephyr-latest/scripts/kconfig/ |
D | guiconfig.py | 405 _root.tk.call("wm", "iconphoto", _root._w, "-default", _icon_img) 413 if _root.tk.call("tk", "windowingsystem") == "x11":
|