Home
last modified time | relevance | path

Searched defs:cmdCode (Results 1 – 25 of 26) sorted by relevance

12

/foundation/distributedhardware/devicemanager/ext/mini/utils/include/ipc/lite/
Dipc_cmd_register.h31 #define ON_IPC_SET_REQUEST(cmdCode, paraA, paraB, paraC, paraD) \ argument
42 #define ON_IPC_READ_RESPONSE(cmdCode, paraA, paraB) \ argument
53 #define ON_IPC_CMD(cmdCode, paraA) \ argument
64 #define ON_IPC_SERVER_CMD(cmdCode, paraA, paraB) \ argument
85 void RegisterSetRequestFunc(int32_t cmdCode, SetIpcRequestFunc setIpcRequestFunc) in RegisterSetRequestFunc()
89 void RegisterReadResponseFunc(int32_t cmdCode, ReadResponseFunc readResponseFunc) in RegisterReadResponseFunc()
93 void RegisterCmdProcessFunc(int32_t cmdCode, OnIpcCmdFunc onIpcCmdFunc) in RegisterCmdProcessFunc()
97 void RegisterServerCmdProcessFunc(int32_t cmdCode, OnIpcServerCmdFunc onIpcServerCmdFunc) in RegisterServerCmdProcessFunc()
/foundation/distributedhardware/devicemanager/utils/include/ipc/lite/
Dipc_cmd_register.h30 #define ON_IPC_SET_REQUEST(cmdCode, paraA, paraB, paraC, paraD) \ argument
41 #define ON_IPC_READ_RESPONSE(cmdCode, paraA, paraB) … argument
52 #define ON_IPC_CMD(cmdCode, paraA) \ argument
63 #define ON_IPC_SERVER_CMD(cmdCode, paraA, paraB) … argument
85 void RegisterSetRequestFunc(int32_t cmdCode, SetIpcRequestFunc setIpcRequestFunc) in RegisterSetRequestFunc()
89 void RegisterReadResponseFunc(int32_t cmdCode, ReadResponseFunc readResponseFunc) in RegisterReadResponseFunc()
93 void RegisterCmdProcessFunc(int32_t cmdCode, OnIpcCmdFunc onIpcCmdFunc) in RegisterCmdProcessFunc()
97 void RegisterServerCmdProcessFunc(int32_t cmdCode, OnIpcServerCmdFunc onIpcServerCmdFunc) in RegisterServerCmdProcessFunc()
/foundation/distributedhardware/devicemanager/ext/mini/utils/include/ipc/standard/
Dipc_cmd_register.h32 #define ON_IPC_SET_REQUEST(cmdCode, paraA, paraB) \ argument
43 #define ON_IPC_READ_RESPONSE(cmdCode, paraA, paraB) \ argument
54 #define ON_IPC_CMD(cmdCode, paraA, paraB) \ argument
72 void RegisterSetRequestFunc(int32_t cmdCode, SetIpcRequestFunc setIpcRequestFunc) in RegisterSetRequestFunc()
76 void RegisterReadResponseFunc(int32_t cmdCode, ReadResponseFunc readResponseFunc) in RegisterReadResponseFunc()
80 void RegisterCmdProcessFunc(int32_t cmdCode, OnIpcCmdFunc onIpcCmdFunc) in RegisterCmdProcessFunc()
/foundation/distributedhardware/devicemanager/utils/include/ipc/standard/
Dipc_cmd_register.h31 #define ON_IPC_SET_REQUEST(cmdCode, paraA, paraB) \ argument
42 #define ON_IPC_READ_RESPONSE(cmdCode, paraA, paraB) … argument
53 #define ON_IPC_CMD(cmdCode, paraA, paraB) \ argument
72 void RegisterSetRequestFunc(int32_t cmdCode, SetIpcRequestFunc setIpcRequestFunc) in RegisterSetRequestFunc()
76 void RegisterReadResponseFunc(int32_t cmdCode, ReadResponseFunc readResponseFunc) in RegisterReadResponseFunc()
80 void RegisterCmdProcessFunc(int32_t cmdCode, OnIpcCmdFunc onIpcCmdFunc) in RegisterCmdProcessFunc()
/foundation/distributedhardware/devicemanager/test/unittest/
DUTTest_ipc_server_listener.cpp66 int32_t cmdCode = 20; variable
98 int32_t cmdCode = SERVER_DEVICE_STATE_NOTIFY; variable
131 int32_t cmdCode = 9999; variable
164 int32_t cmdCode = 999; variable
199 int32_t cmdCode = 9999; variable
232 int32_t cmdCode = SERVER_DEVICE_STATE_NOTIFY; variable
265 int32_t cmdCode = SERVER_DEVICE_STATE_NOTIFY; variable
299 int32_t cmdCode = SERVER_DEVICE_STATE_NOTIFY; variable
332 int32_t cmdCode = SERVER_DEVICE_STATE_NOTIFY; variable
368 int32_t cmdCode = SERVER_DEVICE_STATE_NOTIFY; variable
DUTTest_ipc_server_client_proxy.cpp62 int32_t cmdCode = 1; variable
88 int32_t cmdCode = SERVER_DEVICE_STATE_NOTIFY; variable
128 int32_t cmdCode = SERVER_DEVICE_FOUND; variable
168 int32_t cmdCode = SERVER_DISCOVER_FINISH; variable
DUTTest_ipc_client_stub.cpp124 int cmdCode = SERVER_DEVICE_FA_NOTIFY; variable
DUTTest_ipc_server_stub.cpp184 int32_t cmdCode = 1; variable
/foundation/distributedhardware/devicemanager/ext/mini/utils/src/ipc/lite/
Dipc_cmd_register.cpp25 int32_t IpcCmdRegister::SetRequest(int32_t cmdCode, std::shared_ptr<IpcReq> pBaseReq, IpcIo &reques… in SetRequest()
36 int32_t IpcCmdRegister::ReadResponse(int32_t cmdCode, IpcIo &reply, std::shared_ptr<IpcRsp> pBaseRs… in ReadResponse()
46 int32_t IpcCmdRegister::OnIpcCmd(int32_t cmdCode, IpcIo &reply) in OnIpcCmd()
57 int32_t IpcCmdRegister::OnIpcServerCmd(int32_t cmdCode, IpcIo &req, IpcIo &reply) in OnIpcServerCmd()
/foundation/distributedhardware/devicemanager/utils/src/ipc/lite/
Dipc_cmd_register.cpp25 int32_t IpcCmdRegister::SetRequest(int32_t cmdCode, std::shared_ptr<IpcReq> pBaseReq, IpcIo &reques… in SetRequest()
40 int32_t IpcCmdRegister::ReadResponse(int32_t cmdCode, IpcIo &reply, std::shared_ptr<IpcRsp> pBaseRs… in ReadResponse()
50 int32_t IpcCmdRegister::OnIpcCmd(int32_t cmdCode, IpcIo &reply) in OnIpcCmd()
65 int32_t IpcCmdRegister::OnIpcServerCmd(int32_t cmdCode, IpcIo &req, IpcIo &reply) in OnIpcServerCmd()
/foundation/distributedhardware/devicemanager/ext/mini/utils/src/ipc/standard/
Dipc_cmd_register.cpp25 int32_t IpcCmdRegister::SetRequest(int32_t cmdCode, std::shared_ptr<IpcReq> pBaseReq, MessageParcel… in SetRequest()
35 int32_t IpcCmdRegister::ReadResponse(int32_t cmdCode, MessageParcel &reply, std::shared_ptr<IpcRsp>… in ReadResponse()
45 int32_t IpcCmdRegister::OnIpcCmd(int32_t cmdCode, MessageParcel &data, MessageParcel &reply) in OnIpcCmd()
/foundation/distributedhardware/devicemanager/utils/src/ipc/standard/
Dipc_cmd_register.cpp25 int32_t IpcCmdRegister::SetRequest(int32_t cmdCode, std::shared_ptr<IpcReq> pBaseReq, MessageParcel… in SetRequest()
39 int32_t IpcCmdRegister::ReadResponse(int32_t cmdCode, MessageParcel &reply, std::shared_ptr<IpcRsp>… in ReadResponse()
53 int32_t IpcCmdRegister::OnIpcCmd(int32_t cmdCode, MessageParcel &data, MessageParcel &reply) in OnIpcCmd()
/foundation/distributedhardware/devicemanager/test/unittest/mock/
Dipc_server_listener.cpp19 int32_t IpcServerListener::SendRequest(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_pt… in SendRequest()
25 int32_t IpcServerListener::SendAll(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_ptr<Ip… in SendAll()
/foundation/distributedhardware/devicemanager/services/devicemanagerservice/src/ipc/standard/
Dipc_server_listener.cpp24 int32_t IpcServerListener::SendRequest(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_pt… in SendRequest()
43 int32_t IpcServerListener::SendAll(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_ptr<Ip… in SendAll()
Dipc_server_client_proxy.cpp26 int32_t IpcServerClientProxy::SendCmd(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_ptr… in SendCmd()
Dipc_server_stub.cpp99 int32_t IpcServerStub::SendCmd(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_ptr<IpcRsp… in SendCmd()
/foundation/distributedhardware/devicemanager/services/devicemanagerservice/src/ipc/lite/
Dipc_server_listener.cpp47 int32_t IpcServerListener::SendRequest(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_pt… in SendRequest()
69 int32_t IpcServerListener::SendAll(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_ptr<Ip… in SendAll()
/foundation/distributedhardware/devicemanager/services/devicemanagerservice/include/dispatch/
Dcommand_dispatch.h43 int32_t cmdCode; member
/foundation/distributedhardware/devicemanager/interfaces/inner_kits/native_cpp/src/ipc/lite/
Dipc_client_server_proxy.cpp56 int32_t cmdCode = *(int32_t *)owner; in SendCmdResultCb() local
90 int32_t IpcClientServerProxy::SendCmd(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_ptr… in SendCmd()
Dipc_client_manager.cpp77 int32_t IpcClientManager::SendRequest(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_ptr… in SendRequest()
/foundation/distributedhardware/devicemanager/interfaces/inner_kits/native_cpp/src/ipc/
Dipc_client_proxy.cpp39 int32_t IpcClientProxy::SendRequest(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_ptr<I… in SendRequest()
/foundation/distributedhardware/devicemanager/interfaces/inner_kits/native_cpp/src/ipc/standard/
Dipc_client_server_proxy.cpp25 int32_t IpcClientServerProxy::SendCmd(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_ptr… in SendCmd()
Dipc_client_stub.cpp43 int32_t IpcClientStub::SendCmd(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_ptr<IpcRsp… in SendCmd()
Dipc_client_manager.cpp137 int32_t IpcClientManager::SendRequest(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_ptr… in SendRequest()
/foundation/distributedhardware/devicemanager/ext/mini/services/devicemanagerservice/src/dispatch/
Dcommand_dispatch.cpp37 int32_t CommandDispatch::MessageSendCmd(int32_t cmdCode, std::shared_ptr<MessageReq> req, std::shar… in MessageSendCmd()
51 int32_t CommandDispatch::CmdProcessing(int32_t cmdCode, std::shared_ptr<MessageReq> req, std::share… in CmdProcessing()

12