/openthread-latest/tests/unit/ |
D | test_url.cpp | 39 char url[] = "spinel:///dev/ttyUSB0?baudrate=115200"; in TestSimple() local 42 VerifyOrQuit(!args.Init(url)); in TestSimple() 47 VerifyOrQuit(args.GetValue("last-value-wrong-position", url) == nullptr); in TestSimple() 48 VerifyOrQuit(args.GetValue("last-value-before-url", url - 1) == nullptr); in TestSimple() 49 VerifyOrQuit(args.GetValue("last-value-after-url", url + sizeof(url)) == nullptr); in TestSimple() 56 char url[] = "spinel:///dev/ttyUSB0"; in TestSimpleNoQueryString() local 59 VerifyOrQuit(!args.Init(url)); in TestSimpleNoQueryString() 61 VerifyOrQuit(args.GetValue("last-value-wrong-position", url) == nullptr); in TestSimpleNoQueryString() 62 VerifyOrQuit(args.GetValue("last-value-before-url", url - 1) == nullptr); in TestSimpleNoQueryString() 63 VerifyOrQuit(args.GetValue("last-value-after-url", url + sizeof(url)) == nullptr); in TestSimpleNoQueryString() [all …]
|
D | CMakeLists.txt | 122 openthread-url 229 ot_unit_test(url)
|
/openthread-latest/src/lib/url/ |
D | url.cpp | 51 char *url = aUrl; in Init() local 56 url = strstr(aUrl, "://"); in Init() 57 EXPECT(url != nullptr, error = OT_ERROR_PARSE); in Init() 58 *url = '\0'; in Init() 59 url += sizeof("://") - 1; in Init() 60 mPath = url; in Init() 62 url = strstr(url, "?"); in Init() 64 if (url != nullptr) in Init() 66 mQuery = ++url; in Init() 68 for (char *cur = strtok(url, "&"); cur != nullptr; cur = strtok(nullptr, "&")) in Init()
|
D | CMakeLists.txt | 29 add_library(openthread-url EXCLUDE_FROM_ALL 30 url.cpp 33 target_link_libraries(openthread-url PRIVATE ot-config)
|
/openthread-latest/src/posix/platform/ |
D | system.cpp | 92 ot::Posix::RadioUrl url(aUrls.mUrls[i]); in get802154RadioUrl() local 94 if (strcmp(url.GetProtocol(), "trel") == 0) in get802154RadioUrl() 114 ot::Posix::RadioUrl url(aPlatformConfig->mCoprocessorUrls.mUrls[i]); in getTrelRadioUrl() local 116 if (strcmp(url.GetProtocol(), "trel") == 0) in getTrelRadioUrl()
|
D | trel.cpp | 582 ot::Posix::RadioUrl url(aTrelUrl); in platformTrelInit() local 584 strncpy(sInterfaceName, url.GetPath(), sizeof(sInterfaceName) - 1); in platformTrelInit()
|
D | CMakeLists.txt | 169 openthread-url
|
/openthread-latest/src/cli/ |
D | README_JOINER.md | 66 Usage: `joiner start <pskd> [provisioning-url]` 71 - provisioning-url: Provisioning URL for the Joiner (optional).
|
/openthread-latest/third_party/mbedtls/repo/ |
D | .gitmodules | 3 url = https://github.com/Mbed-TLS/mbedtls-framework
|
/openthread-latest/tools/otci/ |
D | setup.py | 41 url="https://github.com/openthread/openthread",
|
/openthread-latest/tests/scripts/thread-cert/ |
D | mesh_cop.py | 541 def __init__(self, url): argument 542 self._url = url 545 def url(self): member in ProvisioningUrl 549 return "ProvisioningUrl(url={})".format(self.url) 555 url = data.getvalue().decode('utf-8') 556 return ProvisioningUrl(url)
|
D | command.py | 646 def check_joiner_commissioning_messages(commissioning_messages, url=''): argument 653 if url: 655 assert url == provisioning_url.url
|
/openthread-latest/script/ |
D | git-tool | 39 project_name=$(git remote get-url origin | grep -oE '[^/:]+/[^/:]+\.git$' | cut -d. -f1)
|
/openthread-latest/src/lib/ |
D | CMakeLists.txt | 40 add_subdirectory(url)
|
/openthread-latest/tools/harness-automation/autothreadharness/ |
D | harness_case.py | 1083 url = self._browser.current_url 1084 if url.endswith('SetupPage.html'): 1086 elif url.endswith('TestBed.html'): 1088 elif url.endswith('TestExecution.html'):
|
/openthread-latest/src/ncp/ |
D | ncp_base_ftd.cpp | 856 const char *url; in HandlePropertySet() local 858 SuccessOrExit(error = mDecoder.ReadUtf8(url)); in HandlePropertySet() 860 error = otCommissionerSetProvisioningUrl(mInstance, url); in HandlePropertySet()
|
/openthread-latest/tests/toranj/cli/ |
D | cli.py | 401 def set_vendor_app_url(self, url): argument 402 return self._cli_no_output('vendor appurl', url)
|
/openthread-latest/tools/otci/otci/ |
D | otci.py | 1520 def set_commissioner_provisioning_url(self, url: str):
|
/openthread-latest/third_party/mbedtls/repo/docs/architecture/psa-thread-safety/ |
D | psa-thread-safety.md | 173 The state transition diagram can be generated in https://app.diagrams.net/ via this [url](https://v…
|