Home
last modified time | relevance | path

Searched refs:url (Results 1 – 19 of 19) sorted by relevance

/openthread-latest/tests/unit/
Dtest_url.cpp39 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 …]
DCMakeLists.txt122 openthread-url
229 ot_unit_test(url)
/openthread-latest/src/lib/url/
Durl.cpp51 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()
DCMakeLists.txt29 add_library(openthread-url EXCLUDE_FROM_ALL
30 url.cpp
33 target_link_libraries(openthread-url PRIVATE ot-config)
/openthread-latest/src/posix/platform/
Dsystem.cpp92 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()
Dtrel.cpp582 ot::Posix::RadioUrl url(aTrelUrl); in platformTrelInit() local
584 strncpy(sInterfaceName, url.GetPath(), sizeof(sInterfaceName) - 1); in platformTrelInit()
DCMakeLists.txt169 openthread-url
/openthread-latest/src/cli/
DREADME_JOINER.md66 Usage: `joiner start <pskd> [provisioning-url]`
71 - provisioning-url: Provisioning URL for the Joiner (optional).
/openthread-latest/third_party/mbedtls/repo/
D.gitmodules3 url = https://github.com/Mbed-TLS/mbedtls-framework
/openthread-latest/tools/otci/
Dsetup.py41 url="https://github.com/openthread/openthread",
/openthread-latest/tests/scripts/thread-cert/
Dmesh_cop.py541 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)
Dcommand.py646 def check_joiner_commissioning_messages(commissioning_messages, url=''): argument
653 if url:
655 assert url == provisioning_url.url
/openthread-latest/script/
Dgit-tool39 project_name=$(git remote get-url origin | grep -oE '[^/:]+/[^/:]+\.git$' | cut -d. -f1)
/openthread-latest/src/lib/
DCMakeLists.txt40 add_subdirectory(url)
/openthread-latest/tools/harness-automation/autothreadharness/
Dharness_case.py1083 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/
Dncp_base_ftd.cpp856 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/
Dcli.py401 def set_vendor_app_url(self, url): argument
402 return self._cli_no_output('vendor appurl', url)
/openthread-latest/tools/otci/otci/
Dotci.py1520 def set_commissioner_provisioning_url(self, url: str):
/openthread-latest/third_party/mbedtls/repo/docs/architecture/psa-thread-safety/
Dpsa-thread-safety.md173 The state transition diagram can be generated in https://app.diagrams.net/ via this [url](https://v…