HomeSort by relevance Sort by last modified time
    Searched refs:sendMsg (Results 1 - 25 of 37) sorted by null

1 2

  /system/vold/
CommandListener.cpp 94 cli->sendMsg(0, "Dumping loop status", false);
96 cli->sendMsg(ResponseCode::CommandOkay, "Loop dump failed", true);
98 cli->sendMsg(0, "Dumping DM status", false);
100 cli->sendMsg(ResponseCode::CommandOkay, "Devmapper dump failed", true);
102 cli->sendMsg(0, "Dumping mounted filesystems", false);
108 cli->sendMsg(0, line, false);;
113 cli->sendMsg(ResponseCode::CommandOkay, "dump complete", false);
126 cli->sendMsg(ResponseCode::CommandSyntaxError, "Missing Argument", false);
138 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: volume debug <off/on>", false);
144 cli->sendMsg(ResponseCode::CommandSyntaxError, "Usage: volume mount <path>", false)
    [all...]
  /system/core/include/sysutils/
FrameworkClient.h 16 int sendMsg(const char *msg);
17 int sendMsg(const char *msg, const char *data);
SocketClient.h 48 int sendMsg(int code, const char *msg, bool addErrno);
49 int sendMsg(int code, const char *msg, bool addErrno, bool useCmdNum);
50 int sendMsg(const char *msg);
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
LocEngAdapter.cpp 44 sendMsg(new LocEngPositionMode(mLocEngAdapter, posMode));
47 sendMsg(new LocEngStartFix(mLocEngAdapter));
50 sendMsg(new LocEngStopFix(mLocEngAdapter));
66 sendMsg(new LocSetUlpProxy(mLocEngAdapter, ulp));
107 sendMsg(new LocEngReportPosition(mLocEngAdapter,
138 sendMsg(new LocEngReportSv(mLocEngAdapter, svStatus,
158 sendMsg(new LocEngReportStatus(mOwner, status));
164 sendMsg(new LocEngReportNmea(mOwner, nmea, length));
174 sendMsg(new LocEngReportXtraServer(mOwner, url1,
184 sendMsg(new LocEngRequestATL(mOwner
    [all...]
loc_eng_xtra.cpp 140 adapter->sendMsg(new LocEngInjectXtraData(adapter, data, length));
163 adapter->sendMsg(new LocEngRequestXtraServer(adapter));
loc_eng.cpp 262 mAdapter->sendMsg(this);
285 mAdapter->sendMsg(this);
302 mAdapter->sendMsg(this);
768 mAdapter->sendMsg(this);
821 mAdapter->sendMsg(this);
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api_50001/
LocEngAdapter.cpp 44 sendMsg(new LocEngPositionMode(mLocEngAdapter, posMode));
47 sendMsg(new LocEngStartFix(mLocEngAdapter));
50 sendMsg(new LocEngStopFix(mLocEngAdapter));
53 sendMsg(new LocEngGetZpp(mLocEngAdapter));
57 sendMsg(new LocEngShutdown(mLocEngAdapter));
101 sendMsg(new LocSetUlpProxy(mLocEngAdapter, ulp));
151 sendMsg(new LocEngAdapterGpsLock(this, lockMask));
176 sendMsg(new LocEngReportPosition(mLocEngAdapter,
207 sendMsg(new LocEngReportSv(mLocEngAdapter, svStatus,
235 sendMsg(new LocEngReportStatus(mLocEngAdapter, status))
    [all...]
loc_eng_xtra.cpp 140 adapter->sendMsg(new LocEngInjectXtraData(adapter, data, length));
163 adapter->sendMsg(new LocEngRequestXtraServer(adapter));
loc_eng.cpp 274 mAdapter->sendMsg(this);
297 mAdapter->sendMsg(this);
314 mAdapter->sendMsg(this);
336 mAdapter->sendMsg(this);
829 mAdapter->sendMsg(this);
    [all...]
  /system/core/logd/
CommandListener.cpp 83 cli->sendMsg("Missing Argument");
89 cli->sendMsg("Range Error");
94 cli->sendMsg("success");
107 cli->sendMsg("Missing Argument");
113 cli->sendMsg("Range Error");
120 cli->sendMsg(buf);
133 cli->sendMsg("Permission Denied");
138 cli->sendMsg("Missing Argument");
144 cli->sendMsg("Range Error");
150 cli->sendMsg("Range Error")
    [all...]
  /system/netd/server/
CommandListener.cpp 262 cli->sendMsg(ResponseCode::CommandSyntaxError, "Missing argument", false);
271 cli->sendMsg(ResponseCode::OperationFailed, "Failed to open sysfs dir", true);
278 cli->sendMsg(ResponseCode::InterfaceListResult, de->d_name, false);
281 cli->sendMsg(ResponseCode::CommandOkay, "Interface list completed", false);
288 cli->sendMsg(ResponseCode::CommandSyntaxError, "Missing argument", false);
302 cli->sendMsg(ResponseCode::OperationFailed, "Interface not found", true);
330 cli->sendMsg(ResponseCode::InterfaceGetCfgResult, msg, false);
341 cli->sendMsg(ResponseCode::CommandSyntaxError, "Missing argument", false);
356 cli->sendMsg(ResponseCode::OperationFailed, "Failed to set address", true);
363 cli->sendMsg(ResponseCode::OperationFailed, "Failed to set prefixLength", true)
    [all...]
MDnsSdListener.cpp 73 cli->sendMsg(ResponseCode::CommandParameterError,
86 cli->sendMsg(ResponseCode::CommandParameterError,
92 cli->sendMsg(ResponseCode::CommandOkay, "Discover operation started", false);
134 cli->sendMsg(ResponseCode::CommandParameterError, msg, false);
142 cli->sendMsg(ResponseCode::CommandParameterError, "Unknown requestId", false);
150 cli->sendMsg(ResponseCode::CommandOkay, msg, false);
166 cli->sendMsg(ResponseCode::CommandParameterError,
179 cli->sendMsg(ResponseCode::CommandParameterError,
185 cli->sendMsg(ResponseCode::CommandOkay, "serviceRegister started", false);
221 cli->sendMsg(ResponseCode::CommandParameterError
    [all...]
  /system/core/libsysutils/src/
FrameworkClient.cpp 16 int FrameworkClient::sendMsg(const char *msg) {
32 int FrameworkClient::sendMsg(const char *msg, const char *data) {
40 return sendMsg(buffer);
FrameworkListener.cpp 120 cli->sendMsg(500, "Unsupported escape sequence", false);
146 cli->sendMsg(500, "Invalid sequence number", false);
174 cli->sendMsg(500, "Unclosed quotes error", false);
194 cli->sendMsg(500, "Command not recognized", false);
203 cli->sendMsg(500, "Command too long", false);
SocketClient.cpp 53 int SocketClient::sendMsg(int code, const char *msg, bool addErrno) {
54 return sendMsg(code, msg, addErrno, mUseCmdNum);
57 int SocketClient::sendMsg(int code, const char *msg, bool addErrno, bool useCmdNum) {
76 ret = sendMsg(buf);
143 int SocketClient::sendMsg(const char *msg) {
  /hardware/qcom/gps/core/
LocAdapterBase.h 63 inline void sendMsg(const LocMsg* msg) const {
64 mMsgTask->sendMsg(msg);
67 inline void sendMsg(const LocMsg* msg) {
68 mMsgTask->sendMsg(msg);
ContextBase.h 65 inline void sendMsg(const LocMsg *msg) { getMsgTask()->sendMsg(msg); }
MsgTask.h 54 void sendMsg(const LocMsg* msg) const;
MsgTask.cpp 83 sendMsg(new LocAssociateMsg(tAssociator));
104 void MsgTask::sendMsg(const LocMsg* msg) const {
LocApiBase.h 92 inline void sendMsg(const LocMsg* msg) const {
93 mMsgTask->sendMsg(msg);
  /hardware/qcom/gps/msm8960/core/
LocAdapterBase.h 62 inline void sendMsg(const LocMsg* msg) const {
63 mMsgTask->sendMsg(msg);
66 inline void sendMsg(const LocMsg* msg) {
67 mMsgTask->sendMsg(msg);
MsgTask.h 54 void sendMsg(const LocMsg* msg) const;
LocAdapterBase.cpp 68 sendMsg(new LocOpenMsg(this, mLocApi));
MsgTask.cpp 89 void MsgTask::sendMsg(const LocMsg* msg) const {
  /frameworks/base/media/java/android/media/
RemoteController.java 568 sendMsg(rc.mEventHandler, MSG_NEW_PENDING_INTENT, SENDMSG_REPLACE,
572 sendMsg(rc.mEventHandler, MSG_CLIENT_CHANGE, SENDMSG_REPLACE,
582 sendMsg(rc.mEventHandler, MSG_DISPLAY_ENABLE, SENDMSG_REPLACE,
607 sendMsg(rc.mEventHandler, MSG_NEW_PLAYBACK_INFO, SENDMSG_REPLACE,
623 sendMsg(rc.mEventHandler, MSG_NEW_TRANSPORT_INFO, SENDMSG_REPLACE,
642 sendMsg(rc.mEventHandler, MSG_NEW_METADATA, SENDMSG_QUEUE,
660 sendMsg(rc.mEventHandler, MSG_NEW_METADATA, SENDMSG_QUEUE,
686 sendMsg(rc.mEventHandler, MSG_NEW_METADATA, SENDMSG_QUEUE,
    [all...]

Completed in 3498 milliseconds

1 2