Lines Matching defs:msg
199 RTGMsg msg = RTGMsg::Build(CMD_CREATE_RTG).Out(&tgid).OutSize(sizeof(tgid)); in GetThreadGroup() local
208 RTGMsg msg = RTGMsg::Build(CMD_RELEASE_RTG, tgid); in PutThreadGroup() local
216 RTGMsg msg = RTGMsg::Build(CMD_ADD_RTG_THREAD, tgid, tid); in JoinThread() local
224 RTGMsg msg = RTGMsg::Build(CMD_DEL_RTG_THREAD, tgid, tid); in RemoveThread() local
232 RTGMsg msg = RTGMsg::Build(CMD_SET_GROUP_UTIL, tgid, util); in UpdatePerfUtil() local
240 RTGMsg msg = RTGMsg::Build(CMD_SET_GROUP_FREQ, tgid, freq); in UpdatePerfFreq() local
249 RTGMsg msg = RTGMsg::Build(CMD_GET_THREAD_LOAD, tgid, tid).Out(&info).OutSize(sizeof(info)); in UpdateAndGetLoad() local
263 RTGMsg msg = RTGMsg::Build(CMD_GET_GROUP_LOAD, tgid).Out(&info).OutSize(sizeof(info)); in UpdateAndGetLoad() local
276 RTGMsg msg = RTGMsg::Build(CMD_SET_GROUP_WINDOW_SIZE, tgid, size); in SetGroupWindowSize() local
284 RTGMsg msg = RTGMsg::Build(CMD_SET_INVALID_INTERVAL, tgid, interval); in SetInvalidInterval() local
292 RTGMsg msg = RTGMsg::Build(CMD_SET_GROUP_WINDOW_ROLLOVER, tgid, RTG_FRAME_START); in Begin() local
300 RTGMsg msg = RTGMsg::Build(CMD_SET_GROUP_WINDOW_ROLLOVER, tgid, RTG_FRAME_END); in End() local
308 RTGMsg msg = RTGMsg::Build(CMD_SET_PREFERRED_CLUSTER, tgid, clusterId); in SetPreferredCluster() local
317 bool RTGCtrl::RTGIOCtrl(RTGMsg& msg) in RTGIOCtrl()