Home
last modified time | relevance | path

Searched refs:separator (Results 1 – 6 of 6) sorted by relevance

/openthread-latest/src/cli/
Dcli_utils.cpp523 char *separator; in ParseJoinerDiscerner() local
527 separator = strstr(aArg.GetCString(), "/"); in ParseJoinerDiscerner()
529 VerifyOrExit(separator != nullptr, error = OT_ERROR_NOT_FOUND); in ParseJoinerDiscerner()
531 … SuccessOrExit(error = ot::Utils::CmdLineParser::ParseAsUint8(separator + 1, aDiscerner.mLength)); in ParseJoinerDiscerner()
533 *separator = '\0'; in ParseJoinerDiscerner()
/openthread-latest/third_party/mbedtls/repo/programs/ssl/
Dssl_test_lib.c186 char *separator; in key_opaque_alg_parse() local
187 if ((separator = strchr(arg, ',')) == NULL) { in key_opaque_alg_parse()
190 *separator = '\0'; in key_opaque_alg_parse()
193 *alg2 = separator + 1; in key_opaque_alg_parse()
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_oid.data187 OID from numeric string - non-'.' separator between first and second
190 OID from numeric string - non-'.' separator between second and third
193 OID from numeric string - non-'.' separator between third and fourth
/openthread-latest/src/core/net/
Ddns_types.cpp1112 char separator = kKeyValueSeparator; in AppendTo() local
1139 SuccessOrExit(error = aAppender.Append(separator)); in AppendTo()
/openthread-latest/third_party/mbedtls/repo/docs/architecture/
Dmbed-crypto-storage-specification.md83 …e is simply prepended to the file name (so it must end with a directory separator to put the keys …
185 …e is simply prepended to the file name (so it must end with a directory separator to put the keys …
392 …e is simply prepended to the file name (so it must end with a directory separator to put the keys …
/openthread-latest/tests/scripts/thread-cert/
Dnode.py835 def _expect_key_value_pairs(self, pattern, separator=': '): argument
843 key, val = line.split(separator)