Lines Matching refs:raw
94 GetStatusHelper raw(system_state(), errmsg); in GetValue() local
95 if (!raw.is_success()) in GetValue()
98 return new Time(Time::FromTimeT(raw.last_checked_time())); in GetValue()
113 GetStatusHelper raw(system_state(), errmsg); in GetValue() local
114 if (!raw.is_success()) in GetValue()
117 if (raw.progress() < 0.0 || raw.progress() > 1.0) { in GetValue()
120 raw.progress()); in GetValue()
125 return new double(raw.progress()); in GetValue()
167 GetStatusHelper raw(system_state(), errmsg); in GetValue() local
168 if (!raw.is_success()) in GetValue()
172 if (raw.update_status() == key_val.str) in GetValue()
176 *errmsg = string("Unknown update status: ") + raw.update_status(); in GetValue()
188 GetStatusHelper raw(system_state(), errmsg); in GetValue() local
189 if (!raw.is_success()) in GetValue()
192 return new string(raw.new_version()); in GetValue()
206 GetStatusHelper raw(system_state(), errmsg); in GetValue() local
207 if (!raw.is_success()) in GetValue()
210 if (raw.payload_size() < 0) { in GetValue()
212 *errmsg = string("Invalid payload size: %" PRId64, raw.payload_size()); in GetValue()
216 return new int64_t(raw.payload_size()); in GetValue()