Searched defs:msg (Results 1 - 25 of 42) sorted by relevance

12

/system/media/mca/filterpacks/videosink/java/
H A DMediaRecorderStopException.java28 public MediaRecorderStopException(String msg) { argument
29 super(msg);
36 public MediaRecorderStopException(String msg, Throwable t) { argument
37 super(msg, t);
/system/core/libnetutils/
H A Ddhcpmsg.c24 static void *init_dhcp_msg(dhcp_msg *msg, int type, void *hwaddr, uint32_t xid) argument
28 memset(msg, 0, sizeof(dhcp_msg));
30 msg->op = OP_BOOTREQUEST;
31 msg->htype = HTYPE_ETHER;
32 msg->hlen = 6;
33 msg->hops = 0;
35 msg->flags = htons(FLAGS_BROADCAST);
37 msg->xid = xid;
39 memcpy(msg->chaddr, hwaddr, 6);
41 x = msg
55 init_dhcp_discover_msg(dhcp_msg *msg, void *hwaddr, uint32_t xid) argument
73 init_dhcp_request_msg(dhcp_msg *msg, void *hwaddr, uint32_t xid, uint32_t ipaddr, uint32_t serveraddr) argument
[all...]
H A Dpacket.c89 int send_packet(int s, int if_index, struct dhcp_msg *msg, int size, argument
130 udpsum = checksum(msg, size, udpsum);
137 iov[2].iov_base = (char *)msg;
156 int receive_packet(int s, struct dhcp_msg *msg) argument
237 memcpy(msg, &packet.dhcp, dhcp_size);
H A Ddhcpclient.c166 int decode_dhcp_msg(dhcp_msg *msg, int len, dhcp_info *info) argument
177 if (msg->options[0] != OPT_COOKIE1) return -1;
178 if (msg->options[1] != OPT_COOKIE2) return -1;
179 if (msg->options[2] != OPT_COOKIE3) return -1;
180 if (msg->options[3] != OPT_COOKIE4) return -1;
182 x = msg->options + 4;
228 info->ipaddr = msg->yiaddr;
245 void dump_dhcp_msg(dhcp_msg *msg, int len) argument
261 if (msg->op == OP_BOOTREQUEST)
263 else if (msg
338 send_message(int sock, int if_index, dhcp_msg *msg, int size) argument
347 is_valid_reply(dhcp_msg *msg, dhcp_msg *reply, int sz) argument
388 dhcp_msg *msg; local
[all...]
/system/core/libsysutils/src/
H A DFrameworkClient.cpp16 int FrameworkClient::sendMsg(const char *msg) { argument
24 ret = TEMP_FAILURE_RETRY(write(mSocket, msg, strlen(msg) +1));
26 SLOGW("Unable to send msg '%s' (%s)", msg, strerror(errno));
32 int FrameworkClient::sendMsg(const char *msg, const char *data) { argument
33 size_t bufflen = strlen(msg) + strlen(data) + 1;
39 snprintf(buffer, bufflen, "%s%s", msg, data);
H A DSocketClient.cpp43 int SocketClient::sendMsg(int code, const char *msg, bool addErrno) { argument
58 len = snprintf(tmp, sizeof tmp, fmt, code, msg, arg);
61 snprintf(buf, len+1, fmt, code, msg, arg);
66 int SocketClient::sendMsg(const char *msg) { argument
73 if (sendData(msg, strlen(msg) + 1) != 0) {
74 SLOGW("Unable to send msg '%s'", msg);
H A DSocketListener.cpp236 void SocketListener::sendBroadcast(int code, const char *msg, bool addErrno) { argument
241 if ((*i)->sendMsg(code, msg, addErrno)) {
248 void SocketListener::sendBroadcast(const char *msg) { argument
253 if ((*i)->sendMsg(msg)) {
/system/extras/fatblock/
H A Dutils.c33 void warn(char *msg) argument
35 fprintf(stderr, "%s", msg);
38 void die(char *msg) argument
40 fprintf(stderr, "%s", msg);
/system/core/include/cutils/
H A Dlogger.h22 char msg[0]; /* the entry's payload */ member in struct:logger_entry
/system/core/logwrapper/
H A Dlogwrapper.c29 void fatal(const char *msg) { argument
30 fprintf(stderr, "%s", msg);
31 LOG(LOG_ERROR, "logwrapper", "%s", msg);
/system/netd/
H A DNetlinkHandler.cpp80 char msg[255]; local
81 snprintf(msg, sizeof(msg), "Iface added %s", name);
84 msg, false);
88 char msg[255]; local
89 snprintf(msg, sizeof(msg), "Iface removed %s", name);
92 msg, false);
96 char msg[255]; local
97 snprintf(msg, sizeo
105 char msg[255]; local
114 char msg[255]; local
[all...]
/system/core/adb/
H A Dfile_sync_service.c58 syncmsg msg; local
61 msg.stat.id = ID_STAT;
64 msg.stat.mode = 0;
65 msg.stat.size = 0;
66 msg.stat.time = 0;
68 msg.stat.mode = htoll(st.st_mode);
69 msg.stat.size = htoll(st.st_size);
70 msg.stat.time = htoll(st.st_mtime);
73 return writex(s, &msg.stat, sizeof(msg
81 syncmsg msg; local
131 syncmsg msg; local
153 syncmsg msg; local
229 syncmsg msg; local
321 syncmsg msg; local
361 syncmsg msg; local
[all...]
H A Djdwp_service.c320 struct msghdr msg; local
328 msg.msg_name = NULL;
329 msg.msg_namelen = 0;
330 msg.msg_iov = &iov;
331 msg.msg_iovlen = 1;
332 msg.msg_flags = 0;
333 msg.msg_control = buffer;
334 msg.msg_controllen = sizeof(buffer);
336 cmsg = CMSG_FIRSTHDR(&msg);
337 cmsg->cmsg_len = msg
[all...]
/system/core/liblog/
H A Dlogd_write.c133 int __android_log_write(int prio, const char *tag, const char *msg) argument
156 vec[2].iov_base = (void *) msg;
157 vec[2].iov_len = strlen(msg) + 1;
162 int __android_log_buf_write(int bufID, int prio, const char *tag, const char *msg) argument
184 vec[2].iov_base = (void *) msg;
185 vec[2].iov_len = strlen(msg) + 1;
/system/core/libnl_2/
H A Dnetlink.c29 int nl_send_auto_complete(struct nl_sock *sk, struct nl_msg *msg) argument
31 struct nlmsghdr *nlh = msg->nm_nlh;
48 return nl_send(sk, msg);
65 struct msghdr msg; local
78 msg.msg_name = (void *) &sk->s_peer;
79 msg.msg_namelen = sizeof(sk->s_peer);
80 msg.msg_iov = &recvmsg_iov;
81 msg.msg_iovlen = 1;
82 msg.msg_control = NULL;
83 msg
117 struct nl_msg *msg; local
204 nl_send(struct nl_sock *sk, struct nl_msg *msg) argument
217 nl_send_iovec(struct nl_sock *sk, struct nl_msg *msg, struct iovec *iov, unsigned iovlen) argument
242 nl_sendmsg(struct nl_sock *sk, struct nl_msg *msg, struct msghdr *hdr) argument
[all...]
H A Dattr.c21 #include "netlink/msg.h"
75 struct nlattr *nla_nest_start(struct nl_msg *msg, int attrtype) argument
77 struct nlattr *start = (struct nlattr *)nlmsg_tail(msg->nm_nlh);
80 rc = nla_put(msg, attrtype, 0, NULL);
88 int nla_nest_end(struct nl_msg *msg, struct nlattr *start) argument
91 start->nla_len = (unsigned char *)nlmsg_tail(nlmsg_hdr(msg)) -
151 int nla_put(struct nl_msg *msg, int attrtype, int datalen, const void *data) argument
156 nla = nla_reserve(msg, attrtype, datalen);
169 * to the message msg nested in a container of the type attrtype. The
171 int nla_put_nested(struct nl_msg *msg, in argument
189 nla_reserve(struct nl_msg *msg, int attrtype, int data_len) argument
[all...]
/system/core/sh/
H A Derror.c125 exvwarning(int sv_errno, const char *msg, va_list ap) argument
137 if (msg != NULL) {
138 doformat(&errout, msg, ap);
154 exverror(int cond, const char *msg, va_list ap) argument
160 if (msg) {
162 TRACEV((msg, ap));
167 if (msg)
168 exvwarning(-1, msg, ap);
177 error(const char *msg, ...) argument
181 va_start(ap, msg);
189 exerror(int cond, const char *msg, ...) argument
286 const char *msg; /* text describing the error */ member in struct:errname
[all...]
/system/core/toolbox/
H A Dlsof.c144 char msg[BUF_MAX]; local
145 snprintf(msg, sizeof(msg), "%s (opendir: %s)", info->path, strerror(errno));
148 "", "", "", "", msg);
/system/vold/
H A DCommandListener.cpp247 char msg[1024]; local
248 snprintf(msg, sizeof(msg), "%d %s", pid, processName);
249 cli->sendMsg(ResponseCode::StorageUsersListResult, msg, false);
479 char msg[255]; local
487 snprintf(msg, sizeof(msg), "%s %u %u", (r ? "ready" : "not-ready"), mirrorPos, maxSize);
488 cli->sendMsg(ResponseCode::XwarpStatusResult, msg, false);
563 char msg[255]; local
564 snprintf(msg, sizeo
[all...]
H A DDirectVolume.cpp151 char msg[255]; local
173 snprintf(msg, sizeof(msg), "Volume %s %s disk inserted (%d:%d)",
176 msg, false);
277 char msg[255]; local
280 snprintf(msg, sizeof(msg), "Volume %s %s disk removed (%d:%d)",
283 msg, false);
290 char msg[255]; local
311 snprintf(msg, sizeo
[all...]
/system/core/libnl_2/genl/
H A Dgenl.c46 void *genlmsg_put(struct nl_msg *msg, uint32_t pid, uint32_t seq, int family, argument
56 if ((sizeof(struct nl_msg) + new_size) > msg->nm_size)
60 nlh = msg->nm_nlh;
98 struct msghdr msg; local
128 msg.msg_name = (void *) &sock->s_peer;
129 msg.msg_namelen = sizeof(sock->s_peer);
130 msg.msg_iov = &sendmsg_iov;
131 msg.msg_iovlen = 1; /* Only sending one iov */
132 msg.msg_control = NULL;
133 msg
[all...]
/system/media/wilhelm/src/android/
H A Dandroid_GenericMediaPlayer.cpp61 static const char *media_to_string(int msg) argument
63 switch (msg) {
82 void MediaPlayerNotificationClient::notify(int msg, int ext1, int ext2, const Parcel *obj) { argument
83 SL_LOGV("MediaPlayerNotificationClient::notify(msg=%s (%d), ext1=%d, ext2=%d)",
84 media_to_string(msg), msg, ext1, ext2);
92 switch (msg) {
313 void GenericMediaPlayer::onSeek(const sp<AMessage> &msg) { argument
316 if (!msg->findInt64(WHATPARAM_SEEK_SEEKTIME_MS, &timeMsec)) {
328 msg
347 onLoop(const sp<AMessage> &msg) argument
375 onAttachAuxEffect(const sp<AMessage> &msg) argument
389 onSetAuxEffectSendLevel(const sp<AMessage> &msg) argument
403 onBufferingUpdate(const sp<AMessage> &msg) argument
[all...]
H A Dandroid_StreamPlayer.cpp95 void StreamSourceAppProxy::receivedCmd_l(IStreamListener::Command cmd, const sp<AMessage> &msg) { argument
97 mListener->issueCommand(cmd, false /* synchronous */, msg);
158 sp<AMessage> msg = new AMessage(); local
159 msg->setInt64(IStreamListener::kKeyResumeAtPTS,
161 receivedCmd_l(IStreamListener::DISCONTINUITY, msg /*msg*/);
164 sp<AMessage> msg = new AMessage(); local
165 msg->setInt32(
168 receivedCmd_l(IStreamListener::DISCONTINUITY, msg /*msg*/);
171 sp<AMessage> msg = new AMessage(); local
313 onMessageReceived(const sp<AMessage> &msg) argument
[all...]
/system/core/fastboot/
H A Dengine.c76 const char *msg; member in struct:Action
133 a->msg = mkmsg("erasing '%s'", ptn);
143 a->msg = mkmsg("sending '%s' (%d KB)", ptn, sz / 1024);
146 a->msg = mkmsg("writing '%s'", ptn);
236 a->msg = mkmsg("checking %s", var);
289 a->msg = "rebooting";
292 void fb_queue_command(const char *cmd, const char *msg) argument
295 a->msg = msg;
303 a->msg
[all...]
/system/core/init/
H A Dproperty_service.c358 prop_msg msg; local
378 r = TEMP_FAILURE_RETRY(recv(s, &msg, sizeof(msg), 0));
380 ERROR("sys_prop: mis-match msg size recieved: %d expected: %d errno: %d\n",
386 switch(msg.cmd) {
388 msg.name[PROP_NAME_MAX-1] = 0;
389 msg.value[PROP_VALUE_MAX-1] = 0;
391 if(memcmp(msg.name,"ctl.",4) == 0) {
395 if (check_control_perms(msg.value, cr.uid, cr.gid)) {
396 handle_control_message((char*) msg
[all...]

Completed in 2407 milliseconds

12