Searched refs:no_name (Results 1 – 9 of 9) sorted by relevance
/third_party/openssl/doc/man3/ |
D | OBJ_nid2obj.pod | 25 ASN1_OBJECT *OBJ_txt2obj(const char *s, int no_name); 26 int OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name); 67 If I<no_name> is 0 then long names and short names will be interpreted 68 as well as numerical forms. If I<no_name> is 1 only the numerical form 77 If I<no_name> is 0 then if the object has a long or short name 79 If I<no_name> is 1 then the numerical form will always be used. 81 i2t_ASN1_OBJECT() is the same as OBJ_obj2txt() with the I<no_name> set to zero.
|
/third_party/gstreamer/gstplugins_good/gst/rtsp/ |
D | gstrtpdec.c | 712 goto no_name; in create_recv_rtp() 740 no_name: in create_recv_rtp() 768 goto no_name; in create_recv_rtcp() 792 no_name: in create_recv_rtcp() 820 goto no_name; in create_rtcp() 838 no_name: in create_rtcp()
|
/third_party/openssl/include/openssl/ |
D | objects.h | 63 ASN1_OBJECT *OBJ_txt2obj(const char *s, int no_name); 64 int OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name);
|
/third_party/openssl/crypto/objects/ |
D | obj_dat.c | 351 ASN1_OBJECT *OBJ_txt2obj(const char *s, int no_name) in OBJ_txt2obj() argument 360 if (!no_name) { in OBJ_txt2obj() 397 int OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name) in OBJ_obj2txt() argument 412 if (!no_name && (nid = OBJ_obj2nid(a)) != NID_undef) { in OBJ_obj2txt()
|
/third_party/gstreamer/gstplugins_good/gst/rtpmanager/ |
D | gstrtpbin.c | 4187 goto no_name; in create_recv_rtp() 4220 no_name: in create_recv_rtp() 4399 goto no_name; in create_recv_rtcp() 4428 no_name: in create_recv_rtcp() 4452 goto no_name; in create_recv_fec() 4481 no_name: in create_recv_fec() 4673 goto no_name; in setup_aux_sender_fold() 4702 no_name: in setup_aux_sender_fold() 4849 goto no_name; in create_send_rtp() 4940 no_name: in create_send_rtp() [all …]
|
/third_party/e2fsprogs/lib/blkid/ |
D | probe.c | 488 static const char *no_name = "NO NAME "; variable 571 if (!vol_label || !memcmp(vol_label, no_name, 11)) in probe_fat() 616 if (!vol_label || !memcmp(vol_label, no_name, 11)) in probe_fat() 621 if (vol_label && memcmp(vol_label, no_name, 11)) { in probe_fat()
|
/third_party/python/Lib/test/ |
D | test_grammar.py | 421 no_name[does_not_exist]: no_name_again = 1/0 423 no_name[does_not_exist]: 1/0 = 0
|
/third_party/python/Modules/ |
D | _ssl.c | 1008 _asn1obj2py(_sslmodulestate *state, const ASN1_OBJECT *name, int no_name) in _asn1obj2py() argument 1015 buflen = OBJ_obj2txt(namebuf, X509_NAME_MAXLEN, name, no_name); in _asn1obj2py() 1023 buflen = OBJ_obj2txt(NULL, 0, name, no_name); in _asn1obj2py() 1030 buflen = OBJ_obj2txt(namebuf, buflen + 1, name, no_name); in _asn1obj2py() 1036 if (!buflen && no_name) { in _asn1obj2py()
|
/third_party/openssl/ |
D | CHANGES | 12268 *) New function OBJ_obj2txt(buf, buf_len, a, no_name), this converts 12269 an ASN1_OBJECT to a text string. If the "no_name" parameter is set then
|