/third_party/python/Lib/test/ |
H A D | test_smtpnet.py | 29 support.get_attribute(smtplib, 'SMTP_SSL') 51 support.get_attribute(smtplib, 'SMTP_SSL') 58 support.get_attribute(smtplib, 'SMTP_SSL') 68 support.get_attribute(smtplib, 'SMTP_SSL') 80 support.get_attribute(smtplib, 'SMTP_SSL')
|
H A D | test_ioctl.py | 3 from test.support import get_attribute namespace 8 get_attribute(termios, 'TIOCGPGRP') #Can't run tests without this feature
|
H A D | test_startfile.py | 18 startfile = support.get_attribute(os, 'startfile')
|
H A D | test_wait4.py | 15 support.get_attribute(os, 'wait4')
|
H A D | test_imp.py | 335 create_dynamic = support.get_attribute(imp, 'create_dynamic') 395 create_builtin = support.get_attribute(_imp, "create_builtin")
|
H A D | test_property.py | 179 gettotalrefcount = support.get_attribute(sys, 'gettotalrefcount')
|
H A D | test_support.py | 64 self.assertEqual(support.get_attribute(self, "test_get_attribute"), 66 self.assertRaises(unittest.SkipTest, support.get_attribute, self, "foo")
|
H A D | test_socketserver.py | 417 pthread_kill = test.support.get_attribute(signal, 'pthread_kill')
|
H A D | test_wsgiref.py | 243 pthread_kill = support.get_attribute(signal, "pthread_kill")
|
H A D | test_sys.py | 336 test.support.get_attribute(sys, "getwindowsversion") 714 test.support.get_attribute(sys, "getwindowsversion")
|
H A D | test_bz2.py | 840 gettotalrefcount = support.get_attribute(sys, 'gettotalrefcount')
|
H A D | test_lzma.py | 376 gettotalrefcount = support.get_attribute(sys, 'gettotalrefcount')
|
H A D | test_descr.py | 1604 gettotalrefcount = support.get_attribute(sys, 'gettotalrefcount') 1687 gettotalrefcount = support.get_attribute(sys, 'gettotalrefcount')
|
/third_party/elfio/elfio/ |
H A D | elfio_modinfo.hpp | 47 get_attribute( Elf_Word no, std::string& field, std::string& value ) const in get_attribute() function in ELFIO::modinfo_section_accessor_template 59 bool get_attribute( const std::string& field_name, in get_attribute() function in ELFIO::modinfo_section_accessor_template
|
H A D | elfio_dump.hpp | 1066 if ( modinfo.get_attribute( i, field, value ) ) { in modinfo()
|
/third_party/musl/libc-test/src/functional/ |
H A D | test-malloc-info.c | 31 static const xmlChar *get_attribute(const char *attr_name, xmlNodePtr node) in get_attribute() function 51 if (xmlStrEqual(get_attribute(attr_name, curr_node), (const xmlChar *) attr_value)) { in find_child_node_with_attr()
|
/third_party/elfio/tests/ |
H A D | ELFIOTest2.cpp | 63 modinfo.get_attribute( i, field, value ); in TEST() 73 modinfo.get_attribute( field, value ); in TEST() 127 modinfo.get_attribute( i, field, value ); in TEST() 137 modinfo.get_attribute( field, value ); in TEST()
|
/third_party/alsa-lib/src/control/ |
H A D | control_ext.c | 138 ret = ext->callback->get_attribute(ext, key, &type, &info->access, &info->count); in snd_ctl_ext_elem_info() 218 ret = ext->callback->get_attribute(ext, key, &type, &access, &count); in snd_ctl_ext_elem_read() 272 ret = ext->callback->get_attribute(ext, key, &type, &access, &count); in snd_ctl_ext_elem_write() 351 ret = ext->callback->get_attribute(ext, key, &type, &access, &count); in snd_ctl_ext_elem_tlv() 653 The get_attribute is a mandatory callback, which returns the attribute of the 671 (i.e. the count value in get_attribute callback is more than 1), <i>all</i> values
|
/third_party/alsa-lib/include/ |
H A D | control_external.h | 171 int (*get_attribute)(snd_ctl_ext_t *ext, snd_ctl_ext_key_t key, member 257 * The access type bits stored in get_attribute callback
|
/third_party/node/deps/openssl/openssl/crypto/pkcs7/ |
H A D | pk7_doit.c | 22 static ASN1_TYPE *get_attribute(const STACK_OF(X509_ATTRIBUTE) *sk, int nid); 1163 return get_attribute(si->auth_attr, nid); in PKCS7_get_signed_attribute() 1168 return get_attribute(si->unauth_attr, nid); in PKCS7_get_attribute() 1171 static ASN1_TYPE *get_attribute(const STACK_OF(X509_ATTRIBUTE) *sk, int nid) in STACK_OF() 1183 if ((astype = get_attribute(sk, NID_pkcs9_messageDigest)) == NULL) in STACK_OF()
|
/third_party/openssl/crypto/pkcs7/ |
H A D | pk7_doit.c | 22 static ASN1_TYPE *get_attribute(const STACK_OF(X509_ATTRIBUTE) *sk, int nid); 1163 return get_attribute(si->auth_attr, nid); in PKCS7_get_signed_attribute() 1168 return get_attribute(si->unauth_attr, nid); in PKCS7_get_attribute() 1171 static ASN1_TYPE *get_attribute(const STACK_OF(X509_ATTRIBUTE) *sk, int nid) in STACK_OF() 1183 if ((astype = get_attribute(sk, NID_pkcs9_messageDigest)) == NULL) in STACK_OF()
|
/third_party/elfio/c_wrapper/ |
H A D | elfio_c_wrapper.cpp | 405 bool ret = pmodinfo->get_attribute( no, field_str, value_str ); in elfio_modinfo_get_attribute() 418 bool ret = pmodinfo->get_attribute( value_str, value_str ); in elfio_modinfo_get_attribute_by_name()
|
/third_party/elfio/examples/c_wrapper/ |
H A D | elfio_c_wrapper.cpp | 406 bool ret = pmodinfo->get_attribute( no, field_str, value_str ); in elfio_modinfo_get_attribute() 419 bool ret = pmodinfo->get_attribute( value_str, value_str ); in elfio_modinfo_get_attribute_by_name()
|
/third_party/python/Lib/email/ |
H A D | _header_value_parser.py | 2296 def get_attribute(value): function 2423 token, value = get_attribute(value)
|
/third_party/python/Lib/test/support/ |
H A D | __init__.py | 41 "bigmemtest", "bigaddrspacetest", "cpython_only", "get_attribute", 170 def get_attribute(obj, name): function
|