Searched refs:ipcInstance (Results 1 - 6 of 6) sorted by relevance
/base/security/device_auth/frameworks/inc/ |
H A D | ipc_service.h | 26 int32_t AddMethodMap(uintptr_t ipcInstance);
|
/base/security/device_auth/frameworks/inc/lite/ |
H A D | ipc_adapt.h | 64 uint32_t SetIpcCallMap(uintptr_t ipcInstance, IpcServiceCall method, int32_t methodId);
72 int32_t CreateServiceInstance(uintptr_t *ipcInstance);
73 void DestroyServiceInstance(uintptr_t ipcInstance);
|
/base/security/device_auth/frameworks/inc/standard/ |
H A D | ipc_adapt.h | 56 uint32_t SetIpcCallMap(uintptr_t ipcInstance, IpcServiceCall method, int32_t methodId); 64 int32_t CreateServiceInstance(uintptr_t *ipcInstance); 65 void DestroyServiceInstance(uintptr_t ipcInstance);
|
/base/security/device_auth/frameworks/src/ |
H A D | ipc_service.c | 1274 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() 1281 ret &= SetIpcCallMap(ipcInstance, IpcServiceGmRegDataChangeListener, IPC_CALL_ID_REG_LISTENER); in AddMethodMap() 1282 ret &= SetIpcCallMap(ipcInstance, IpcServiceGmUnRegDataChangeListener, IPC_CALL_ID_UNREG_LISTENER); 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() 1285 ret &= SetIpcCallMap(ipcInstance, IpcServiceGmAddMemberToGroup, IPC_CALL_ID_ADD_GROUP_MEMBER); in AddMethodMap() 1286 ret &= SetIpcCallMap(ipcInstance, IpcServiceGmDelMemberFromGroup, IPC_CALL_ID_DEL_GROUP_MEMBER); in AddMethodMap() 1287 ret &= SetIpcCallMap(ipcInstance, IpcServiceGmAddMultiMembersToGrou in AddMethodMap() [all...] |
/base/security/device_auth/frameworks/src/lite/ |
H A D | ipc_adapt.c | 1432 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()
|
/base/security/device_auth/frameworks/src/standard/ |
H A D | ipc_adapt.cpp | 1318 uint32_t SetIpcCallMap(uintptr_t ipcInstance, IpcServiceCall method, int32_t methodId) in SetIpcCallMap() argument 1324 ServiceDevAuth *service = reinterpret_cast<ServiceDevAuth *>(ipcInstance); in SetIpcCallMap() 1328 int32_t CreateServiceInstance(uintptr_t *ipcInstance) in CreateServiceInstance() argument 1335 *ipcInstance = reinterpret_cast<uintptr_t>(service); in CreateServiceInstance() 1339 void DestroyServiceInstance(uintptr_t ipcInstance) in DestroyServiceInstance() argument 1341 ServiceDevAuth *service = reinterpret_cast<ServiceDevAuth *>(ipcInstance); in DestroyServiceInstance()
|
Completed in 8 milliseconds