/third_party/elfutils/libdw/ |
D | dwarf_getattrcnt.c | 47 unsigned int attrname; in dwarf_getattrcnt() local 53 get_uleb128_unchecked (attrname, abbrevp); in dwarf_getattrcnt() 56 while (attrname != 0 && attrform != 0 && ++attrcnt); in dwarf_getattrcnt()
|
D | dwarf_getabbrev.c | 127 unsigned int attrname; in __libdw_getabbrev() local 133 get_uleb128 (attrname, abbrevp, end); in __libdw_getabbrev() 145 while (attrname != 0 || attrform != 0); in __libdw_getabbrev()
|
/third_party/python/Lib/ctypes/ |
D | _endian.py | 24 def __setattr__(self, attrname, value): argument 25 if attrname == "_fields_": 33 super().__setattr__(attrname, value)
|
/third_party/libevdev/libevdev/ |
D | make-event-names.py | 201 attrname = prefix[:-1].lower() 203 if not hasattr(bits, attrname): 204 setattr(bits, attrname, {}) 205 b = getattr(bits, attrname)
|
/third_party/node/deps/openssl/openssl/crypto/cms/ |
D | cms_att.c | 121 const char *attrname, int type, in CMS_signed_add1_attr_by_txt() argument 124 if (ossl_x509at_add1_attr_by_txt(&si->signedAttrs, attrname, type, bytes, in CMS_signed_add1_attr_by_txt() 190 const char *attrname, int type, in CMS_unsigned_add1_attr_by_txt() argument 193 if (ossl_x509at_add1_attr_by_txt(&si->unsignedAttrs, attrname, in CMS_unsigned_add1_attr_by_txt()
|
/third_party/openssl/crypto/cms/ |
D | cms_att.c | 120 const char *attrname, int type, in CMS_signed_add1_attr_by_txt() argument 123 if (X509at_add1_attr_by_txt(&si->signedAttrs, attrname, type, bytes, len)) in CMS_signed_add1_attr_by_txt() 188 const char *attrname, int type, in CMS_unsigned_add1_attr_by_txt() argument 191 if (X509at_add1_attr_by_txt(&si->unsignedAttrs, attrname, in CMS_unsigned_add1_attr_by_txt()
|
/third_party/python/Lib/ |
D | functools.py | 948 self.attrname = None 953 if self.attrname is None: 954 self.attrname = name 955 elif name != self.attrname: 964 if self.attrname is None: 975 val = cache.get(self.attrname, _NOT_FOUND) 979 val = cache.get(self.attrname, _NOT_FOUND) 983 cache[self.attrname] = val
|
/third_party/openssl/crypto/pkcs12/ |
D | p12_attr.c | 86 int PKCS12_add1_attr_by_txt(PKCS12_SAFEBAG *bag, const char *attrname, int type, in PKCS12_add1_attr_by_txt() argument 89 if (X509at_add1_attr_by_txt(&bag->attrib, attrname, type, bytes, len) != NULL) in PKCS12_add1_attr_by_txt()
|
/third_party/node/deps/openssl/openssl/crypto/pkcs12/ |
D | p12_attr.c | 86 int PKCS12_add1_attr_by_txt(PKCS12_SAFEBAG *bag, const char *attrname, int type, in PKCS12_add1_attr_by_txt() argument 89 if (X509at_add1_attr_by_txt(&bag->attrib, attrname, type, bytes, len) != NULL) in PKCS12_add1_attr_by_txt()
|
/third_party/node/deps/openssl/openssl/crypto/x509/ |
D | x509_att.c | 192 const char *attrname, in STACK_OF() 200 attr = X509_ATTRIBUTE_create_by_txt(NULL, attrname, type, bytes, len); in STACK_OF() 209 **x, const char *attrname, in STACK_OF() 216 attr = X509_ATTRIBUTE_create_by_txt(NULL, attrname, type, bytes, len); in STACK_OF()
|
D | x509_req.c | 273 const char *attrname, int type, in X509_REQ_add1_attr_by_txt() argument 280 if (!X509at_add1_attr_by_txt(&req->req_info.attributes, attrname, in X509_REQ_add1_attr_by_txt()
|
/third_party/openssl/doc/man3/ |
D | PKCS12_add1_attr_by_NID.pod | 14 int PKCS12_add1_attr_by_txt(PKCS12_SAFEBAG *bag, const char *attrname, int type, 24 PKCS12_add1_attr_by_txt() adds an attribute of type B<attrname> with a value of
|
/third_party/python/Lib/unittest/ |
D | loader.py | 226 def shouldIncludeMethod(attrname): argument 227 if not attrname.startswith(self.testMethodPrefix): 229 testFunc = getattr(testCaseClass, attrname) 233 testCaseClass.__module__, testCaseClass.__qualname__, attrname
|
/third_party/openssl/crypto/evp/ |
D | evp_pkey.c | 216 const char *attrname, int type, in EVP_PKEY_add1_attr_by_txt() argument 219 if (X509at_add1_attr_by_txt(&key->attributes, attrname, type, bytes, len)) in EVP_PKEY_add1_attr_by_txt()
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
D | evp_pkey.c | 216 const char *attrname, int type, in EVP_PKEY_add1_attr_by_txt() argument 219 if (X509at_add1_attr_by_txt(&key->attributes, attrname, type, bytes, len)) in EVP_PKEY_add1_attr_by_txt()
|
/third_party/python/Lib/distutils/command/ |
D | install.py | 482 attrname = 'install_' + key 483 if getattr(self, attrname) is None: 484 setattr(self, attrname, scheme[key])
|
/third_party/openssl/crypto/x509/ |
D | x509_req.c | 273 const char *attrname, int type, in X509_REQ_add1_attr_by_txt() argument 280 if (!X509at_add1_attr_by_txt(&req->req_info.attributes, attrname, in X509_REQ_add1_attr_by_txt()
|
D | x509_att.c | 140 **x, const char *attrname, in STACK_OF() 147 attr = X509_ATTRIBUTE_create_by_txt(NULL, attrname, type, bytes, len); in STACK_OF()
|
/third_party/nghttp2/doc/_exts/rubydomain/ |
D | rubydomain.py | 362 clsname, attrname = ruby_rsplit(name) 366 return _('%s (%s.%s attribute)') % (attrname, modname, clsname) 368 return _('%s (%s attribute)') % (attrname, clsname)
|
/third_party/python/Lib/html/ |
D | parser.py | 318 attrname, rest, attrvalue = m.group(1, 2, 3) 326 attrs.append((attrname.lower(), attrvalue))
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | common.py | 365 def __getattr__(self, attrname): argument 367 return getattr(self.tmp_file, attrname)
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | cms.h | 262 const char *attrname, int type, 282 const char *attrname, int type,
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | common.py | 372 def __getattr__(self, attrname): argument 374 return getattr(self.tmp_file, attrname)
|
/third_party/python/Python/ |
D | codecs.c | 273 const char *attrname) in codec_makeincrementalcodec() argument 277 inccodec = PyObject_GetAttrString(codec_info, attrname); in codec_makeincrementalcodec() 291 const char *attrname) in codec_getincrementalcodec() argument 298 ret = codec_makeincrementalcodec(codec_info, errors, attrname); in codec_getincrementalcodec()
|
/third_party/rust/crates/libc/src/unix/bsd/netbsdlike/netbsd/ |
D | mod.rs | 2483 attrname: *const ::c_char, in extattr_delete_fd() 2488 attrname: *const ::c_char, in extattr_delete_file() 2493 attrname: *const ::c_char, in extattr_delete_link() 2498 attrname: *const ::c_char, in extattr_get_fd() 2505 attrname: *const ::c_char, in extattr_get_file() 2512 attrname: *const ::c_char, in extattr_get_link() 2523 attrname: *const ::c_char, in extattr_set_fd() 2530 attrname: *const ::c_char, in extattr_set_file() 2537 attrname: *const ::c_char, in extattr_set_link()
|