Lines Matching refs:tmpoid
688 ASN1_OBJECT *tmpoid = NULL; in OBJ_create() local
706 tmpoid = OBJ_txt2obj(oid, 1); in OBJ_create()
707 if (tmpoid == NULL) in OBJ_create()
711 tmpoid = ASN1_OBJECT_new(); in OBJ_create()
712 if (tmpoid == NULL) { in OBJ_create()
720 && ossl_obj_obj2nid(tmpoid) != NID_undef) { in OBJ_create()
725 tmpoid->nid = OBJ_new_nid(1); in OBJ_create()
727 if (tmpoid->nid == NID_undef) in OBJ_create()
730 tmpoid->sn = (char *)sn; in OBJ_create()
731 tmpoid->ln = (char *)ln; in OBJ_create()
733 ok = OBJ_add_object(tmpoid); in OBJ_create()
735 tmpoid->sn = NULL; in OBJ_create()
736 tmpoid->ln = NULL; in OBJ_create()
739 ASN1_OBJECT_free(tmpoid); in OBJ_create()