Searched refs:msg (Results 1 - 25 of 1436) sorted by relevance

1234567891011>>

/freebsd-10.3-release/contrib/gcclibs/libiberty/
H A Dmsdos.c1 char msg[] = "No vfork available - aborting\n"; variable
4 write(1, msg, sizeof(msg));
/freebsd-10.3-release/contrib/netbsd-tests/lib/csu/
H A Dh_initfini1.cxx6 static const char msg[] = "main executed\n"; local
7 write(STDOUT_FILENO, msg, sizeof(msg) - 1);
H A Dh_initfini_common.cxx13 static const char msg[] = "constructor executed\n"; local
14 write(STDOUT_FILENO, msg, sizeof(msg) - 1);
25 static const char msg[] = "destructor executed\n"; local
26 write(STDOUT_FILENO, msg, sizeof(msg) - 1);
/freebsd-10.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/json/
H A Dusdt.d21 probe log__trace(char *msg);
22 probe log__debug(char *msg);
23 probe log__info(char *msg);
24 probe log__warn(char *msg);
25 probe log__error(char *msg);
26 probe log__fatal(char *msg);
/freebsd-10.3-release/sys/contrib/ngatm/netnatm/sig/
H A Dgenmsgcpyh.awk53 print "copy_msg_" msg "(struct uni_" msg " *src, struct uni_" msg " *dst);"
/freebsd-10.3-release/sys/contrib/ngatm/netnatm/misc/
H A Dunimsg_common.c39 uni_msg_prepend(struct uni_msg *msg, size_t len) argument
43 if (uni_msg_leading(msg) >= len) {
44 msg->b_rptr -= len;
47 need = len - uni_msg_leading(msg);
48 if (uni_msg_ensure(msg, need))
50 memcpy(msg->b_rptr + need, msg->b_rptr, uni_msg_len(msg));
51 msg->b_rptr += need - len;
52 msg
[all...]
/freebsd-10.3-release/contrib/ntp/lib/isc/win32/
H A Dstrerror.c61 char *msg; local
72 msg = NTstrerror(num, &freebuf);
73 if (msg != NULL)
74 snprintf(buf, size, "%s", msg);
77 if(freebuf && msg != NULL) {
78 LocalFree(msg);
147 char *msg; local
149 msg = NTstrerror(errval, &bfreebuf);
150 fprintf(stderr, "%s: %s\n", errmsg, msg);
152 LocalFree(msg);
164 char *msg; local
378 char *msg; local
[all...]
/freebsd-10.3-release/lib/liby/
H A Dyyerror.c40 yyerror(msg)
41 char *msg;
43 (void)fprintf(stderr, "%s\n", msg);
/freebsd-10.3-release/contrib/ntp/sntp/libevent/include/event2/
H A Drpc_compat.h48 #define EVTAG_ASSIGN(msg, member, args...) \
49 (*(msg)->base->member##_assign)(msg, ## args)
50 #define EVTAG_GET(msg, member, args...) \
51 (*(msg)->base->member##_get)(msg, ## args)
52 #define EVTAG_ADD(msg, member, args...) \
53 (*(msg)->base->member##_add)(msg, ## args)
55 #define EVTAG_LEN(msg, membe
[all...]
/freebsd-10.3-release/release/picobsd/tinyware/msg/
H A DMakefile1 # $FreeBSD: releng/10.3/release/picobsd/tinyware/msg/Makefile 276486 2014-12-31 23:25:37Z ngie $
3 PROG=msg
4 SRCS= msg.c
/freebsd-10.3-release/sys/xen/xenstore/
H A Dxenstore_internal.h39 int xs_dev_request_and_reply(struct xsd_sockmsg *msg, void **result);
/freebsd-10.3-release/contrib/wpa/src/eap_common/
H A Deap_wsc_common.c19 struct wpabuf *msg; local
21 msg = eap_msg_alloc(EAP_VENDOR_WFA, EAP_VENDOR_TYPE_WSC, 2, code, id);
22 if (msg == NULL) {
29 wpabuf_put_u8(msg, WSC_FRAG_ACK); /* Op-Code */
30 wpabuf_put_u8(msg, 0); /* Flags */
32 return msg;
H A Deap_common.h14 int eap_hdr_len_valid(const struct wpabuf *msg, size_t min_payload);
16 const struct wpabuf *msg, size_t *plen);
19 void eap_update_len(struct wpabuf *msg);
20 u8 eap_get_id(const struct wpabuf *msg);
21 EapType eap_get_type(const struct wpabuf *msg);
/freebsd-10.3-release/sys/gnu/fs/reiserfs/
H A Dreiserfs_hashes.c58 keyed_hash(const signed char *msg, int len) argument
74 a = (uint32_t)msg[ 0] |
75 (uint32_t)msg[ 1] << 8 |
76 (uint32_t)msg[ 2] << 16 |
77 (uint32_t)msg[ 3] << 24;
78 b = (uint32_t)msg[ 4] |
79 (uint32_t)msg[ 5] << 8 |
80 (uint32_t)msg[ 6] << 16 |
81 (uint32_t)msg[ 7] << 24;
82 c = (uint32_t)msg[
161 yura_hash(const signed char *msg, int len) argument
201 r5_hash(const signed char *msg, int len) argument
[all...]
/freebsd-10.3-release/crypto/heimdal/lib/hx509/
H A Derror.c45 char *msg; member in struct:hx509_error_data
49 free_error_string(hx509_error msg) argument
51 while(msg) {
52 hx509_error m2 = msg->next;
53 free(msg->msg);
54 free(msg);
55 msg = m2;
94 hx509_error msg; local
99 msg
161 hx509_error msg = context->error; local
216 const char *msg; local
[all...]
/freebsd-10.3-release/sys/contrib/ngatm/netnatm/
H A Dgenfiles10 awk -f ${SRC}msg/parseie.awk -f ${SRC}msg/geniec.awk ${SRC}msg/ie.def >${DST}msg/uni_ietab.h
11 awk -f ${SRC}msg/parseie.awk -f ${SRC}msg/genieh.awk ${SRC}msg/ie.def >${DST}msg/uni_ie.h
12 awk -f ${SRC}msg/parsemsg.awk -f ${SRC}msg/genmsg
[all...]
/freebsd-10.3-release/contrib/netbsd-tests/lib/csu/dso/
H A Dh_initfini3_dso.cxx13 static const char msg[] = "constructor2 executed\n"; local
14 write(STDOUT_FILENO, msg, sizeof(msg) - 1);
25 static const char msg[] = "destructor2 executed\n"; local
26 write(STDOUT_FILENO, msg, sizeof(msg) - 1);
/freebsd-10.3-release/crypto/heimdal/lib/krb5/
H A Dmk_error.c48 KRB_ERROR msg; local
56 memset(&msg, 0, sizeof(msg));
57 msg.pvno = 5;
58 msg.msg_type = krb_error;
59 msg.stime = sec;
60 msg.susec = usec;
61 msg.ctime = client_time;
62 msg.cusec = client_usec;
69 msg
[all...]
/freebsd-10.3-release/tools/regression/atm/
H A DFuncs.sh9 msg() { function
14 msg "Usage: RunTest.sh [-hq] [-b <localbase>]"
15 msg "Options:"
16 msg " -h show this info"
17 msg " -b <localbase> localbase if not /usr/local"
18 msg " -q be quite"
19 msg " -u run user space test, not kernel"
/freebsd-10.3-release/contrib/sendmail/libsm/
H A Dstrexit.c32 char *msg; local
35 msg = sm_sysexitmsg(ex);
36 if (msg == NULL)
40 msg = buf;
42 return msg;
60 char *msg; local
62 msg = sm_sysexmsg(ex);
63 if (msg != NULL)
64 return &msg[11];
66 return msg;
[all...]
/freebsd-10.3-release/contrib/sendmail/libsmutil/
H A Derr.c20 message(const char *msg, ...) argument
22 message(msg, va_alist)
23 const char *msg;
30 m = msg;
35 SM_VA_START(ap, msg);
44 syserr(const char *msg, ...) argument
46 syserr(msg, va_alist)
47 const char *msg;
54 m = msg;
59 SM_VA_START(ap, msg);
[all...]
/freebsd-10.3-release/tools/regression/capsicum/syscalls/
H A Dmisc.c59 struct msghdr msg; local
65 bzero(&msg, sizeof(msg));
68 msg.msg_iov = NULL;
69 msg.msg_iovlen = 0;
70 msg.msg_control = ctrl;
71 msg.msg_controllen = sizeof(ctrl);
73 cmsg = CMSG_FIRSTHDR(&msg);
79 if (sendmsg(sock, &msg, 0) == -1)
89 struct msghdr msg; local
[all...]
/freebsd-10.3-release/contrib/wpa/src/wps/
H A Dwps_attr_build.c21 int wps_build_public_key(struct wps_data *wps, struct wpabuf *msg) argument
57 wpabuf_put_be16(msg, ATTR_PUBLIC_KEY);
58 wpabuf_put_be16(msg, wpabuf_len(pubkey));
59 wpabuf_put_buf(msg, pubkey);
73 int wps_build_req_type(struct wpabuf *msg, enum wps_request_type type) argument
76 wpabuf_put_be16(msg, ATTR_REQUEST_TYPE);
77 wpabuf_put_be16(msg, 1);
78 wpabuf_put_u8(msg, type);
83 int wps_build_resp_type(struct wpabuf *msg, enum wps_response_type type) argument
86 wpabuf_put_be16(msg, ATTR_RESPONSE_TYP
93 wps_build_config_methods(struct wpabuf *msg, u16 methods) argument
103 wps_build_uuid_e(struct wpabuf *msg, const u8 *uuid) argument
113 wps_build_dev_password_id(struct wpabuf *msg, u16 id) argument
123 wps_build_config_error(struct wpabuf *msg, u16 err) argument
133 wps_build_authenticator(struct wps_data *wps, struct wpabuf *msg) argument
163 wps_build_version(struct wpabuf *msg) argument
178 wps_build_wfa_ext(struct wpabuf *msg, int req_to_enroll, const u8 *auth_macs, size_t auth_macs_count) argument
228 wps_build_msg_type(struct wpabuf *msg, enum wps_msg_type msg_type) argument
238 wps_build_enrollee_nonce(struct wps_data *wps, struct wpabuf *msg) argument
248 wps_build_registrar_nonce(struct wps_data *wps, struct wpabuf *msg) argument
258 wps_build_auth_type_flags(struct wps_data *wps, struct wpabuf *msg) argument
272 wps_build_encr_type_flags(struct wps_data *wps, struct wpabuf *msg) argument
286 wps_build_conn_type_flags(struct wps_data *wps, struct wpabuf *msg) argument
296 wps_build_assoc_state(struct wps_data *wps, struct wpabuf *msg) argument
306 wps_build_key_wrap_auth(struct wps_data *wps, struct wpabuf *msg) argument
321 wps_build_encr_settings(struct wps_data *wps, struct wpabuf *msg, struct wpabuf *plain) argument
351 wps_build_oob_dev_pw(struct wpabuf *msg, u16 dev_pw_id, const struct wpabuf *pubkey, const u8 *dev_pw, size_t dev_pw_len) argument
[all...]
/freebsd-10.3-release/lib/libutil/
H A D_secure_path.c50 const char *msg = NULL; local
56 msg = "%s: cannot stat %s: %m";
59 msg = "%s: %s is not a regular file";
61 msg = "%s: %s is world writable";
64 msg = "%s: %s is not owned by root";
66 msg = "%s: %s is not owned by uid %d";
68 msg = "%s: %s is group writeable by non-authorised groups";
71 if (msg != NULL)
72 syslog(LOG_ERR, msg, "_secure_path", path, uid);
/freebsd-10.3-release/contrib/wpa/src/p2p/
H A Dp2p_parse.c19 struct p2p_message *msg)
32 msg->capability = data;
43 msg->device_id = data;
45 MAC2STR(msg->device_id));
53 msg->go_intent = data;
63 msg->status = data;
77 msg->listen_channel = data;
94 msg->operating_channel = data;
106 msg->channel_list = data;
107 msg
18 p2p_parse_attribute(u8 id, const u8 *data, u16 len, struct p2p_message *msg) argument
290 p2p_parse_p2p_ie(const struct wpabuf *buf, struct p2p_message *msg) argument
322 p2p_parse_wps_ie(const struct wpabuf *buf, struct p2p_message *msg) argument
387 p2p_parse_ies(const u8 *data, size_t len, struct p2p_message *msg) argument
438 p2p_parse(const u8 *data, size_t len, struct p2p_message *msg) argument
457 p2p_parse_free(struct p2p_message *msg) argument
618 struct p2p_message msg; local
681 struct p2p_message msg; local
696 struct p2p_message msg; local
711 struct p2p_message msg; local
[all...]

Completed in 156 milliseconds

1234567891011>>