Searched refs:rec (Results 1 - 17 of 17) sorted by path

/u-boot/tools/kermit/
H A Dflash_param16 set rec pack 1000
H A Dsend_cmd11 set rec pack 1000
H A Dsend_image13 set rec pack 1000
/u-boot/arch/arm/mach-imx/
H A Dhab.c419 struct record *rec = (struct record *)event_data;
421 printf("\n\n%s", sts_str[get_idx(hab_statuses, rec->contents[0],
423 printf("%s", rsn_str[get_idx(hab_reasons, rec->contents[1],
425 printf("%s", ctx_str[get_idx(hab_contexts, rec->contents[2],
427 printf("%s", eng_str[get_idx(hab_engines, rec->contents[3],
492 static int get_record_len(struct record *rec)
494 return (size_t)((rec->len[0] << 8) + (rec->len[1]));
519 struct record *rec = (struct record *)(HAB_M4_PERSISTENT_START);
521 record_len = get_record_len(rec);
418 struct record *rec = (struct record *)event_data; local
491 get_record_len(struct record *rec) argument
518 struct record *rec = (struct record *)(HAB_M4_PERSISTENT_START); local
[all...]
/u-boot/arch/x86/cpu/
H A Dmp_init.c207 struct mp_flight_record *rec = &mp_info.records[i]; local
209 atomic_inc(&rec->cpus_entered);
210 barrier_wait(&rec->barrier);
212 if (rec->ap_call != NULL)
213 rec->ap_call(cpu, rec->ap_arg);
513 struct mp_flight_record *rec = &plan->records[i]; local
516 if (atomic_read(&rec->barrier) == 0) {
518 if (wait_for_aps(&rec->cpus_entered, num_aps,
525 if (rec
[all...]
/u-boot/arch/x86/lib/coreboot/
H A Dcb_sysinfo.c313 struct cb_record *rec = (struct cb_record *)ptr; local
316 switch (rec->tag) {
320 ((struct cb_forward *)rec)->forward,
433 cb_parse_x86_rom_var_mtrr(rec, info);
436 cb_parse_mrc_cache(rec, info);
439 cb_parse_acpi_rsdp(rec, info);
443 info->unimpl[info->unimpl_count++] = rec->tag;
444 cb_parse_unhandled(rec->tag, ptr);
448 ptr += rec->size;
/u-boot/cmd/
H A Dlog.c406 "log rec <category> <level> <file> <line> <func> <message> - "
418 U_BOOT_SUBCMD_MKENT(rec, 7, 1, do_log_rec),
/u-boot/common/
H A Dbloblist.c88 static inline uint rec_hdr_size(struct bloblist_rec *rec)
90 return (rec->tag_and_hdr_size & BLOBLISTR_HDR_SIZE_MASK) >>
94 static inline uint rec_tag(struct bloblist_rec *rec)
96 return (rec->tag_and_hdr_size & BLOBLISTR_TAG_MASK) >>
101 struct bloblist_rec *rec)
105 offset = (void *)rec - (void *)hdr;
110 offset += rec_hdr_size(rec) + rec->size;
111 offset = round_up(offset + rec_hdr_size(rec), 1 << hdr->align_log2);
112 offset -= rec_hdr_size(rec);
87 rec_hdr_size(struct bloblist_rec *rec) argument
93 rec_tag(struct bloblist_rec *rec) argument
99 bloblist_blob_end_ofs(struct bloblist_hdr *hdr, struct bloblist_rec *rec) argument
116 bloblist_next_blob(struct bloblist_hdr *hdr, struct bloblist_rec *rec) argument
134 struct bloblist_rec *rec; local
151 struct bloblist_rec *rec; local
204 struct bloblist_rec *rec; local
226 struct bloblist_rec *rec; local
239 struct bloblist_rec *rec; local
249 struct bloblist_rec *rec; local
262 struct bloblist_rec *rec; local
272 struct bloblist_rec *rec; local
285 bloblist_resize_rec(struct bloblist_hdr *hdr, struct bloblist_rec *rec, int new_size) argument
330 struct bloblist_rec *rec; local
462 struct bloblist_rec *rec; local
[all...]
H A Dbootstage.c87 struct bootstage_record *rec;
90 for (rec = data->record, end = rec + data->rec_count; rec < end;
91 rec++) {
92 if (rec->id == id)
93 return rec;
102 struct bootstage_record *rec;
104 rec = find_id(data, id);
105 if (!rec
86 struct bootstage_record *rec; local
101 struct bootstage_record *rec; local
117 struct bootstage_record *rec; local
195 struct bootstage_record *rec = ensure_id(data, id); local
209 struct bootstage_record *rec = ensure_id(data, id); local
228 get_record_name(char *buf, int len, const struct bootstage_record *rec) argument
241 print_time_record(struct bootstage_record *rec, uint32_t prev) argument
295 struct bootstage_record *rec = &data->record[recnum]; local
332 struct bootstage_record *rec = data->record; local
387 const struct bootstage_record *rec; local
436 struct bootstage_record *rec; local
521 struct bootstage_record *rec; local
[all...]
H A Diotrace.c43 struct iotrace_record srec, *rec = &srec;
60 if (iotrace.offset + sizeof(*rec) < iotrace.size) {
61 rec = (struct iotrace_record *)map_sysmem(
70 rec->timestamp = timer_get_us();
71 rec->flags = flags;
72 rec->addr = map_to_sysmem(ptr);
73 rec->value = value;
76 iotrace.crc32 = crc32(iotrace.crc32, (unsigned char *)rec,
77 sizeof(*rec));
42 struct iotrace_record srec, *rec = &srec; local
H A Dlog.c153 * @rec: Log record to check
154 * Return: true if @rec is not blocked by the filters in @ldev, false if it is
156 static bool log_passes_filters(struct log_device *ldev, struct log_rec *rec)
160 if (rec->flags & LOGRECF_FORCE_DEBUG)
165 if (rec->level > gd->default_log_level)
172 if (rec->level < filt->level)
174 } else if (rec->level > filt->level) {
179 !log_has_cat(filt->cat_list, rec->cat))
183 !log_has_file(filt->file_list, rec->file))
201 * All log messages created while processing log record @rec ar
155 log_passes_filters(struct log_device *ldev, struct log_rec *rec) argument
205 log_dispatch(struct log_rec *rec, const char *fmt, va_list args) argument
240 struct log_rec rec; local
[all...]
H A Dlog_console.c15 static int log_console_emit(struct log_device *ldev, struct log_rec *rec)
30 if (!(rec->flags & LOGRECF_CONT) && fmt != BIT(LOGF_MSG)) {
33 printf("%s.", log_get_level_name(rec->level));
35 printf("%s,", log_get_cat_name(rec->cat));
37 printf("%s:", rec->file);
39 printf("%d-", rec->line);
42 printf("%s()", rec->func);
45 rec->func);
50 printf("%s%s", add_space ? " " : "", rec->msg);
14 log_console_emit(struct log_device *ldev, struct log_rec *rec) argument
H A Dlog_syslog.c28 static int log_syslog_emit(struct log_device *ldev, struct log_rec *rec)
70 log_level = rec->level;
83 log_get_level_name(rec->level));
86 log_get_cat_name(rec->cat));
88 append(&ptr, msg_end, "%s:", rec->file);
90 append(&ptr, msg_end, "%d-", rec->line);
92 append(&ptr, msg_end, "%s()", rec->func);
95 fmt != BIT(LOGF_MSG) ? " " : "", rec->msg);
27 log_syslog_emit(struct log_device *ldev, struct log_rec *rec) argument
/u-boot/include/
H A Dlog.h434 int (*emit)(struct log_device *ldev, struct log_rec *rec);
/u-boot/lib/
H A Dtrace.c114 struct trace_call *rec = &hdr->ftrace[hdr->ftrace_count]; local
116 rec->func = func_ptr_to_num(func_ptr);
117 rec->caller = func_ptr_to_num(caller);
118 rec->flags = flags | (timer_get_us() & FUNCF_TIMESTAMP_MASK);
253 size_t rec, upto; local
267 for (rec = upto = 0; rec < count; rec++) {
269 struct trace_call *call = &hdr->ftrace[rec];
/u-boot/test/
H A Dbloblist.c103 struct bloblist_rec *rec, *rec2;
117 rec = (void *)(hdr + 1);
118 ut_asserteq_addr(rec + 1, data);
120 ut_asserteq_addr(rec + 1, data);
102 struct bloblist_rec *rec, *rec2; local
/u-boot/tools/buildman/
H A Dkconfiglib.py6114 def rec(subexpr): function in function:expr_items
6118 rec(subexpr[1])
6122 rec(subexpr[2])
6128 rec(expr)
6166 def rec(subexpr): function in function:split_expr
6168 rec(subexpr[1])
6169 rec(subexpr[2])
6173 rec(expr)

Completed in 160 milliseconds