Home | History | Annotate | Download | only in crypto

Lines Matching refs:handle

22   void operator()(CAPIHandle handle) const {
23 if (handle) {
24 BOOL ok = Destroyer(handle);
36 void operator()(CAPIHandle handle) const {
37 if (handle) {
38 BOOL ok = Destroyer(handle, flags);
51 explicit ScopedCAPIHandle(CAPIHandle handle = NULL) : handle_(handle) {}
57 void reset(CAPIHandle handle = NULL) {
58 if (handle_ != handle) {
61 handle_ = handle;
73 bool operator==(CAPIHandle handle) const {
74 return handle_ == handle;
77 bool operator!=(CAPIHandle handle) const {
78 return handle_ != handle;