Lines Matching refs:pair_id
34 // pair_id An ID number unique to the row in the table.
40 // pair. The |pair_id| should match the |pair_id| field
42 // pair_id
149 // Removes from autofill_dates rows with given pair_id where date_created lies
151 bool RemoveFormElementForTimeRange(int64 pair_id,
156 // Increments the count in the row corresponding to |pair_id| by
159 bool AddToCountOfFormElement(int64 pair_id, int delta, bool* was_removed);
161 // Gets the pair_id and count entries from name and value specified in
162 // |element|. Sets *pair_id and *count to 0 if there is no such row in
165 int64* pair_id,
168 // Gets the count only given the pair_id.
169 bool GetCountOfFormElement(int64 pair_id, int* count);
171 // Updates the count entry in the row corresponding to |pair_id| to |count|.
172 bool SetCountOfFormElement(int64 pair_id, int count);
175 // |element|. Sets *pair_id to the pair_id of the new row.
176 bool InsertFormElement(const webkit_glue::FormField& element, int64* pair_id);
179 bool InsertPairIDAndDate(int64 pair_id, base::Time date_created);
181 // Removes row from the autofill tables given |pair_id|.
182 bool RemoveFormElementForID(int64 pair_id);