Lines Matching refs:rc
44 int rc; in drtm_event_log_measure_and_record() local
53 rc = event_log_measure(data_base, data_size, hash_data, in drtm_event_log_measure_and_record()
55 if (rc != 0) { in drtm_event_log_measure_and_record()
56 return rc; in drtm_event_log_measure_and_record()
60 rc = event_log_write_pcr_event2(pcr, event_type, in drtm_event_log_measure_and_record()
64 if (rc != 0) { in drtm_event_log_measure_and_record()
65 return rc; in drtm_event_log_measure_and_record()
83 int rc; in drtm_event_log_init() local
88 rc = event_log_init_and_reg( in drtm_event_log_init()
91 if (rc < 0) { in drtm_event_log_init()
92 ERROR("Failed to initialize event log (%d).\n", rc); in drtm_event_log_init()
96 rc = event_log_write_header(algorithms, ARRAY_SIZE(algorithms), 0, NULL, in drtm_event_log_init()
98 if (rc < 0) { in drtm_event_log_init()
99 ERROR("Failed to write event log header (%d).\n", rc); in drtm_event_log_init()
106 int rc; in drtm_take_measurements() local
124 rc = drtm_event_log_measure_and_record((uintptr_t)&drtm_null_data, in drtm_take_measurements()
128 CHECK_RC(rc, drtm_event_log_measure_and_record(DRTM_EVENT_ARM_DCE)); in drtm_take_measurements()
131 rc = drtm_event_log_measure_and_record((uintptr_t)&pcr_schema, in drtm_take_measurements()
135 CHECK_RC(rc, in drtm_take_measurements()
160 rc = drtm_event_log_measure_and_record((uintptr_t)drtm_event_arm_sep_data, in drtm_take_measurements()
165 CHECK_RC(rc, drtm_event_log_measure_and_record(DRTM_EVENT_ARM_SEPARATOR)); in drtm_take_measurements()
172 rc = drtm_event_log_measure_and_record((uintptr_t)&pcr_schema, in drtm_take_measurements()
176 CHECK_RC(rc, in drtm_take_measurements()
185 rc = drtm_event_log_measure_and_record((uintptr_t)&drtm_null_data, in drtm_take_measurements()
189 CHECK_RC(rc, in drtm_take_measurements()
194 rc = mmap_add_dynamic_region_alloc_va(a->dlme_paddr + a->dlme_img_off, in drtm_take_measurements()
197 if (rc) { in drtm_take_measurements()
199 __func__, rc); in drtm_take_measurements()
203 rc = drtm_event_log_measure_and_record(dlme_img_mapping, a->dlme_img_size, in drtm_take_measurements()
206 CHECK_RC(rc, drtm_event_log_measure_and_record(DRTM_EVENT_ARM_DLME)); in drtm_take_measurements()
208 rc = mmap_remove_dynamic_region(dlme_img_mapping, dlme_img_mapping_bytes); in drtm_take_measurements()
209 CHECK_RC(rc, mmap_remove_dynamic_region); in drtm_take_measurements()
217 CHECK_RC(rc, drtm_event_log_measure_and_record(DRTM_EVENT_ARM_DLME_EP)); in drtm_take_measurements()
220 rc = drtm_event_log_measure_and_record((uintptr_t)drtm_event_arm_sep_data, in drtm_take_measurements()
225 CHECK_RC(rc, in drtm_take_measurements()
229 CHECK_RC(rc, in drtm_take_measurements()