/freebsd/sys/contrib/device-tree/Bindings/net/ |
H A D | ti,k3-am654-cpts.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/net/ti,k3-am654-cpts.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Grygorii Strashko <grygorii.strashko@ti.com> 11 - Sekhar Nori <nsekhar@ti.com> 17 - selection of multiple external clock sources 18 - Software control of time sync events via interrupt or polling 19 - 64-bit timestamp mode in ns with PPM and nudge adjustment. 20 - hardware timestamp push inputs (HWx_TS_PUSH) [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/timestamp/ |
H A D | hte-consumer.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/timestamp/hte-consumer.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Dipen Patel <dipenp@nvidia.com> 16 $ref: /schemas/types.yaml#/definitions/phandle-array 23 timestamp-names: 24 $ref: /schemas/types.yaml#/definitions/string-array 27 timestamp property. 30 timestamp-names: [ timestamps ] [all …]
|
/freebsd/crypto/openssl/doc/man1/ |
H A D | tsget.pod | 5 tsget - Time Stamping HTTP/HTTPS client 10 B<-h> I<server_url> 11 [B<-e> I<extension>] 12 [B<-o> I<output>] 13 [B<-v>] 14 [B<-d>] 15 [B<-k> I<private_key.pem>] 16 [B<-p> I<key_password>] 17 [B<-c> I<client_cert.pem>] 18 [B<-C> I<CA_certs.pem>] [all …]
|
H A D | openssl-ts.pod.in | 2 {- OpenSSL::safe::output_do_not_edit_headers(); -} 6 openssl-ts - Time Stamping Authority command 11 B<-help> 14 B<-query> 15 [B<-config> I<configfile>] 16 [B<-data> I<file_to_hash>] 17 [B<-digest> I<digest_bytes>] 18 [B<- [all...] |
/freebsd/tools/sched/ |
H A D | schedgraph.py | 3 # Copyright (c) 2002-2003, 2009, Jeffrey Roberson <jeff@freebsd.org> 37 # - Install the ports/x11-toolkits/py-tkinter package; e.g. 38 # pkg install x11-toolkits/py-tkinter 39 # - Add KTR_SCHED to KTR_COMPILE and KTR_MASK in your KERNCONF; e.g. 44 # - It is encouraged to increase KTR_ENTRIES size to gather enough 49 # - Rebuild kernel with proper changes to KERNCONF and boot new kernel. 50 # - Run your workload to be profiled. 51 # - While the workload is continuing (i.e. before it finishes), disable 58 # - Dump the trace to a file: 'ktrdump -ct > ktr.out' 59 # - Alternatively, use schedgraph.d script in this directory for getting [all …]
|
/freebsd/secure/usr.bin/openssl/man/ |
H A D | tsget.1 | 18 .\" Set up some character translations and predefined strings. \*(-- will 24 .tr \(*W- 27 . ds -- \(*W- 29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch 30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch 37 . ds -- \|\(em\| 71 .\" Fear. Run. Save yourself. No user-serviceable parts. 81 . ds #H ((1u-(\\\\n(.fu%2u))*.13m) 97 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" 98 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' [all …]
|
H A D | openssl-ts.1 | 18 .\" Set up some character translations and predefined strings. \*(-- will 24 .tr \(*W- 27 . ds -- \(*W- 29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch 30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch 37 . ds -- \|\(em\| 71 .\" Fear. Run. Save yourself. No user-serviceable parts. 81 . ds #H ((1u-(\\\\n(.fu%2u))*.13m) 97 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" 98 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' [all …]
|
/freebsd/contrib/kyua/utils/ |
H A D | datetime.hpp | 13 // * Neither the name of Google Inc. nor the names of its contributors 30 /// Provides date and time-related classes and functions. 78 // operator- and operator-= do not exist because we do not support negative 94 class timestamp { class 100 timestamp(std::shared_ptr< impl >); 103 static timestamp from_microseconds(const int64_t); 104 static timestamp from_values(const int, const int, const int, 107 static timestamp now(void); 114 bool operator==(const timestamp&) const; 115 bool operator!=(const timestamp&) const; [all …]
|
H A D | datetime.cpp | 13 // * Neither the name of Google Inc. nor the names of its contributors 54 static optional< datetime::timestamp > mock_now = none; 260 /// Internal representation for datetime::timestamp. 261 struct timestamp::impl : utils::noncopyable { 262 /// The raw timestamp as provided by libc. 267 /// \param data_ The raw timestamp to use. 278 /// Constructs a new timestamp. 281 datetime::timestamp::timestamp(std::shared_ptr< impl > pimpl_) : in timestamp() function in datetime::timestamp 287 /// Constructs a timestamp from the amount of microseconds since the epoch. 291 /// \return A new timestamp. [all …]
|
/freebsd/contrib/kyua/utils/process/ |
H A D | deadline_killer_test.cpp | 13 // * Neither the name of Google Inc. nor the names of its contributors 38 #include <atf-c++.hpp> 72 datetime::timestamp start = datetime::timestamp::now(); in ATF_TEST_CASE_BODY() 73 process::deadline_killer killer(datetime::delta(1, 0), child->pid()); in ATF_TEST_CASE_BODY() 74 const process::status status = child->wait(); in ATF_TEST_CASE_BODY() 76 datetime::timestamp end = datetime::timestamp::now(); in ATF_TEST_CASE_BODY() 79 ATF_REQUIRE(end - start <= datetime::delta(10, 0)); in ATF_TEST_CASE_BODY() 91 datetime::timestamp start = datetime::timestamp::now(); in ATF_TEST_CASE_BODY() 92 process::deadline_killer killer(datetime::delta(60, 0), child->pid()); in ATF_TEST_CASE_BODY() 93 const process::status status = child->wait(); in ATF_TEST_CASE_BODY() [all …]
|
/freebsd/crypto/heimdal/admin/ |
H A D | purge.c | 2 * Copyright (c) 1997-2004 Kungliga Tekniska Högskolan 17 * 3. Neither the name of the Institute nor the names of its contributors 45 time_t timestamp; member 54 for (e = head; e != NULL; e = e->next) in get_entry() 55 if (krb5_principal_compare (context, princ, e->principal)) in get_entry() 61 add_entry (krb5_principal princ, int vno, time_t timestamp, struct e **head) in add_entry() argument 68 if(e->max_vno < vno) { in add_entry() 69 e->max_vno = vno; in add_entry() 70 e->timestamp = timestamp; in add_entry() 77 ret = krb5_copy_principal (context, princ, &e->principal); in add_entry() [all …]
|
/freebsd/crypto/heimdal/lib/krb5/ |
H A D | mk_safe.c | 2 * Copyright (c) 1997 - 2003 Kungliga Tekniska Högskolan 17 * 3. Neither the name of the Institute nor the names of its contributors 52 if ((auth_context->flags & in krb5_mk_safe() 57 if (auth_context->local_subkey) in krb5_mk_safe() 58 key = auth_context->local_subkey; in krb5_mk_safe() 59 else if (auth_context->remote_subkey) in krb5_mk_safe() 60 key = auth_context->remote_subkey; in krb5_mk_safe() 62 key = auth_context->keyblock; in krb5_mk_safe() 71 krb5_us_timeofday (context, &rdata.timestamp, &rdata.usec); in krb5_mk_safe() 73 if (auth_context->flags & KRB5_AUTH_CONTEXT_DO_TIME) { in krb5_mk_safe() [all …]
|
H A D | mk_priv.c | 2 * Copyright (c) 1997 - 2003 Kungliga Tekniska Högskolan 17 * 3. Neither the name of the Institute nor the names of its contributors 53 if ((auth_context->flags & in krb5_mk_priv() 58 if (auth_context->local_subkey) in krb5_mk_priv() 59 key = auth_context->local_subkey; in krb5_mk_priv() 60 else if (auth_context->remote_subkey) in krb5_mk_priv() 61 key = auth_context->remote_subkey; in krb5_mk_priv() 63 key = auth_context->keyblock; in krb5_mk_priv() 69 krb5_us_timeofday (context, &rdata.timestamp, &rdata.usec); in krb5_mk_priv() 71 if (auth_context->flags & KRB5_AUTH_CONTEXT_DO_TIME) { in krb5_mk_priv() [all …]
|
H A D | rd_priv.c | 2 * Copyright (c) 1997-2007 Kungliga Tekniska Högskolan 17 * 3. Neither the name of the Institute nor the names of its contributors 53 if ((auth_context->flags & in krb5_rd_priv() 60 /* if these fields are not present in the priv-part, silently in krb5_rd_priv() 66 ret = decode_KRB_PRIV (inbuf->data, inbuf->length, &priv, &len); in krb5_rd_priv() 82 if (auth_context->remote_subkey) in krb5_rd_priv() 83 key = auth_context->remote_subkey; in krb5_rd_priv() 84 else if (auth_context->local_subkey) in krb5_rd_priv() 85 key = auth_context->local_subkey; in krb5_rd_priv() 87 key = auth_context->keyblock; in krb5_rd_priv() [all …]
|
H A D | rd_safe.c | 2 * Copyright (c) 1997 - 2003 Kungliga Tekniska Högskolan 17 * 3. Neither the name of the Institute nor the names of its contributors 49 c = safe->cksum; in verify_checksum() 50 safe->cksum.cksumtype = 0; in verify_checksum() 51 safe->cksum.checksum.data = NULL; in verify_checksum() 52 safe->cksum.checksum.length = 0; in verify_checksum() 60 if (auth_context->remote_subkey) in verify_checksum() 61 key = auth_context->remote_subkey; in verify_checksum() 62 else if (auth_context->local_subkey) in verify_checksum() 63 key = auth_context->local_subkey; in verify_checksum() [all …]
|
/freebsd/usr.bin/tip/tip/ |
H A D | log.c | 4 /*- 5 * SPDX-License-Identifier: BSD-3-Clause 18 * 3. Neither the name of the University nor the names of its contributors 46 char *user, *timestamp; in logent() local 60 user = pwd->pw_name; in logent() 63 timestamp = ctime(&t); in logent() 64 timestamp[24] = '\0'; in logent() 66 user, timestamp, group, in logent()
|
/freebsd/contrib/kyua/store/ |
H A D | metadata_test.cpp | 13 // * Neither the name of Google Inc. nor the names of its contributors 31 #include <atf-c++.hpp> 46 /// Creates a test in-memory database. 78 db.exec("INSERT INTO metadata (schema_version, timestamp) " in ATF_TEST_CASE_BODY() 80 db.exec("INSERT INTO metadata (schema_version, timestamp) " in ATF_TEST_CASE_BODY() 84 ATF_REQUIRE_EQ(5678L, metadata.timestamp()); in ATF_TEST_CASE_BODY() 111 "Invalid metadata.*timestamp", in ATF_TEST_CASE_BODY() 120 db.exec("CREATE TABLE metadata (timestamp INTEGER)"); in ATF_TEST_CASE_BODY() 138 db.exec("INSERT INTO metadata (schema_version, timestamp) " in ATF_TEST_CASE_BODY() 142 "timestamp.*invalid type", in ATF_TEST_CASE_BODY()
|
/freebsd/contrib/googletest/googletest/test/ |
H A D | googletest-json-outfiles-test.py | 15 # * Neither the name of Google Inc. nor the names of its 48 'timestamp': '*', 57 'timestamp': '*', 65 'timestamp': '*', 80 'timestamp': '*', 89 'timestamp': '*', 96 'timestamp': '*', 153 command = [gtest_prog_path, '--gtest_output=json:%s' % self.output_dir_] 162 output_file_name2 = 'lt-' + output_file_name1
|
H A D | gtest_xml_outfiles_test.py | 16 # * Neither the name of Google Inc. nor the names of its 43 EXPECTED_XML_1 = """<?xml version="1.0" encoding="UTF-8"?> 44 <testsuites tests="1" failures="0" disabled="0" errors="0" time="*" timestamp="*" name="AllTests"> 45 …me="PropertyOne" tests="1" failures="0" skipped="0" disabled="0" errors="0" time="*" timestamp="*"> 46 …l_outfile1_test_.cc" line="41" status="run" result="completed" time="*" timestamp="*" classname="P… 57 EXPECTED_XML_2 = """<?xml version="1.0" encoding="UTF-8"?> 58 <testsuites tests="1" failures="0" disabled="0" errors="0" time="*" timestamp="*" name="AllTests"> 59 …me="PropertyTwo" tests="1" failures="0" skipped="0" disabled="0" errors="0" time="*" timestamp="*"> 60 …l_outfile2_test_.cc" line="43" status="run" result="completed" time="*" timestamp="*" classname="P… 118 command = [gtest_prog_path, "--gtest_output=xml:%s" % self.output_dir_] [all …]
|
H A D | googletest-json-output-unittest.py | 15 # * Neither the name of Google Inc. nor the names of its 43 GTEST_FILTER_FLAG = '--gtest_filter' 44 GTEST_LIST_TESTS_FLAG = '--gtest_list_tests' 45 GTEST_OUTPUT_FLAG = '--gtest_output' 50 NO_STACKTRACE_SUPPORT_FLAG = '--no_stacktrace_support' 64 'timestamp': '*', 76 'timestamp': '*', 84 'timestamp': '*', 95 'timestamp': '*', 103 'timestamp': '*', [all …]
|
H A D | gtest_xml_test_utils.py | 14 # * Neither the name of Google Inc. nor the names of its 54 convertible to a floating-point number and any attribute named 55 "type_param" which only has to be non-empty. 139 CDATA sections and non-whitespace text nodes are concatenated into a single 160 child_id = child.parentNode.getAttribute('name') + '-properties' 195 * The "timestamp" attribute of <testsuites> elements is replaced with a 198 single asterisk (if it sn non-empty) as it is the type name returned 203 * The directory names in file paths are removed. 215 timestamp = element.getAttributeNode('timestamp') 216 timestamp.value = re.sub( [all …]
|
H A D | gtest_xml_output_unittest.py | 16 # * Neither the name of Google Inc. nor the names of its 44 GTEST_FILTER_FLAG = '--gtest_filter' 45 GTEST_LIST_TESTS_FLAG = '--gtest_list_tests' 46 GTEST_OUTPUT_FLAG = '--gtest_output' 51 NO_STACKTRACE_SUPPORT_FLAG = '--no_stacktrace_support' 69 EXPECTED_NON_EMPTY_XML = """<?xml version="1.0" encoding="UTF-8"?> 70 <testsuites tests="26" failures="5" disabled="2" errors="0" time="*" timestamp="*" name="AllTests" … 71 …"SuccessfulTest" tests="1" failures="0" disabled="0" skipped="0" errors="0" time="*" timestamp="*"> 72 …output_unittest_.cc" line="53" status="run" result="completed" time="*" timestamp="*" classname="S… 74 …ame="FailedTest" tests="1" failures="1" disabled="0" skipped="0" errors="0" time="*" timestamp="*"> [all …]
|
/freebsd/contrib/opencsd/decoder/include/opencsd/stm/ |
H A D | trc_pkt_types_stm.h | 19 * 3. Neither the name of the copyright holder nor the names of its contributors 63 …STM_PKT_GERR, /**< Global error packet - protocol error but unknown which master had error */ 64 …STM_PKT_MERR, /**< Master error packet - current master detected an error (e.g. dropped trac… 80 STM_PKT_RESERVED, /**< Reserved packet header / not supported by CS-STM */ 84 /** STM timestamp encoding type. 86 CS-STM supports Natural binary and grey encodings. 98 data persisting between packets (master, channel, last timestamp). 107 …uint64_t timestamp; /**< latest timestamp value -> as binary - packet processor does g… member 108 uint8_t pkt_ts_bits; /**< timestamp bits updated this packet */ 109 …uint8_t pkt_has_ts; /**< current packet has associated timestamp (ts bits can be 0 if … [all …]
|
/freebsd/sbin/ipf/ipsend/ |
H A D | ipsend.5 | 3 ipsend \- IP packet description language 5 The \fBipsend\fP program expects, with the \fB-L\fP option, input to be a 38 "tr" | "sec" | "lsrr" | "e-sec" | "cipso" | "satid" | 41 ipv4secclass := "unclass" | "confid" | "reserv-1" | "reserv-2" | 42 "reserv-3" | "reserv-4" | "secret" | "topsecret" . 67 unreachtype ::= "net-unr" | "host-unr" | "proto-unr" | "port-unr" | 68 "needfrag" | "srcfail" | "net-unk" | "host-unk" | "isolate" | 69 "net-prohib" | "host-prohib" | "net-tos" | "host-tos" | 70 "filter-prohib" | "host-preced" | "cutoff-preced" . 71 redirtype ::= "net-redir" | "host-redir" | "tos-net-redir" | [all …]
|
/freebsd/sbin/dmesg/ |
H A D | dmesg.8 | 12 .\" 3. Neither the name of the University nor the names of its contributors 53 .Bl -tag -width indent 75 .Bl -tag -width indent 78 If set to 1, then a 1-second granularity timestamp will be added to most lines 80 If set to 2, then a microsecond granularity timestamp will be added. 85 Some multi-line messages will have only the first line tagged with a timestamp. 88 .Bl -tag -width ".Pa /var/run/dmesg.boot" -compact
|