Lines Matching refs:table_
36 if (!table_.get()) { in Add()
37 table_.reset(new (std::nothrow) Entry[table_size_]); in Add()
38 if (!table_.get()) in Add()
52 if (table_[i].operation == NULL) { in Add()
53 table_[i].operation = op.release(); in Add()
54 table_[i].handle = *op_handle; in Add()
65 if (!table_.get()) in Find()
69 if (table_[i].handle == op_handle) in Find()
70 return table_[i].operation; in Find()
76 if (!table_.get()) in Delete()
80 if (table_[i].handle == op_handle) { in Delete()
81 delete table_[i].operation; in Delete()
82 table_[i].operation = NULL; in Delete()
83 table_[i].handle = 0; in Delete()