Home
last modified time | relevance | path

Searched refs:ipcInstance (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/base/security/device_auth/frameworks/src/
H A Dipc_service.c1274 int32_t AddMethodMap(uintptr_t ipcInstance) in AddMethodMap() argument
1279 ret = SetIpcCallMap(ipcInstance, IpcServiceGmRegCallback, IPC_CALL_ID_REG_CB); in AddMethodMap()
1280 ret &= SetIpcCallMap(ipcInstance, IpcServiceGmUnRegCallback, IPC_CALL_ID_UNREG_CB); in AddMethodMap()
1283 ret &= SetIpcCallMap(ipcInstance, IpcServiceGmCreateGroup, IPC_CALL_ID_CREATE_GROUP); in AddMethodMap()
1284 ret &= SetIpcCallMap(ipcInstance, IpcServiceGmDelGroup, IPC_CALL_ID_DEL_GROUP); in AddMethodMap()
1289 ret &= SetIpcCallMap(ipcInstance, IpcServiceGmProcessData, IPC_CALL_ID_GM_PROC_DATA); in AddMethodMap()
1303 ret &= SetIpcCallMap(ipcInstance, IpcServiceGaProcessData, IPC_CALL_ID_GA_PROC_DATA); in AddMethodMap()
1304 ret &= SetIpcCallMap(ipcInstance, IpcServiceGaAuthDevice, IPC_CALL_ID_AUTH_DEVICE); in AddMethodMap()
1306 ret &= SetIpcCallMap(ipcInstance, IpcServiceGaGetRealInfo, IPC_CALL_ID_GET_REAL_INFO); in AddMethodMap()
1311 ret &= SetIpcCallMap(ipcInstance, IpcServiceDaAuthDevice, IPC_CALL_ID_DA_AUTH_DEVICE); in AddMethodMap()
[all …]
/ohos5.0/base/security/device_auth/frameworks/inc/standard/
H A Dipc_adapt.h56 uint32_t SetIpcCallMap(uintptr_t ipcInstance, IpcServiceCall method, int32_t methodId);
64 int32_t CreateServiceInstance(uintptr_t *ipcInstance);
65 void DestroyServiceInstance(uintptr_t ipcInstance);
/ohos5.0/base/security/device_auth/frameworks/inc/lite/
H A Dipc_adapt.h64 uint32_t SetIpcCallMap(uintptr_t ipcInstance, IpcServiceCall method, int32_t methodId);
72 int32_t CreateServiceInstance(uintptr_t *ipcInstance);
73 void DestroyServiceInstance(uintptr_t ipcInstance);
/ohos5.0/base/security/device_auth/frameworks/inc/
H A Dipc_service.h26 int32_t AddMethodMap(uintptr_t ipcInstance);
/ohos5.0/base/security/device_auth/frameworks/src/lite/
H A Dipc_adapt.c1432 uint32_t SetIpcCallMap(uintptr_t ipcInstance, IpcServiceCall method, int32_t methodId) in SetIpcCallMap() argument
1434 (void)ipcInstance; in SetIpcCallMap()
1442 int32_t CreateServiceInstance(uintptr_t *ipcInstance) in CreateServiceInstance() argument
1444 *ipcInstance = 0x0; in CreateServiceInstance()
1448 void DestroyServiceInstance(uintptr_t ipcInstance) in DestroyServiceInstance() argument
1450 (void)ipcInstance; in DestroyServiceInstance()
/ohos5.0/base/security/device_auth/frameworks/src/standard/
H A Dipc_adapt.cpp1302 uint32_t SetIpcCallMap(uintptr_t ipcInstance, IpcServiceCall method, int32_t methodId) in SetIpcCallMap() argument
1308 ServiceDevAuth *service = reinterpret_cast<ServiceDevAuth *>(ipcInstance); in SetIpcCallMap()
1312 int32_t CreateServiceInstance(uintptr_t *ipcInstance) in CreateServiceInstance() argument
1319 *ipcInstance = reinterpret_cast<uintptr_t>(service); in CreateServiceInstance()
1323 void DestroyServiceInstance(uintptr_t ipcInstance) in DestroyServiceInstance() argument
1325 ServiceDevAuth *service = reinterpret_cast<ServiceDevAuth *>(ipcInstance); in DestroyServiceInstance()