Lines Matching defs:message

82     AppSpawnMsgNode *message;
98 AppSpawnMsgNode *message;
160 void ProcessAppSpawnDumpMsg(const AppSpawnMsgNode *message);
161 int ProcessTerminationStatusMsg(const AppSpawnMsgNode *message, AppSpawnResult *result);
165 int CheckAppSpawnMsg(const AppSpawnMsgNode *message);
166 int DecodeAppSpawnMsg(AppSpawnMsgNode *message);
169 AppSpawnMsgNode *RebuildAppSpawnMsgNode(AppSpawnMsgNode *message, AppSpawnedProcess *appInfo);
175 void DumpAppSpawnMsg(const AppSpawnMsgNode *message);
176 void *GetAppSpawnMsgInfo(const AppSpawnMsgNode *message, int type);
177 void *GetAppSpawnMsgExtInfo(const AppSpawnMsgNode *message, const char *name, uint32_t *len);
178 int CheckAppSpawnMsgFlag(const AppSpawnMsgNode *message, uint32_t type, uint32_t index);
179 int SetAppSpawnMsgFlag(const AppSpawnMsgNode *message, uint32_t type, uint32_t index);
210 return (appProperty != NULL && appProperty->message != NULL) ?
211 appProperty->message->msgHeader.msgType : MAX_TYPE_INVALID;
216 if (property == NULL || property->message == NULL) {
219 return property->message->msgHeader.processName;
224 if (property == NULL || property->message == NULL) {
227 AppSpawnMsgBundleInfo *info = (AppSpawnMsgBundleInfo *)GetAppSpawnMsgInfo(property->message, TLV_BUNDLE_INFO);
236 APPSPAWN_CHECK(property != NULL && property->message != NULL,
238 return GetAppSpawnMsgInfo(property->message, type);
244 APPSPAWN_CHECK(property != NULL && property->message != NULL,
246 return GetAppSpawnMsgExtInfo(property->message, name, len);
251 APPSPAWN_CHECK(property != NULL && property->message != NULL,
253 return CheckAppSpawnMsgFlag(property->message, TLV_MSG_FLAGS, index);
258 APPSPAWN_CHECK(property != NULL && property->message != NULL,
260 return CheckAppSpawnMsgFlag(property->message, TLV_PERMISSION, index);
265 APPSPAWN_CHECK(property != NULL && property->message != NULL,
267 return SetAppSpawnMsgFlag(property->message, TLV_PERMISSION, index);