Lines Matching refs:info
3910 private static CAFEX_ERROR TryGetWumadInfo(string wumadTempDir, ref WumadInfo info) in TryGetWumadInfo() argument
3923 info.titleFound = false; in TryGetWumadInfo()
3934 info.titleFound = true; in TryGetWumadInfo()
3935 info.titleId = singleTitleId; in TryGetWumadInfo()
3936 info.metaXml = metaFiles[0]; in TryGetWumadInfo()
3937 info.appXml = appFiles[0]; in TryGetWumadInfo()
3938 info.cosXml = cosFiles[0]; in TryGetWumadInfo()
3978 info.titleId = titleId; in TryGetWumadInfo()
3979 info.titleFound = true; in TryGetWumadInfo()
3984 if (!info.titleFound) in TryGetWumadInfo()
3990 info.metaXml = metaFiles[targetIndex]; in TryGetWumadInfo()
3991 info.appXml = appFiles[targetIndex]; in TryGetWumadInfo()
3992 info.cosXml = cosFiles[targetIndex]; in TryGetWumadInfo()
4215 WumadInfo info = new WumadInfo(); in bootrun()
4216 CAFEX_ERROR wumadInfoResult = TryGetWumadInfo(wumadTempDir, ref info); in bootrun()
4227 if (info.titleFound) in bootrun()
4229 CAFERUN_WUMAD_TITLE_ID.value = info.titleId; in bootrun()
4241 info.titleFound) in bootrun()
4244 file_copy_retry(info.metaXml, contentMetaXml, true, 3); in bootrun()
4247 string title_id = XmlHandler.GetNodeValue(info.appXml, "title_id"); in bootrun()
4248 … string title_version = XmlHandler.GetNodeValue(info.appXml, "title_version"); in bootrun()
4249 string os_version = XmlHandler.GetNodeValue(info.appXml, "os_version"); in bootrun()
4250 string app_type = XmlHandler.GetNodeValue(info.appXml, "app_type"); in bootrun()
4251 string app_group_id = XmlHandler.GetNodeValue(info.appXml, "group_id"); in bootrun()