• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/apps/

Lines Matching refs:rrow

1649     OPENSSL_STRING *rrow = NULL;
1885 rrow = TXT_DB_get_by_index(db->db, DB_name, crow);
1886 if (rrow != NULL) {
1892 if (rrow == NULL) {
1893 rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
1894 if (rrow != NULL) {
1903 if (rrow != NULL) {
1905 if (rrow[DB_type][0] == 'E')
1907 else if (rrow[DB_type][0] == 'R')
1909 else if (rrow[DB_type][0] == 'V')
1914 if (rrow[DB_type][0] == 'R') {
1915 p = rrow[DB_exp_date];
1920 p = rrow[DB_exp_date];
1924 p = rrow[DB_serial];
1928 p = rrow[DB_file];
1932 p = rrow[DB_name];
2343 char *row[DB_NUMBER], **rrow, **irow;
2367 rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
2368 if (rrow == NULL) {
2424 } else if (index_name_cmp_noconst(row, rrow)) {
2431 } else if (rrow[DB_type][0] == 'R') {
2436 BIO_printf(bio_err, "Revoking Certificate %s.\n", rrow[DB_serial]);
2442 rrow[DB_type][0] = 'R';
2443 rrow[DB_type][1] = '\0';
2444 rrow[DB_rev_date] = rev_str;
2457 char *row[DB_NUMBER], **rrow;
2493 rrow = TXT_DB_get_by_index(db->db, DB_serial, row);
2494 if (rrow == NULL) {
2498 } else if (rrow[DB_type][0] == 'V') {
2500 row[DB_serial], rrow[DB_type][0]);
2502 } else if (rrow[DB_type][0] == 'R') {
2504 row[DB_serial], rrow[DB_type][0]);
2506 } else if (rrow[DB_type][0] == 'E') {
2508 row[DB_serial], rrow[DB_type][0]);
2510 } else if (rrow[DB_type][0] == 'S') {
2512 row[DB_serial], rrow[DB_type][0]);
2516 row[DB_serial], rrow[DB_type][0]);
2532 char **rrow, *a_tm_s;
2555 rrow = sk_OPENSSL_PSTRING_value(db->db->data, i);
2557 if (rrow[DB_type][0] == 'V') {
2559 if (strncmp(rrow[DB_exp_date], "49", 2) <= 0)
2566 if (strcmp(rrow[DB_exp_date], a_tm_s) <= 0) {
2567 rrow[DB_type][0] = 'E';
2568 rrow[DB_type][1] = '\0';
2571 BIO_printf(bio_err, "%s=Expired\n", rrow[DB_serial]);
2574 rrow[DB_type][0] = 'E';
2575 rrow[DB_type][1] = '\0';
2578 BIO_printf(bio_err, "%s=Expired\n", rrow[DB_serial]);