Home
last modified time | relevance | path

Searched refs:text (Results 1 – 25 of 44) sorted by relevance

12

/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Ddebug.h29 #define MBEDTLS_SSL_DEBUG_RET(level, text, ret) \ argument
30 mbedtls_debug_print_ret(ssl, level, __FILE__, __LINE__, text, ret)
32 #define MBEDTLS_SSL_DEBUG_BUF(level, text, buf, len) \ argument
33 mbedtls_debug_print_buf(ssl, level, __FILE__, __LINE__, text, buf, len)
36 #define MBEDTLS_SSL_DEBUG_MPI(level, text, X) \ argument
37 mbedtls_debug_print_mpi(ssl, level, __FILE__, __LINE__, text, X)
41 #define MBEDTLS_SSL_DEBUG_ECP(level, text, X) \ argument
42 mbedtls_debug_print_ecp(ssl, level, __FILE__, __LINE__, text, X)
47 #define MBEDTLS_SSL_DEBUG_CRT(level, text, crt) \ argument
48 mbedtls_debug_print_crt(ssl, level, __FILE__, __LINE__, text, crt)
[all …]
Dasn1write.h244 int tag, const char *text,
264 const char *text, size_t text_len);
282 const char *text, size_t text_len);
300 const char *text, size_t text_len);
/openthread-latest/
D.gitattributes1 # Auto normalize all files which appear to be text files.
2 * text=auto
4 # Auto normalize files which are explicitly text
5 *.[ch] text
6 *.[ch]pp text
7 *.txt text
8 *.md text
9 *.yml text
10 *.html text
11 *.py text
/openthread-latest/third_party/mbedtls/repo/library/
Ddebug.c89 const char *text, int ret) in mbedtls_debug_print_ret() argument
110 text, ret, (unsigned int) -ret); in mbedtls_debug_print_ret()
116 const char *file, int line, const char *text, in mbedtls_debug_print_buf() argument
131 text, (unsigned int) len); in mbedtls_debug_print_buf()
173 const char *text, const mbedtls_ecp_point *X) in mbedtls_debug_print_ecp() argument
184 mbedtls_snprintf(str, sizeof(str), "%s(X)", text); in mbedtls_debug_print_ecp()
187 mbedtls_snprintf(str, sizeof(str), "%s(Y)", text); in mbedtls_debug_print_ecp()
194 const char *file, int line, const char *text, in mbedtls_debug_print_ec_coord() argument
201 text, (unsigned int) len * 8); in mbedtls_debug_print_ec_coord()
235 const char *text, const mbedtls_pk_context *pk) in mbedtls_debug_print_psa_ec() argument
[all …]
Ddebug_internal.h51 const char *text, int ret);
71 const char *file, int line, const char *text,
93 const char *text, const mbedtls_mpi *X);
115 const char *text, const mbedtls_ecp_point *X);
136 const char *text, const mbedtls_x509_crt *crt);
Dasn1write.c235 const char *text, size_t text_len) in mbedtls_asn1_write_tagged_string() argument
241 (const unsigned char *) text, in mbedtls_asn1_write_tagged_string()
248 const char *text, size_t text_len) in mbedtls_asn1_write_utf8_string() argument
250 return mbedtls_asn1_write_tagged_string(p, start, MBEDTLS_ASN1_UTF8_STRING, text, text_len); in mbedtls_asn1_write_utf8_string()
254 const char *text, size_t text_len) in mbedtls_asn1_write_printable_string() argument
256 return mbedtls_asn1_write_tagged_string(p, start, MBEDTLS_ASN1_PRINTABLE_STRING, text, in mbedtls_asn1_write_printable_string()
261 const char *text, size_t text_len) in mbedtls_asn1_write_ia5_string() argument
263 return mbedtls_asn1_write_tagged_string(p, start, MBEDTLS_ASN1_IA5_STRING, text, text_len); in mbedtls_asn1_write_ia5_string()
/openthread-latest/tests/scripts/thread-cert/
Dfind_border_agents.py79 text = bytearray(record.text)
80 sb = text.split(b'sb=')[1][0:4]
/openthread-latest/third_party/mbedtls/repo/scripts/mbedtls_dev/
Dasymmetric_key_data.py16 def unhexlify(text: str) -> bytes:
17 return binascii.unhexlify(text.translate(STR_TRANS_REMOVE_BLANKS))
Dtyping_util.py27 def write(self, text: str) -> Any:
/openthread-latest/tests/toranj/ncp/
Dwpan.py286 def _log(text, new_line=True, flush=True): argument
287 sys.stdout.write(text)
1153 def __init__(self, text): argument
1163 r'\s+rloc:(0x[0-9a-fA-F]+)', text)
1235 def __init__(self, text): argument
1245 items = [item[:-1] if item[-1] == ',' else item for item in text[2:-1].split()]
1300 def __init__(self, text): argument
1310 items = [item[:-1] if item[-1] == ',' else item for item in text[2:-1].split()]
1356 def __init__(self, text): argument
1365 items = [item[:-1] if item[-1] == ',' else item for item in text[2:-1].split()]
[all …]
/openthread-latest/third_party/mbedtls/repo/scripts/
Dassemble_changelog.py203 text, allow_unknown_category):
206 categories = self.format.split_categories(text)
317 text = subprocess.check_output(['git', 'rev-list',
320 return text.decode('ascii').rstrip('\n').split('\n')
350 text = subprocess.check_output(['git', 'show', '-s',
353 return datetime.datetime.utcfromtimestamp(int(text))
Dcode_size_compare.py482 def __init__(self, text: int, data: int, bss: int, dec: int):
483 self.text = text
574 size_entry.text, size_entry.data,
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_debug.function94 void mbedtls_debug_print_ret(char *file, int line, char *text, int value,
118 mbedtls_debug_print_ret(&ssl, 0, file, line, text, value);
130 void mbedtls_debug_print_buf(char *file, int line, char *text,
154 mbedtls_debug_print_buf(&ssl, 0, file, line, text, data->x, data->len);
/openthread-latest/third_party/mbedtls/repo/tests/scripts/
Dcheck_files.py270 text = line.decode('utf-8')
273 if line_number == 1 and text.startswith('\uFEFF'):
277 text = text[1:]
278 return not self.GOOD_CHARACTERS_RE.match(text)
Ddepends.py89 def log_line(text, prefix='depends.py:', suffix='', color=None): argument
94 sys.stderr.write(prefix + ' ' + text + suffix + '\n')
/openthread-latest/tools/tcat_ble_client/cli/
Dcli.py69 def completer(self, text, state): argument
95 options = [c for c in command_pool if c.startswith(text)]
/openthread-latest/tools/harness-automation/autothreadharness/
Dharness_case.py392 status = dialog.find_element_by_class_name('status-notify').text
830 if not elem.text:
837 logger.debug(elem.text)
838 if finder.match(elem.text) or finder_dotted.match(elem.text):
884 title = dialog.find_element_by_class_name('modal-title').text
944 body = dialog.find_element_by_id('cnfrmMsg').text
992 body = dialog.find_element_by_id('cnfrmMsg').text
1041 body = dialog.find_element_by_id('cnfrmMsg').text
/openthread-latest/tools/tcat_ble_client/auth-generate/
Dcreate-cert-ca.sh60 openssl x509 -text -in "ca/${NAME}_cert.pem"
/openthread-latest/tools/harness-automation/cases_R140/
Dleader_5_5_1.py44 body = dialog.find_element_by_id('cnfrmMsg').text
/openthread-latest/tools/harness-automation/cases/
Dleader_5_5_1.py44 body = dialog.find_element_by_id('cnfrmMsg').text
/openthread-latest/tools/tcat_ble_client/
DGENERATING_CERTIFICATES.md53 openssl x509 -in ca_cert.pem -text -noout
79 openssl x509 -in commissioner_cert.pem -text -noout
/openthread-latest/src/cli/
DREADME_UDP.md186 - `-t`: text payload in the `value`, same as without specifying the type.
218 - `-t`: text payload in the `value`, same as without specifying the type.
/openthread-latest/third_party/mbedtls/repo/framework/
DREADME.md18 …-2.0-or-later.html) license. See the [LICENSE](LICENSE) file for the full text of these licenses, …
/openthread-latest/third_party/mbedtls/repo/doxygen/
Dmbedtls.doxyfile44 # This avoids writing redundant text and keeps Clang happy.
/openthread-latest/tests/toranj/cli/
Dcli.py59 def _log(text, new_line=True, flush=True): argument
60 sys.stdout.write(text)
528 def udp_send(self, address, port, text): argument
529 self._cli_no_output('udp send', address, port, '-t', text)

12