Home
last modified time | relevance | path

Searched refs:_bind (Results 1 – 9 of 9) sorted by relevance

/external/wpa_supplicant_8/src/eap_peer/
Deap_fast.c596 struct eap_tlv_crypto_binding_tlv *_bind) in eap_fast_validate_crypto_binding() argument
600 _bind->version, _bind->received_version, _bind->subtype); in eap_fast_validate_crypto_binding()
602 _bind->nonce, sizeof(_bind->nonce)); in eap_fast_validate_crypto_binding()
604 _bind->compound_mac, sizeof(_bind->compound_mac)); in eap_fast_validate_crypto_binding()
606 if (_bind->version != EAP_FAST_VERSION || in eap_fast_validate_crypto_binding()
607 _bind->received_version != EAP_FAST_VERSION || in eap_fast_validate_crypto_binding()
608 _bind->subtype != EAP_TLV_CRYPTO_BINDING_SUBTYPE_REQUEST) { in eap_fast_validate_crypto_binding()
612 _bind->version, _bind->received_version, in eap_fast_validate_crypto_binding()
613 _bind->subtype); in eap_fast_validate_crypto_binding()
623 struct eap_tlv_crypto_binding_tlv *_bind, const u8 *cmk) in eap_fast_write_crypto_binding() argument
[all …]
/external/libxcam/modules/soft/
Dsoft_image.h55 SmartPtr<VideoBuffer> _bind; variable
67 if (!_bind.ptr ()) { in ~SoftImage()
90 return _bind; in get_bind_buf()
229 _bind = buf; in SoftImage()
257 , _bind (buf) in SoftImage()
/external/v8/src/inspector/
Dinjected-script-source.js278 _bind: function(object, objectGroupName) method in InjectedScript
781 this.objectId = injectedScript._bind(object, objectGroupName);
846 var formatterObjectId = injectedScript._bind(formatters[i], objectGroupName);
847 var bindRemoteObjectFunctionId = injectedScript._bind(wrap, objectGroupName);
850 … result["configObjectId"] = injectedScript._bind(customObjectConfig, objectGroupName);
/external/python/funcsigs/funcsigs/
D__init__.py648 def _bind(self, args, kwargs, partial=False): member in Signature
781 return self._bind(args, kwargs)
788 return self._bind(args, kwargs, partial=True)
/external/python/cpython3/Lib/tkinter/
D__init__.py1195 def _bind(self, what, sequence, func, add, needcleanup=1): member in Misc
1251 return self._bind(('bind', self._w), sequence, func, add)
1263 return self._bind(('bind', 'all'), sequence, func, add, 0)
1276 return self._bind(('bind', className), sequence, func, add, 0)
2452 return self._bind((self._w, 'bind', tagOrId),
3359 return self._bind((self._w, 'tag', 'bind', tagName),
Dttk.py1494 self._bind((self._w, "tag", "bind", tagname), sequence, callback, add=0)
/external/python/cpython2/Lib/lib-tk/
DTkinter.py1047 def _bind(self, what, sequence, func, add, needcleanup=1): member in Misc
1103 return self._bind(('bind', self._w), sequence, func, add)
1115 return self._bind(('bind', 'all'), sequence, func, add, 0)
1128 return self._bind(('bind', className), sequence, func, add, 0)
2288 return self._bind((self._w, 'bind', tagOrId),
3184 return self._bind((self._w, 'tag', 'bind', tagName),
Dttk.py1441 self._bind((self._w, "tag", "bind", tagname), sequence, callback, add=0)
/external/python/cpython3/Lib/
Dinspect.py2879 def _bind(self, args, kwargs, *, partial=False): member in Signature
3015 return args[0]._bind(args[1:], kwargs)
3022 return args[0]._bind(args[1:], kwargs, partial=True)