Lines Matching refs:identity
90 void DEFAULT_MessageHandle(ServiceImpl *serviceImpl, const Identity *identity, Request *msg) in DEFAULT_MessageHandle() argument
92 if (serviceImpl->serviceId != identity->serviceId) { in DEFAULT_MessageHandle()
96 if (identity->featureId < 0) { in DEFAULT_MessageHandle()
103 if (VECTOR_Size(&serviceImpl->features) <= identity->featureId) { in DEFAULT_MessageHandle()
107 …FeatureImpl *featureImpl = (FeatureImpl *)VECTOR_At(&(serviceImpl->features), identity->featureId); in DEFAULT_MessageHandle()
146 Identity identity = {INVALID_INDEX, INVALID_INDEX, NULL}; in DEFAULT_GetFeatureId() local
148 return identity; in DEFAULT_GetFeatureId()
151 identity.serviceId = serviceImpl->serviceId; in DEFAULT_GetFeatureId()
153 identity.queueId = serviceImpl->taskPool->queueId; in DEFAULT_GetFeatureId()
159 return identity; in DEFAULT_GetFeatureId()
161 identity.featureId = pos; in DEFAULT_GetFeatureId()
162 return identity; in DEFAULT_GetFeatureId()