Home | History | Annotate | Download | only in crypto

Lines Matching refs:handle_

50   explicit ScopedCAPIHandle(CAPIHandle handle = NULL) : handle_(handle) {}
57 if (handle_ != handle) {
59 free_proc(handle_);
60 handle_ = handle;
64 operator CAPIHandle() const { return handle_; }
65 CAPIHandle get() const { return handle_; }
68 CHECK(handle_ == NULL);
69 return &handle_;
73 return handle_ == handle;
77 return handle_ != handle;
81 CAPIHandle tmp = b.handle_;
82 b.handle_ = handle_;
83 handle_ = tmp;
87 CAPIHandle tmp = handle_;
88 handle_ = NULL;
93 CAPIHandle handle_;