Home
last modified time | relevance | path

Searched refs:tk (Results 1 – 13 of 13) sorted by relevance

/Zephyr-latest/tests/bluetooth/host/id/bt_le_oob_set_legacy_tk/src/
Dmain.c45 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()
Dtest_suite_invalid_inputs.c31 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/
Dsmp_expects.c28 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()
Dsmp_expects.h31 void expect_single_call_bt_smp_le_oob_set_tk(struct bt_conn *conn, const uint8_t *tk);
/Zephyr-latest/subsys/bluetooth/host/
Dsmp.h153 int bt_smp_le_oob_set_tk(struct bt_conn *conn, const uint8_t *tk);
Dsmp.c169 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 …]
Did.c2134 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/
Dinstallation_linux.rst81 python3-dev python3-pip python3-setuptools python3-tk python3-wheel xz-utils file \
122 python-pip python-setuptools python-wheel tk xz file make
Dindex.rst95 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/
Dmenuconfig.rst68 something like ``python3-tk``/``python3-tkinter``.
/Zephyr-latest/subsys/bluetooth/host/shell/
Dbt.c4557 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/
Dconn.h2048 int bt_le_oob_set_legacy_tk(struct bt_conn *conn, const uint8_t *tk);
/Zephyr-latest/scripts/kconfig/
Dguiconfig.py405 _root.tk.call("wm", "iconphoto", _root._w, "-default", _icon_img)
413 if _root.tk.call("tk", "windowingsystem") == "x11":