Lines Matching refs:lbl
1989 UserLabel *lbl = new UserLabel (name); in startElement() local
1990 lbl->comment = comment; in startElement()
1991 lbl->hostname = hostName; in startElement()
1992 lbl->start_sec = startSec; in startElement()
1993 lbl->start_hrtime = startHrtime; in startElement()
1994 exp->userLabels->append (lbl); in startElement()
1997 lbl->all_times = all_times; in startElement()
1998 lbl->start_tv = start_tv; in startElement()
1999 lbl->relative = relative; in startElement()
2001 lbl->atime = lbl_ts; in startElement()
2005 if (exp->hostname && strcmp (lbl->hostname, exp->hostname) == 0) in startElement()
2006 delta = lbl_ts + (lbl->start_hrtime - exp->exp_start_time); in startElement()
2011 if (strcmp (lbl->hostname, firstLbl->hostname) == 0) in startElement()
2013 delta = lbl_ts + (lbl->start_hrtime - firstLbl->start_hrtime) + in startElement()
2018 lbl->atime = delta > 0 ? delta : 0; in startElement()
2090 UserLabel *lbl = userLabels->fetch (i); in read_labels_file() local
2092 ulbl = new UserLabel (lbl->name); in read_labels_file()
2093 else if (dbe_strcmp (lbl->name, ulbl->name) != 0) in read_labels_file()
2098 ulbl = new UserLabel (lbl->name); in read_labels_file()
2100 if (lbl->all_times) in read_labels_file()
2102 if (strncmp (lbl->all_times, NTXT ("start"), 5) == 0) in read_labels_file()
2107 ulbl->timeStart = lbl->atime; in read_labels_file()
2114 ulbl->all_times = append_string (ulbl->all_times, lbl->all_times); in read_labels_file()
2116 ulbl->timeStop = lbl->atime; in read_labels_file()
2120 if (lbl->comment != NULL) in read_labels_file()
2121 ulbl->comment = append_string (ulbl->comment, lbl->comment); in read_labels_file()