/freebsd-src/crypto/openssl/test/recipes/ |
H A D | 70-test_tls13messages.t | 37 [TLSProxy::Message::MT_CLIENT_HELLO, 39 [TLSProxy::Message::MT_SERVER_HELLO, 41 [TLSProxy::Message::MT_CLIENT_HELLO, 43 [TLSProxy::Message::MT_SERVER_HELLO, 45 [TLSProxy::Message::MT_ENCRYPTED_EXTENSIONS, 47 [TLSProxy::Message::MT_CERTIFICATE_REQUEST, 49 [TLSProxy::Message::MT_CERTIFICATE, 51 [TLSProxy::Message::MT_CERTIFICATE_VERIFY, 53 [TLSProxy::Message::MT_FINISHED, 55 [TLSProxy::Message::MT_CERTIFICATE, [all …]
|
H A D | 70-test_tls13kexmodes.t | 38 [TLSProxy::Message::MT_CLIENT_HELLO, 40 [TLSProxy::Message::MT_SERVER_HELLO, 42 [TLSProxy::Message::MT_CLIENT_HELLO, 44 [TLSProxy::Message::MT_SERVER_HELLO, 46 [TLSProxy::Message::MT_ENCRYPTED_EXTENSIONS, 48 [TLSProxy::Message::MT_CERTIFICATE_REQUEST, 50 [TLSProxy::Message::MT_CERTIFICATE, 52 [TLSProxy::Message::MT_CERTIFICATE_VERIFY, 54 [TLSProxy::Message::MT_FINISHED, 56 [TLSProxy::Message::MT_CERTIFICATE, [all …]
|
H A D | 70-test_sslmessages.t | 42 [TLSProxy::Message::MT_CLIENT_HELLO, 44 [TLSProxy::Message::MT_SERVER_HELLO, 46 [TLSProxy::Message::MT_CERTIFICATE, 50 [TLSProxy::Message::MT_SERVER_KEY_EXCHANGE, 52 [TLSProxy::Message::MT_CERTIFICATE_STATUS, 55 [TLSProxy::Message::MT_CERTIFICATE_REQUEST, 57 [TLSProxy::Message::MT_SERVER_HELLO_DONE, 60 [TLSProxy::Message::MT_CERTIFICATE, 62 [TLSProxy::Message::MT_CLIENT_KEY_EXCHANGE, 65 [TLSProxy::Message::MT_CERTIFICATE_VERIFY, [all …]
|
H A D | 70-test_sslsessiontick.t | 50 # NewSessionTicket message seen; Full handshake 59 # NewSessionTicket message not seen; Full handshake 69 # NewSessionTicket message not seen; Full handshake 77 # NewSessionTicket message not seen; Abbreviated handshake 91 # NewSessionTicket message seen; Abbreviated handshake 106 # NewSessionTicket message seen; Full handshake. 125 # NewSessionTicket message seen; Abbreviated handshake. 132 # NewSessionTicket message not seen; Abbreviated handshake. 144 ok(TLSProxy::Message->fail, "Server sends ticket extension but no ticket test"); 154 ok(TLSProxy::Message->fail, "No server ticket extension but ticket sent test"); [all …]
|
/freebsd-src/contrib/ntp/sntp/unity/ |
H A D | unity.h | 57 …fine TEST_FAIL_MESSAGE(message) UN… argument 59 …ne TEST_IGNORE_MESSAGE(message) UNIT… argument 172 …MESSAGE(condition, message) UNITY_TEST_ASSERT( … argument 173 …E_MESSAGE(condition, message) UNITY_TEST_ASSERT( … argument 174 …SS_MESSAGE(condition, message) UNITY_TEST_ASSERT( … argument 175 …SE_MESSAGE(condition, message) UNITY_TEST_ASSERT( … argument 176 …LL_MESSAGE(pointer, message) UNITY_TEST_ASSERT_NUL… argument 177 …NULL_MESSAGE(pointer, message) UNITY_TEST_ASSERT_NOT_N… argument 180 …GE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_INT((expec… argument 181 …GE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_INT8((expec… argument [all …]
|
H A D | unity_internals.h | 480 void UnityFail(const char* message, const UNITY_LINE_TYPE line) UNITY_NORETURN_ATTRIBUTE; 482 void UnityIgnore(const char* message, const UNITY_LINE_TYPE line); 582 #define UNITY_TEST_FAIL(line, message) UnityFail( (message), (UNITY_LINE_TYPE)line); argument 583 #define UNITY_TEST_IGNORE(line, message) UnityIgnore( (message), (UNITY_LINE_TYPE)line); argument 589 …dition, line, message) if (condition) {} else {UNITY_… argument 590 …(pointer, line, message) UNITY_TEST_ASSERT(((pointer) ==… argument 591 …LL(pointer, line, message) UNITY_TEST_ASSERT(((pointer) != N… argument 593 …pected, actual, line, message) UnityAssertEqualNumber((_U_SINT)(expect… argument 594 …, actual, line, message) UnityAssertEqualNumber((_U_SINT)(_US8 )(expect… argument 595 …, actual, line, message) UnityAssertEqualNumber((_U_SINT)(_US16)(expecte… argument [all …]
|
/freebsd-src/sys/contrib/openzfs/contrib/pyzfs/libzfs_core/ |
H A D | exceptions.py | 40 message = None variable in ZFSError 46 self.errno, self.message, self.name) 48 return "[Errno %d] %s" % (self.errno, self.message) 52 self.__class__.__name__, self.errno, self.message) 57 def __init__(self, errno, name, message): argument 59 self.message = message 64 message = "Failed to initialize libzfs_core" variable in ZFSInitializationFailed 86 self.__class__.__name__, self.errno, self.message, self.errors, 98 message = "Dataset not found" variable in DatasetNotFound 112 message = "Dataset already exists" variable in DatasetExists [all …]
|
/freebsd-src/share/doc/smm/12.timed/ |
H A D | timed.ms | 131 retransmission when message losses occur. 132 When a message that requires acknowledgment is not acknowledged after 134 the time daemon that has sent the message will assume that the 138 a message type requires a reliable transport mechanism. 140 The message format in TSP is the same for all message types; 142 The next section describes the message format. 144 in detail the different message types, their use and the contents 145 of each field. NOTE: The message format is likely to change in 149 Message Format 153 The structure of a TSP message is the following: [all …]
|
/freebsd-src/crypto/openssl/util/perl/ |
H A D | checkhandshake.pm | 79 $numsh++ if ($lastmt != TLSProxy::Message::MT_SERVER_HELLO 80 && $handmessages[$loop][0] == TLSProxy::Message::MT_SERVER_HELLO); 87 my $message = undef; 103 $message = ${$proxy->message_list}[$nextmess]; 106 $message = undef; 110 next if (!defined $message); 112 $chnum++ if $message->mt() == TLSProxy::Message::MT_CLIENT_HELLO; 113 $shnum++ if $message->mt() == TLSProxy::Message::MT_SERVER_HELLO; 115 next if ($message->mt() != TLSProxy::Message::MT_CLIENT_HELLO 116 && $message->mt() != TLSProxy::Message::MT_SERVER_HELLO [all …]
|
/freebsd-src/contrib/wpa/wpa_supplicant/dbus/ |
H A D | dbus_new_handlers.h | 55 DBusMessage * wpas_dbus_handler_create_interface(DBusMessage *message, 58 DBusMessage * wpas_dbus_handler_remove_interface(DBusMessage *message, 61 DBusMessage * wpas_dbus_handler_get_interface(DBusMessage *message, 64 DBusMessage * wpas_dbus_handler_expect_disconnect(DBusMessage *message, 79 DBusMessage * wpas_dbus_handler_scan(DBusMessage *message, 82 DBusMessage * wpas_dbus_handler_abort_scan(DBusMessage *message, 85 DBusMessage * wpas_dbus_handler_signal_poll(DBusMessage *message, 88 DBusMessage * wpas_dbus_handler_disconnect(DBusMessage *message, 96 DBusMessage * wpas_dbus_handler_add_network(DBusMessage *message, 99 DBusMessage * wpas_dbus_handler_reassociate(DBusMessage *message, [all...] |
H A D | dbus_new_handlers_p2p.h | 22 DBusMessage *message, struct wpa_supplicant *wpa_s); 25 DBusMessage *message, struct wpa_supplicant *wpa_s); 28 DBusMessage *message, struct wpa_supplicant *wpa_s); 31 DBusMessage *message, struct wpa_supplicant *wpa_s); 34 DBusMessage *message, struct wpa_supplicant *wpa_s); 37 DBusMessage *message, struct wpa_supplicant *wpa_s); 40 DBusMessage *message, struct wpa_supplicant *wpa_s); 43 DBusMessage *message, struct wpa_supplicant *wpa_s); 46 DBusMessage *message, 49 DBusMessage * wpas_dbus_handler_p2p_cancel(DBusMessage *message, [all …]
|
H A D | dbus_new_helpers.c | 72 * @message: Message with GetAll call 75 * Returns: Message with dict of variants as argument with properties values 79 * specified as argument. Returned message contains one dict argument 82 static DBusMessage * get_all_properties(DBusMessage *message, char *interface, in get_all_properties() 89 reply = dbus_message_new_method_return(message); in get_all_properties() 91 return wpas_dbus_error_no_memory(message); in get_all_properties() 96 return wpas_dbus_error_no_memory(message); in get_all_properties() 105 message, &error, DBUS_ERROR_INVALID_ARGS, in get_all_properties() 113 return wpas_dbus_error_no_memory(message); in get_all_properties() 81 get_all_properties(DBusMessage * message,char * interface,struct wpa_dbus_object_desc * obj_dsc) get_all_properties() argument 119 is_signature_correct(DBusMessage * message,const struct wpa_dbus_method_desc * method_dsc) is_signature_correct() argument 147 properties_get_all(DBusMessage * message,char * interface,struct wpa_dbus_object_desc * obj_dsc) properties_get_all() argument 158 properties_get(DBusMessage * message,const struct wpa_dbus_property_desc * dsc,void * user_data) properties_get() argument 192 properties_set(DBusMessage * message,const struct wpa_dbus_property_desc * dsc,void * user_data) properties_set() argument 232 properties_get_or_set(DBusMessage * message,DBusMessageIter * iter,char * interface,struct wpa_dbus_object_desc * obj_dsc) properties_get_or_set() argument 282 properties_handler(DBusMessage * message,struct wpa_dbus_object_desc * obj_dsc) properties_handler() argument 321 msg_method_handler(DBusMessage * message,struct wpa_dbus_object_desc * obj_dsc) msg_method_handler() argument 375 message_handler(DBusConnection * connection,DBusMessage * message,void * user_data) message_handler() argument 1011 wpas_dbus_reply_new_from_error(DBusMessage * message,DBusError * error,const char * fallback_name,const char * fallback_string) wpas_dbus_reply_new_from_error() argument [all...] |
/freebsd-src/usr.bin/mail/ |
H A D | mail.1 | 110 Inhibit the initial display of message headers 143 Record the message in a file named after the first 174 new message is to be sent, or whether an existing mailbox is to 177 To send a message to one or more people, 182 your message, followed 196 prints out a one line header of each message found. 197 The current message is initially the first message (numbered 1) 211 After examining a message you can 214 the message or 220 program to forget about the message. [all …]
|
/freebsd-src/contrib/libxo/tests/core/saved/ |
H A D | test_02.X.out | 1 …</name><flags>0x8843</flags><name>em0</name><flags>0x8843</flags><what>braces</what><message>abcdef 2 </message><message>abcdef: Bad file descriptor 3 </message><message>improper use of profanity; ten yard penalty; first down 4 …/message><length>abcdef</length><fd>-1</fd><error>Bad file descriptor</error><test>good</test><fd>… 5 …message><lines>20</lines><words>30</words><characters>40</characters><bytes>0</bytes><bytes>1</byt… 6 </message><error><message>Shut 'er down, Clancey! She's a-pumpin' mud! <>!,"!<> 7 </message></error><error><message>err message (1)</message></error><error><message>err message (2) 8 </message></error><error><message>err message (1) 9 </message></error><error><message>err message (2) 10 </message></error></data></top>
|
H A D | test_02.XP.out | 8 <message>abcdef 9 </message> 10 <message>abcdef: Bad file descriptor 11 </message> 12 <message>improper use of profanity; ten yard penalty; first down 13 </message> 21 <message>improper use of profanity; ten yard penalty; first down 22 </message> 72 <message>this is an error</message> 75 <message>two more errors</message> [all …]
|
/freebsd-src/share/doc/usd/07.mail/ |
H A D | mail5.nr | 33 .sh 2 "Message lists" 45 command, which prints the message headers associated with the 46 message list passed to it. 50 message list features described below. 53 .i "message list" 54 consists of a list of message numbers, ranges, and names, 55 separated by spaces or tabs. Message numbers may be either 63 relevant message, respectively. 73 A range of messages consists of two message numbers (of the form 79 and to print all the messages from the current message to the last [all …]
|
/freebsd-src/lib/libsys/ |
H A D | mq_open.2 | 43 .Nd "open a message queue (REALTIME)" 53 system call establishes the connection between a process and a message queue 54 with a message queue descriptor. 55 It creates an open message queue 56 description that refers to the message queue, and a message queue descriptor 57 that refers to that open message queue description. 58 The message queue 59 descriptor is used by other functions to refer to that message queue. 62 argument points to a string naming a message queue. 73 refers to the same message queue object, as long as that name has not been [all …]
|
H A D | mq_send.2 | 43 .Nd "send a message to message queue (REALTIME)" 66 system call adds the message pointed to by the argument 68 to the message queue specified by 72 argument specifies the length of the message, in bytes, pointed to by 78 attribute of the message queue, or 82 If the specified message queue is not full, 84 will behave as if the message is inserted into the message queue at 88 A message with a larger numeric value of 92 A message will be inserted after other messages in the queue, if any, 100 If the specified message queue is full and [all …]
|
H A D | mq_receive.2 | 43 .Nd "receive a message from message queue (REALTIME)" 66 system call receives oldest of the highest priority message(s) from the 67 message queue specified by 73 attribute of the message queue, the system call will fail and return an 75 Otherwise, the selected message will be removed from the queue 84 the priority of the selected message will be stored in the 87 If the specified message queue is empty and 89 is not set in the message queue description associated with 92 will block until a message is enqueued on the message queue or until 96 a message when a message arrives at an empty queue and the Priority [all …]
|
H A D | msgrcv.2 | 38 .Nd receive a message from a message queue 50 function receives a message from the message queue specified in 56 long mtype; /* message type */ 57 char mtext[1]; /* body of message */ 75 The first message of type 83 The first message on the queue will be received. 89 The first message of the lowest message type that is 98 specifies the maximum length of the requested message. 100 message has a length greater than 108 If no matching message is present on the message queue specified by [all …]
|
/freebsd-src/contrib/libfido2/ |
H A D | CMakeLists.txt | 57 message(FATAL_ERROR "Nothing to build (BUILD_*_LIBS=OFF)") 175 message(FATAL_ERROR "please define " 181 message(FATAL_ERROR "please define {CBOR,CRYPTO,ZLIB}_BIN_DIRS " 226 message(FATAL_ERROR "could not find libcbor") 229 message(FATAL_ERROR "could not find libcrypto") 232 message(FATAL_ERROR "could not find zlib") 406 message(STATUS "BASE_LIBRARIES: ${BASE_LIBRARIES}") 407 message(STATUS "BUILD_EXAMPLES: ${BUILD_EXAMPLES}") 408 message(STATUS "BUILD_MANPAGES: ${BUILD_MANPAGES}") 409 message(STATUS "BUILD_SHARED_LIBS: ${BUILD_SHARED_LIBS}") [all …]
|
/freebsd-src/tools/test/stress2/misc/ |
H A D | machipc.sh | 101 struct message_recv message = {}; 104 message.head.msgh_local_port = port; 105 message.head.msgh_size = sizeof(message); 108 /* Receive a message */ 109 err = mach_msg(&message.head, /* The header */ 112 sizeof(message), /* Max receive size */ 118 if (message.inline_integer != i) 119 errx(1, "FAIL message.inline_integer = %d, i = %d", 120 message.inline_integer, i); 131 struct integer_message message; [all …]
|
/freebsd-src/contrib/kyua/utils/config/ |
H A D | exceptions.cpp | 37 /// Constructs a new error with a plain-text message. 39 /// \param message The plain-text error message. 40 config::error::error(const std::string& message) : in error() argument 41 std::runtime_error(message) in error() 52 /// Constructs a new error with a plain-text message. 55 /// \param format The plain-text error message. 70 /// Constructs a new error with a plain-text message. 72 /// \param message The plain-text error message. 73 config::invalid_key_error::invalid_key_error(const std::string& message) : in invalid_key_error() argument 74 error(message) in invalid_key_error() [all …]
|
/freebsd-src/usr.bin/gencat/ |
H A D | gencat.1 | 42 into a formatted message catalog file 51 If set and message numbers collide, the new message text defined in 53 will replace the old message text currently contained in 56 The format of a message text source file is defined below. 58 the fields of a message text source line are separated by a single space 78 be located in the default message set NL_SETD. 82 from a message catalog. 92 .It Ar m message-text 93 A message line consists of a message identifier 97 .Ar message-text [all …]
|
/freebsd-src/usr.sbin/bluetooth/sdpd/ |
H A D | log.c | 50 log_emerg(char const *message, ...) in log_emerg() argument 54 va_start(ap, message); in log_emerg() 55 vsyslog(LOG_EMERG, message, ap); in log_emerg() 60 log_alert(char const *message, ...) in log_alert() argument 64 va_start(ap, message); in log_alert() 65 vsyslog(LOG_ALERT, message, ap); in log_alert() 70 log_crit(char const *message, ...) in log_crit() argument 74 va_start(ap, message); in log_crit() 75 vsyslog(LOG_CRIT, message, ap); in log_crit() 80 log_err(char const *message, ...) in log_err() argument [all …]
|