Lines Matching refs:lp
360 struct bfa_plog_rec_s lp; in bfa_plog_str() local
363 memset(&lp, 0, sizeof(struct bfa_plog_rec_s)); in bfa_plog_str()
364 lp.mid = mid; in bfa_plog_str()
365 lp.eid = event; in bfa_plog_str()
366 lp.log_type = BFA_PL_LOG_TYPE_STRING; in bfa_plog_str()
367 lp.misc = misc; in bfa_plog_str()
368 strncpy(lp.log_entry.string_log, log_str, in bfa_plog_str()
370 lp.log_entry.string_log[BFA_PL_STRING_LOG_SZ - 1] = '\0'; in bfa_plog_str()
371 bfa_plog_add(plog, &lp); in bfa_plog_str()
380 struct bfa_plog_rec_s lp; in bfa_plog_intarr() local
387 memset(&lp, 0, sizeof(struct bfa_plog_rec_s)); in bfa_plog_intarr()
388 lp.mid = mid; in bfa_plog_intarr()
389 lp.eid = event; in bfa_plog_intarr()
390 lp.log_type = BFA_PL_LOG_TYPE_INT; in bfa_plog_intarr()
391 lp.misc = misc; in bfa_plog_intarr()
394 lp.log_entry.int_log[i] = intarr[i]; in bfa_plog_intarr()
396 lp.log_num_ints = (u8) num_ints; in bfa_plog_intarr()
398 bfa_plog_add(plog, &lp); in bfa_plog_intarr()
407 struct bfa_plog_rec_s lp; in bfa_plog_fchdr() local
412 memset(&lp, 0, sizeof(struct bfa_plog_rec_s)); in bfa_plog_fchdr()
427 struct bfa_plog_rec_s lp; in bfa_plog_fchdr_and_pl() local
432 memset(&lp, 0, sizeof(struct bfa_plog_rec_s)); in bfa_plog_fchdr_and_pl()