static void parse_settings_userid(char *line, struct membuffer *str, void *_unused) { if (line) { set_save_userid_local(true); set_userid(line); } }
static int parse_settings_entry(git_repository *repo, const git_tree_entry *entry) { git_blob *blob = git_tree_entry_blob(repo, entry); if (!blob) return report_error("Unable to read settings file"); set_save_userid_local(false); set_userid(""); for_each_line(blob, settings_parser, NULL); git_blob_free(blob); return 0; }
void RseLogin::MergeFrom(const RseLogin& from) { GOOGLE_CHECK_NE(&from, this); if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) { if (from._has_bit(0)) { set_currenttimemillis(from.currenttimemillis()); } if (from._has_bit(1)) { set_id(from.id()); } if (from._has_bit(2)) { set_levelbasedonscore(from.levelbasedonscore()); } if (from._has_bit(3)) { set_myaccountislocked(from.myaccountislocked()); } if (from._has_bit(4)) { set_pop(from.pop()); } if (from._has_bit(5)) { set_rqid(from.rqid()); } if (from._has_bit(6)) { set_sync(from.sync()); } if (from._has_bit(7)) { set_timefromlastlogin(from.timefromlastlogin()); } } if (from._has_bits_[8 / 32] & (0xffu << (8 % 32))) { if (from._has_bit(8)) { set_timefromlastupdate(from.timefromlastupdate()); } if (from._has_bit(9)) { set_token(from.token()); } if (from._has_bit(10)) { set_userid(from.userid()); } if (from._has_bit(11)) { set_version(from.version()); } if (from._has_bit(12)) { set_vip(from.vip()); } } mutable_unknown_fields()->MergeFrom(from.unknown_fields()); }