| /foundation/distributedhardware/device_manager/test/unittest/ |
| D | UTTest_ipc_cmd_parser_service.cpp | 74 SetIpcRequestFunc GetIpcRequestFunc(int32_t cmdCode) in GetIpcRequestFunc() 84 ReadResponseFunc GetResponseFunc(int32_t cmdCode) in GetResponseFunc() 93 OnIpcCmdFunc GetIpcCmdFunc(int32_t cmdCode) in GetIpcCmdFunc() 102 int32_t TestIpcRequestFuncReqNull(int32_t cmdCode) in TestIpcRequestFuncReqNull() 114 int32_t TestReadResponseRspNull(int32_t cmdCode) in TestReadResponseRspNull() 126 int32_t TestReadResponseRspNotNull(int32_t cmdCode) in TestReadResponseRspNotNull() 153 int32_t cmdCode = SERVER_DEVICE_STATE_NOTIFY; variable 159 int32_t cmdCode = SERVER_DEVICE_STATE_NOTIFY; variable 165 int32_t cmdCode = SERVER_DEVICE_STATE_NOTIFY; variable 171 int32_t cmdCode = SERVER_DEVICE_FOUND; variable [all …]
|
| D | UTTest_ipc_cmd_parser_client.cpp | 73 SetIpcRequestFunc GetIpcRequestFunc(int32_t cmdCode) in GetIpcRequestFunc() 83 ReadResponseFunc GetResponseFunc(int32_t cmdCode) in GetResponseFunc() 92 OnIpcCmdFunc GetIpcCmdFunc(int32_t cmdCode) in GetIpcCmdFunc() 101 int32_t TestReadResponseRspNull(int32_t cmdCode) in TestReadResponseRspNull() 113 int32_t TestReadResponseRspNotNull(int32_t cmdCode) in TestReadResponseRspNotNull() 138 int32_t TestIpcRequestNull(int32_t cmdCode) in TestIpcRequestNull() 152 int32_t cmdCode = REGISTER_DEVICE_MANAGER_LISTENER; variable 158 int32_t cmdCode = UNPUBLISH_DEVICE_DISCOVER; variable 164 int32_t cmdCode = AUTHENTICATE_DEVICE; variable 170 int32_t cmdCode = BIND_DEVICE; variable [all …]
|
| D | UTTest_ipc_cmd_register.cpp | 73 int32_t cmdCode = 999; variable 98 int32_t cmdCode = REGISTER_DEVICE_MANAGER_LISTENER; variable 123 int32_t cmdCode = REGISTER_DEVICE_MANAGER_LISTENER; variable 150 int32_t cmdCode = REGISTER_DEVICE_MANAGER_LISTENER; variable 179 int32_t cmdCode = REGISTER_DEVICE_MANAGER_LISTENER; variable 202 int32_t cmdCode = UNREGISTER_DEVICE_MANAGER_LISTENER; variable 218 int32_t cmdCode = GET_TRUST_DEVICE_LIST; variable 236 int32_t cmdCode = GET_LOCAL_DEVICE_INFO; variable 252 int32_t cmdCode = GET_UDID_BY_NETWORK; variable 270 int32_t cmdCode = GET_UUID_BY_NETWORK; variable [all …]
|
| D | UTTest_ipc_client_server_proxy.cpp | 63 int32_t cmdCode = 1; variable 79 int32_t cmdCode = IPC_MSG_BUTT; variable 92 int32_t cmdCode = 1; variable 107 int32_t cmdCode = -1; variable
|
| D | UTTest_ipc_server_listener.cpp | 68 int32_t cmdCode = 20; variable 99 int32_t cmdCode = SERVER_DEVICE_STATE_NOTIFY; variable 129 int32_t cmdCode = 9999; variable 165 int32_t cmdCode = 999; variable 203 int32_t cmdCode = 9999; variable 239 int32_t cmdCode = 0; variable 275 int32_t cmdCode = -1; variable
|
| D | UTTest_ipc_server_client_proxy.cpp | 69 int32_t cmdCode = 1; variable 95 int32_t cmdCode = SERVER_DEVICE_STATE_NOTIFY; variable 138 int32_t cmdCode = SERVER_DEVICE_FOUND; variable 181 int32_t cmdCode = SERVER_DISCOVER_FINISH; variable 224 int32_t cmdCode = SERVER_PUBLISH_FINISH; variable
|
| D | UTTest_ipc_client_stub.cpp | 156 int cmdCode = SERVER_DEVICE_FA_NOTIFY; variable 175 int cmdCode = IPC_MSG_BUTT; variable 189 int cmdCode = GET_TRUST_DEVICE_LIST; variable 208 int cmdCode = -1; variable 218 int cmdCode = 1; variable
|
| /foundation/distributedhardware/device_manager/common/include/ipc/lite/ |
| D | ipc_cmd_register.h | 30 #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 90 void RegisterSetRequestFunc(int32_t cmdCode, SetIpcRequestFunc setIpcRequestFunc) in RegisterSetRequestFunc() 100 void RegisterReadResponseFunc(int32_t cmdCode, ReadResponseFunc readResponseFunc) in RegisterReadResponseFunc() 110 void RegisterCmdProcessFunc(int32_t cmdCode, OnIpcCmdFunc onIpcCmdFunc) in RegisterCmdProcessFunc() 120 void RegisterServerCmdProcessFunc(int32_t cmdCode, OnIpcServerCmdFunc onIpcServerCmdFunc) in RegisterServerCmdProcessFunc()
|
| /foundation/distributedhardware/device_manager/common/include/ipc/standard/ |
| D | ipc_cmd_register.h | 32 #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 78 void RegisterSetRequestFunc(int32_t cmdCode, SetIpcRequestFunc setIpcRequestFunc) in RegisterSetRequestFunc() 89 void RegisterReadResponseFunc(int32_t cmdCode, ReadResponseFunc readResponseFunc) in RegisterReadResponseFunc() 100 void RegisterCmdProcessFunc(int32_t cmdCode, OnIpcCmdFunc onIpcCmdFunc) in RegisterCmdProcessFunc()
|
| /foundation/distributedhardware/device_manager/common/src/ipc/lite/ |
| D | ipc_cmd_register.cpp | 26 int32_t IpcCmdRegister::SetRequest(int32_t cmdCode, std::shared_ptr<IpcReq> pBaseReq, IpcIo &reques… in SetRequest() 45 int32_t IpcCmdRegister::ReadResponse(int32_t cmdCode, IpcIo &reply, std::shared_ptr<IpcRsp> pBaseRs… in ReadResponse() 55 int32_t IpcCmdRegister::OnIpcCmd(int32_t cmdCode, IpcIo &reply) in OnIpcCmd() 70 int32_t IpcCmdRegister::OnIpcServerCmd(int32_t cmdCode, IpcIo &req, IpcIo &reply) in OnIpcServerCmd()
|
| /foundation/distributedhardware/device_manager/common/src/ipc/standard/ |
| D | ipc_cmd_register.cpp | 30 int32_t IpcCmdRegister::SetRequest(int32_t cmdCode, std::shared_ptr<IpcReq> pBaseReq, MessageParcel… in SetRequest() 57 int32_t IpcCmdRegister::ReadResponse(int32_t cmdCode, MessageParcel &reply, std::shared_ptr<IpcRsp>… in ReadResponse() 80 int32_t IpcCmdRegister::OnIpcCmd(int32_t cmdCode, MessageParcel &data, MessageParcel &reply) in OnIpcCmd()
|
| /foundation/distributedhardware/device_manager/test/unittest/mock/ |
| D | ipc_cmd_register_mock.cpp | 23 int32_t IpcCmdRegister::SetRequest(int32_t cmdCode, std::shared_ptr<IpcReq> pBaseReq, MessageParcel… in SetRequest() 28 int32_t IpcCmdRegister::OnIpcCmd(int32_t cmdCode, MessageParcel &data, MessageParcel &reply) in OnIpcCmd()
|
| D | ipc_server_listener.cpp | 19 int32_t IpcServerListener::SendRequest(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_pt… in SendRequest()
|
| /foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/src/ipc/lite/ |
| D | ipc_client_server_proxy.cpp | 51 int32_t cmdCode = *static_cast<int32_t *>(owner); in SendCmdResultCb() local 85 int32_t IpcClientServerProxy::SendCmd(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_ptr… in SendCmd()
|
| /foundation/multimedia/audio_framework/frameworks/native/audioeffect/test/unittest/enhance_unit_test/src/ |
| D | mock_enhance.cpp | 33 void SetCommandRet(uint32_t cmdCode, int32_t cmdRet) in SetCommandRet() 51 int32_t CommandTest(AudioEffectHandle self, uint32_t cmdCode, AudioEffectTransInfo *cmdInfo, in CommandTest()
|
| /foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/src/ipc/standard/ |
| D | ipc_client_server_proxy.cpp | 25 int32_t IpcClientServerProxy::SendCmd(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_ptr… in SendCmd()
|
| /foundation/distributedhardware/device_manager/services/service/src/ipc/standard/ |
| D | ipc_server_client_proxy.cpp | 24 int32_t IpcServerClientProxy::SendCmd(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_ptr… in SendCmd()
|
| D | ipc_server_listener.cpp | 25 int32_t IpcServerListener::SendRequest(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_pt… in SendRequest()
|
| /foundation/distributedhardware/device_manager/test/servicesfuzztest/ipcclientmanager_fuzzer/ |
| D | ipc_client_manager_fuzzer.cpp | 35 int32_t cmdCode = UNREGISTER_DEVICE_MANAGER_LISTENER; in IpcClientManagerFuzzTest() local
|
| /foundation/communication/netmanager_base/frameworks/js/napi/netstats/src/ |
| D | net_stats_trafficLimit_dialog.cpp | 107 const uint32_t cmdCode = 1; in OnAbilityConnectDone() local 135 const uint32_t cmdCode = 3; // 3:表示关闭弹窗 in CloseDialog() local
|
| /foundation/distributedhardware/device_manager/test/servicesfuzztest/ipcserverlistener_fuzzer/ |
| D | ipc_server_listener_fuzzer.cpp | 37 int32_t cmdCode = UNREGISTER_DEVICE_MANAGER_LISTENER; in IpcServerListenerFuzzTest() local
|
| /foundation/distributedhardware/device_manager/interfaces/inner_kits/native_cpp/src/ipc/ |
| D | ipc_client_proxy.cpp | 42 int32_t IpcClientProxy::SendRequest(int32_t cmdCode, std::shared_ptr<IpcReq> req, std::shared_ptr<I… in SendRequest()
|
| /foundation/distributedhardware/device_manager/test/servicesfuzztest/ipccmdregister_fuzzer/ |
| D | ipc_cmd_register_fuzzer.cpp | 47 int32_t cmdCode = UNREGISTER_DEVICE_MANAGER_LISTENER; in IpcCmdRegisterFuzzTest() local
|
| /foundation/distributedhardware/device_manager/test/servicesfuzztest/ipcserverclientproxy_fuzzer/ |
| D | ipc_server_client_proxy_fuzzer.cpp | 36 int32_t cmdCode = UNREGISTER_DEVICE_MANAGER_LISTENER; in IpcServerClientProxyFuzzTest() local
|
| /foundation/multimodalinput/input/service/message_handle/src/ |
| D | inject_notice_manager.cpp | 140 int32_t cmdCode = MESSAGE_PARCEL_KEY_NOTICE_SEND; in SendNotice() local 161 int32_t cmdCode = MESSAGE_PARCEL_KEY_NOTICE_CLOSE; in CancelNotice() local
|