Home | History | Annotate | Download | only in keymaster

Lines Matching refs:table_

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