Home
last modified time | relevance | path

Searched refs:headers (Results 1 – 25 of 29) sorted by relevance

12

/openthread-latest/src/core/net/
Dip6_filter.cpp46 Headers headers; in Accept() local
55 SuccessOrExit(headers.ParseFrom(aMessage)); in Accept()
57 VerifyOrExit(headers.GetDestinationAddress().IsLinkLocalUnicastOrMulticast()); in Accept()
65 dstPort = headers.GetDestinationPort(); in Accept()
67 switch (headers.GetIpProto()) in Accept()
Dicmp6.cpp80 Headers headers; in SendError() local
82 SuccessOrExit(error = headers.ParseFrom(aMessage)); in SendError()
83 error = SendError(aType, aCode, aMessageInfo, headers); in SendError()
/openthread-latest/third_party/mbedtls/repo/scripts/
Dgenerate_visualc_files.pl199 my ($headers, $sources,
203 my $header_entries = gen_entry_list( $hdr_tpl, @$headers );
266 my @headers = (map { <$_/*.h> } @header_dirs);
275 @headers = grep { ! $excluded_files{$_} } @headers;
277 map { s!/!\\!g } @headers;
282 gen_main_file( \@headers, \@sources,
Dgenerate_errors.pl101 my $headers = "";
178 $headers .= "#if " if ($include_name ne "");
183 $headers .= " || " if ($first++);
186 $headers .= "defined(MBEDTLS_${dep}_C)" if
190 $headers .= "\n#include \"mbedtls/${include_name}.h\"\n".
222 $error_format =~ s/HEADER_INCLUDED\n/$headers/g;
/openthread-latest/src/core/utils/
Dhistory_tracker.cpp80 Ip6::Headers headers; in RecordMessage() local
84 SuccessOrExit(headers.ParseFrom(aMessage)); in RecordMessage()
87 if (headers.IsUdp()) in RecordMessage()
94 port = headers.GetDestinationPort(); in RecordMessage()
98 port = headers.GetSourcePort(); in RecordMessage()
119 entry->mPayloadLength = headers.GetIp6Header().GetPayloadLength(); in RecordMessage()
121 entry->mSource.mAddress = headers.GetSourceAddress(); in RecordMessage()
122 entry->mSource.mPort = headers.GetSourcePort(); in RecordMessage()
123 entry->mDestination.mAddress = headers.GetDestinationAddress(); in RecordMessage()
124 entry->mDestination.mPort = headers.GetDestinationPort(); in RecordMessage()
[all …]
/openthread-latest/third_party/mbedtls/repo/include/
DCMakeLists.txt1 option(INSTALL_MBEDTLS_HEADERS "Install Mbed TLS headers." ON)
5 file(GLOB headers "mbedtls/*.h")
8 install(FILES ${headers}
/openthread-latest/third_party/mbedtls/repo/tests/scripts/
Dtest_psa_constant_names.py26 def gather_inputs(headers: Iterable[str],
31 for header in headers:
182 headers = [os.path.join(options.include[0], h) for h in HEADERS]
183 inputs = gather_inputs(headers, TEST_SUITES)
Dtest_generate_test_code.py335 headers = parse_until_pattern(stream, END_HEADER_REGEX)
336 self.assertEqual(headers, expected)
357 headers = parse_until_pattern(stream, END_HEADER_REGEX)
358 self.assertEqual(headers, expected)
Dgenerate_test_code.py382 headers = '#line %d "%s"\n' % (funcs_f.line_no + 1, funcs_f.name)
386 headers += line
391 return headers
/openthread-latest/third_party/mbedtls/repo/scripts/data_files/driver_templates/
Dpsa_crypto_driver_wrappers_no_static.c.jinja11 /* BEGIN-common headers */
23 /* END-common headers */
27 /* BEGIN-driver headers */
33 {% for header in driver.headers -%}
40 /* END-driver headers */
Dpsa_crypto_driver_wrappers.h.jinja11 /* BEGIN-common headers */
24 /* END-common headers */
28 /* BEGIN-driver headers */
34 {% for header in driver.headers -%}
41 /* END-driver headers */
/openthread-latest/
DSTYLE_GUIDE.md30 …- The use of code in headers and, more specifically, the use of the non-local scope inline functio…
43 …“>”) style for all public headers, including C and C++ standard library, or other first- and third…
44 …lude` directives should use double quote (‘“‘) and (‘“‘) style for all private or relative headers.
50 - C++ Standard Library headers
51 - C Standard Library headers
52 - Third-party library headers
53 - First-party library headers
54 - Private or local headers
73 - All C and C++ headers shall use preprocessor header include guards.
/openthread-latest/script/
Dcheck-scan-build104 scan-build-14 --status-bugs -analyze-headers -v ninja
/openthread-latest/src/core/thread/
Dmesh_forwarder_ftd.cpp904 Ip6::Headers headers; in LogMeshIpHeader() local
906 SuccessOrExit(headers.DecompressFrom(aMessage, aOffset, aMeshAddrs)); in LogMeshIpHeader()
908 …, " IPv6 %s msg, chksum:%04x, ecn:%s, prio:%s", Ip6::Ip6::IpProtoToString(headers.GetIpProto()), in LogMeshIpHeader()
909headers.GetChecksum(), Ip6::Ip6::EcnToString(headers.GetEcn()), MessagePriorityToString(aMessage)); in LogMeshIpHeader()
911 LogIp6SourceDestAddresses(headers, aLogLevel); in LogMeshIpHeader()
Dmesh_forwarder.cpp1840 Ip6::Headers headers; in LogIp6Message() local
1843 SuccessOrExit(headers.ParseFrom(aMessage)); in LogIp6Message()
1846 … Ip6::Ip6::IpProtoToString(headers.GetIpProto()), aMessage.GetLength(), headers.GetChecksum(), in LogIp6Message()
1847 Ip6::Ip6::EcnToString(headers.GetEcn())); in LogIp6Message()
1856 LogIp6SourceDestAddresses(headers, aLogLevel); in LogIp6Message()
/openthread-latest/third_party/mbedtls/repo/programs/test/
Dgenerate_cpp_dummy_build.sh8 Generate a C++ dummy build program that includes all the headers.
/openthread-latest/tools/otci/otci/
Dotci.py684 headers = self.__split_table_row(output[0])
693 if len(fields) != len(headers):
696 col = lambda colname: self.__get_table_col(colname, headers, fields)
710 if 'Link' in headers:
724 headers = [h for h, _ in items]
726 col = lambda colname: self.__get_table_col(colname, headers, fields)
755 headers = self.__split_table_row(output[0])
764 col = lambda colname: self.__get_table_col(colname, headers, fields)
790 if 'Ver' in headers:
793 if 'CSL' in headers:
[all …]
/openthread-latest/tools/gerrit/
DREADME.md55 9d585edc4 [types] move types into specific headers (#2946)
/openthread-latest/tests/toranj/cli/
Dcli.py949 headers = cls.split_table_row(table_lines[0])
955 verify(len(fields) == len(headers))
956 info.append({headers[i]: fields[i] for i in range(len(fields))})
/openthread-latest/third_party/mbedtls/repo/scripts/data_files/
Dquery_config.fmt15 * Include all the headers with public APIs in case they define a macro to its
/openthread-latest/tests/scripts/thread-cert/
Dnode.py330 headers = line[len(';; ->>HEADER<<- '):].split(', ')
331 for header in headers:
2087 headers = self.__split_table_row(output[0])
2096 col = lambda colname: self.__get_table_col(colname, headers, fields)
2127 def __get_table_col(self, colname: str, headers: List[str], fields: List[str]) -> str:
2128 return fields[headers.index(colname)]
/openthread-latest/third_party/mbedtls/repo/docs/
D3.0-migration-guide.md48 ….h`, this has moved to `include/mbedtls/build_info.h`. From C code, both headers now define the `M…
64 Direct access to fields of structures (`struct` types) declared in public headers is no longer supp…
519 ### Internal / alt-focused headers were moved to a private location
521 This shouldn't affect users who took care not to include headers that
/openthread-latest/third_party/mbedtls/repo/docs/architecture/testing/
Dinvasive-testing.md34 …der files from `library/`. Do not define non-public interfaces in public headers. In contrast, sam…
160 …undocumented interfaces. Undocumented interfaces are described in public headers for the sake of t…
/openthread-latest/third_party/mbedtls/repo/docs/architecture/
Dtls13-support.md174 - TLS 1.3 specific C modules, headers, static functions names are prefixed
/openthread-latest/third_party/mbedtls/repo/
DChangeLog202 acceleration detection when the libc headers do not define the
218 * Fix missing bitflags in SSL session serialization headers. Their absence
643 the headers "psa/crypto_platform.h" and "psa/crypto_struct.h".
1230 connection identifier in encrypted record headers. Fix #5872.
1477 * Move internal headers.
1480 the include/ directory. The headers concerned are bn_mul.h, aesni.h,
1601 * Direct access to fields of structures declared in public headers is no
2621 * Declare include headers as PUBLIC to propagate to CMake project consumers
2906 * Add support for alternative CSR headers, as used by Microsoft and defined
3222 * Copy headers preserving timestamps when doing a "make install".
[all …]

12