Home | History | Annotate | Download | only in apps

Lines Matching defs:rrow

1511     OPENSSL_STRING *rrow = NULL;
1849 rrow = TXT_DB_get_by_index(db->db, DB_name, crow);
1850 if (rrow != NULL) {
1856 if (rrow == NULL) {
1857 rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
1858 if (rrow != NULL) {
1867 if (rrow != NULL) {
1869 if (rrow[DB_type][0] == DB_TYPE_EXP)
1871 else if (rrow[DB_type][0] == DB_TYPE_REV)
1873 else if (rrow[DB_type][0] == DB_TYPE_VAL)
1878 if (rrow[DB_type][0] == DB_TYPE_REV) {
1879 p = rrow[DB_exp_date];
1884 p = rrow[DB_exp_date];
1888 p = rrow[DB_serial];
1892 p = rrow[DB_file];
1896 p = rrow[DB_name];
2138 char *row[DB_NUMBER], **rrow, **irow;
2167 rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
2168 if (rrow == NULL) {
2211 } else if (index_name_cmp_noconst(row, rrow)) {
2218 } else if (rrow[DB_type][0] == DB_TYPE_REV) {
2223 BIO_printf(bio_err, "Revoking Certificate %s.\n", rrow[DB_serial]);
2229 rrow[DB_type][0] = DB_TYPE_REV;
2230 rrow[DB_type][1] = '\0';
2231 rrow[DB_rev_date] = rev_str;
2242 char *row[DB_NUMBER], **rrow;
2274 rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
2275 if (rrow == NULL) {
2279 } else if (rrow[DB_type][0] == DB_TYPE_VAL) {
2281 row[DB_serial], rrow[DB_type][0]);
2283 } else if (rrow[DB_type][0] == DB_TYPE_REV) {
2285 row[DB_serial], rrow[DB_type][0]);
2287 } else if (rrow[DB_type][0] == DB_TYPE_EXP) {
2289 row[DB_serial], rrow[DB_type][0]);
2291 } else if (rrow[DB_type][0] == DB_TYPE_SUSP) {
2293 row[DB_serial], rrow[DB_type][0]);
2297 row[DB_serial], rrow[DB_type][0]);
2311 char **rrow;
2324 rrow = sk_OPENSSL_PSTRING_value(db->db->data, i);
2326 if (rrow[DB_type][0] == DB_TYPE_VAL) {
2336 if (!ASN1_TIME_set_string(exp_date, rrow[DB_exp_date])) {
2343 rrow[DB_type][0] = DB_TYPE_EXP;
2344 rrow[DB_type][1] = '\0';
2347 BIO_printf(bio_err, "%s=Expired\n", rrow[DB_serial]);