Lines Matching defs:cmo
777 ctf_merge_objmap_t *cmo;
820 for (cmo = list_head(&scmi->cmi_omap); cmo != NULL;
821 cmo = list_next(&scmi->cmi_omap, cmo)) {
822 if (cmo->cmo_tid == 0)
824 VERIFY(cm.cm_tmap[cmo->cmo_tid].cmt_map != 0);
825 cmo->cmo_tid = cm.cm_tmap[cmo->cmo_tid].cmt_map;
865 ctf_merge_objmap_t *cmo;
868 for (cmo = list_head(&cmi->cmi_omap); cmo != NULL;
869 cmo = list_next(&cmi->cmi_omap, cmo)) {
870 if (cmo->cmo_tid == 0)
872 VERIFY(cmp->cm_tmap[cmo->cmo_tid].cmt_map != 0);
873 cmo->cmo_tid = cmp->cm_tmap[cmo->cmo_tid].cmt_map;
963 ctf_merge_objmap_t *cmo;
966 while ((cmo = list_remove_head(&cmi->cmi_omap)) != NULL)
967 ctf_free(cmo, sizeof (ctf_merge_objmap_t));
1095 ctf_merge_objmap_t *cmo;
1097 cmo = ctf_alloc(sizeof (ctf_merge_objmap_t));
1098 if (cmo == NULL)
1101 cmo->cmo_name = name;
1102 cmo->cmo_idx = idx;
1103 cmo->cmo_tid = id;
1104 list_insert_tail(&cmi->cmi_omap, cmo);
1209 ctf_merge_objmap_t *cmo;
1231 cmo = NULL;
1234 for (cmo = list_head(&cmi->cmi_omap); cmo != NULL;
1235 cmo = list_next(&cmi->cmi_omap, cmo)) {
1236 if (strcmp(cmo->cmo_name, name) == 0)
1241 if (cmo != NULL) {
1242 if (cmo->cmo_tid == 0)
1244 if ((err = ctf_add_object(fp, i, cmo->cmo_tid)) != 0) {
1246 name, cmo->cmo_tid,