Lines Matching refs:lbl

1991   UserLabel *lbl = new UserLabel (name);  in startElement()  local
1992 lbl->comment = comment; in startElement()
1993 lbl->hostname = hostName; in startElement()
1994 lbl->start_sec = startSec; in startElement()
1995 lbl->start_hrtime = startHrtime; in startElement()
1996 exp->userLabels->append (lbl); in startElement()
1999 lbl->all_times = all_times; in startElement()
2000 lbl->start_tv = start_tv; in startElement()
2001 lbl->relative = relative; in startElement()
2003 lbl->atime = lbl_ts; in startElement()
2007 if (exp->hostname && strcmp (lbl->hostname, exp->hostname) == 0) in startElement()
2008 delta = lbl_ts + (lbl->start_hrtime - exp->exp_start_time); in startElement()
2013 if (strcmp (lbl->hostname, firstLbl->hostname) == 0) in startElement()
2015 delta = lbl_ts + (lbl->start_hrtime - firstLbl->start_hrtime) + in startElement()
2020 lbl->atime = delta > 0 ? delta : 0; in startElement()
2092 UserLabel *lbl = userLabels->fetch (i); in read_labels_file() local
2094 ulbl = new UserLabel (lbl->name); in read_labels_file()
2095 else if (dbe_strcmp (lbl->name, ulbl->name) != 0) in read_labels_file()
2100 ulbl = new UserLabel (lbl->name); in read_labels_file()
2102 if (lbl->all_times) in read_labels_file()
2104 if (strncmp (lbl->all_times, NTXT ("start"), 5) == 0) in read_labels_file()
2109 ulbl->timeStart = lbl->atime; in read_labels_file()
2116 ulbl->all_times = append_string (ulbl->all_times, lbl->all_times); in read_labels_file()
2118 ulbl->timeStop = lbl->atime; in read_labels_file()
2122 if (lbl->comment != NULL) in read_labels_file()
2123 ulbl->comment = append_string (ulbl->comment, lbl->comment); in read_labels_file()