Searched defs:chain_index (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/chrome/browser/history/
H A Ddownload_database.cc64 "chain_index INTEGER NOT NULL," // Index of url in chain
68 "PRIMARY KEY (id, chain_index) )";
262 " ( id, chain_index, url) "
396 "SELECT id, chain_index, url FROM downloads_url_chains "
397 "ORDER BY id, chain_index"));
403 int chain_index = statement_chain.ColumnInt(column++); local
424 DCHECK_EQ(chain_index, current_chain_size);
425 while (current_chain_size < chain_index) {
429 if (current_chain_size > chain_index)
579 "(id, chain_index, ur
[all...]
/external/iptables/libiptc/
H A Dlibiptc.c145 struct chain_head **chain_index; /* array for fast chain list access*/ variable in typeref:struct:chain_head
150 * possible to bsearch offsets using chain_index.
361 if (!handle->chain_index[pos]) {
362 fprintf(stderr, "ERROR: NULL pointer chain_index[%d]\n", pos);
367 pos, handle->chain_index[pos]->name);
372 res = strcmp(name, handle->chain_index[pos]->name);
376 handle->chain_index[pos]->head_offset,
377 handle->chain_index[pos]->foot_offset);
378 res = offset - handle->chain_index[pos]->head_offset;
389 list_pos = &handle->chain_index[po
[all...]

Completed in 129 milliseconds