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

123

/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
227 syncmsg msg; local
319 syncmsg msg; local
359 syncmsg msg; local
[all...]
H A Dtransport_usb.c35 p->msg.command = H4(p->msg.command);
36 p->msg.arg0 = H4(p->msg.arg0);
37 p->msg.arg1 = H4(p->msg.arg1);
38 p->msg.data_length = H4(p->msg.data_length);
39 p->msg.data_check = H4(p->msg
[all...]
H A Dtransport_local.c32 p->msg.command = H4(p->msg.command);
33 p->msg.arg0 = H4(p->msg.arg0);
34 p->msg.arg1 = H4(p->msg.arg1);
35 p->msg.data_length = H4(p->msg.data_length);
36 p->msg.data_check = H4(p->msg
[all...]
H A Dfile_sync_client.c67 syncmsg msg; local
69 msg.req.id = ID_QUIT;
70 msg.req.namelen = 0;
72 writex(fd, &msg.req, sizeof(msg.req));
79 syncmsg msg; local
86 msg.req.id = ID_LIST;
87 msg.req.namelen = htoll(len);
89 if(writex(fd, &msg.req, sizeof(msg
128 syncmsg msg; local
153 syncmsg msg; local
170 syncmsg msg; local
187 syncmsg msg; local
300 syncmsg msg; local
443 syncmsg msg; local
[all...]
/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 Ddhcpclient.c189 int decode_dhcp_msg(dhcp_msg *msg, int len, dhcp_info *info) argument
200 if (msg->options[0] != OPT_COOKIE1) return -1;
201 if (msg->options[1] != OPT_COOKIE2) return -1;
202 if (msg->options[2] != OPT_COOKIE3) return -1;
203 if (msg->options[3] != OPT_COOKIE4) return -1;
205 x = msg->options + 4;
251 info->ipaddr = msg->yiaddr;
268 void dump_dhcp_msg(dhcp_msg *msg, int len) argument
284 if (msg->op == OP_BOOTREQUEST)
286 else if (msg
361 send_message(int sock, int if_index, dhcp_msg *msg, int size) argument
370 is_valid_reply(dhcp_msg *msg, dhcp_msg *reply, int sz) argument
411 dhcp_msg *msg; local
[all...]
H A Dpacket.h21 int send_packet(int s, int if_index, struct dhcp_msg *msg, int size,
23 int receive_packet(int s, struct dhcp_msg *msg);
/system/netd/
H A DNetlinkHandler.cpp69 char msg[255]; local
70 snprintf(msg, sizeof(msg), "Iface added %s", name);
73 msg, false);
77 char msg[255]; local
78 snprintf(msg, sizeof(msg), "Iface removed %s", name);
81 msg, false);
85 char msg[255]; local
86 snprintf(msg, sizeo
[all...]
/system/core/libsysutils/src/
H A DFrameworkClient.cpp16 int FrameworkClient::sendMsg(const char *msg) { argument
23 if (write(mSocket, msg, strlen(msg) +1) < 0) {
24 SLOGW("Unable to send msg '%s' (%s)", msg, strerror(errno));
30 int FrameworkClient::sendMsg(const char *msg, const char *data) { argument
31 char *buffer = (char *) alloca(strlen(msg) + strlen(data) + 1);
36 strcpy(buffer, msg);
H A DSocketClient.cpp33 int SocketClient::sendMsg(int code, const char *msg, bool addErrno) { argument
37 buf = (char *) alloca(strlen(msg) + strlen(strerror(errno)) + 8);
38 sprintf(buf, "%.3d %s (%s)", code, msg, strerror(errno));
40 buf = (char *) alloca(strlen(msg) + strlen("XXX "));
41 sprintf(buf, "%.3d %s", code, msg);
46 int SocketClient::sendMsg(const char *msg) { argument
54 const char *p = msg;
55 int brtw = strlen(msg) + 1;
60 SLOGW("Unable to send msg '%s' (%s)", msg, strerro
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/common/src/utils/
H A Dreport.h79 #define WLAN_REPORT_INIT(hReport, module, msg) \
81 { os_report ("$B%c%s,INIT:", ((char)module + 'A'), ((report_t *)hReport)->moduleDesc[module]); os_report msg; } } while(0)
82 #define WLAN_REPORT_INFORMATION(hReport, module, msg) \
84 { os_report ("$C%c%s,INFORMATION:", ((char)module + 'A'), ((report_t *)hReport)->moduleDesc[module]); os_report msg; } } while(0)
85 #define WLAN_REPORT_WARNING(hReport, module, msg) \
87 { os_report ("$D%c%s,WARNING:", ((char)module + 'A'), ((report_t *)hReport)->moduleDesc[module]); os_report msg; } } while(0)
88 #define WLAN_REPORT_ERROR(hReport, module, msg) \
90 { os_report ("$E%c%s,ERROR:", ((char)module + 'A'), ((report_t *)hReport)->moduleDesc[module]); os_report msg; } } while(0)
91 #define WLAN_REPORT_FATAL_ERROR(hReport, module, msg) \
93 { os_report ("$F%c%s,FATAL ERROR:", ((char)module + 'A'), ((report_t *)hReport)->moduleDesc[module]); os_report msg; } } whil
[all...]
/system/core/include/sysutils/
H A DFrameworkClient.h16 int sendMsg(const char *msg);
17 int sendMsg(const char *msg, const char *data);
H A DSocketClient.h31 int sendMsg(int code, const char *msg, bool addErrno);
32 int sendMsg(const char *msg);
H A DSocketListener.h40 void sendBroadcast(int code, const char *msg, bool addErrno);
41 void sendBroadcast(const char *msg);
/system/core/libcutils/
H A Dzygote.c55 struct msghdr msg;
63 memset(&msg, 0, sizeof(msg));
72 msg.msg_iov = ivs;
73 msg.msg_iovlen = 1;
77 msg.msg_control = msgbuf;
78 msg.msg_controllen = sizeof msgbuf;
80 cmsg = CMSG_FIRSTHDR(&msg);
93 ret = sendmsg(fd, &msg, MSG_NOSIGNAL);
101 msg
[all...]
/system/media/opensles/libopensles/
H A Dandroid_SfPlayer.cpp108 sp<AMessage> msg = new AMessage(kWhatNotif, id()); local
109 msg->setInt32(EVENT_PREPARED, (int32_t)prepareRes);
110 notify(msg, true /*async*/);
115 sp<AMessage> msg = new AMessage(kWhatNotif, id()); local
116 msg->setInt32(EVENT_PREFETCHSTATUSCHANGE, (int32_t)mCacheStatus);
117 notify(msg, true /*async*/);
122 sp<AMessage> msg = new AMessage(kWhatNotif, id()); local
124 msg->setInt32(EVENT_PREFETCHFILLLEVELUPDATE, (int32_t)mLastNotifiedCacheFill);
125 notify(msg, true /*async*/);
129 void SfPlayer::notify(const sp<AMessage> &msg, boo argument
186 sp<AMessage> msg = new AMessage(kWhatPrepare, id()); local
191 onPrepare(const sp<AMessage> &msg) argument
393 sp<AMessage> msg = new AMessage(kWhatSeek, id()); local
400 sp<AMessage> msg = new AMessage(kWhatLoop, id()); local
440 sp<AMessage> msg = new AMessage(kWhatNotif, id()); local
489 sp<AMessage> msg = new AMessage(kWhatNotif, id()); local
533 onSeek(const sp<AMessage> &msg) argument
546 onLoop(const sp<AMessage> &msg) argument
649 sp<AMessage> msg = new AMessage(kWhatRender, id()); local
674 onRender(const sp<AMessage> &msg) argument
704 onCheckCache(const sp<AMessage> &msg) argument
734 onNotify(const sp<AMessage> &msg) argument
853 onMessageReceived(const sp<AMessage> &msg) argument
[all...]
H A Dandroid_SfPlayer.h128 virtual void onMessageReceived(const sp<AMessage> &msg);
205 void onPrepare(const sp<AMessage> &msg);
207 void onRender(const sp<AMessage> &msg);
208 void onCheckCache(const sp<AMessage> &msg);
209 void onNotify(const sp<AMessage> &msg);
212 void onSeek(const sp<AMessage> &msg);
213 void onLoop(const sp<AMessage> &msg);
222 void notify(const sp<AMessage> &msg, bool async);
/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/init/
H A Ddevices.c232 static void parse_event(const char *msg, struct uevent *uevent) argument
244 while(*msg) {
245 if(!strncmp(msg, "ACTION=", 7)) {
246 msg += 7;
247 uevent->action = msg;
248 } else if(!strncmp(msg, "DEVPATH=", 8)) {
249 msg += 8;
250 uevent->path = msg;
251 } else if(!strncmp(msg, "SUBSYSTEM=", 10)) {
252 msg
593 char msg[UEVENT_MSG_LEN+2]; local
[all...]
/system/core/fastboot/
H A Dengine.c75 const char *msg; member in struct:Action
126 a->msg = mkmsg("erasing '%s'", ptn);
136 a->msg = mkmsg("sending '%s' (%d KB)", ptn, sz / 1024);
139 a->msg = mkmsg("writing '%s'", ptn);
217 a->msg = mkmsg("checking %s", var);
251 a->msg = "rebooting";
254 void fb_queue_command(const char *cmd, const char *msg) argument
257 a->msg = msg;
265 a->msg
[all...]
H A Dfastboot.h49 void fb_queue_command(const char *cmd, const char *msg);
/system/vold/
H A DDirectVolume.cpp146 char msg[255]; local
168 snprintf(msg, sizeof(msg), "Volume %s %s disk inserted (%d:%d)",
171 msg, false);
264 char msg[255]; local
267 snprintf(msg, sizeof(msg), "Volume %s %s disk removed (%d:%d)",
270 msg, false);
277 char msg[255]; local
296 snprintf(msg, sizeo
[all...]
/system/wlan/ti/sta_dk_4_0_4_32/pform/linux/src/
H A Dipc_k.c70 tiUINT8 *msg; local
99 msg = (char *)NLMSG_DATA(nlh);
102 memcpy(msg,pEvData,msgSize);
/system/wlan/ti/wilink_6_1/platforms/os/linux/src/
H A Dipc_k.c74 TI_UINT8 *msg; local
101 msg = (char *)NLMSG_DATA(nlh);
104 memcpy(msg,pEvData,msgSize);
/system/wlan/ti/wilink_6_1/CUDK/os/linux/src/
H A Dosapi.c82 S8 msg[MAX_HOST_MESSAGE_SIZE]; local
94 vsprintf((char *)msg, (char *)arg_list, ap);
98 fprintf(stderr, (char *)msg);
103 fprintf(ftmp,(char *)msg);
149 S8 msg[MAX_HOST_MESSAGE_SIZE]; local
152 vsprintf((char*)msg, (char*)arg_list, ap);
155 return sprintf((char*)str, (char*)msg);
328 S8 msg[MAX_HOST_MESSAGE_SIZE]; local
331 vsprintf((char*)msg, (char*)arg_list, ap);
334 return sscanf((char*)str, (char*)msg);
[all...]

Completed in 420 milliseconds

123